]> git.mxchange.org Git - flightgear.git/blob - Time/fg_time.cxx
misc updates.
[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 #include <Debug/fg_debug.h>
46 #include <Flight/flight.h>
47 #include <Include/fg_constants.h>
48 #include <Main/options.hxx>
49
50 #include "fg_time.hxx"
51
52
53 #define DEGHR(x)        ((x)/15.)
54 #define RADHR(x)        DEGHR(x*RAD_TO_DEG)
55
56
57 fgTIME cur_time_params;
58
59
60 // Initialize the time dependent variables
61
62 void fgTimeInit(fgTIME *t) {
63     fgOPTIONS *o;
64
65     o = &current_options;
66
67     fgPrintf( FG_EVENT, FG_INFO, "Initializing Time\n");
68
69     t->gst_diff = -9999.0;
70     fgPrintf( FG_EVENT, FG_DEBUG, "o->time_offset = %d\n", o->time_offset);
71
72     t->warp = o->time_offset;
73     t->warp_delta = 0;
74 }
75
76
77 // Portability wrap to get current time.
78 void timestamp(fg_timestamp *timestamp) {
79 #if defined( HAVE_GETTIMEOFDAY )
80     struct timeval current;
81     struct timezone tz;
82     // fg_timestamp currtime;
83     gettimeofday(&current, &tz);
84     timestamp->seconds = current.tv_sec;
85     timestamp->millis = current.tv_usec / 1000;
86 #elif defined( HAVE_GETLOCALTIME )
87     SYSTEMTIME current;
88     GetLocalTime(&current);
89     timestamp->seconds = current.wSecond;
90     timestamp->millis = current.wMilliseconds;
91 #elif defined( HAVE_FTIME )
92     struct timeb current;
93     ftime(&current);
94     timestamp->seconds = current.time;
95     timestamp->millis = current.millitm;
96 #else
97 # error Port me
98 #endif
99 }
100
101
102 // Return duration in millis from first to last
103 long timediff(fg_timestamp *first, fg_timestamp *last) {
104     return 1000 * (last->seconds - first->seconds) + 
105         (last->millis - first->millis);
106 }
107
108
109 // Return new timestamp given a time stamp and an interval to add in
110 void timesum(fg_timestamp *res, fg_timestamp *start, long millis) {
111     res->seconds = start->seconds + 
112         ( start->millis + millis ) / 1000;
113     res->millis = ( start->millis + millis ) % 1000;
114 }
115
116
117 // given a date in months, mn, days, dy, years, yr, return the
118 // modified Julian date (number of days elapsed since 1900 jan 0.5),
119 // mjd.  Adapted from Xephem.
120
121 double cal_mjd (int mn, double dy, int yr) {
122     static double last_mjd, last_dy;
123     double mjd;
124     static int last_mn, last_yr;
125     int b, d, m, y;
126     long c;
127
128     if (mn == last_mn && yr == last_yr && dy == last_dy) {
129         mjd = last_mjd;
130         return(mjd);
131     }
132
133     m = mn;
134     y = (yr < 0) ? yr + 1 : yr;
135     if (mn < 3) {
136         m += 12;
137         y -= 1;
138     }
139
140     if (yr < 1582 || (yr == 1582 && (mn < 10 || (mn == 10 && dy < 15)))) {
141         b = 0;
142     } else {
143         int a;
144         a = y/100;
145         b = 2 - a + a/4;
146     }
147
148     if (y < 0) {
149         c = (long)((365.25*y) - 0.75) - 694025L;
150     } else {
151         c = (long)(365.25*y) - 694025L;
152     }
153     
154     d = (int)(30.6001*(m+1));
155
156     mjd = b + c + d + dy - 0.5;
157
158     last_mn = mn;
159     last_dy = dy;
160     last_yr = yr;
161     last_mjd = mjd;
162
163     return(mjd);
164 }
165
166
167 // given an mjd, return greenwich mean siderial time, gst
168
169 double utc_gst (double mjd) {
170     double gst;
171     double day = floor(mjd-0.5)+0.5;
172     double hr = (mjd-day)*24.0;
173     double T, x;
174
175     T = ((int)(mjd - 0.5) + 0.5 - J2000)/36525.0;
176     x = 24110.54841 + (8640184.812866 + (0.093104 - 6.2e-6 * T) * T) * T;
177     x /= 3600.0;
178     gst = (1.0/SIDRATE)*hr + x;
179
180     fgPrintf( FG_EVENT, FG_DEBUG, "  gst => %.4f\n", gst);
181
182     return(gst);
183 }
184
185
186 // given Julian Date and Longitude (decimal degrees West) compute and
187 // return Local Sidereal Time, in decimal hours.
188 //
189 // Provided courtesy of ecdowney@noao.edu (Elwood Downey) 
190 //
191
192 double sidereal_precise (double mjd, double lng) {
193     double gst;
194     double lst;
195
196     /* printf ("Current Lst on JD %13.5f at %8.4f degrees West: ", 
197        mjd + MJD0, lng); */
198
199     // convert to required internal units
200     lng *= DEG_TO_RAD;
201
202     // compute LST and print
203     gst = utc_gst (mjd);
204     lst = gst - RADHR (lng);
205     lst -= 24.0*floor(lst/24.0);
206     // printf ("%7.4f\n", lst);
207
208     // that's all
209     return (lst);
210 }
211
212
213 // return a courser but cheaper estimate of sidereal time
214 double sidereal_course(struct tm *gmt, time_t now, double lng) {
215     time_t start, start_gmt;
216     struct tm mt;
217     long int offset;
218     double diff, part, days, hours, lst;
219
220     // I believe the following is Unix vs. Win32 behavior difference.
221     // If you are having problems with incorrectly positioned
222     // astronomical bodies, this is a really good place to start
223     // looking.
224 #ifdef WIN32
225     int daylight;       // not used but need to keep the compiler happy
226     long int timezone;  // not used but need to keep the compiler happy
227     int mktime_is_gmt = 1;
228 #else
229     int mktime_is_gmt = 0;
230 #endif
231
232     // ftime() needs a little extra help finding the current timezone
233 #if defined( HAVE_GETTIMEOFDAY )
234 #elif defined( HAVE_FTIME )
235     struct timeb current;
236 #else
237 # error Port me
238 #endif
239
240     fgPrintf(FG_EVENT, FG_DEBUG, 
241              "  COURSE: GMT = %d/%d/%2d %d:%02d:%02d\n", 
242              gmt->tm_mon, gmt->tm_mday, gmt->tm_year,
243              gmt->tm_hour, gmt->tm_min, gmt->tm_sec);
244
245     mt.tm_mon = 2;
246     mt.tm_mday = 21;
247     mt.tm_year = gmt->tm_year;
248     mt.tm_hour = 12;
249     mt.tm_min = 0;
250     mt.tm_sec = 0;
251     mt.tm_isdst = -1; // let the system determine the proper time zone
252
253     if ( mktime_is_gmt ) {
254         start_gmt = mktime(&mt);
255     } else {
256         start = mktime(&mt);
257         daylight = mt.tm_isdst;
258
259         fgPrintf( FG_EVENT, FG_DEBUG, "start1 = %ld\n", start);
260         fgPrintf( FG_EVENT, FG_DEBUG, "start2 = %s (tm_isdst = %d)", 
261                   ctime(&start), mt.tm_isdst);
262
263         // ftime() needs a little extra help finding the current timezone
264 #if defined( HAVE_GETTIMEOFDAY )
265 #elif defined( HAVE_FTIME )
266         ftime(&current);
267         timezone = current.timezone * 60;
268 #else
269 # error Port me
270 #endif
271
272         if ( daylight > 0 ) {
273             daylight = 1;
274         } else if ( daylight < 0 ) {
275             fgPrintf( FG_EVENT, FG_WARN, 
276                       "OOOPS, big time problem in fg_time.c, no daylight savings info.\n");
277         }
278
279         offset = -(timezone / 3600 - daylight);
280
281         fgPrintf( FG_EVENT, FG_DEBUG,
282                   "  Raw time zone offset = %ld\n", timezone);
283         fgPrintf( FG_EVENT, FG_DEBUG,
284                   "  Daylight Savings = %d\n", daylight);
285         fgPrintf( FG_EVENT, FG_DEBUG,
286                   "  Local hours from GMT = %ld\n", offset);
287
288         start_gmt = start - timezone + (daylight * 3600);
289
290         fgPrintf( FG_EVENT, FG_DEBUG, "  March 21 noon (CST) = %ld\n", start);
291     }
292
293     fgPrintf( FG_EVENT, FG_DEBUG, "  March 21 noon (GMT) = %ld\n", start_gmt);
294
295     diff = (now - start_gmt) / (3600.0 * 24.0);
296     
297     fgPrintf( FG_EVENT, FG_DEBUG, 
298               "  Time since 3/21/%2d GMT = %.2f\n", gmt->tm_year, diff);
299
300     part = fmod(diff, 1.0);
301     days = diff - part;
302     hours = gmt->tm_hour + gmt->tm_min/60.0 + gmt->tm_sec/3600.0;
303
304     lst = (days - lng)/15.0 + hours - 12;
305
306     while ( lst < 0.0 ) {
307         lst += 24.0;
308     }
309
310     fgPrintf( FG_EVENT, FG_DEBUG,
311               "  days = %.1f  hours = %.2f  lon = %.2f  lst = %.2f\n", 
312               days, hours, lng, lst);
313
314     return(lst);
315 }
316
317
318 // Update time variables such as gmt, julian date, and sidereal time
319 void fgTimeUpdate(fgFLIGHT *f, fgTIME *t) {
320     double gst_precise, gst_course;
321
322     fgPrintf( FG_EVENT, FG_BULK, "Updating time\n");
323
324     // get current Unix calendar time (in seconds)
325     t->warp += t->warp_delta;
326     t->cur_time = time(NULL) + t->warp;
327     fgPrintf( FG_EVENT, FG_BULK, 
328               "  Current Unix calendar time = %ld  warp = %ld  delta = %ld\n", 
329               t->cur_time, t->warp, t->warp_delta);
330
331     // get GMT break down for current time
332     t->gmt = gmtime(&t->cur_time);
333     fgPrintf( FG_EVENT, FG_BULK, 
334               "  Current GMT = %d/%d/%2d %d:%02d:%02d\n", 
335               t->gmt->tm_mon+1, t->gmt->tm_mday, t->gmt->tm_year,
336               t->gmt->tm_hour, t->gmt->tm_min, t->gmt->tm_sec);
337
338     // calculate modified Julian date
339     t->mjd = cal_mjd ((int)(t->gmt->tm_mon+1), (double)t->gmt->tm_mday, 
340              (int)(t->gmt->tm_year + 1900));
341
342     // add in partial day
343     t->mjd += (t->gmt->tm_hour / 24.0) + (t->gmt->tm_min / (24.0 * 60.0)) +
344            (t->gmt->tm_sec / (24.0 * 60.0 * 60.0));
345
346     // convert "back" to Julian date + partial day (as a fraction of one)
347     t->jd = t->mjd + MJD0;
348     fgPrintf( FG_EVENT, FG_BULK, "  Current Julian Date = %.5f\n", t->jd);
349
350     // printf("  Current Longitude = %.3f\n", FG_Longitude * RAD_TO_DEG);
351
352     // Calculate local side real time
353     if ( t->gst_diff < -100.0 ) {
354         // first time through do the expensive calculation & cheap
355         // calculation to get the difference.
356       fgPrintf( FG_EVENT, FG_INFO, "  First time, doing precise gst\n");
357       t->gst = gst_precise = sidereal_precise(t->mjd, 0.00);
358       gst_course = sidereal_course(t->gmt, t->cur_time, 0.00);
359       t->gst_diff = gst_precise - gst_course;
360
361       t->lst = 
362         sidereal_course(t->gmt, t->cur_time, -(FG_Longitude * RAD_TO_DEG))
363         + t->gst_diff;
364     } else {
365         // course + difference should drift off very slowly
366         t->gst = 
367             sidereal_course(t->gmt, t->cur_time, 0.00) + t->gst_diff;
368         t->lst = 
369             sidereal_course(t->gmt, t->cur_time, -(FG_Longitude * RAD_TO_DEG))
370             + t->gst_diff;
371     }
372     fgPrintf( FG_EVENT, FG_DEBUG,
373               "  Current lon=0.00 Sidereal Time = %.3f\n", t->gst);
374     fgPrintf( FG_EVENT, FG_DEBUG,
375               "  Current LOCAL Sidereal Time = %.3f (%.3f) (diff = %.3f)\n", 
376               t->lst, sidereal_precise(t->mjd, -(FG_Longitude * RAD_TO_DEG)),
377               t->gst_diff);
378 }
379
380
381 // $Log$
382 // Revision 1.7  1998/05/30 01:57:25  curt
383 // misc updates.
384 //
385 // Revision 1.6  1998/05/02 01:53:17  curt
386 // Fine tuning mktime() support because of varying behavior on different
387 // platforms.
388 //
389 // Revision 1.5  1998/04/28 21:45:34  curt
390 // Fixed a horible bug that cause the time to be *WAY* off when compiling
391 // with the CygWin32 compiler.  This may not yet completely address other
392 // Win32 compilers, but we'll have to take them on a case by case basis.
393 //
394 // Revision 1.4  1998/04/28 01:22:16  curt
395 // Type-ified fgTIME and fgVIEW.
396 //
397 // Revision 1.3  1998/04/25 22:06:33  curt
398 // Edited cvs log messages in source files ... bad bad bad!
399 //
400 // Revision 1.2  1998/04/25 20:24:02  curt
401 // Cleaned up initialization sequence to eliminate interdependencies
402 // between sun position, lighting, and view position.  This creates a
403 // valid single pass initialization path.
404 //
405 // Revision 1.1  1998/04/24 00:52:27  curt
406 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
407 // Fog color fixes.
408 // Separated out lighting calcs into their own file.
409 //
410 // Revision 1.41  1998/04/22 13:24:05  curt
411 // C++ - ifiing the code a bit.
412 // Starting to reorginize some of the lighting calcs to use a table lookup.
413 //
414 // Revision 1.40  1998/04/18 04:14:09  curt
415 // Moved fg_debug.c to it's own library.
416 //
417 // Revision 1.39  1998/04/09 18:40:14  curt
418 // We had unified some of the platform disparate time handling code, and
419 // there was a bug in timesum() which calculated a new time stamp based on
420 // the current time stamp + offset.  This hosed the periodic event processing
421 // logic because you'd never arrive at the time the event was scheduled for.
422 // Sky updates and lighting changes are handled via this event mechanism so
423 // they never changed ... it is fixed now.
424 //
425 // Revision 1.38  1998/04/08 23:35:40  curt
426 // Tweaks to Gnu automake/autoconf system.
427 //
428 // Revision 1.37  1998/04/03 22:12:55  curt
429 // Converting to Gnu autoconf system.
430 // Centralized time handling differences.
431 //
432 // Revision 1.36  1998/03/09 22:48:09  curt
433 // Debug message tweaks.
434 //
435 // Revision 1.35  1998/02/09 15:07:52  curt
436 // Minor tweaks.
437 //
438 // Revision 1.34  1998/02/07 15:29:47  curt
439 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
440 // <chotchkiss@namg.us.anritsu.com>
441 //
442 // Revision 1.33  1998/02/02 20:54:04  curt
443 // Incorporated Durk's changes.
444 //
445 // Revision 1.32  1998/02/01 03:39:56  curt
446 // Minor tweaks.
447 //
448 // Revision 1.31  1998/01/27 00:48:06  curt
449 // Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
450 // system and commandline/config file processing code.
451 //
452 // Revision 1.30  1998/01/21 21:11:35  curt
453 // Misc. tweaks.
454 //
455 // Revision 1.29  1998/01/19 19:27:20  curt
456 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
457 // This should simplify things tremendously.
458 //
459 // Revision 1.28  1998/01/19 18:35:49  curt
460 // Minor tweaks and fixes for cygwin32.
461 //
462 // Revision 1.27  1998/01/13 00:23:13  curt
463 // Initial changes to support loading and management of scenery tiles.  Note,
464 // there's still a fair amount of work left to be done.
465 //
466 // Revision 1.26  1998/01/05 18:44:36  curt
467 // Add an option to advance/decrease time from keyboard.
468 //
469 // Revision 1.25  1997/12/31 17:46:50  curt
470 // Tweaked fg_time.c to be able to use ftime() instead of gettimeofday()
471 //
472 // Revision 1.24  1997/12/30 22:22:42  curt
473 // Further integration of event manager.
474 //
475 // Revision 1.23  1997/12/30 20:47:58  curt
476 // Integrated new event manager with subsystem initializations.
477 //
478 // Revision 1.22  1997/12/30 01:38:47  curt
479 // Switched back to per vertex normals and smooth shading for terrain.
480 //
481 // Revision 1.21  1997/12/23 04:58:39  curt
482 // Tweaked the sky coloring a bit to build in structures to allow finer rgb
483 // control.
484 //
485 // Revision 1.20  1997/12/15 23:55:06  curt
486 // Add xgl wrappers for debugging.
487 // Generate terrain normals on the fly.
488 //
489 // Revision 1.19  1997/12/15 20:59:10  curt
490 // Misc. tweaks.
491 //
492 // Revision 1.18  1997/12/12 21:41:31  curt
493 // More light/material property tweaking ... still a ways off.
494 //
495 // Revision 1.17  1997/12/12 19:53:04  curt
496 // Working on lightling and material properties.
497 //
498 // Revision 1.16  1997/12/11 04:43:57  curt
499 // Fixed sun vector and lighting problems.  I thing the moon is now lit
500 // correctly.
501 //
502 // Revision 1.15  1997/12/10 22:37:54  curt
503 // Prepended "fg" on the name of all global structures that didn't have it yet.
504 // i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
505 //
506 // Revision 1.14  1997/12/10 01:19:52  curt
507 // Tweaks for verion 0.15 release.
508 //
509 // Revision 1.13  1997/12/09 05:11:56  curt
510 // Working on tweaking lighting.
511 //
512 // Revision 1.12  1997/12/09 04:25:37  curt
513 // Working on adding a global lighting params structure.
514 //
515 // Revision 1.11  1997/11/25 19:25:40  curt
516 // Changes to integrate Durk's moon/sun code updates + clean up.
517 //
518 // Revision 1.10  1997/11/15 18:16:42  curt
519 // minor tweaks.
520 //
521 // Revision 1.9  1997/11/14 00:26:50  curt
522 // Transform scenery coordinates earlier in pipeline when scenery is being
523 // created, not when it is being loaded.  Precalculate normals for each node
524 // as average of the normals of each containing polygon so Garoude shading is
525 // now supportable.
526 //
527 // Revision 1.8  1997/10/25 03:30:08  curt
528 // Misc. tweaks.
529 //
530 // Revision 1.7  1997/09/23 00:29:50  curt
531 // Tweaks to get things to compile with gcc-win32.
532 //
533 // Revision 1.6  1997/09/20 03:34:34  curt
534 // Still trying to get those durned stars aligned properly.
535 //
536 // Revision 1.5  1997/09/16 22:14:52  curt
537 // Tweaked time of day lighting equations.  Don't draw stars during the day.
538 //
539 // Revision 1.4  1997/09/16 15:50:31  curt
540 // Working on star alignment and time issues.
541 //
542 // Revision 1.3  1997/09/13 02:00:08  curt
543 // Mostly working on stars and generating sidereal time for accurate star
544 // placement.
545 //
546 // Revision 1.2  1997/08/27 03:30:35  curt
547 // Changed naming scheme of basic shared structures.
548 //
549 // Revision 1.1  1997/08/13 21:55:59  curt
550 // Initial revision.
551 //