start_ko.cel
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:16k
源码类别:

OpenGL

开发平台:

Visual C++

  1. {
  2. # ... 스크립트 시작
  3. #****************************************************************************
  4. #                                                                           *
  5. #                 START.CEL - 셀레스티아 시작 스크립트                      *
  6. #                          (version 2.1 한국어버전)                         *
  7. #                                                                           *
  8. #---------------------------------------------------------------------------*
  9. #                                                                           *
  10. #  이 스크립트는 셀레스티아 시작시 자동으로 로드됩니다.                     *
  11. #                                                                           *
  12. #  주의: 첫 번째 행과 마지막 행에 있는 중괄호 "{"와 "}"는 삭제하지 마시오.  *
  13. #        이 파일이 CEL 스크립트라고 명시하고 있습니다.                      *
  14. #                                                                           *
  15. #  필요에 따라 원하는데로 스크립트를 정의할 수 있습니다. 밑에 사용 할 명령  *
  16. #  행의 주석(#)을 삭제하여 쉽게 사용할수 있습니다.                          *
  17. #                                                                           *
  18. #  스크립트를 수정할 경우 나중에 참조를 위하여 원본을 복사해 두시기 바랍니If*
  19. #  다.                                                                      *
  20. #                                                                           *
  21. #****************************************************************************
  22.   preloadtex { object "Sol/Earth" }
  23.   preloadtex { object "Sol/Earth/Moon" }
  24.   select {object "Sol"}
  25.   goto   {time 3.0 distance 30}
  26.   wait   {duration 3.0}
  27.   select {object "Sol/Earth"}
  28.   follow {}
  29.   goto   {time 3.0  distance 6.0}
  30.   wait   {duration 2.0}
  31.   print  {text "셀레스티아를 시작합니다!"  row -3  column 1  duration 3}
  32.   wait   {duration 3.0}
  33. #****************************************************************************
  34. #  The lines of code above are the entire start.cel script. Below, is a     *
  35. #  description of what each command does. We go to Sol first, so that when  *
  36. #  we go to Earth, it will be displaying it's sunny side, regardless of     *
  37. #  what your local time might be...                                         *
  38. #                                                                           *
  39. #  preloadtex: Tells Celestia to load the textures for the named object.    *
  40. #          Otherwise Celestia would load the texture when the object        *
  41. #          comes into view, which would be noticeable as a small delay.     *
  42. #                                                                           *
  43. #  select: Tells Celestia what object (planet, moon, spacecraft, etc.) to   *
  44. #          define as the currently selected object. Sol defines our solar   *
  45. #          system, the "/" character is merely a hierarchy divider, Earth   *
  46. #          is the object we want to select. If you wanted to select our     *
  47. #          Moon, the select command would look like the following:          *
  48. #            select {object "Sol/Earth/Moon"}                               *
  49. #                                                                           *
  50. #  goto:   Tells Celestia to travel to the currently selected object, just  *
  51. #          like pressing the "G" key on the keyboard. The time parameter    *
  52. #          defines how many seconds it should take to travel there. The     *
  53. #          distance parameter defines how far away from the object to be    *
  54. #          positioned, in units of the object's radius, plus 1. For         *
  55. #          example, if the object's radius is 10000 km, and you specify     *
  56. #          6.0 for distance, you will be positioned 50000 km from the       *
  57. #          center of the object.                                            *
  58. #                                                                           *
  59. #  wait:   Since the goto command is telling Celestia to take some time to  *
  60. #          do something, we need to give Celestia that same amount of time  *
  61. #          to actually DO it. When going to Sol, the wait command tells     *
  62. #          Celestia to wait for 3 seconds while the goto takes place (for   *
  63. #          3 seconds). The duration parameter value is normally the same    *
  64. #          as the time parameter in the goto command. However, there are    *
  65. #          always exceptions (grin).                                        *
  66. #                                                                           *
  67. #          When we are going to Earth, the wait command after the goto,     *
  68. #          waits for only 2 seconds. The next command is a print command,   *
  69. #          which displays some text on the screen and has another wait      *
  70. #          command after it, that waits for another 3 seconds. It's all     *
  71. #          just a matter of timing. The goto command allows us to display   *
  72. #          some text on-screen WHILE it is executing. So, we simply make    *
  73. #          sure that the total number of wait duration values, listed       *
  74. #          after a goto, adds up to AT LEAST the time value specified in    *
  75. #          the goto command. It can be longer, if desired.                  *
  76. #                                                                           *
  77. #  follow: Tells Celestia to follow the selected object through space,      *
  78. #          just like pressing the "F" key on the keyboard. You could        *
  79. #          replace the follow {} command with synchronous {}, which allows  *
  80. #          you to remain in a stationary, or geosynchronous orbit above     *
  81. #          the selected object.                                             *
  82. #                                                                           *
  83. #   print: Tells Celestia to display (print) some text on the screen. The   *
  84. #          text parameter defines the text to be displayed. The row         *
  85. #          parameter defines how many rows from the bottom of the window to *
  86. #          start displaying the text at. The column parameter defines how   *
  87. #          many columns from the left edge of the window to start           *
  88. #          displaying the text. The duration parameter defines how many     *
  89. #          seconds the text should be displayed on the screen. Which is     *
  90. #          then followed by the wait command, as described above.           *
  91. #****************************************************************************
  92. #****************************************************************************
  93. #  If you want to be positioned above YOUR specific location on Earth, use  *
  94. #  the gotolonglat command shown below. Step-by-step instructions...        *
  95. #                                                                           *
  96. #  * Copy the entire line of code.                                          *
  97. #                                                                           *
  98. #  * Paste it below the "goto" command above.                               *
  99. #                                                                           *
  100. #  * Remove the "#" character at the beginning of the line. This UNcomments *
  101. #    the line of code so it will be executed.                               *
  102. #                                                                           *
  103. #  * Add a "#" character to the beginning of the original goto command.     *
  104. #    This turns the line of code into a comment, so it will NOT be run.     *
  105. #                                                                           *
  106. #  * Change the longitude and latitude values to those of your location.    *
  107. #                                                                           *
  108. #  * Since you are going to a specific position on the Earth, it might not  *
  109. #    be daytime there, so you could comment-out the following lines of      *
  110. #    code by adding a "#" character to the beginning of each line...        *
  111. #      select {object "Sol"}                                                *
  112. #      goto   {time 3.0 distance 30}                                        *
  113. #      wait   {duration 3.0}                                                *
  114. #    If you WANT to display your location in the daytime, use the time      *
  115. #    command described next.                                                *
  116. #****************************************************************************
  117. #  gotolonglat {time 5.0  distance 4.0  longitude 0.0  latitude 0.0}
  118. #****************************************************************************
  119. #  If you would like Celestia to always start at a specific date/time, use  *
  120. #  the time command, as shown below.                                        *
  121. #                                                                           *
  122. #  WARNING: Starting Celestia with a pre-determined date/time requires that *
  123. #           you physically press the "!" (exclamation mark) key in order to *
  124. #           RESET the time to "current time", whenever you want to do some  *
  125. #           exploring -- IF the actual time makes a difference.             *
  126. #                                                                           *
  127. #  Step-by-step instructions...                                             *
  128. #                                                                           *
  129. #  * Determine if you want to set the date via a calendar UTC date/time     *
  130. #    string, or a Julian day (see below).                                   *
  131. #                                                                           *
  132. #  * Copy the one line of code with the time command you want to use.       *
  133. #                                                                           *
  134. #  * Paste it above the "goto" command above (top of file).                 *
  135. #                                                                           *
  136. #  * Remove the "#" character at the beginning of the line. This UNcomments *
  137. #    the line of code so it will be executed.                               *
  138. #                                                                           *
  139. #  * Change the date/time value to YOUR required date/time.                 *
  140. #****************************************************************************
  141. # Set the time via a calendar UTC date/time string...
  142. #  time { utc "2003-08-11T09:29:24.0000" }
  143. #              YYYY-MM-DDTHH:MM:SS.SSSS
  144. #  Note the "T" .........^ ... (this is required)
  145. # Set the time via a Julian day value...
  146. #  time { jd JulianDate }
  147. #    U.S. Navy Calendar Date/Time to Julian Date/Time converter:
  148. #    http://aa.usno.navy.mil/data/docs/JulianDate.html
  149. #****************************************************************************
  150. #  The commands listed below allow you to define several of Celestia's      *
  151. #  settings, that will be set every time you start Celestia. Modify any of  *
  152. #  the settings you want to.                                                *
  153. #****************************************************************************
  154. # Field of View (UNcomment / modify to meet your needs)...
  155. # Default is 25 degrees, at a screen resolution of 1024 x 768
  156. #  set {name "FOV" value 25.0}
  157. # Ambient light level (UNcomment / modify to meet your needs)...
  158. # 0.0 to 0.5 is a good Lo-Hi range
  159. #  set {name "AmbientLightLevel" value 0.1}
  160. # Faintest visible star magnitude (brightness)...
  161. # (UNcomment / modify to meet your needs)
  162. # Celestia UI: 0.8 to 15.2, default is 6.0
  163. #
  164. #  setvisibilitylimit {magnitude 6.0}
  165. # Faintest auto-magnitude brightness, at 45 degrees, Default is 8.5...
  166. # (UNcomment / modify to meet your needs)
  167. #  setfaintestautomag45deg {magnitude 8.5}
  168. # Items to be displayed (rendered):
  169. # Do NOT render the following objects (UNcomment to suit your needs)...
  170. #  renderflags {clear "atmospheres"}
  171. #  renderflags {clear "automag"}
  172. #  renderflags {clear "boundaries"}
  173. #  renderflags {clear "cloudmaps"}
  174. #  renderflags {clear "comettails"}
  175. #  renderflags {clear "constellations"}
  176. #  renderflags {clear "eclipseshadows"}
  177. #  renderflags {clear "galaxies"}
  178. #  renderflags {clear "nebulae"}
  179. #  renderflags {clear "grid"}
  180. #  renderflags {clear "markers"}
  181. #  renderflags {clear "nightmaps"}
  182. #  renderflags {clear "orbits"}
  183. #  renderflags {clear "planets"}
  184. #  renderflags {clear "pointstars"}
  185. #  renderflags {clear "ringshadows"}
  186. #  renderflags {clear "stars"}
  187. #  renderflags {clear "partialtrajectories"}
  188. # Items to be displayed (rendered):
  189. # DO render the following objects (UNcomment to suit your needs)...
  190. #  renderflags {set "atmospheres"}
  191. #  renderflags {set "automag"}
  192. #  renderflags {set "boundaries"}
  193. #  renderflags {set "cloudmaps"}
  194. #  renderflags {set "comettails"}
  195. #  renderflags {set "constellations"}
  196. #  renderflags {set "eclipseshadows"}
  197. #  renderflags {set "galaxies"}
  198. #  renderflags {set "nebulae"}
  199. #  renderflags {set "grid"}
  200. #  renderflags {set "markers"}
  201. #  renderflags {set "nightmaps"}
  202. #  renderflags {set "orbits"}
  203. #  renderflags {set "planets"}
  204. #  renderflags {set "pointstars"}
  205. #  renderflags {set "ringshadows"}
  206. #  renderflags {set "stars"}
  207. #  renderflags {set "partialtrajectories"}
  208. # Text labels:
  209. # Do NOT label the following objects (UNcomment to suit your needs)...
  210. #  labels {clear "asteroids"}
  211. #  labels {clear "constellations"}
  212. #  labels {clear "galaxies"}
  213. #  labels {clear "moons"}
  214. #  labels {clear "planets"}
  215. #  labels {clear "spacecraft"}
  216. #  labels {clear "stars"}
  217. # Text labels:
  218. # DO label the following objects (UNcomment to suit your needs)...
  219. #  labels {set "asteroids"}
  220. #  labels {set "constellations"}
  221. #  labels {set "galaxies"}
  222. #  labels {set "moons"}
  223. #  labels {set "planets"}
  224. #  labels {set "spacecraft"}
  225. #  labels {set "stars"}
  226. # Marker control:
  227. # Unmark any objects that are currently Marked and disable Marker display...
  228. # (UNcomment to suit your needs)
  229. #  unmarkall { }
  230. # Minimum orbit diameter to be rendered (in pixels)...
  231. # (UNcomment / modify  to suit your needs)
  232. #  set {name "MinOrbitSize"  value 1.0}
  233. # Furthest visible star distance, default is 1000000...
  234. # (UNcomment / modify to suit your needs)
  235. #  set {name "StarDistanceLimit"  value 1000000}
  236. # Time rate (1x, 100x, 1000x, etc.)...
  237. # (UNcomment / modify to suit your needs)
  238. #    Negative value = Reverse Time
  239. #               0   = Pause Time
  240. #               1.0 = Real Time (default)
  241. #            1000.0 = Good moon orbit motion
  242. #
  243. #  timerate {rate 1.0}
  244. #****************************************************************************
  245. #  If you are using large textures, you can have Celestia pre-load them     *
  246. #  into your graphics card memory by listing them below.                    *
  247. #****************************************************************************
  248. # Examples...
  249. #  preloadtex {object "earth.*"}
  250. #  preloadtex {object "earth.png"}
  251. #****************************************************************************
  252. #  orbit is a fun command to play with. The axis is specified in [X Y Z]    *
  253. #  order, and each axis can be either 0 or 1. rate = how fast, duration =   *
  254. #  number of seconds. Just make sure you have an object selected.           *
  255. #****************************************************************************
  256. #  orbit {axis [0 1 0]  rate 10.0  duration 7.0}
  257. #****************************************************************************
  258. #  To learn more about scripting in Celestia, visit:                        *
  259. #                                                                           *
  260. #   * Scripting forum: (http://www.shatters.net/forum/viewforum.php?f=9)    *
  261. #   * Don G's Celestia page: (http://www.donandcarla.com/Celestia/)         *
  262. #   * Harald's Celestia page: (http://www.h-schmidt.net/celestia/)          *
  263. #                                                                           *
  264. #  Don G's page includes a guide for CEL scripting. Harald's page includes  *
  265. #  a guide for CELX (Lua) scripting. Both also have example scripts and     *
  266. #  other goodies.                                                           *
  267. #****************************************************************************
  268. # End of script...
  269. }