home *** CD-ROM | disk | FTP | other *** search
/ SMPD PC.1517: A86 Macro Assembler 3.22 / smpd_pc1517_a86_macro_asm.img / PIX.ZIP / PIXED.DOC < prev    next >
Text File  |  1994-03-11  |  7KB  |  190 lines

  1. Pixed - PIXel EDitor v1.5 copyright (C) 1994 Matias Nyrell
  2. -------------------------------------------------------------------------------
  3.  
  4. Introduction
  5. ------------
  6.     Pixed is a SHAREWARE software which means that you can copy it and give 
  7.     it away FREE to all your friends as long as you DON'T modify it or 
  8.     DON'T leave parts of it away(this DOC-file for an example). If you are
  9.     going to use this program regular or more than a month YOU HAVE TO
  10.     REGISTER, send 20 SEK(Sweden), £3(UK), or $4(US) to:
  11.                 Matias Nyrell
  12.                 Mossgatan 11
  13.                 S - 331 52 Värnamo
  14.                 SWEDEN
  15.  
  16.     When you register I send you(if you add a 3.5" disk and handling charge)
  17.     the latest version of Pixed and some other PD/SW software. I am working
  18.     on a SCREen EDITor - Screedit where you can edit the whole screen in
  19.     order to make a nice background to use in other programs, if I have a 
  20.     ready version when I get your registering money(and if you have added a 
  21.     3.5" disk and handling charge) I'll send you an unregistred copy of it.
  22.     If you've got any problems, questions, suggestions or if you've found a 
  23.     bug in the program then I want you to write a letter to me, I'd be very 
  24.     happy if you write in english or swedish.
  25.  
  26.  
  27. Technical information
  28. ---------------------
  29. Pixed v1.5 supports
  30.     * EGA - 640*350*16
  31.     * VGA - 640*400*256
  32.     * VGA - 640*480*256
  33.  
  34. How to get started
  35. ------------------
  36.     The first thing you should do, is to copy the ZIP file(PIX.ZIP) 
  37.     over to    your harddrive or wherever you want to install it.
  38.         Ex. copy a:\pix.zip c:\SUB\*.*
  39.  
  40.     "SUB" is the subdirectory where you want the program. You create
  41.     it by typing:
  42.         Ex. md SUB
  43.  
  44.     The next thing you have to do is to unpack it with "PKUNZIP".
  45.         Ex. pkunzip c:\SUB\pix.zip
  46.  
  47.     When you have done this, Pixed is ready to run. Move to the 
  48.     place where you put Pixed...
  49.         Ex. cd SUB
  50.  
  51.     ... and type 'pixed' to start. Pixed ask you wich graphic mode 
  52.     it should use. Press 'A', 'B' or 'C' to choose the mode that you 
  53.     prefer to use.
  54.  
  55. The menu
  56. --------
  57.     The menu are as follow:
  58.         LOAD PICTURE
  59.         SAVE PICTURE
  60.         CLEAR PICTURE
  61.         EDIT PICTURE
  62.         CHANGE PICTURE SIZE
  63.         EXIT
  64.     
  65.     To move around in the menu, use the up-arrowkey(8) and down-arrowkey
  66.     (2), to choose an item just move to it and press 'enter'. 
  67.     
  68.     LOAD PICTURE  -      Loads a saved picture from disk. The picture must
  69.             be in the same directory as you run Pixed from. If
  70.                    there is any problem please check your spelling.
  71.  
  72.     SAVE PICTURE  -   Saves the picture on active disk in active directory.
  73.                 The file name may not be larger than eight letters.
  74.  
  75.     CLEAR PICTURE -   Clears screen. N.B. If the picture not was saved
  76.             before you used this option it's lost forever.
  77.  
  78.     EDIT PICTURE  -   When you choose this option a cursor starts to blink
  79.             on the editpart of the screen. Move the cursor around
  80.             with the arrowkeys and light a pixel with active color
  81.             by pressing 'space'.
  82.               To Change color press + and -.
  83.             If you press F1 the color number de- or increases by 1.
  84.             If you press F2 the color number de- or increases by 5.
  85.             If you press F3 the color number de- or increases by 10
  86.               The F4 key activate "auto drawing", which means that
  87.             you don't need to press 'space' every time you want to
  88.             light a pixel, the only thing you need to do is to
  89.             move the cursor around. To deactivate 'auto drawing'
  90.             just press F4 again.
  91.     CHANGE 
  92.     PICTURE SIZE  -   This option lets you change the size on the picture.
  93.             The maximal size is 30*30 pixel, and the minimum size
  94.             is 1*1(wonder if anyone's going to use this one?).
  95.                 NOTE!!! When you are going to change the
  96.                     picture size below ten(10) you must
  97.                     write the number with a zero before it.
  98.                           ex. 01, 04, 09, 06
  99.                       NOT 1, 4, 9, 06
  100.                     I realy apologize for this bug and i 
  101.                     promise to correct this in the next
  102.                     version(I didn't have time to fix it 
  103.                     this time).
  104.                     
  105.  
  106.     EXIT          -   Exit to DOS(what did you thought?).
  107.  
  108. How to use pictures in programs
  109. -------------------------------
  110.     Well the first thing that you should know about is how Pixed saves
  111.     a picture file(PIC). This is very simple, just take a look at this
  112.     example(a happy face, the same as FACE.PIC):
  113.         8    (The length of the horizontal side, X)
  114.         8    (The length of the vertical side, Y)
  115.         0    (The color of first pixel(X=0, Y=0)
  116.         14    (The color of pixel(1, 0))
  117.         14      (The color of pixel(2, 0))
  118.                 14      (The color of pixel(3, 0))
  119.                   14      (The color of pixel(4, 0))
  120.         14      (The color of pixel(5, 0))
  121.         14      (The color of pixel(6, 0))
  122.         0       (The color of pixel(7, 0))
  123.         14      (The color of pixel(0, 1))        
  124.         14      (The color of pixel(1, 1))
  125.         14      (The color of pixel(2, 1))        
  126.         14      (The color of pixel(3, 1))
  127.         14      (The color of pixel(4, 1))
  128.         14      (The color of pixel(5, 1))
  129.         14      (The color of pixel(6, 1))
  130.         14      (The color of pixel(7, 1))
  131.         14      (The color of pixel(0, 2))
  132.         7       (The color of pixel(1, 2))
  133.         7       (The color of pixel(2, 2))
  134.         14      (The color of pixel(3, 2))
  135.         14      (The color of pixel(4, 2))
  136.         7       (The color of pixel(5, 2))
  137.         7       (The color of pixel(6, 2))
  138.         14      (The color of pixel(7, 2))
  139.         14      (The color of pixel(0, 3))
  140.         7       (The color of pixel(1, 3))
  141.         9       (The color of pixel(2, 3))
  142.         14      (The color of pixel(3, 3))
  143.         14      (The color of pixel(4, 3))
  144.         9       (The color of pixel(5, 3))
  145.         7       (The color of pixel(6, 3))
  146.         14      (The color of pixel(7, 3))
  147.         14      (The color of pixel(0, 4))
  148.         14      (The color of pixel(1, 4))
  149.         14      (The color of pixel(2, 4))
  150.         14      (The color of pixel(3, 4))
  151.         14      (The color of pixel(4, 4))
  152.         14      (The color of pixel(5, 4))
  153.         14
  154.         14        And so on
  155.         14
  156.         14
  157.         12
  158.         14
  159.         14
  160.         12
  161.         14
  162.         14
  163.         14
  164.         14    
  165.         14
  166.         12
  167.         12
  168.         14
  169.         14
  170.         14
  171.         0
  172.         
  173.     The first digit is the length of the horizontal side, the X side.
  174.     The second digit is the length of the vertical side, the Y side.
  175.     The other digits is color numbers beginning at the upper left going
  176.     to the right(as a book). If you want more detailed info take a look
  177.     att the DEMO01.PAS file, it's a Turbo pascal source file but there
  178.     are a lot of comments in it so it shouldn't be to hard to understand
  179.     for everyone.
  180.  
  181. Outroduction
  182. ------------
  183.       Pixed v1.5 was written in Turbo Pascal 6.0 from Borland International,
  184.     and I really recommend this language to everyone.
  185.       At last I want to remind you to register if you are using my 
  186.     program(PLEASE!!!), see the 'Introduction' for further information.
  187.  
  188.  
  189.  
  190.                     Matias Nyrell