home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / misc / editgame.doc < prev    next >
Text File  |  1985-11-28  |  2KB  |  54 lines

  1. EDITGAME.DOC
  2.  
  3. (********************************************************)
  4. (*                                                      *)
  5. (*        The Generic Adventure Game System (tm)        *)
  6. (*           Copyright 1985 by Mark J. Welch            *)     
  7. (*                 All Rights Reserved                  *)           
  8. (*                                                      *)
  9. (********************************************************)
  10.  
  11. EDITGAME.COM is an automatic game editor for games used with the Generic 
  12. Adventure Game System. Its function is to clean up the game file and, if 
  13. desired, make it much more readable and understandably organized.  
  14.  
  15.    Like ADVENT.COM, EDITGAME.COM has two "modes." By default, it simply 
  16. creates a file with the room, noun, and creature definitions in order, 
  17. with minimal spacing. If the /d (diagnostics) mode is selected, it 
  18. echoes some information to the screen -- particularly noting lines it 
  19. ignores -- and creates a much more informative output file.  
  20.  
  21.    The major enhancement in using the /d option is that rooms are 
  22. identified by name within other room definitions. The standard output 
  23. would show a room's exits as: 
  24.  
  25.         NORTH  13
  26.         WEST   8
  27.  
  28. While the /d option uses the room names as well:
  29.  
  30.         NORTH  13 - Bedroom
  31.         WEST   8 - Bathroom
  32.  
  33.   
  34. EDITGAME is not interactive: it processes a file and creates an output 
  35. file without any intervention, and a text editor must be used to make 
  36. changes to the data file. Its output file is a standard GAGS data file, 
  37. but with the extension 
  38. .DA2 instead of .DAT, so that edited files are easily recognized. 
  39.  
  40.    Invocation is similar to ADVENT.COM:
  41.  
  42.         EDITGAME  UNDERGND 
  43.         or
  44.         EDITGAME  UNDERGND /d
  45.         
  46.  
  47. The input data file must have a suffix of .DAT and the output file will 
  48. always have the suffix .DA2.  
  49.  
  50.                                         - Mark Welch, 11/28/85
  51.  
  52.  
  53. 
  54.