home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l170 / 3.ddi / TORUS.BAS (.txt) < prev   
Encoding:
QuickBASIC Tokenized Source  |  1991-01-28  |  26.8 KB  |  396 lines

  1. @    GetConfig
  2. SetPalette
  3. TorusDefine
  4. @    TorusCalc
  5. TorusColor
  6. @    TorusSort
  7. HighE
  8. @    TorusDraw
  9. Index9
  10. TileDraw
  11. TorusRotate
  12. First+
  13. Delay"
  14. Seconds
  15. CountTiles9
  16. Message`
  17. @    SetConfig
  18. Inside$
  19. DegToRad)
  20. Degrees
  21. Rotated
  22. Lower
  23. Upper
  24. Current
  25. FALSEK
  26. TROWi
  27. START3
  28. CONTINUE
  29. EGA256
  30. EGA64]
  31. HERCu
  32. TColor
  33. ConfigP
  34. Colors
  35. Atribs6
  36. XPix{
  37. TORUS
  38. Panel
  39. SectC
  40. Thick
  41. XDegree
  42. YDegree
  43. Bordj
  44. InitRowsN
  45. BestMode
  46.     Available
  47.     TOR.Thick
  48.     TOR.Panel
  49. TOR.XDegreek
  50. VC.Scrn
  51. MemErrY
  52. VideoErr
  53. EGAErr
  54. TOR.Sect
  55. RowErrq
  56. Begin
  57. Highest
  58. Lowest
  59. Border
  60. T.xcC
  61. IsUp_
  62. IsDown 
  63.     VC.Colors
  64.     VC.Atribs8
  65. VC.XPix
  66. VC.YPix
  67. VC.TCOL
  68. VC.TROW
  69. XSect
  70. YPanel
  71. CXRot
  72. SXRot
  73. CYRotI
  74. SYRot>
  75. XInc'
  76. FirstY
  77. LastAtr
  78. ENTER
  79. ESCAPE{
  80.     DOWNARROW
  81. UPARROWl
  82.     LEFTARROW
  83. RIGHTARROW
  84. Fields
  85. TOR.YDegree
  86. TOR.Bord
  87.     TOR.Delay
  88. FirstClr
  89. LastClr
  90. Toggle
  91.     Partition
  92.     RandIndex
  93.   TORUS
  94.    This program draws a Torus figure. The program accepts user input
  95.    to specify various TORUS parameters. It checks the current system
  96.    configuration and takes appropriate action to set the best possible
  97.    initial mode.
  98.  General purpose constants
  99.  Rotation flagse
  100.  Constants for best available screen mode=
  101.  User-defined type for tiles - an array of these make a torus=
  102.  User-defined type to hold information about the mode 
  103.  User-defined type to hold information about current Torus
  104.  A palette of colors to paint with
  105.  Error variables to check screen typen
  106.  The code of the module-level program begins heree
  107.  Initialize defaults
  108.  Get best configuration and set initial graphics mode to it
  109.  Loop forever (exit is from within a SUB)m
  110.  Get Torus definition from userf
  111.  Dynamically dimension arrayse
  112.  Array for indexes
  113.  Turn on error trap for insufficient memorya
  114.  Array for tiles
  115.  Initialize array of indexes
  116.  Calculate the points of each tile on the torusB
  117. Calculating"a
  118.  Color each tile in the torus.
  119.  Sort the tiles by their "distance" from the screen
  120. Sorting"a
  121.  Set the screen mode
  122.  Mix a palette of colors
  123.  Set logical window with variable thicknesse
  124.  Center is 0, up and right are positive, down and left are negative=
  125.            
  126.  QUICK BASIC 
  127.  Draw and paint the tiles, the farthest first and nearest last
  128.  Rotate the torus by rotating the color paletten
  129.  Restore original rows
  130.  Error trap to make torus screen independent
  131.  Fall through until something workst
  132. 12789"
  133. Sorry. Graphics not available. Can't run Torus."
  134.  Trap to detect 64K EGAa
  135. 12789"
  136.  Trap to detect insufficient memory for large Toruse
  137. Out of memory"
  138. Reducing panels from
  139. Reducing sections from
  140.  Trap to determine initial number of rows so they can be restoredv
  141. GetConfig
  142. = GetConfig 
  143.    Get the starting number of lines and the video adapter.
  144.  Assume 50 line display and fall through error
  145.  until we get the actual numberl
  146.  Assume best possible screen mode
  147. 12789BCD
  148.  Fall through error trap until a mode worksr
  149.  If EGA, then check pages to see whether more than 64K
  150.  Reset text mode
  151. SetPalette
  152. = SetPalette 
  153.    Mixes palette colors in an array.
  154.  Mix only if the adapter supports color attributes
  155.  Red, green, blue, and intense in four bits of a byten
  156.  Bits: 
  157. 0irgb
  158.  Change the order of FOR loops to change color mix
  159.  EGA red, green, and blue colors in 6 bits of a byte
  160.  Capital letters repesent intense, lowercase normale
  161.  Bits:  00rgbRGB
  162.  Change the order of FOR loops to change color mix
  163.  VGA colors in 6 bits of 3 bytes of a long integer
  164.  Bits:  
  165.     0 00
  166.  Change the order of FOR loops to change color mix
  167.  Decrease the STEP and increase VC.Colors to get more colors
  168.  Assign colors
  169. TorusDefine
  170. = TorusDefine 
  171.    Define the attributes of a Torus based on information from thet
  172.    user, the video configuration, and the current screen mode.
  173.  Constants for key codes and column positionsr
  174.  Display key instructions
  175. UP .............. Move to next field
  176. DOWN ........ Move to previous field
  177. LEFT ......... Rotate field value up
  178. RIGHT ...... Rotate field value down
  179. ENTER .... Start with current values
  180. ESCAPE .................. Quit Torus
  181.  Block cursor.
  182.  Display fields
  183. Thickness"
  184. [ # ]"(
  185. Panels per Section
  186. [ ## ](
  187. Sections per Torus
  188. [ ## ](
  189. Tilt around Horizontal Axis"
  190. [ ### ]"(
  191. Tilt around Vertical Axis"
  192. [ ### ]"(
  193. Tile Border"
  194. [ & ] (
  195. Screen Mode"
  196. [ ## ](
  197.  Skip field 10 if there's only one value
  198.  Update field values and position based on keystrokes
  199.  Put cursor on field
  200.  Get a key and strip null off if it's an extended code
  201.  End program
  202.  Adjust field location
  203.  Adjust field
  204.  Thickness
  205.  Panels
  206.  Sections
  207.  Horizontal tilt
  208. ###"(
  209.  Vertical tilt
  210. ###"(
  211.  Border
  212. YES",
  213.  Available screen modes
  214.  Set configuration data for graphics mode
  215.  Draw Torus if ENTER
  216.  Remove cursor
  217.  Set different delays depending on moded
  218.  Get new random seed for this torusm
  219. TorusCalc
  220. = TorusCalc 
  221.    Calculates the x and y coordinates for each tile.
  222.  Calculate sine and cosine of the angles of rotation
  223.  Calculate the angle to increment between one tile and the next.
  224.  First calculate the first point, which will be used as a referencei
  225.  for future points. This point must be calculated separately because
  226.  it is both the beginning and the end of the center seam.e
  227.  Starting point is x1 of 0 section, 0 panel
  228.  last
  229.  Also x2 of tile on last section, 0 panel   ' |
  230.  | last
  231.  x3|x4
  232.  Also x3 of last section, last panel
  233.  x2|x1
  234.  |  0'
  235.  Also x4 of 0 section, last panel
  236.  A similar pattern is used for assigning all points of Torus
  237.  Starting Y point is 0 (center)a
  238.  Only one z coordinate is used in sort, so other three can be ignored
  239.  Starting at first point, work around the center seam of the Torus.e
  240.  Assign points for each section. The seam must be calculated separately
  241.  because it is both beginning and of each section.
  242.  X, Y, and Z elements of equation 
  243.  Now start at the first seam between panel and assign points for
  244.  each section of each panel. The outer loop assigns the initialr
  245.  point for the panel. This point must be calculated separately
  246.  since it is both the beginning and the end of the seam of panels.
  247.  X, Y, and Z elements of equationn
  248.  Assign X points for each panel
  249.  Current ring, current sidea
  250.  Current ring minus 1, next side
  251.  Current ring minus 1, previous side
  252.  Current ring, previous side
  253.  Assign Y points for each panel
  254.  Z point for each panel
  255.  The inner loop assigns points for each ring (except the first)
  256.  on the current side.n
  257.  Display section and panel
  258.  Erase message
  259. TorusColor
  260. = TorusColor 
  261.    Assigns color atributes to each tile.
  262.  Skip first and last atributes
  263.  Cycle through each attribute until all tiles are done
  264. TorusSort
  265. = TorusSort 
  266.    Sorts the tiles of the Torus according to their Z axis (distancet
  267.    from the "front" of the screen). When the tiles are drawn, thec
  268.    farthest will be drawn first, and nearer tiles will overwrite them
  269.    to give a three-dimensional effect.
  270.    To make sorting as fast as possible, the Quick Sort algorithm ise
  271.    used. Also, the array of tiles is not actually sorted. Instead ae
  272.    parallel array of tile indexes is sorted. This complicates things,
  273.    but makes the sort much faster, since two-byte integers are swapped
  274.    instead of 46-byte Tile variables.n
  275.  If only one, compare and swap if necessarys
  276.  The SUB procedure only stops recursing when it reaches this point
  277.  If more than one, separate into two random groups
  278.  Sort one group
  279.  Find the largest
  280.  Find the smallest
  281.  Swap them if necessary
  282.  Now get the other group and recursively sort it
  283. TorusDraw
  284. = TorusDraw 
  285.    Draws each tile of the torus starting with the farthest and working
  286.    to the closest. Thus nearer tiles overwrite farther tiles to give
  287.    a three-dimensional effect. Notice that the index of the tile being
  288.    drawn is actually the index of an array of indexes. This is because
  289.    the array of tiles is not sorted, but the parallel array of indexes
  290.    is. See TorusSort for an explanation of how indexes are sorted.
  291. TileDraw
  292. = TileDraw 
  293.    Draw and optionally paint a tile. Tiles are painted if there are
  294.    more than two atributes and if the inside of the tile can be found.
  295. Set border
  296.  Draw and quit for two-color modes
  297.  For other modes, draw in the border color
  298.  (which must be different than any tile color)
  299.  See if tile is large enough to be painted
  300. Black out the center to make sure it isn't paint color
  301.  Paint tile black so colors of underlying tiles can't interfereT
  302.  Fill with the final tile color.
  303.  A border drawn with the background color looks like a border.
  304.  One drawn with the tile color doesn't look like a border.
  305. YES",
  306.  Redraw with the final borderr
  307. TorusRotate
  308. = TorusRotate 
  309.    Rotates the Torus. This can be done more successfully in some modes
  310.    than in others. There are three methods: 
  311.  1. Rotate the palette colors assigned to each attribute
  312.  2. Draw, erase, and redraw the torus (two-color modes)e
  313.  3. Rotate between two palettes (CGA and MCGA screen 1)e
  314.    Note that for EGA and VGA screen 2, methods 1 and 2 are both used.s
  315.  For EGA and higher rotate colors through palette 
  316.  Argument determines whether to start at next color, first color,e
  317.  or random color
  318.  Set last color to smaller of last possible color or last tile
  319.  If color is too low, rotate to endp
  320.  Set last attribute
  321.  Last for two-color modes
  322.  Smaller of last color or next-to-last attribute
  323.  Cycle through attributes, assigning colorsi
  324.  For two-color screens, the best we can do is erase and redraw the torus
  325.  Set all tiles to color 
  326.  Draw Torus
  327.  Toggle between color and background
  328.  For CGA or MCGA screen 1, toggle palettes using the COLOR statement
  329.  (these modes do not allow the PALETTE statement)t
  330. Delay
  331. = Delay 
  332.    Delay based on time so that wait will be the same on any processor.
  333.    Notice the check for negative numbers so that the delay won't
  334.    freeze at midnight when the delay could become negative.w
  335. CountTiles
  336. = CountTiles 
  337.    Displays number of the tiles currently being calculated or sorted.
  338.  Erase previous 
  339.  If positive, display - give negative values to erase 
  340. Tile "
  341.  ###(
  342.  ###(
  343. Message
  344. = Message 
  345.    Displays a status message followed by blinking dots.
  346.  White
  347.  Blink
  348.  . . .
  349.  White
  350. SetConfig
  351. = SetConfig 
  352.    Sets the correct values for each field of the VC variable. They
  353.    vary depending on Mode and on the current configuration.e
  354.  Four-color graphics for CGA, EGA, VGA, and MCGA
  355.  Two-color medium-res graphics for CGA, EGA, VGA, and MCGA
  356.  Two-color high-res graphics for HerculesG
  357.  16-color medium-res graphics for EGA and VGAV
  358.  16-color high-res graphics for EGA and VGAG
  359.  16- or 4-color very high-res graphics for EGA and VGA
  360.  Two-color high-res graphics for EGA or VGA monochrome
  361.  Two-color very high-res graphics for VGA and MCGA
  362.  Note that for VGA screens 11, 12, and 13, more colors are
  363.  available, depending on how the colors are mixed.
  364.  16-color very high-res graphics for VGA
  365.  256-color medium-res graphics for VGA and MCGAs
  366. Inside
  367. = Inside 
  368.    Finds a point, T.xc and T.yc, that is mathematically within a tile.
  369.    Then check to see if the point is actually inside. Because of the
  370.    jagged edges of tiles, the center point is often actually insidee
  371.    very thin tiles. Such tiles will not be painted, This causess
  372.    imperfections that are often visible at the edge of the Torus.
  373.    Return FALSE if a center point is not found inside a tile.r
  374.  Find an inside point. Since some tiles are triangles, the
  375.  diagonal center isn't good enough. Instead find the center
  376.  by drawing a diagonal from the center of the outside to
  377.  a bottom corner.g
  378.  If we're on a border, no need to fill
  379.  Find highest and lowest Y on the tile
  380.  Convert coordinates to pixels
  381.  Search for top and bottom tile borders until we either find them
  382.  both, or check beyond the highest and lowest points.e
  383.  Search up
  384.  Search down
  385.  If top and bottom are found, we're inside
  386. DegToRad
  387. = DegToRad 
  388.    Convert degrees to radians, since BASIC trigonometric functions
  389.    require radians.t
  390. Rotated
  391. = Rotated 
  392.    Returns the Current value adjusted by Inc and rotated if necessaryk
  393.    so that it falls within the range of Lower and Upper.
  394.  Calculate the next value 
  395.  Handle special cases of rotating off top or bottome
  396.