home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 090.COLORING.DAT < prev    next >
Text File  |  1991-04-26  |  3KB  |  126 lines

  1. 'COLORING.DAT
  2. '============
  3. 'essentials as always
  4. INPUT,  see03.sc1
  5. OUTPUT, test.sc1
  6. DIR
  7.  
  8. 'Coloring is a big topic: here we'll discuss the elementary aspects
  9. 'of it.
  10.  
  11. 'Colors: there are 15 colors available to you in FS (sixteen, sort
  12. 'of) and in SEE they are coded by number:
  13. '  Code  Color
  14. '  ----  -----
  15. '  0     Black
  16. '  1     Dark Green
  17. '  2     Dark blue
  18. '  3     Light blue
  19. '  4     Orange
  20. '  5     Light Grey
  21. '  6     Royal blue
  22. '  7     Sky blue
  23. '  8     Khaki
  24. '  9     Yellow
  25. '  10    Dark Grey
  26. '  11    Light Green
  27. '  12    Red
  28. '  13    Gold
  29. '  14    White*
  30. '  15    White
  31.  
  32. 'If you want to change all the polygons that are colored red in
  33. 'the original scenery file to having a red color (still) during day
  34. 'and an orange color during dawn and dusk and a gold color at night
  35. 'here's how you do it with SEE:
  36.  
  37. 'first tell SEE to find the polygons that you are interested in
  38. '(the red ones) adjusting:
  39. FIND, COLOR, 12
  40. '(12 is the code for red from the table)
  41.  
  42. 'next we have to tell SEE what the new colors are to be:
  43. COLOR, 12, 4, 13
  44. '(12 = red @ day, 4 = orange @ dusk, 13 = gold @ night from the table)
  45.  
  46. 'finally we tell SEE that it's polygons we're interested in
  47. 'and we're done:
  48. POLY
  49.  
  50. 'now when you run SEE it will hunt up all the red polygons and give
  51. 'them the time dependent colors that you wanted.
  52.  
  53. 'The procedure is identical for rivers:
  54. FIND, COLOR, 12
  55. COLOR, 12, 4, 13
  56. 'except we use RIVER instead of POLY
  57. RIVER
  58.  
  59. 'The procedure is identical for lines too:
  60. FIND, COLOR, 12
  61. COLOR, 12, 4, 13
  62. 'except we use LINE
  63. LINE
  64.  
  65. 'Guess what about roads!  The same thing applies:
  66. FIND, COLOR, 12
  67. COLOR, 12, 4, 13
  68. 'except we use ROAD
  69. ROAD
  70.  
  71. 'So with these few instructions we've been able
  72. 'to give all red polygons; rivers; lines and roads
  73. 'new day; dusk; and night coloring.
  74.  
  75. 'However; it can get pretty tedious to have to do this for
  76. 'each of the 15 colors possible:
  77. 'Inside SEE is a Color Table which is actually like having an
  78. 'internal COLOR statement for each of the colors possible
  79. '(the table itself is shown at the end of this file).
  80.  
  81. 'So if you wanted to give all your polygons day/dusk/night
  82. 'coloring you would tell SEE:
  83. FIND, ALL
  84. POLY
  85.  
  86. 'and likewise:
  87. FIND, ALL
  88. RIVER
  89. FIND, ALL
  90. LINE
  91. FIND, ALL
  92. ROAD
  93.  
  94.  
  95.  
  96. 'OK; that's enough for this lesson. 
  97. SAVE
  98. END
  99.  
  100. Attached is a table representing SEE's internal color map (it can
  101. be thought of as a complete set of 16 COLOR commands).
  102.  
  103. By the way, if any element of this color map is not to your liking
  104. you may change it at any time by including the MAP command:
  105. MAP, day color code, dusk color code, night color code
  106.  
  107. 'color       day   dusk  night
  108. '---------   ---   ----  -----
  109. 'Black         0     13    0
  110. 'Dark Green    1     8     10
  111. 'Dark blue     2     2     10
  112. 'Light blue    3     6     2
  113. 'Orange        4     12    8
  114. 'Light Grey    5     10    0
  115. 'Royal blue    6     2     2
  116. 'Sky blue      7     6     2
  117. 'Khaki         8     10    0
  118. 'Yellow        9     13    8
  119. 'Dark Grey    10     10    0
  120. 'Light Green  11     1     8
  121. 'Red          12     4     5
  122. 'Gold         13     5     10
  123. 'White*       14     14    10
  124. 'White        15     14    5
  125.  
  126.