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

  1. 'LIGHTS.DAT
  2. '==========
  3. 'essentials as always
  4. INPUT,  see03.sc1
  5. OUTPUT, test.sc1
  6. DIR
  7.  
  8. 'Here we'll discuss the elementary aspects of sticking lights in
  9. 'your scenery.  First we cover road lighting:
  10.  
  11. 'From the coloring  discussion we learned among other things how to
  12. 'add dusk/night coloring to roads and lines.  Reviewing this:
  13.  
  14. FIND, COLOR, 12         
  15. COLOR, 12, 4, 13       
  16. LINE                   
  17.  
  18. FIND, COLOR, 12      
  19. COLOR, 12, 4, 13      
  20. ROAD                 
  21.  
  22. 'But now let's say we wanted the roads (or lines that represent roads)
  23. 'to show up as lights at night.  We can add a command to do this:
  24.  
  25. LIGHTS
  26. COLOR, 5, 10, 0
  27. FIND, COLOR, 5
  28. ROAD
  29.  
  30. 'This tells SEE to locate all light gray (color code = 5) roads
  31. 'and give them dusk colors but instead of the night color rendition
  32. 'depict these roads as a string of yellow lights (the night color
  33. 'code doesn't apply here and can be anything) at night. If the
  34. 'you want the lights to be a different color you may change it
  35. 'using the LIGHTCOLOR command.
  36.  
  37. 'Lines work the same way:
  38.  
  39. LIGHTS
  40. LIGHTCOLOR,4
  41. FIND, COLOR, 0
  42. COLOR, 15, 5, 10
  43. LINE
  44.  
  45. 'This converts all black lines into white lines at day;
  46. 'light gray lines at dusk; and orange lights at night.
  47.  
  48. 'If you leave out the COLOR statement then the dusk color will
  49. 'be set according to the current settings in the color map.
  50. LIGHTS
  51. FIND, COLOR, 3
  52. LINE
  53.  
  54. 'You may control the spacing between lights using the DOTS
  55. 'command (larger values mean larger spaces -- experiment!):
  56.  
  57. DOTS,300
  58. FIND, COLOR, 10
  59. LIGHTS
  60. ROAD
  61.  
  62.  
  63. 'Runway and taxiway lighting
  64. 'But remember that lines will not show through runways so another
  65. 'twist to this procedure is required to do runway lighting and
  66. 'taxiways.  Draw your lines where you want them (down the center
  67. 'of a runway, for example) using ASD.  The will of course immediately
  68. 'disappear upon exiting the editor; covered by the runway (but they
  69. 'are there).  Then do the following in your DAT file:
  70.  
  71. COLOR, 9, 9, 9
  72. FIND, COLOR, 9
  73. TAXI
  74.  
  75. '(This isn't part of the lesson but it helps to darken the runway
  76. 'at non-day to see the lights; so here's how:)
  77. FIND, ALL
  78. RUNWAY
  79.  
  80. 'Tip: if you don't want your lights to show at all during the day
  81. 'when using TAXI just add the command
  82. DAYOFF
  83. 'and you'll just get the lights at dusk and night
  84. COLOR, 6, 6, 6
  85. FIND, COLOR, 6
  86. TAXI
  87.  
  88.  
  89. 'OK; that's enough for this lesson. 
  90. SAVE
  91. END
  92.  
  93. Discussion:  SEE will normally only alter something once.  Therefore if
  94. your first set of commands changes ALL the lines to have dusk and night
  95. colors, you are not going to be able to then change all the blue lines to
  96. taxiway lights (because as far as SEE's concerned there are no longer
  97. 'any (pure) blue lines to change.  So the moral of this story is that you
  98. must do the most specific changes first before doing the general ones.
  99.  
  100.