home *** CD-ROM | disk | FTP | other *** search
/ CD PowerPlay 6 / TheCompleteAdventureCollection1995 / CDPP6.ISO / share / curses / zip.txt < prev   
Encoding:
Text File  |  1994-12-03  |  2.8 KB  |  75 lines

  1.  
  2. ZIP - Infocom Z-code Interpreter Program V2.03
  3.  
  4.     A slightly modified version of Mark Howell's Zip V2.0
  5.  
  6.     This interpreter will run all Infocom V1 to V5 games. It includes
  7.     support for timeouts in Border Zone, screen displays in Beyond Zork
  8.     and implements the #record debugging function, etc.
  9.  
  10. Author:
  11.  
  12.     Mark Howell (howell_ma@movies.enet.dec.com)
  13.  
  14.     Modified by Stefan Jokisch (jokisc00@marvin.informatik.uni-dortmund.de),
  15.     so please don't blame Mark for any new bugs.
  16.  
  17. Changes since 2.0:
  18.  
  19.     - support for the graphic font ('Beyond Zork')
  20.     - support for mouse and number pad keys ('Beyond Zork')
  21.     - command line editing
  22.     - command line history
  23.     - additional switches for colour setting
  24.     - additional switch for setting the Tandy bit
  25.     - low- and high-pitched beep sounds
  26.     - cheat functions
  27.     - minor bug fixes (the form in 'Bureaucracy', for instance)
  28.  
  29. Special keys:
  30.  
  31.     cursor left       - move one character to the left
  32.     cursor right      - move one character to the right
  33.     ctrl-cursor left  - move to previous word
  34.     ctrl-cursor right - move to next word
  35.     home              - move to beginning of line
  36.     end               - move to end of line
  37.     backspace         - delete character to the left
  38.     delete            - delete character below cursor
  39.     escape            - delete whole input line
  40.     cursor up         - get previous command
  41.     cursor down       - get next command
  42.     page up           - scroll status window up ('Beyond Zork')
  43.     page down         - scroll status window down ('Beyond Zork')
  44.  
  45. Program options:
  46.  
  47.     -d #    set the display mode (see below)
  48.     -c #    set the number of context lines to keep when scrolling
  49.     -r #    set the right margin
  50.  
  51.     -f #    set the foreground colour
  52.     -b #    set the background colour
  53.     -e #    set the emphasis colour
  54.     -F #    set the foreground colour for reverse mode
  55.     -B #    set the background colour for reverse mode
  56.  
  57.     -o      monitor object movement
  58.     -O      monitor object locating
  59.     -a      monitor attribute assignment
  60.     -A      monitor attribute testing
  61.     -H      monitor header flag testing
  62.     -t      set the Tandy bit
  63.  
  64. Graphic font:
  65.  
  66.     The graphic font for 'Beyond Zork' is built into the interpreter, so
  67.     you don't need the DOS version of 'Beyond Zork' to view the font; any
  68.     other version will do equally fine. Please note that the graphic font
  69.     cannot be displayed in text mode; this is why Zip switches to graphic
  70.     mode when running 'Beyond Zork'. The new program option -d lets you
  71.     choose a different resolution: -d1 selects low resolution, -d2 turns
  72.     on EGA resolution and -d3 activates VGA mode. If you find the graphic
  73.     mode undesirable, you can force the interpreter to text mode by -d0.
  74.  
  75.