home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 464 / read.txt < prev    next >
Text File  |  1986-11-07  |  5KB  |  106 lines

  1.                      Copyright (c) 1986 William T Morrison IV
  2.  
  3. You may copy and distribute this program freely, provided that:
  4.  1)   No fee is charged for such copying and distribution
  5.  2)   It is distributed ONLY in its original, unmodified state.
  6.  
  7. Address all correspondence to :
  8.                                Bill Morrison IV
  9.                                34762 Oak Ave
  10.                                Inglside, IL  60041
  11.  
  12.        Or leave a message on The Picture Bulletin Board - 301 588-9079
  13.  
  14.                                  Acknowledgments
  15.        MTI (Phoenix Bulletin Board - 618 233-2315) - for getting me addicted to 
  16. MacPaint pictures in the first place.
  17.        Bruce Guthrie (SYSOP) at The Picture Bulletin Board - for convincing me 
  18. someone else might be interested in these programs.
  19.        Richard Byrne - for showing me that the HP Laser Jet does print nicely, 
  20. and showing me the error of my ways.
  21.  
  22.  
  23. READ      -    Reads MacPaint format pictures, and displays them on a PC. The 
  24.                program selects the highest resolution, from an EGA, Color or 
  25.                Hercules Card.
  26.  
  27.                WARNING, the program assumes that if you have a monochrome card 
  28.                that it is a Hercules Card. The program gives no indication of 
  29.                monitor type. This is fatal on a IBM Monochrome card, and you 
  30.                have to reboot to recover.
  31.  
  32.                MacPaint pictures should have the extension of .MAC, or so is 
  33.                the convention. When the program asks for a file name if no 
  34.                extension is specified, a default of .MAC is added. If a period 
  35.                exists on the line the default is not used.
  36.  
  37.      ENTRY FORMAT:
  38.         READ  [/T]  [filename]
  39.  
  40.           /T - Timer:   This causes the picture to be displayed for T seconds, 
  41.                        then exit. This parameter, if present, must occur before 
  42.                        the filename.
  43.  
  44.             filename - Initial picture to be displayed.
  45.  
  46.  
  47.      Command available once a picture is loaded.
  48.  
  49.         Movement of the picture:
  50.       UP             DOWN        Moves the picture 1 row at a time.
  51.    PAGE UP        PAGE DOWN      Moves the picture 10 rows at a time.
  52. CRTL PAGE UP    CTRL PAGE DOWN   Moves the picture one half frame at a time.
  53.     HOME             END         Moves the picture to the Top / Bottom.
  54.  
  55.         Other Keys:
  56.      E  or ESC         Exit the program.
  57.         L              Load a new picture.
  58.         P              Print the current picture.
  59.         S              Set up the 'other printer' on the printer menu. This 
  60.                        will also save the current color settings as default 
  61.                        color setting.
  62.  
  63.         For Color (CGA, EGA) users:
  64.     F1  -  F2        Increment / Decrement foreground color.
  65.     F3  -  F4        Increment / Decrement background color.
  66.  
  67.  
  68. MACPRT    -  Prints MacPaint format pictures, without displaying them on a PC.
  69.  
  70.      ENTRY FORMAT:
  71.  
  72.            PRINTMAC [/T] filename
  73.  
  74.                 /T   -   Print the filename (without extention and path) on the 
  75.                          top line of the page.
  76.  
  77.                 filename - Pictures to be printed. May contain wild cards.
  78.  
  79.  
  80. PRINTER FORMAT -
  81.        Both READ and MACPRT have the same internal printer table. This table is 
  82.        near the end of the program. This is the format of the table should 
  83.        modifying the table seem necessary. The file OTHER.PRT is one table 
  84.        entry written to disk, 49 bytes long. This is the printer table format:
  85.  
  86.                'PRINTER TABLE***'             ;header
  87.        1 byte                  ;Type of printer:
  88.                                        1 laser
  89.                                        8 dot matrix (8 pin)
  90.  
  91.                              ;Set up - 8/72 linefeed
  92.        1  byte                 ;Length of this print string
  93.        15 bytes                ;Print string to send, zero filled
  94.  
  95.                           ;Print Graphics characters (1)
  96.        1  byte                 ;Length of this print string
  97.        15 bytes                ;Print string to send, zero filled
  98.  
  99.                              ;Reset printer to normal
  100.        1  byte                 ;Length of this print string
  101.        15 bytes                ;Print string to send, zero filled
  102.  
  103.  (1)   The count of bytes sent to the printer to make up one row is 576 for a 
  104.        dot matrix (type 8) printer, and 72 for a laser printer (type 1).
  105.  
  106.