home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / SCREEN / SCR2TC20.ZIP / SCR2TC20.DOC < prev   
Text File  |  1989-08-24  |  4KB  |  108 lines

  1.                 For Turbo C 2.0 ------>
  2.                                      
  3.  
  4.                       @@@    @@@  @@@    @@   @@@@@   @@@
  5.                      @      @     @  @  @  @    @    @
  6.                       @@@   @     @@@     @     @    @
  7.                          @  @     @  @   @      @    @
  8.                       @@@    @@@  @  @  @@@@    @     @@@
  9.  
  10.  
  11.                             version 2.0  08-23-1989
  12.                              written by D. Biscuits
  13.                          
  14.                               This program is PD.
  15.                          
  16.  
  17.  
  18.                 Scr2TC is a program I wrote when I discovered Turbo C
  19.                 did not want to compile the screens I created using
  20.                 TheDraw when I saved them in the C format.  This program
  21.                 converts these uncompilable files into files that Turbo
  22.                 C can understand.  It is a program which is expanding
  23.                 and will probably never be finished.
  24.  
  25.                 The files saved in C format must be saved in NORMAL
  26.                 mode, not CRUNCHED or ASCII, in order for this program
  27.                 to properly create a usable header file.
  28.  
  29.                 To run, just type SCR2TC at the DOS prompt and enter
  30.                 the file names when prompted.  After entering the file
  31.                 names you will be asked to choose a file format.
  32.                 Currently there are only two: C format and binary
  33.                 format.  Select one of the above depending on how you
  34.                 saved the screen in TheDraw.
  35.  
  36.                 With version 2.0, I have re-written the entire C format
  37.                 routine to allow the use of random length files, i.e.
  38.                 the size of screens that are saved with the block save
  39.                 may be of a different size than screens saved by using
  40.                 Alt-S.
  41.                 The binary format routine determines the length, also,
  42.                 so the ImageData variable length may be of a size other
  43.                 than 4000.
  44.  
  45.                 Below is a demonstration program showing how to use a
  46.                 file created by Scr2TC:
  47.  
  48.         #include <conio.h>
  49.         #include <myscreen.h>  /*  File containing image.  */
  50.  
  51.         main()
  52.         {
  53.           .
  54.           .
  55.           .
  56.           puttext(1,1,80,23,ScrData);
  57.           .
  58.           .
  59.           .
  60.         }
  61.  
  62.         Sample run of Scr2TC:
  63.  
  64. C>SCR2TC
  65. ==============================================================================
  66.          || Scr2TC - Released 08-23-1989 || Written by D. Biscuits. ||
  67.          ===-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-===
  68.                                      | v2.0 |
  69.                                      ========
  70.  
  71.   Converts files saved in various formats from TheDraw to a format recognized
  72.   by Turbo C.
  73.  
  74.   This program is released into the PD.
  75.   NOTE: Input and output files MUST be different.
  76.  
  77. Enter input file: TEST.H
  78. Enter output file: NEWTEST.H
  79.  
  80.   Choose a format to convert from:
  81.   1 - C format saved by TheDraw
  82.   2 - Binary format saved by TheDraw
  83.   3 - ANSI   <*** NOT YET AVAILABLE ***>
  84.           Any other key to exit.
  85.   -=> 1
  86. C>
  87.  
  88. End sample run.
  89.  
  90.  
  91.         --  Program History --
  92.                 Version 1: 08-15-1989
  93.                   Whipped up a small program in BASIC to read the C
  94.                   format file and convert it.  It was limited and VERY
  95.                   slow.  Re-wrote it in C, but still it was limited in
  96.                   the sense that the program required that the full
  97.                   screen be saved and the ImageData variable be 4000
  98.                   bytes in length.
  99.  
  100.                 Version 2: 08-23-1989
  101.                   Re-wrote the whole C format routine.  It will now
  102.                   properly convert screens that are other than the full
  103.                   screen size.
  104.                   Binary format added and debugged.
  105.    
  106.                      Scr2TC  written by Doggy B.
  107.  
  108.