home *** CD-ROM | disk | FTP | other *** search
/ PC Plus 25 / MAIN / PEASYDOS.TXT < prev   
Encoding:
Text File  |  1988-01-01  |  19.6 KB  |  589 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.                     PeasyDos Basics guide for Version 1.0
  30.  
  31.                 (C) 1988 Duncan P Charlton and Sue E Horseman
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. This document provides a guide to the operation of the PeasyDos environment
  43. and instructions on how to use the programming language in order to build a
  44. shell for your system.
  45.  
  46. 1 PEASYDOS OPERATION
  47.  
  48. 1.1 Input to PeasyDos
  49.  
  50. Whenever PeasyDos is not carrying out one of your commands it will be waiting
  51. for you to tell it what to do next. There are two methods that allow you to
  52. give PeasyDos instructions: Menus, where you choose one option from a list of
  53. many; and the Line Editor where you have to type in a line of text.
  54.  
  55.         1.1.1 Menus
  56.         PeasyDos menus appear on the top two lines of the screen and consist
  57.         of a list of options, one of which is highlighted (the current option)
  58.         and below that a more detailed description of the current option.
  59.  
  60.         There are two ways of selecting an option from the menu.
  61.  
  62.         (a)     Use the <LEFT> and <RIGHT> cursor keys to move to the desired
  63.                 option and then press <RETURN> to select the option. As you
  64.                 move through the options the text below will change to give an
  65.                 explanation of the current option.
  66.  
  67.         (b)     Press the key corresponding to the first letter of the option.
  68.                 If there is only one option beginning with that particular
  69.                 letter then that option will be selected. If more than one
  70.                 option begins with that particular letter then a new menu will
  71.                 appear with just those options shown. At this point you can
  72.                 use the cursor keys as described in (a), or continue typing
  73.                 the option name until the desired option is selected.
  74.  
  75.         At times a Menu will be too long to be accommodated by the width of
  76.         the screen. This will be shown by small arrows at the right or left
  77.         hand side of line 1 indicating that the menu continues off the screen.
  78.         If this happens the <Ctrl> <LEFT> or <Ctrl> <RIGHT> keys can be used
  79.         to view options off the screen. If you simply use the <LEFT> or
  80.         <RIGHT> cursor key the Menu will 'scroll' to accommodate the new
  81.         options.
  82.  
  83.         Although the menu might be too long to be shown this will not affect
  84.         the methods of selecting options described in (a) and (b) above.
  85.  
  86.  
  87.  
  88.  
  89.  
  90.         1.1.2 Line editor
  91.  
  92.         At times you will be asked to type in a line of text, for example when
  93.         specifying the drive for a format operation or a filename in a rename
  94.         operation. At these times the text you type will appear on line 23 of
  95.         the screen and you can type your text or use the keys below to edit
  96.         what you are typing:
  97.  
  98.                 <DEL>           Delete character under cursor
  99.                 <DEL RIGHT>     Delete character before cursor
  100.                 <HOME>          Move to start of line
  101.                 <END>           Move to end of line
  102.                 <Cursor LEFT>   Move cursor back one character
  103.                 <Cursor RIGHT>  Move cursor forward one character
  104.                 <Ctrl> <HOME>   Delete all of line
  105.                 <RETURN>        When you have finished typing the line
  106.  
  107.         Sometimes a default option will appear before you have typed anything,
  108.         if you want to accept the default then just press <RETURN>. If not,
  109.         you can edit the default with the keys listed above. If you want to
  110.         get rid of the default altogether, use <Ctrl> <HOME> to delete the
  111.         whole line.
  112.  
  113. 1.2 Areas of the screen
  114.  
  115. PeasyDos uses five main areas of the screen to provide you with information
  116.  
  117.         1.2.1   The menu bar occupies the top two lines of the screen and is
  118.                 used to show the menus described in section 1.1.1 above.
  119.  
  120.         1.2.2   The Editor uses line 23 of the screen as described in section
  121.                 1.1.2 above.
  122.  
  123.         1.2.3   Line 24 of the screen is the status line and contains a
  124.                 copyright notice and the PeasyDos version number.
  125.  
  126.         1.2.4   The Message line occupies line 25 of the screen and PeasyDos
  127.                 will display helpful instructions there.
  128.  
  129.         1.2.5   The rest of the screen is used by individual PeasyDos
  130.                 application to display relevant information.
  131.  
  132. 1.3 Running a PeasyDos Program.
  133.  
  134.         To execute a Peasydos program type
  135.  
  136.         dosman <filename>
  137.  
  138.         where <filename> is the name of the PeasyDos program file that you
  139.         have created.
  140.  
  141.  
  142.  
  143. 2 PROGRAMMING IN PEASYDOS.
  144.  
  145. In order to configure PeasyDos to your own system you must create a program
  146. file. You can do this using any text editor, for example the Sidekick editor
  147. (or even Edlin!).
  148.  
  149. If you are familiar with another procedural programming language such as
  150. BASIC, Pascal,C or the DOS batch file language you should find the example
  151. given below fairly easy to understand and you may find the PeasyDos Language
  152. Description that follows it to be sufficient to allow you write your own
  153. PeasyDos programs.
  154.  
  155. Before we present an example program there are a few things to note about a
  156. PeasyDos program.
  157.  
  158. Programs consist of a list of Commands that tell PeasyDos what to do next,
  159. PeasyDos will simply run through the list executing the commands.
  160.  
  161. As well as commands there are Functions. These cause PeasyDos to evaluate the
  162. function and return a value.
  163.  
  164. Finally there are Variables. These are used to store values and are given a
  165. value with the SET Command. The maximum length of a variable name is 8
  166. characters.
  167.  
  168. Example of a PeasyDos program
  169.  
  170. PeasyDos was originally written to provide a menu driven interface for
  171. selecting programs and so the first function that you will need to use will
  172. probably be the MENU function. Let's look at an example,
  173.  
  174.         SET MENUVAR MENU        "Format"        : "Format a Disk",
  175.                                 "Diskcopy"      : "Copy a Floppy Disk",
  176.                                 "Exit"          : "Exit to DOS"
  177.                                 ENDMENU
  178.  
  179. This means SET the variable MENUVAR to be equal to the result of the function
  180. MENU. The text following the keyword MENU indicates the possible options for
  181. that menu. The left column indicates the choices in the menu and the right
  182. column the explanation that will appear when the corresponding option is
  183. highlighted.
  184.  
  185. When the above example is encountered in a program file a menu would be
  186. displayed looking something like this
  187.  
  188.         FORMAT Diskcopy Exit
  189.         Format a Disk
  190.  
  191. where the capital letters indicate that the word 'Format' will be highlighted
  192. on screen.
  193.  
  194. When one of the options is selected, (see Menus above) the variable MENUVAR
  195. will take on one of the values "Format", "Diskcopy" or "Exit".
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204. So far so good, now we need to take different actions according to the value
  205. of MENUVAR. The easiest way to do this in PeasyDos in to write a list of
  206. commands for each option and have PeasyDos execute the section corresponding
  207. to the value of MENUVAR. Lets ignore the sections of code for the moment and
  208. just look at how we make the selection.
  209.  
  210.         GOSUB MENUVAR
  211.  
  212. That was pretty painless wasn't it?
  213.  
  214. The GOSUB (GO SUBroutine) instructs PeasyDos to execute the program lines at
  215. MENUVAR until it encounters a RETURN command, and then to continue with the
  216. commands after the GOSUB. At the moment MENUVAR is either "Format", "Diskcopy"
  217. or "Exit" so we need three pieces of program to deal with those three options.
  218. Let's write the one for 'Format' first..
  219.  
  220.         :Format
  221.         RUN "FORMAT A:"
  222.         RETURN
  223.  
  224. The colon in the first line indicates that 'Format' is a label, or name, for a
  225. piece of code.
  226.  
  227. The command RUN will execute the expression after it, as if you had typed it
  228. at the DOS prompt. The second line, therefor,  has exactly the same effect as
  229. typing FORMAT A: at the prompt, ie the DOS FORMAT command will be executed to
  230. format a disk.
  231.  
  232. Lastly the RETURN statement tells PeasyDos to go back to where it was before
  233. it called this subroutine.
  234.  
  235. Here are the other subroutines:
  236.  
  237.         :Diskcopy
  238.         RUN "DISKCOPY A: B:"
  239.         RETURN
  240.  
  241.         :Exit
  242.         EXIT
  243.  
  244. :Diskcopy is almost exactly the same as Format.
  245.  
  246. :Exit is a bit different, it has a new command EXIT. All it does is exit from
  247. PeasyDos back to the DOS prompt.
  248.  
  249.  
  250.  
  251.  
  252.  
  253. Now let's look at the complete program.
  254.  
  255.         :MAINLOOP
  256.  
  257.         SET MENUVAR MENU        "Format"        : "Format a Disk",
  258.                                 "Diskcopy"      : "Copy a Floppy Disk",
  259.                                 "Exit"          : "Exit to DOS"
  260.                                 ENDMENU
  261.  
  262.         GOSUB MENUVAR
  263.  
  264.         GOTO "MAINLOOP"
  265.  
  266.         :Format
  267.         RUN "FORMAT A:"
  268.         RETURN
  269.  
  270.         :Diskcopy
  271.         RUN "DISKCOPY A: B:"
  272.         RETURN
  273.  
  274.         :Exit
  275.         EXIT
  276.  
  277.         END
  278.  
  279. Note that there are three more lines in the program
  280.  
  281.         :MAINLOOP
  282.  
  283.         GOTO "MAINLOOP"
  284.  
  285.         END
  286.  
  287. :MAINLOOP is another label and GOTO "MAINLOOP" instructs PeasyDos to loop back
  288. to MAINLOOP. This means that the program will continually:
  289.  
  290.         display the main menu
  291.  
  292.         perform the operation and,
  293.  
  294.         redisplay the menu
  295.  
  296. until Exit is selected.
  297.  
  298. END simply tells PEASYDOS that it has reached the end of the program file.
  299.  
  300. So that's a simple PeasyDos program. You can adapt and extend it to fit your
  301. own system.
  302.  
  303.  
  304.  
  305.  
  306.  
  307. 3. PeasyDos Language Definition and Description for Version 1.0
  308.  
  309.  
  310. 3.1 Backus-Naur definition
  311.  
  312. The following is the Backus-Naur Form (BNF) definition of the PeasyDos
  313. Programming Language:
  314.  
  315. EXPRESSION EVALUATION
  316.  
  317.         <primitive>     ::= <variable> | <constant> | <function>
  318.  
  319.         <rlnl-op>       ::= $= | == | < | <= | >= | > | <>
  320.  
  321.         <rlnl-expr>     ::= <expr> | <expr> <rlnl-op> <expr>
  322.  
  323.         <expr>          ::= <primitive> { & <primitive> }
  324.  
  325. COMMANDS
  326.  
  327.         <set-cursor-command>    ::= @ <expr> <expr>
  328.         <chdir-command>         ::= CHDIR <expr>
  329.         <clear-command>         ::= CLEAR
  330.         <display-command>       ::= DISPLAY <expr>
  331.         <exec-command>          ::= EXEC <expr>
  332.         <exit-command>          ::= EXIT
  333.         <gosub-command>         ::= GOSUB <expr>
  334.         <goto-command>          ::= GOTO  <expr>
  335.         <if-command>            ::= IF <rlnl-expr> <statement>
  336.         <loud-command>          ::= LOUD
  337.         <message-command>       ::= MESSAGE <expr>
  338.         <return-command>        ::= RETURN
  339.         <run-command>           ::= RUN <expr>
  340.         <set-command>           ::= SET <variable> <expr>
  341.         <shell-command>         ::= SHELL <expr>
  342.         <silent-command>        ::= SILENT
  343.  
  344. FUNCTIONS
  345.  
  346.         <curdir-function>       ::= CURDIR
  347.         <dosver-function>       ::= DOSVER
  348.         <edit-function>         ::= EDIT <expr> <expr>
  349.         <files-function>        ::= FILES <expr>
  350.         <menu-function>         ::= MENU <expr> : <expr>
  351.                                         {, <expr> <expr> } ENDMENU
  352.         <menulist-function>     ::= MENULIST <expr>
  353.         <nextkey-function>      ::= NEXTKEY
  354.         <sortlist-function>     ::= SORTLIST <expr>
  355.         <subdirs-function>      ::= SUBDIRS
  356.  
  357. 3.2 Language description.
  358.  
  359. 3.2.1 Relational operators.
  360.  
  361.         The following relational operators are supported:
  362.  
  363.                 $=      String equality
  364.                 $<>     String inequality
  365.                 ==      Numeric equality
  366.                 <       Numeric less than
  367.                 <=      Numeric less than or equal
  368.                 >=      Numeric greater than or equal
  369.                 >       Numeric greater then
  370.                 <>      Numeric not equal
  371.  
  372.         Relation operators return either the string "True" or "False"
  373.  
  374.         Note that PeasyDos is a typeless language, no distinction is made
  375.         between strings and numbers or lists, different operators are provided
  376.         for example, string comparison and numeric comparisons. This means
  377.         firstly that care must be taken to use the correct operator eg.
  378.  
  379.                 "0123" $= "123" is False, but
  380.                 "0123" == "123" is True.
  381.  
  382.  
  383.         If a non-numeric string is used in a numeric comparison it will be
  384.         given the value zero for example
  385.  
  386.                 "Hello" == "World" is true since both strings will have the
  387.                 value zero.
  388.  
  389. 3.2.2 Term level operators
  390.  
  391.         Concatenation of strings is provided by the & operator
  392.  
  393.                 eg.
  394.                 "Hello " & "World"
  395.                 is equivalent to "Hello World"
  396.  
  397.         at present no arithmetic operators are provided.
  398.  
  399. 3.2.3 PeasyDos commands.
  400.  
  401.         @ x y
  402.                 Sets the cursor to the position x,y.
  403.                 eg.
  404.                 @ "0" "0" homes the cursor
  405.  
  406.         CHDIR new-directory
  407.  
  408.                 Sets the current directory to new-directory, if new-directory
  409.                 does not exist exits PeasyDos with an error.
  410.                 eg.
  411.                 CHDIR "\" Sets the current directory to the root directory
  412.  
  413.         CLEAR
  414.                 Clears the screen
  415.  
  416.         DISPLAY <expr>
  417.                 Displays <expr> at the current cursor position then performs a
  418.                 CR/LF.
  419.                 eg.
  420.                 @ "0" "10"
  421.                 DISPLAY "Hello world!"
  422.                 displays Hello World on the tenth line of the screen.
  423.  
  424.  
  425.         EXIT
  426.                 Leaves PeasyDos
  427.  
  428.         GOSUB <expr>
  429.                 Executes the statements at the label <expr> until a RETURN is
  430.                 found. At this point control is returned to the next
  431.                 statement.
  432.                 eg.
  433.                 GOSUB "Format"
  434.                 jumps to the label Format and executes the statements until
  435.                 the next RETURN
  436.  
  437.                 Note the quotes around 'Format', if they are omitted as in,
  438.                 GOSUB Format
  439.                 the Variable Format will be evaluated and PeasyDos will jump
  440.                 to that label, this is a very useful device - see the example
  441.                 program for how to use it.
  442.  
  443.         GOTO  <expr>
  444.                 Transfers control directly to the label <expr>.
  445.  
  446.         IF <rlnl-expr> <statement>
  447.                 If <rlnl-expr> is True then executes <statement> otherwise
  448.                 continues execution on the next line.
  449.                 eg.
  450.                 IF MENUVAR $= "ESC" GOTO MAINLOOP
  451.  
  452.         LOUD
  453.                 Puts PeasyDos into Loud mode, see description of SILENT
  454.                 command.
  455.  
  456.         MESSAGE <expr>
  457.                 Displays <expr> on the message line
  458.                 eg.
  459.                 MESSAGE "Press the space bar to continue"
  460.  
  461.         RETURN
  462.                 See GOSUB command
  463.  
  464.         RUN <expr>
  465.                 Clears the screen displays <expr> and executes it
  466.                 eg.
  467.                 RUN "WS"
  468.                 runs the Wordstar wordprocessor
  469.  
  470.         SET <variable> <expr>
  471.                 Sets <variable> to <expr>
  472.                 eg.
  473.                 SET GREETING "Hello world"
  474.  
  475.         SHELL <expr>
  476.                 Same as RUN but displays "Press any key to Return to PeasyDos"
  477.                 and waits for a keypress before returning to PeasyDos.
  478.  
  479.         SILENT
  480.                 Puts PeasyDos into Silent mode. This is similar to ECHO OFF in
  481.                 DOS batch files in that commands are not displayed before
  482.                 being executed. LOUD puts PeasyDos back into Loud (the
  483.                 default) mode.
  484.  
  485. 3.2.4 PEASYDOS FUNCTIONS.
  486.  
  487.         CURDIR
  488.                 Returns the current DOS directory
  489.  
  490.         DOSVER
  491.                 Returns the DOS version number
  492.  
  493.         EDIT <expr1> <expr2>
  494.                 Waits for and returns a line of input from the user, <expr1>
  495.                 (which can be the empty string "") is provided as a default
  496.                 and at most <expr2> characters can be entered.
  497.                 eg.
  498.                 SET NEWDISK EDIT "A:" "2"
  499.  
  500.         FILES <expr>
  501.                 Returns a list of all the files in the current directory that
  502.                 match the mask <expr>.
  503.                 eg.
  504.                 SET CFILES FILES "*.C"
  505.  
  506.         MENU <option> : <exp> {, <option> <exp> } ENDMENU
  507.                 Returns the selected value from the menu. <option>s are the
  508.                 choices to be displayed, <exp>s are the more detailed
  509.                 explanations of those choices. If the <ESC> key is pressed the
  510.                 function will return the value "ESC".
  511.  
  512.         MENULIST <expr>
  513.                 Same as MENU except that it takes a list, for example the list
  514.                 of files returned by FILES, and produces a menu from that. In
  515.                 this case only options are given and not explanations.
  516.                 eg.
  517.                 SET FILEVAR MENULIST FILES "*.*"
  518.                 will display a menu of all the files on the disk and return
  519.                 the selected files.
  520.  
  521.         NEXTKEY
  522.                 Returns the next key pressed.
  523.  
  524.         SORTLIST <expr>
  525.                 Sorts a list such as that returned by the FILES functions into
  526.                 alphabetical order.
  527.                 eg.
  528.                 SORTLIST FILES "*.*"
  529.  
  530.         SUBDIRS
  531.         Returns a list of all the subdirectories of the current directory.
  532.  
  533.  
  534.  
  535. Now available in Version 1.2
  536.         New operators
  537.                 +       Numeric plus
  538.                 -       Numeric minus
  539.                 /       Numeric DIV
  540.                 %       Numeric MOD
  541.                 *       Numeric multiplication
  542.                 $<      Alphabetically less than
  543.                 $>      Alphabetical greater then
  544.  
  545.         New commands
  546.                 SETTATT <file> <att>    Sets file attributes
  547.                 SETDISK <drv>           Set default drive
  548.                 WHILE <rlnl-exp>        'While' flow of control construct
  549.                 .... WEND
  550.  
  551.         New functions
  552.                 BIGMENU <list> <ipl>    Like MENU but uses the whole screen
  553.                                         and allows more than one option to be
  554.                                         selected.
  555.                 DSPACE <drv>            Returns disk free space
  556.                 FDATE <file>            Returns date stamp of <file>
  557.                 FSIZE <file>            Returns size of <file>
  558.                 FTIME <file>            Returns time stamp of <file>
  559.                 GETATT <file>           Returns the attributes of <file>.
  560.                 HEAD  <list>            Returns the head of <list>
  561.                 MID <s> <n><expr>       Returns <n> chars from <expr> starting
  562.                                         at <s>
  563.                 TAIL <list>             Returns the tail of <list>
  564.                 VOLLAB <drv>            Returns Volume label of disk in
  565.                                         specified drive
  566.  
  567.  
  568. LICENSE
  569.  
  570. COPYRIGHT (C) 1988 Duncan P Charlton  All Rights Reserved.
  571.  
  572. This is the shareware version of PeasyDos, the programmable DOS shell, if you
  573. would like the full version, which incorporates many advanced features, and
  574. a printed manual and programmers guide, then please send £30.00 to:
  575.  
  576.                 Duncan P Charlton
  577.                 The Old School House
  578.                 Southstoke
  579.                 Bath BA2 7DU
  580.  
  581. You are free to use, copy and distribute PeasyDos for noncommercial use
  582. providing all the following conditions are observed.
  583.  
  584.         No fee is charged for use, copying or distribution.
  585.  
  586.         The program is not modified in any way.
  587.  
  588.         The file LICENSE.TXT is distributed with all copies.
  589.