]> git.mxchange.org Git - flightgear.git/blob - Time/fg_time.cxx
Converted "struct fg_timestamp" to "class fgTIMESTAMP" and added some
[flightgear.git] / Time / fg_time.cxx
1 //
2 // fg_time.cxx -- data structures and routines for managing time related stuff.
3 //
4 // Written by Curtis Olson, started August 1997.
5 //
6 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23 // (Log is kept at end of this file)
24
25
26 #ifdef HAVE_CONFIG_H
27 #  include <config.h>
28 #endif
29
30 #include <math.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <time.h>
34
35 #ifdef HAVE_SYS_TIMEB_H
36 #  include <sys/timeb.h> // for ftime() and struct timeb
37 #endif
38 #ifdef HAVE_UNISTD_H
39 #  include <unistd.h>    // for gettimeofday()
40 #endif
41 #ifdef HAVE_SYS_TIME_H
42 #  include <sys/time.h>  // for get/setitimer, gettimeofday, struct timeval
43 #endif
44
45 #ifdef  WIN32
46 #  include <windows.h>
47 #  if defined( __CYGWIN__ ) || defined( __CYGWIN32__ )
48 #    define NEAR /* */
49 #    define FAR  /* */
50 #  endif
51 #  include <mmsystem.h>
52 #endif
53
54 #include <Astro/sky.hxx>
55 #include <Astro/solarsystem.hxx>
56 #include <Debug/logstream.hxx>
57 #include <Flight/flight.hxx>
58 #include <Include/fg_constants.h>
59 #include <Main/options.hxx>
60 #include <Time/light.hxx>
61
62 #include "fg_time.hxx"
63
64
65 #define DEGHR(x)        ((x)/15.)
66 #define RADHR(x)        DEGHR(x*RAD_TO_DEG)
67
68 // #define MK_TIME_IS_GMT 0         // default value
69 // #define TIME_ZONE_OFFSET_WORK 0  // default value
70
71
72 fgTIME cur_time_params;
73
74
75 // Force an update of the sky and lighting parameters
76 static void local_update_sky_and_lighting_params( void ) {
77     // fgSunInit();
78     SolarSystem::theSolarSystem->rebuild();
79     cur_light_params.Update();
80     fgSkyColorsInit();
81 }
82
83
84 // Initialize the time dependent variables
85 void fgTimeInit(fgTIME *t) {
86     FG_LOG( FG_EVENT, FG_INFO, "Initializing Time" );
87
88     t->gst_diff = -9999.0;
89
90     FG_LOG( FG_EVENT, FG_DEBUG, 
91             "time offset = " << current_options.get_time_offset() );
92
93     t->warp = current_options.get_time_offset();
94     t->warp_delta = 0;
95
96     t->pause = current_options.get_pause();
97 }
98
99
100 /*
101 // Portability wrap to get current time.
102 void timestamp(fg_timestamp *timestamp) {
103 #if defined( WIN32 )
104     unsigned int t;
105     t = timeGetTime();
106     timestamp->seconds = 0;
107     timestamp->millis =  t;
108 #elif defined( HAVE_GETTIMEOFDAY )
109     struct timeval current;
110     struct timezone tz;
111     // fg_timestamp currtime;
112     gettimeofday(&current, &tz);
113     timestamp->seconds = current.tv_sec;
114     timestamp->millis = current.tv_usec / 1000;
115 #elif defined( HAVE_GETLOCALTIME )
116     SYSTEMTIME current;
117     GetLocalTime(&current);
118     timestamp->seconds = current.wSecond;
119     timestamp->millis = current.wMilliseconds;
120 #elif defined( HAVE_FTIME )
121     struct timeb current;
122     ftime(&current);
123     timestamp->seconds = current.time;
124     timestamp->millis = current.millitm;
125 #else
126 # error Port me
127 #endif
128 }
129
130
131 // Return duration in millis from first to last
132 long timediff(fg_timestamp *first, fg_timestamp *last) {
133 #if defined( WIN32 )
134     return (last->millis - first->millis);
135 #else
136     return ( 1000 * (last->seconds - first->seconds) + 
137              (last->millis - first->millis) );
138 #endif
139 }
140
141
142 // Return new timestamp given a time stamp and an interval to add in
143 void timesum(fg_timestamp *res, fg_timestamp *start, long millis) {
144 #ifdef WIN32
145     res->seconds = 0;
146     res->millis = ( start->millis + millis );
147 #else
148     res->seconds = start->seconds + 
149         ( start->millis + millis ) / 1000;
150     res->millis = ( start->millis + millis ) % 1000;
151 #endif
152 }
153 */
154
155 // given a date in months, mn, days, dy, years, yr, return the
156 // modified Julian date (number of days elapsed since 1900 jan 0.5),
157 // mjd.  Adapted from Xephem.
158
159 double cal_mjd (int mn, double dy, int yr) {
160     static double last_mjd, last_dy;
161     double mjd;
162     static int last_mn, last_yr;
163     int b, d, m, y;
164     long c;
165
166     if (mn == last_mn && yr == last_yr && dy == last_dy) {
167         mjd = last_mjd;
168         return(mjd);
169     }
170
171     m = mn;
172     y = (yr < 0) ? yr + 1 : yr;
173     if (mn < 3) {
174         m += 12;
175         y -= 1;
176     }
177
178     if (yr < 1582 || (yr == 1582 && (mn < 10 || (mn == 10 && dy < 15)))) {
179         b = 0;
180     } else {
181         int a;
182         a = y/100;
183         b = 2 - a + a/4;
184     }
185
186     if (y < 0) {
187         c = (long)((365.25*y) - 0.75) - 694025L;
188     } else {
189         c = (long)(365.25*y) - 694025L;
190     }
191     
192     d = (int)(30.6001*(m+1));
193
194     mjd = b + c + d + dy - 0.5;
195
196     last_mn = mn;
197     last_dy = dy;
198     last_yr = yr;
199     last_mjd = mjd;
200
201     return(mjd);
202 }
203
204
205 // given an mjd, return greenwich mean sidereal time, gst
206
207 double utc_gst (double mjd) {
208     double gst;
209     double day = floor(mjd-0.5)+0.5;
210     double hr = (mjd-day)*24.0;
211     double T, x;
212
213     T = ((int)(mjd - 0.5) + 0.5 - J2000)/36525.0;
214     x = 24110.54841 + (8640184.812866 + (0.093104 - 6.2e-6 * T) * T) * T;
215     x /= 3600.0;
216     gst = (1.0/SIDRATE)*hr + x;
217
218     FG_LOG( FG_EVENT, FG_DEBUG, "  gst => " << gst );
219
220     return(gst);
221 }
222
223
224 // given Julian Date and Longitude (decimal degrees West) compute and
225 // return Local Sidereal Time, in decimal hours.
226 //
227 // Provided courtesy of ecdowney@noao.edu (Elwood Downey) 
228 //
229
230 double sidereal_precise (double mjd, double lng) {
231     double gst;
232     double lst;
233
234     /* printf ("Current Lst on JD %13.5f at %8.4f degrees West: ", 
235        mjd + MJD0, lng); */
236
237     // convert to required internal units
238     lng *= DEG_TO_RAD;
239
240     // compute LST and print
241     gst = utc_gst (mjd);
242     lst = gst - RADHR (lng);
243     lst -= 24.0*floor(lst/24.0);
244     // printf ("%7.4f\n", lst);
245
246     // that's all
247     return (lst);
248 }
249
250
251 // Fix up timezone if using ftime()
252 long int fix_up_timezone( long int timezone_orig ) {
253 #if !defined( HAVE_GETTIMEOFDAY ) && defined( HAVE_FTIME )
254     // ftime() needs a little extra help finding the current timezone
255     struct timeb current;
256     ftime(&current);
257     return( current.timezone * 60 );
258 #else
259     return( timezone_orig );
260 #endif
261 }
262
263
264 // Return time_t for Sat Mar 21 12:00:00 GMT
265 //
266 // I believe the mktime() has a SYSV vs. BSD behavior difference.
267 //
268 // The BSD style mktime() is nice because it returns its result
269 // assuming you have specified the input time in GMT
270 //
271 // The SYSV style mktime() is a pain because it returns its result
272 // assuming you have specified the input time in your local timezone.
273 // Therefore you have to go to extra trouble to convert back to GMT.
274 //
275 // If you are having problems with incorrectly positioned astronomical
276 // bodies, this is a really good place to start looking.
277
278 time_t get_start_gmt(int year) {
279     struct tm mt;
280
281     // For now we assume that if daylight is not defined in
282     // /usr/include/time.h that we have a machine with a BSD behaving
283     // mktime()
284 #   if !defined(HAVE_DAYLIGHT)
285 #       define MK_TIME_IS_GMT 1
286 #   endif
287
288     // timezone seems to work as a proper offset for Linux & Solaris
289 #   if defined( __linux__ ) || defined( __sun__ ) 
290 #       define TIMEZONE_OFFSET_WORKS 1
291 #   endif
292
293     mt.tm_mon = 2;
294     mt.tm_mday = 21;
295     mt.tm_year = year;
296     mt.tm_hour = 12;
297     mt.tm_min = 0;
298     mt.tm_sec = 0;
299     mt.tm_isdst = -1; // let the system determine the proper time zone
300
301 #   if defined( MK_TIME_IS_GMT )
302     return ( mktime(&mt) );
303 #   else // ! defined ( MK_TIME_IS_GMT )
304
305     long int start = mktime(&mt);
306
307     FG_LOG( FG_EVENT, FG_DEBUG, "start1 = " << start );
308     // the ctime() call can screw up time progression on some versions
309     // of Linux
310     // fgPrintf( FG_EVENT, FG_DEBUG, "start2 = %s", ctime(&start));
311     FG_LOG( FG_EVENT, FG_DEBUG, "(tm_isdst = " << mt.tm_isdst << ")" );
312
313     timezone = fix_up_timezone( timezone );
314
315 #   if defined( TIMEZONE_OFFSET_WORKS )
316     FG_LOG( FG_EVENT, FG_DEBUG, 
317             "start = " << start << ", timezone = " << timezone );
318     return( start - timezone );
319 #   else // ! defined( TIMEZONE_OFFSET_WORKS )
320
321     daylight = mt.tm_isdst;
322     if ( daylight > 0 ) {
323         daylight = 1;
324     } else if ( daylight < 0 ) {
325         FG_LOG( FG_EVENT, FG_WARN, 
326                 "OOOPS, problem in fg_time.cxx, no daylight savings info." );
327     }
328
329     long int offset = -(timezone / 3600 - daylight);
330
331     FG_LOG( FG_EVENT, FG_DEBUG,
332             "  Raw time zone offset = " << timezone );
333     FG_LOG( FG_EVENT, FG_DEBUG,
334             "  Daylight Savings = " << daylight );
335     FG_LOG( FG_EVENT, FG_DEBUG,
336             "  Local hours from GMT = " << offset);
337     
338     long int start_gmt = start - timezone + (daylight * 3600);
339     
340     FG_LOG( FG_EVENT, FG_DEBUG, "  March 21 noon (CST) = " << start );
341
342     return ( start_gmt );
343 #   endif // ! defined( TIMEZONE_OFFSET_WORKS )
344 #   endif // ! defined ( MK_TIME_IS_GMT )
345 }
346
347
348 // return a courser but cheaper estimate of sidereal time
349 double sidereal_course(fgTIME *t, double lng) {
350     struct tm *gmt;
351     time_t start_gmt, now;
352     double diff, part, days, hours, lst;
353
354     gmt = t->gmt;
355     now = t->cur_time;
356     start_gmt = get_start_gmt(gmt->tm_year);
357
358     FG_LOG( FG_EVENT, FG_DEBUG, 
359             "  COURSE: GMT = "
360             << gmt->tm_mon << "/" << gmt->tm_mday << "/" << gmt->tm_year
361             << " "
362             << gmt->tm_hour << ":" << gmt->tm_min << ":" <<  gmt->tm_sec );
363
364     FG_LOG( FG_EVENT, FG_DEBUG, "  March 21 noon (GMT) = " << start_gmt);
365
366     diff = (now - start_gmt) / (3600.0 * 24.0);
367     
368     FG_LOG( FG_EVENT, FG_DEBUG, 
369             "  Time since 3/21/" << gmt->tm_year << " GMT = " << diff );
370
371     part = fmod(diff, 1.0);
372     days = diff - part;
373     hours = gmt->tm_hour + gmt->tm_min/60.0 + gmt->tm_sec/3600.0;
374
375     lst = (days - lng)/15.0 + hours - 12;
376
377     while ( lst < 0.0 ) {
378         lst += 24.0;
379     }
380
381     FG_LOG( FG_EVENT, FG_DEBUG,
382             "  days = " << days << "  hours = " << hours << "  lon = " 
383             << lng << "  lst = " << lst );
384
385     return(lst);
386 }
387
388
389 // Update time variables such as gmt, julian date, and sidereal time
390 void fgTimeUpdate(fgFLIGHT *f, fgTIME *t) {
391     double gst_precise, gst_course;
392
393     FG_LOG( FG_EVENT, FG_DEBUG, "Updating time" );
394
395     // get current Unix calendar time (in seconds)
396     t->warp += t->warp_delta;
397     t->cur_time = time(NULL) + t->warp;
398     FG_LOG( FG_EVENT, FG_DEBUG, 
399             "  Current Unix calendar time = " << t->cur_time 
400             << "  warp = " << t->warp << "  delta = " << t->warp_delta );
401
402     if ( t->warp_delta ) {
403         // time is changing so force an update
404         local_update_sky_and_lighting_params();
405     }
406
407     // get GMT break down for current time
408     t->gmt = gmtime(&t->cur_time);
409     FG_LOG( FG_EVENT, FG_DEBUG, 
410             "  Current GMT = " << t->gmt->tm_mon+1 << "/" 
411             << t->gmt->tm_mday << "/" << t->gmt->tm_year << " "
412             << t->gmt->tm_hour << ":" << t->gmt->tm_min << ":" 
413             << t->gmt->tm_sec );
414
415     // calculate modified Julian date
416     t->mjd = cal_mjd ((int)(t->gmt->tm_mon+1), (double)t->gmt->tm_mday, 
417              (int)(t->gmt->tm_year + 1900));
418
419     // add in partial day
420     t->mjd += (t->gmt->tm_hour / 24.0) + (t->gmt->tm_min / (24.0 * 60.0)) +
421            (t->gmt->tm_sec / (24.0 * 60.0 * 60.0));
422
423     // convert "back" to Julian date + partial day (as a fraction of one)
424     t->jd = t->mjd + MJD0;
425     FG_LOG( FG_EVENT, FG_DEBUG, "  Current Julian Date = " << t->jd );
426
427     // printf("  Current Longitude = %.3f\n", FG_Longitude * RAD_TO_DEG);
428
429     // Calculate local side real time
430     if ( t->gst_diff < -100.0 ) {
431         // first time through do the expensive calculation & cheap
432         // calculation to get the difference.
433       FG_LOG( FG_EVENT, FG_INFO, "  First time, doing precise gst" );
434       t->gst = gst_precise = sidereal_precise(t->mjd, 0.00);
435       gst_course = sidereal_course(t, 0.00);
436       t->gst_diff = gst_precise - gst_course;
437
438       t->lst =
439           sidereal_course(t, -(f->get_Longitude() * RAD_TO_DEG)) + t->gst_diff;
440     } else {
441         // course + difference should drift off very slowly
442         t->gst = sidereal_course(t, 0.00) + t->gst_diff;
443         t->lst = sidereal_course(t, -(f->get_Longitude() * RAD_TO_DEG)) + 
444             t->gst_diff;
445     }
446     FG_LOG( FG_EVENT, FG_DEBUG,
447             "  Current lon=0.00 Sidereal Time = " << t->gst );
448     FG_LOG( FG_EVENT, FG_DEBUG,
449             "  Current LOCAL Sidereal Time = " << t->lst << " (" 
450             << sidereal_precise(t->mjd, -(f->get_Longitude() * RAD_TO_DEG)) 
451             << ") (diff = " << t->gst_diff << ")" );
452 }
453
454
455 // $Log$
456 // Revision 1.24  1998/12/04 01:32:49  curt
457 // Converted "struct fg_timestamp" to "class fgTIMESTAMP" and added some
458 // convenience inline operators.
459 //
460 // Revision 1.23  1998/12/03 01:18:40  curt
461 // Converted fgFLIGHT to a class.
462 //
463 // Revision 1.22  1998/11/16 14:00:28  curt
464 // FG_LOG() message tweaks.
465 //
466 // Revision 1.21  1998/11/06 21:18:26  curt
467 // Converted to new logstream debugging facility.  This allows release
468 // builds with no messages at all (and no performance impact) by using
469 // the -DFG_NDEBUG flag.
470 //
471 // Revision 1.20  1998/11/02 18:25:38  curt
472 // Check for __CYGWIN__ (b20) as well as __CYGWIN32__ (pre b20 compilers)
473 // Other misc. tweaks.
474 //
475 // Revision 1.19  1998/10/17 01:34:29  curt
476 // C++ ifying ...
477 //
478 // Revision 1.18  1998/10/02 21:36:09  curt
479 // Fixes to try to break through the win95/98 18.3 fps barrier.
480 //
481 // Revision 1.17  1998/09/15 04:27:49  curt
482 // Changes for new astro code.
483 //
484 // Revision 1.16  1998/08/29 13:11:32  curt
485 // Bernie Bright writes:
486 //   I've created some new classes to enable pointers-to-functions and
487 //   pointers-to-class-methods to be treated like objects.  These objects
488 //   can be registered with fgEVENT_MGR.
489 //
490 //   File "Include/fg_callback.hxx" contains the callback class defns.
491 //
492 //   Modified fgEVENT and fgEVENT_MGR to use the callback classes.  Also
493 //   some minor tweaks to STL usage.
494 //
495 //   Added file "Include/fg_stl_config.h" to deal with STL portability
496 //   issues.  I've added an initial config for egcs (and probably gcc-2.8.x).
497 //   I don't have access to Visual C++ so I've left that for someone else.
498 //   This file is influenced by the stl_config.h file delivered with egcs.
499 //
500 //   Added "Include/auto_ptr.hxx" which contains an implementation of the
501 //   STL auto_ptr class which is not provided in all STL implementations
502 //   and is needed to use the callback classes.
503 //
504 //   Deleted fgLightUpdate() which was just a wrapper to call
505 //   fgLIGHT::Update().
506 //
507 //   Modified fg_init.cxx to register two method callbacks in place of the
508 //   old wrapper functions.
509 //
510 // Revision 1.15  1998/08/24 20:12:16  curt
511 // Rewrote sidereal_course with simpler parameters.
512 //
513 // Revision 1.14  1998/08/05 00:20:07  curt
514 // Added a local routine to update lighting params every frame when time is
515 // accelerated.
516 //
517 // Revision 1.13  1998/07/30 23:48:55  curt
518 // Sgi build tweaks.
519 // Pause support.
520 //
521 // Revision 1.12  1998/07/27 18:42:22  curt
522 // Added a pause option.
523 //
524 // Revision 1.11  1998/07/22 21:45:37  curt
525 // fg_time.cxx: Removed call to ctime() in a printf() which should be harmless
526 //   but seems to be triggering a bug.
527 // light.cxx: Added code to adjust fog color based on sunrise/sunset effects
528 //   and view orientation.  This is an attempt to match the fog color to the
529 //   sky color in the center of the screen.  You see discrepancies at the
530 //   edges, but what else can be done?
531 // sunpos.cxx: Caculate local direction to sun here.  (what compass direction
532 //   do we need to face to point directly at sun)
533 //
534 // Revision 1.10  1998/07/13 21:02:07  curt
535 // Wrote access functions for current fgOPTIONS.
536 //
537 // Revision 1.9  1998/06/12 00:59:53  curt
538 // Build only static libraries.
539 // Declare memmove/memset for Sloaris.
540 // Rewrote fg_time.c routine to get LST start seconds to better handle
541 //   Solaris, and be easier to port, and understand the GMT vs. local
542 //   timezone issues.
543 //
544 // Revision 1.8  1998/06/05 18:18:13  curt
545 // Incorporated some automake conditionals to try to support mktime() correctly
546 // on a wider variety of platforms.
547 // Added the declaration of memmove needed by the stl which apparently
548 // solaris only defines for cc compilations and not for c++ (__STDC__)
549 //
550 // Revision 1.7  1998/05/30 01:57:25  curt
551 // misc updates.
552 //
553 // Revision 1.6  1998/05/02 01:53:17  curt
554 // Fine tuning mktime() support because of varying behavior on different
555 // platforms.
556 //
557 // Revision 1.5  1998/04/28 21:45:34  curt
558 // Fixed a horible bug that cause the time to be *WAY* off when compiling
559 // with the CygWin32 compiler.  This may not yet completely address other
560 // Win32 compilers, but we'll have to take them on a case by case basis.
561 //
562 // Revision 1.4  1998/04/28 01:22:16  curt
563 // Type-ified fgTIME and fgVIEW.
564 //
565 // Revision 1.3  1998/04/25 22:06:33  curt
566 // Edited cvs log messages in source files ... bad bad bad!
567 //
568 // Revision 1.2  1998/04/25 20:24:02  curt
569 // Cleaned up initialization sequence to eliminate interdependencies
570 // between sun position, lighting, and view position.  This creates a
571 // valid single pass initialization path.
572 //
573 // Revision 1.1  1998/04/24 00:52:27  curt
574 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
575 // Fog color fixes.
576 // Separated out lighting calcs into their own file.
577 //
578 // Revision 1.41  1998/04/22 13:24:05  curt
579 // C++ - ifiing the code a bit.
580 // Starting to reorginize some of the lighting calcs to use a table lookup.
581 //
582 // Revision 1.40  1998/04/18 04:14:09  curt
583 // Moved fg_debug.c to it's own library.
584 //
585 // Revision 1.39  1998/04/09 18:40:14  curt
586 // We had unified some of the platform disparate time handling code, and
587 // there was a bug in timesum() which calculated a new time stamp based on
588 // the current time stamp + offset.  This hosed the periodic event processing
589 // logic because you'd never arrive at the time the event was scheduled for.
590 // Sky updates and lighting changes are handled via this event mechanism so
591 // they never changed ... it is fixed now.
592 //
593 // Revision 1.38  1998/04/08 23:35:40  curt
594 // Tweaks to Gnu automake/autoconf system.
595 //
596 // Revision 1.37  1998/04/03 22:12:55  curt
597 // Converting to Gnu autoconf system.
598 // Centralized time handling differences.
599 //
600 // Revision 1.36  1998/03/09 22:48:09  curt
601 // Debug message tweaks.
602 //
603 // Revision 1.35  1998/02/09 15:07:52  curt
604 // Minor tweaks.
605 //
606 // Revision 1.34  1998/02/07 15:29:47  curt
607 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
608 // <chotchkiss@namg.us.anritsu.com>
609 //
610 // Revision 1.33  1998/02/02 20:54:04  curt
611 // Incorporated Durk's changes.
612 //
613 // Revision 1.32  1998/02/01 03:39:56  curt
614 // Minor tweaks.
615 //
616 // Revision 1.31  1998/01/27 00:48:06  curt
617 // Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
618 // system and commandline/config file processing code.
619 //
620 // Revision 1.30  1998/01/21 21:11:35  curt
621 // Misc. tweaks.
622 //
623 // Revision 1.29  1998/01/19 19:27:20  curt
624 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
625 // This should simplify things tremendously.
626 //
627 // Revision 1.28  1998/01/19 18:35:49  curt
628 // Minor tweaks and fixes for cygwin32.
629 //
630 // Revision 1.27  1998/01/13 00:23:13  curt
631 // Initial changes to support loading and management of scenery tiles.  Note,
632 // there's still a fair amount of work left to be done.
633 //
634 // Revision 1.26  1998/01/05 18:44:36  curt
635 // Add an option to advance/decrease time from keyboard.
636 //
637 // Revision 1.25  1997/12/31 17:46:50  curt
638 // Tweaked fg_time.c to be able to use ftime() instead of gettimeofday()
639 //
640 // Revision 1.24  1997/12/30 22:22:42  curt
641 // Further integration of event manager.
642 //
643 // Revision 1.23  1997/12/30 20:47:58  curt
644 // Integrated new event manager with subsystem initializations.
645 //
646 // Revision 1.22  1997/12/30 01:38:47  curt
647 // Switched back to per vertex normals and smooth shading for terrain.
648 //
649 // Revision 1.21  1997/12/23 04:58:39  curt
650 // Tweaked the sky coloring a bit to build in structures to allow finer rgb
651 // control.
652 //
653 // Revision 1.20  1997/12/15 23:55:06  curt
654 // Add xgl wrappers for debugging.
655 // Generate terrain normals on the fly.
656 //
657 // Revision 1.19  1997/12/15 20:59:10  curt
658 // Misc. tweaks.
659 //
660 // Revision 1.18  1997/12/12 21:41:31  curt
661 // More light/material property tweaking ... still a ways off.
662 //
663 // Revision 1.17  1997/12/12 19:53:04  curt
664 // Working on lightling and material properties.
665 //
666 // Revision 1.16  1997/12/11 04:43:57  curt
667 // Fixed sun vector and lighting problems.  I thing the moon is now lit
668 // correctly.
669 //
670 // Revision 1.15  1997/12/10 22:37:54  curt
671 // Prepended "fg" on the name of all global structures that didn't have it yet.
672 // i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
673 //
674 // Revision 1.14  1997/12/10 01:19:52  curt
675 // Tweaks for verion 0.15 release.
676 //
677 // Revision 1.13  1997/12/09 05:11:56  curt
678 // Working on tweaking lighting.
679 //
680 // Revision 1.12  1997/12/09 04:25:37  curt
681 // Working on adding a global lighting params structure.
682 //
683 // Revision 1.11  1997/11/25 19:25:40  curt
684 // Changes to integrate Durk's moon/sun code updates + clean up.
685 //
686 // Revision 1.10  1997/11/15 18:16:42  curt
687 // minor tweaks.
688 //
689 // Revision 1.9  1997/11/14 00:26:50  curt
690 // Transform scenery coordinates earlier in pipeline when scenery is being
691 // created, not when it is being loaded.  Precalculate normals for each node
692 // as average of the normals of each containing polygon so Garoude shading is
693 // now supportable.
694 //
695 // Revision 1.8  1997/10/25 03:30:08  curt
696 // Misc. tweaks.
697 //
698 // Revision 1.7  1997/09/23 00:29:50  curt
699 // Tweaks to get things to compile with gcc-win32.
700 //
701 // Revision 1.6  1997/09/20 03:34:34  curt
702 // Still trying to get those durned stars aligned properly.
703 //
704 // Revision 1.5  1997/09/16 22:14:52  curt
705 // Tweaked time of day lighting equations.  Don't draw stars during the day.
706 //
707 // Revision 1.4  1997/09/16 15:50:31  curt
708 // Working on star alignment and time issues.
709 //
710 // Revision 1.3  1997/09/13 02:00:08  curt
711 // Mostly working on stars and generating sidereal time for accurate star
712 // placement.
713 //
714 // Revision 1.2  1997/08/27 03:30:35  curt
715 // Changed naming scheme of basic shared structures.
716 //
717 // Revision 1.1  1997/08/13 21:55:59  curt
718 // Initial revision.
719 //