home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / graphics / fx_bzprg / fx_bz.asc next >
Text File  |  1988-08-02  |  3KB  |  63 lines

  1. FX_BZ     -  Versatile computer graphics generator.
  2.              Written by Beat Zenerino using GFA Basic all the way
  3.              and put in PD.
  4.              This program runs in low and high resolution! 
  5.      
  6.      When you first load the program you will see the start up screen
  7. where you can adjust different parameters.  The graphics are generated 
  8. on a second screen (a la DEGAS) and you can flip between screens by 
  9. clicking the right mouse button.  Go ahead, click my day.  The return
  10. key works just the same.
  11.      
  12.      The program will generate three types of graphics LINES, SQUARES
  13. and FILLED SQUARES (Pbox), which of course are selected by clicking 
  14. on the matching field until it is highlighted (which should happen 
  15. instantly if your lucky).  
  16.  
  17.      All of the graphics are basically generated the same way, by 
  18. drawing figures between two selected points X1,Y1 and X2,Y2.
  19.  
  20.                                X1
  21.            X1             -------- Y1
  22.            / Y1           |      |
  23.           /               |      |    
  24.          /                |      |
  25.      X2 /              X2 --------  
  26.        Y2                 Y2
  27.  
  28.      Each one of those four coordinates is incremented by a randomly
  29. generated number until it hits the end of the screen where it turns 
  30. direction and gets a new random number.  The two parameters next to 
  31. each of the coordinates (X1,Y1,X2,Y2) determine the range of the 
  32. random numbers. The first field sets to lowest number it will 
  33. generate.  By adding the second field to the first you will get 
  34. the highest number generated.
  35.  
  36. i.e.:     20,30  ;This will create random numbers between 20 and 50
  37.           0,100  ;                   "                    0 and 100  
  38.           50,0   ;This is a special case, where it always is 
  39.                   incremented by 50
  40.  
  41.      Any of the other parameters should by self explanatory (if not, 
  42. too bad).  In some of the generated graphics the different graphmodes 
  43. don't seem to do anything which is quite okay because thats just how 
  44. the machine works.  Following are some different settings I came up 
  45. with, but there should be hundreds, thousands?, no millions of 
  46. possibilities.
  47.  
  48.         X1    ; 2, 2            ; 48, 0
  49.         Y1    ; 2, 2            ; 30, 0
  50.         X2    ; 223, 2          ; 48, 0
  51.         Y2    ; 211, 2          ; 30, 0
  52.         GRAPH ; 3, 2            ; 3, 3
  53.         TRAIL ; 13              ; 10
  54.                 LINES             LINES
  55.  
  56.         HAVE FUN!
  57.  
  58.         I can currently be reached on DELPHI as BEATZ.
  59.  
  60.  
  61.  
  62.  
  63.