home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / educatin / letrx11.zip / LETTRIX.DOC < prev    next >
Text File  |  1993-01-10  |  4KB  |  101 lines

  1.  
  2.                               Introduction
  3.  
  4. Lettrix is a clone of the game "Boggle" by Parker Brothers.  A matrix of
  5. 16 (4x4) letters is placed on the screen, and the player tries to spell
  6. out all the words that are contained within the matrix.   The object of
  7. the game is to find all the words in the matrix that the computer found.
  8.  
  9. When the program is executed, the dictionary (words) is read, and then
  10. a command "menu" is shown.  Each command has a short description on the 
  11. command window.  Each command is described below in more detail.
  12.  
  13. When a game is played, the computer will take some time to examine the
  14. matrix of letters for words that are in its dictionary.  Once this list
  15. of words is complete, the player can start entering words.  Note that
  16. this process is very CPU intensive, and may take over 3 minutes for an
  17. older 286 computer.  For this reason, it is recommended to play this game
  18. on a 386 or faster machine.
  19.  
  20.  
  21.                          Description of Game Board
  22.  
  23. The game board is broken into four distinct regions: The command window,
  24. the status window (which can also be used to enter commands), the matrix
  25. window, and the words window.
  26.  
  27.  
  28.                              Building a Word
  29.  
  30. Words may be built using any contiguous letters, as long as they haven't
  31. already been used in the same word.
  32.  
  33. For example, in the following matrix:
  34.  
  35.                    R  E  G  O
  36.                    S  A  U  A
  37.                    T  W  L  V
  38.                    B  O  O  E
  39.  
  40.      Legal words:    LOVE     REGAL     REST     GUEST     GAUR
  41.      Illegal words:      REGULAR    LEVEL    BOOT    STAB
  42.  
  43.  
  44.                Description of Commands at the Command Level
  45.  
  46.  
  47. Q  -    Quit the game of lettrix and exit to DOS.
  48.  
  49. P  -    Play a new game of Lettrix, if one is not already in progress.  A
  50.     new game board is created, and once the word list is generated,
  51.     the game may begin.
  52.  
  53. R  -    Resume the current game in progress.  If a player suspends the
  54.     current game, or loads a saved game, this command will continue
  55.     where play was left off.
  56.  
  57. V  -    For seasoned users, the "Command Menu" may be a bit of a nuisance.
  58.     This command enables/disables the "Command Menu" and allows commands 
  59.     to be typed into the small command status window at the top 
  60.     of the screen.
  61.  
  62. C  -    Cancel the current game in progress.  If a player tires of the
  63.     current game and wishes to start a new one, then the current game
  64.     must first be cancelled, before the new one can start.
  65.  
  66. L  -    Load a previously saved game.  This command allows a game that was
  67.     previously saved to be loaded and resumed.  The name of the file
  68.     will be asked for in the command status window.  Enter the name
  69.     of the file which contains the saved game.  Once entered, the
  70.     game can be resumed with the 'R' command.
  71.  
  72. S  -    Save the current game to disk.  This command allows the current
  73.     game in progress to be saved so that it may be resumed/restored
  74.     at a later time.
  75.  
  76. M  -    Specify the letters to use in the letter matrix.  The matrix
  77.     must be made up of 16 alphabetic letters.  If the letters are legal, 
  78.     then a new game is started using these letters.
  79.  
  80. G  -    Give up on the current game.  This command will give the player
  81.     a chance to see the words that the computer found.  These words
  82.     will be displayed in alphabetical order in the bottom window. Once 
  83.     the word list has been revealed, the current game is over.
  84.  
  85. D  -    Load a new dictionary file.  A dictionary file is simply a list
  86.     of words, one per line, that the game uses to determine whether
  87.     a sequence of letters is a word or not.
  88.  
  89. W  -    Define the size of a word.  The minimum and maximum length of a
  90.     word may be specified.  The maximum must be greater than or equal
  91.     to the minimum.  The limits are two (2) through ten (10) letters.
  92.  
  93. ?  -    Enable the use of the command menu while in command mode.  May
  94.     be disabled using the V command.
  95.  
  96.  
  97.              Description of Commands while in the Lettrix Game
  98.  
  99. Q  -    Instead of typing in a word, type Q and the game will be suspended
  100.     and the game will go to command mode.
  101.