]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTmain.cxx
Edited cvs log messages in source files ... bad bad bad!
[flightgear.git] / Main / GLUTmain.cxx
1 //
2 // GLUTmain.cxx -- top level sim routines
3 //
4 // Written by Curtis Olson for OpenGL, started May 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 #ifdef HAVE_WINDOWS_H
31 #  include <windows.h>                     
32 #endif
33
34 #include <GL/glut.h>
35 #include <XGL/xgl.h>
36 #include <stdio.h>
37
38 #ifdef HAVE_STDLIB_H
39 #   include <stdlib.h>
40 #endif
41
42 #include <Include/fg_constants.h>  // for VERSION
43 #include <Include/general.h>
44
45 #include <Aircraft/aircraft.h>
46 #include <Astro/moon.hxx>
47 #include <Astro/planets.hxx>
48 #include <Astro/sky.hxx>
49 #include <Astro/stars.hxx>
50 #include <Astro/sun.hxx>
51 #include <Cockpit/cockpit.hxx>
52 #include <Debug/fg_debug.h>
53 #include <Joystick/joystick.h>
54 #include <Math/fg_geodesy.h>
55 #include <Math/mat3.h>
56 #include <Math/polar.h>
57 #include <Scenery/scenery.h>
58 #include <Scenery/tilemgr.hxx>
59 #include <Time/event.hxx>
60 #include <Time/fg_time.hxx>
61 #include <Time/fg_timer.hxx>
62 #include <Time/sunpos.hxx>
63 #include <Weather/weather.h>
64
65 #include "GLUTkey.hxx"
66 #include "fg_init.hxx"
67 #include "options.hxx"
68 #include "views.hxx"
69
70
71 // This is a record containing global housekeeping information
72 fgGENERAL general;
73
74 // view parameters
75 static GLfloat win_ratio = 1.0;
76 static GLint winWidth, winHeight;
77
78 // Another hack
79 int use_signals = 0;
80
81 // Yet another other hack. Used for my prototype instrument code. (Durk)
82 int displayInstruments; 
83
84 /*
85 // The following defines flight gear options. Because glutlib will also
86 // want to parse its own options, those options must not be included here
87 // or they will get parsed by the main program option parser. Hence case
88 // is significant for any option added that might be in conflict with
89 // glutlib's parser.
90 //
91 // glutlib parses for:
92 //    -display
93 //    -direct   (invalid in Win32)
94 //    -geometry
95 //    -gldebug
96 //    -iconized
97 //    -indirect (invalid in Win32)
98 //    -synce
99 //
100 // Note that glutlib depends upon strings while this program's
101 // option parser wants only initial characters followed by numbers
102 // or pathnames.
103 //
104 const char *fg_cmdargopts = "a:c:Hhp:r:v:x:?";
105 //
106 // Where
107 //   -a aircraftfilename    aircraft start over ride
108 //   -c0x0000 - 0xffffffff  debug class setting
109 //    H,h.? help on command line use (does not need Option struct)
110 //   -p  priority
111 //   -r flightgear          root path to program support files
112 //   -v0 -v1                initial view mode (hud/no_hud currently)
113 //   -xlogpathname          debug logfile name
114 //
115 // Defaults in arguments to indicate not set on command line.
116 // Program defaults set variables from constants if neither command
117 // options or environmental variables effect values.
118 //
119
120 char  acArgbuf          [ MAXPATH + 1] = "\0";
121 int   debugArgValue                    = -2;
122 int   priorityArgValue                 = -1;
123 char  rootArgbuf        [ MAXPATH + 1] = "\0";
124 int   viewArg                          = -1;
125 char  logArgbuf         [ MAXPATH + 1] = "\0";
126
127 // There is a reason for defining the option structs by name and then
128 // creating an array of pointers to options. C++ is unfriendly to
129 // initializing arrays of objects that are not built in types. Always
130 // look forward. (Besides, you can follow what is going on better and
131 // add or modify with greater security. -ch
132 //
133 Option aircraftOption = { 'a',
134                           OPT_STRING,
135                           acArgbuf,
136                           "Startup aircraft pathname override"
137                         };
138 Option debugOption    = { 'c',
139                           OPT_LHEX,       // Long int (32 bits)
140                           &debugArgValue,
141                           "Debug trace level"
142                         };
143 Option priorityOption = { 'p',
144                           OPT_INTEGER,
145                           &priorityArgValue,
146                           "Debug priority Threshold"
147                         };
148 Option rootOption     = { 'r',
149                           OPT_STRING,
150                           rootArgbuf,
151                           "Root directory for execution"
152                         };
153 Option hudOption      = { 'v',
154                           OPT_INTEGER,
155                           &viewArg,
156                           "View mode start" // Naked,HUD,Panel,Chase,Tower...
157                         };
158
159 // Only naked view and HUD are implemented at this time
160 Option logfileOption  = { 'x',
161                           OPT_STRING,
162                           logArgbuf,
163                           "Debug log file name"
164                         };
165
166 #define OptsDefined 6
167 Option *CmdLineOptions[ OptsDefined ] = {
168   &aircraftOption,
169   &debugOption,
170   &hudOption,
171   &priorityOption,
172   &rootOption,
173   &logfileOption
174   };
175
176 const char *DefaultRootDir  = "\\Flightgear";
177 const char *DefaultAircraft = "Navion.acf";
178 const char *DefaultDebuglog = "fgdebug.log";
179 const int   DefaultViewMode = HUD_VIEW;
180 */
181
182 // Debug defaults handled in fg_debug.c
183
184 // fgInitVisuals() -- Initialize various GL/view parameters
185 static void fgInitVisuals( void ) {
186     struct fgLIGHT *l;
187     struct fgWEATHER *w;
188
189     l = &cur_light_params;
190     w = &current_weather;
191
192     // xglDisable( GL_DITHER );
193
194     // If enabled, normal vectors specified with glNormal are scaled
195     // to unit length after transformation.  See glNormal.
196     xglEnable( GL_NORMALIZE );
197
198     xglEnable( GL_LIGHTING );
199     xglEnable( GL_LIGHT0 );
200     xglLightfv( GL_LIGHT0, GL_POSITION, l->sun_vec );
201
202     xglFogi (GL_FOG_MODE, GL_LINEAR);
203     xglFogf (GL_FOG_START, w->visibility / 1000000.0 );
204     xglFogf (GL_FOG_END, w->visibility);
205     // xglFogf (GL_FOG_DENSITY, w->visibility);
206     xglHint (GL_FOG_HINT, GL_NICEST /* GL_FASTEST */ );
207
208     // draw wire frame
209     // xglPolygonMode(GL_FRONT_AND_BACK,GL_LINE);
210 }
211
212
213 // Update the view volume, position, and orientation
214 static void fgUpdateViewParams( void ) {
215     fgFLIGHT *f;
216     struct fgLIGHT *l;
217     // struct fgTIME *t;
218     struct fgVIEW *v;
219
220     f = current_aircraft.flight;
221     l = &cur_light_params;
222     // t = &cur_time_params;
223     v = &current_view;
224
225     fgViewUpdate(f, v, l);
226
227     if (displayInstruments) {
228         xglViewport( 0, (GLint)(winHeight / 2 ) , 
229                      (GLint)winWidth, (GLint)winHeight / 2 );
230         // Tell GL we are about to modify the projection parameters
231         xglMatrixMode(GL_PROJECTION);
232         xglLoadIdentity();
233         gluPerspective(65.0, 2.0/win_ratio, 1.0, 100000.0);
234     } else {
235         xglViewport(0, 0 , (GLint)winWidth, (GLint) winHeight);
236         // Tell GL we are about to modify the projection parameters
237         xglMatrixMode(GL_PROJECTION);
238         xglLoadIdentity();
239         gluPerspective(65.0, 1.0/win_ratio, 10.0, 100000.0);
240     }
241
242     xglMatrixMode(GL_MODELVIEW);
243     xglLoadIdentity();
244     
245     // set up our view volume (default)
246     gluLookAt(v->view_pos.x, v->view_pos.y, v->view_pos.z,
247                v->view_pos.x + v->view_forward[0], 
248                v->view_pos.y + v->view_forward[1], 
249                v->view_pos.z + v->view_forward[2],
250                v->view_up[0], v->view_up[1], v->view_up[2]);
251
252     // look almost straight up (testing and eclipse watching)
253     /* gluLookAt(v->view_pos.x, v->view_pos.y, v->view_pos.z,
254                v->view_pos.x + v->view_up[0] + .001, 
255                v->view_pos.y + v->view_up[1] + .001, 
256                v->view_pos.z + v->view_up[2] + .001,
257                v->view_up[0], v->view_up[1], v->view_up[2]); */
258
259     // lock view horizontally towards sun (testing)
260     /* gluLookAt(v->view_pos.x, v->view_pos.y, v->view_pos.z,
261                v->view_pos.x + v->surface_to_sun[0], 
262                v->view_pos.y + v->surface_to_sun[1], 
263                v->view_pos.z + v->surface_to_sun[2],
264                v->view_up[0], v->view_up[1], v->view_up[2]); */
265
266     // lock view horizontally towards south (testing)
267     /* gluLookAt(v->view_pos.x, v->view_pos.y, v->view_pos.z,
268                v->view_pos.x + v->surface_south[0], 
269                v->view_pos.y + v->surface_south[1], 
270                v->view_pos.z + v->surface_south[2],
271                v->view_up[0], v->view_up[1], v->view_up[2]); */
272
273     // set the sun position
274     xglLightfv( GL_LIGHT0, GL_POSITION, l->sun_vec );
275 }
276
277
278 // Draw a basic instrument panel
279 static void fgUpdateInstrViewParams( void ) {
280     xglViewport(0, 0 , (GLint)winWidth, (GLint)winHeight / 2);
281   
282     xglMatrixMode(GL_PROJECTION);
283     xglPushMatrix();
284   
285     xglLoadIdentity();
286     gluOrtho2D(0, 640, 0, 480);
287     xglMatrixMode(GL_MODELVIEW);
288     xglPushMatrix();
289     xglLoadIdentity();
290
291     xglColor3f(1.0, 1.0, 1.0);
292     xglIndexi(7);
293   
294     xglDisable(GL_DEPTH_TEST);
295     xglDisable(GL_LIGHTING);
296   
297     xglLineWidth(1);
298     xglColor3f (0.5, 0.5, 0.5);
299
300     xglBegin(GL_QUADS);
301     xglVertex2f(0.0, 0.00);
302     xglVertex2f(0.0, 480.0);
303     xglVertex2f(640.0,480.0);
304     xglVertex2f(640.0, 0.0);
305     xglEnd();
306
307     xglRectf(0.0,0.0, 640, 480);
308     xglEnable(GL_DEPTH_TEST);
309     xglEnable(GL_LIGHTING);
310     xglMatrixMode(GL_PROJECTION);
311     xglPopMatrix();
312     xglMatrixMode(GL_MODELVIEW);
313     xglPopMatrix();
314 }
315
316
317 // Update all Visuals (redraws anything graphics related)
318 static void fgRenderFrame( void ) {
319     struct fgLIGHT *l;
320     fgOPTIONS *o;
321     struct fgTIME *t;
322     struct fgVIEW *v;
323     double angle;
324     GLfloat white[4] = { 1.0, 1.0, 1.0, 1.0 };
325
326     l = &cur_light_params;
327     o = &current_options;
328     t = &cur_time_params;
329     v = &current_view;
330
331     // update view volume parameters
332     fgUpdateViewParams();
333
334     xglClear( GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT );
335
336     // Tell GL we are switching to model view parameters
337     xglMatrixMode(GL_MODELVIEW);
338     // xglLoadIdentity();
339
340     // draw sky
341     xglDisable( GL_DEPTH_TEST );
342     xglDisable( GL_LIGHTING );
343     xglDisable( GL_CULL_FACE );
344     xglDisable( GL_FOG );
345     xglShadeModel( GL_SMOOTH );
346     fgSkyRender();
347
348     // setup transformation for drawing astronomical objects
349     xglPushMatrix();
350     // Translate to view position
351     xglTranslatef( v->view_pos.x, v->view_pos.y, v->view_pos.z );
352     // Rotate based on gst (sidereal time)
353     angle = t->gst * 15.041085; /* should be 15.041085, Curt thought it was 15*/
354     // printf("Rotating astro objects by %.2f degrees\n",angle);
355     xglRotatef( angle, 0.0, 0.0, -1.0 );
356
357     // draw stars and planets
358     fgStarsRender();
359     fgPlanetsRender();
360
361     // draw the sun
362     fgSunRender();
363
364     // render the moon
365     xglEnable( GL_LIGHTING );
366     // set lighting parameters
367     xglLightfv(GL_LIGHT0, GL_AMBIENT, white );
368     xglLightfv(GL_LIGHT0, GL_DIFFUSE, white );
369     xglEnable( GL_CULL_FACE );
370     
371     // Let's try some blending technique's (Durk)
372     glEnable(GL_BLEND);
373     glBlendFunc(GL_ONE, GL_ONE);
374     fgMoonRender();
375     glDisable(GL_BLEND);
376
377     xglPopMatrix();
378
379     // draw scenery
380     xglShadeModel( /* GL_FLAT */ GL_SMOOTH ); 
381     xglEnable( GL_DEPTH_TEST );
382     xglEnable( GL_FOG );
383     xglFogfv (GL_FOG_COLOR, l->fog_color);
384     // set lighting parameters
385     xglLightfv(GL_LIGHT0, GL_AMBIENT, l->scene_ambient );
386     xglLightfv(GL_LIGHT0, GL_DIFFUSE, l->scene_diffuse );
387     // texture parameters
388     xglEnable( GL_TEXTURE_2D ); /* xglDisable( GL_TEXTURE_2D ); */
389     xglTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT ) ;
390     xglTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT ) ;
391     xglTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR ) ;
392     xglTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, 
393                       GL_LINEAR /* GL_LINEAR_MIPMAP_LINEAR */ ) ;
394     xglTexEnvi( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE ) ;
395     xglHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST ) ;
396     // set base color (I don't think this is doing anything here)
397     xglMaterialfv (GL_FRONT, GL_AMBIENT, white);
398     xglMaterialfv (GL_FRONT, GL_DIFFUSE, white);
399
400     fgTileMgrRender();
401
402     xglDisable( GL_TEXTURE_2D );
403
404     // display HUD
405     if( o->hud_status ) {
406         fgCockpitUpdate();
407     }
408
409     // display instruments
410     if (displayInstruments) {
411         fgUpdateInstrViewParams();
412     }
413
414     xglutSwapBuffers();
415 }
416
417
418 // Update internal time dependent calculations (i.e. flight model)
419 void fgUpdateTimeDepCalcs(int multi_loop) {
420     fgFLIGHT *f;
421     struct fgTIME *t;
422     struct fgVIEW *v;
423     int i;
424
425     f = current_aircraft.flight;
426     t = &cur_time_params;
427     v = &current_view;
428
429     // update the flight model
430     if ( multi_loop < 0 ) {
431         multi_loop = DEFAULT_MULTILOOP;
432     }
433
434     // printf("updating flight model x %d\n", multi_loop);
435     fgFlightModelUpdate(FG_LARCSIM, f, multi_loop);
436
437     // update the view angle
438     for ( i = 0; i < multi_loop; i++ ) {
439         if ( fabs(v->goal_view_offset - v->view_offset) < 0.05 ) {
440             v->view_offset = v->goal_view_offset;
441             break;
442         } else {
443             // move v->view_offset towards v->goal_view_offset
444             if ( v->goal_view_offset > v->view_offset ) {
445                 if ( v->goal_view_offset - v->view_offset < FG_PI ) {
446                     v->view_offset += 0.01;
447                 } else {
448                     v->view_offset -= 0.01;
449                 }
450             } else {
451                 if ( v->view_offset - v->goal_view_offset < FG_PI ) {
452                     v->view_offset -= 0.01;
453                 } else {
454                     v->view_offset += 0.01;
455                 }
456             }
457             if ( v->view_offset > FG_2PI ) {
458                 v->view_offset -= FG_2PI;
459             } else if ( v->view_offset < 0 ) {
460                 v->view_offset += FG_2PI;
461             }
462         }
463     }
464 }
465
466
467 void fgInitTimeDepCalcs( void ) {
468     // initialize timer
469
470 #ifdef HAVE_SETITIMER
471     fgTimerInit( 1.0 / DEFAULT_TIMER_HZ, fgUpdateTimeDepCalcs );
472 #endif HAVE_SETITIMER
473
474 }
475
476
477 // What should we do when we have nothing else to do?  Let's get ready
478 // for the next move and update the display?
479 static void fgMainLoop( void ) {
480     static int remainder = 0;
481     int elapsed, multi_loop;
482     double cur_elev;
483     // double joy_x, joy_y;
484     // int joy_b1, joy_b2;
485     fgAIRCRAFT *a;
486     fgFLIGHT *f;
487     struct fgTIME *t;
488
489     fgPrintf( FG_ALL, FG_DEBUG, "Running Main Loop\n");
490     fgPrintf( FG_ALL, FG_DEBUG, "======= ==== ====\n");
491
492     a = &current_aircraft;
493     f = a->flight;
494     t = &cur_time_params;
495
496     // update "time"
497     fgTimeUpdate(f, t);
498
499     // Read joystick
500     /* fgJoystickRead( &joy_x, &joy_y, &joy_b1, &joy_b2 );
501     printf( "Joystick X %f  Y %f  B1 %d  B2 %d\n",  
502             joy_x, joy_y, joy_b1, joy_b2 );
503     fgElevSet( -joy_y );
504     fgAileronSet( joy_x ); */
505
506     // Calculate model iterations needed
507     elapsed = fgGetTimeInterval();
508     fgPrintf( FG_ALL, FG_BULK, 
509               "Time interval is = %d, previous remainder is = %d\n", 
510               elapsed, remainder);
511     fgPrintf( FG_ALL, FG_BULK, 
512               "--> Frame rate is = %.2f\n", 1000.0 / (float)elapsed);
513     elapsed += remainder;
514
515     multi_loop = (int)(((float)elapsed * 0.001) * DEFAULT_MODEL_HZ);
516     remainder = elapsed - ((multi_loop*1000) / DEFAULT_MODEL_HZ);
517     fgPrintf( FG_ALL, FG_BULK, 
518               "Model iterations needed = %d, new remainder = %d\n", 
519               multi_loop, remainder);
520         
521     // Run flight model
522     if ( ! use_signals ) {
523         // flight model
524         fgUpdateTimeDepCalcs(multi_loop);
525     }
526
527     // I'm just sticking this here for now, it should probably move
528     // eventually
529     /* cur_elev = mesh_altitude(FG_Longitude * RAD_TO_ARCSEC, 
530                                FG_Latitude  * RAD_TO_ARCSEC); */
531     // there is no ground collision detection really, so for now I
532     // just hard code the ground elevation to be 0 */
533     cur_elev = 0;
534
535     // printf("Ground elevation is %.2f meters here.\n", cur_elev);
536     // FG_Runway_altitude = cur_elev * METER_TO_FEET;
537
538     if ( FG_Altitude * FEET_TO_METER < cur_elev + 3.758099) {
539         // set this here, otherwise if we set runway height above our
540         // current height we get a really nasty bounce.
541         FG_Runway_altitude = FG_Altitude - 3.758099;
542
543         // now set aircraft altitude above ground
544         FG_Altitude = cur_elev * METER_TO_FEET + 3.758099;
545         fgPrintf( FG_ALL, FG_BULK, "<*> resetting altitude to %.0f meters\n", 
546                FG_Altitude * FEET_TO_METER);
547     }
548
549     fgAircraftOutputCurrent(a);
550
551     // see if we need to load any new scenery tiles
552     fgTileMgrUpdate();
553
554     // Process/manage pending events
555     fgEventProcess();
556
557     // redraw display
558     fgRenderFrame();
559
560     fgPrintf( FG_ALL, FG_DEBUG, "\n");
561 }
562
563
564 // Handle new window size or exposure
565 static void fgReshape( int width, int height ) {
566     // Do this so we can call fgReshape(0,0) ourselves without having
567     // to know what the values of width & height are.
568     if ( (height > 0) && (width > 0) ) {
569         win_ratio = (GLfloat) height / (GLfloat) width;
570     }
571
572     winWidth = width;
573     winHeight = height;
574
575     // Inform gl of our view window size (now handled elsewhere)
576     // xglViewport(0, 0, (GLint)width, (GLint)height);
577     fgUpdateViewParams();
578     
579     // xglClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
580 }
581
582
583 // Initialize GLUT and define a main window
584 int fgGlutInit( int argc, char **argv ) {
585     // GLUT will extract all glut specific options so later on we only
586     // need wory about our own.
587     xglutInit(&argc, argv);
588
589     // Define Display Parameters
590     xglutInitDisplayMode( GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE );
591
592     // Define initial window size
593     xglutInitWindowSize(640, 480);
594
595     // Initialize windows
596     xglutCreateWindow("Flight Gear");
597
598     return(1);
599 }
600
601
602 // Initialize GLUT event handlers
603 int fgGlutInitEvents( void ) {
604     // call fgReshape() on window resizes
605     xglutReshapeFunc( fgReshape );
606
607     // call GLUTkey() on keyboard event
608     xglutKeyboardFunc( GLUTkey );
609     glutSpecialFunc( GLUTspecialkey );
610
611     // call fgMainLoop() whenever there is
612     // nothing else to do
613     xglutIdleFunc( fgMainLoop );
614
615     // draw the scene
616     xglutDisplayFunc( fgRenderFrame );
617
618     return(1);
619 }
620
621
622 // Main ...
623 int main( int argc, char **argv ) {
624     fgFLIGHT *f;
625     int result;  // Used in command line argument.
626
627     f = current_aircraft.flight;
628
629     // Initialize the debugging output system
630     fgInitDebug();
631
632     fgPrintf(FG_GENERAL, FG_INFO, "Flight Gear:  Version %s\n\n", VERSION);
633
634     // Initialize the Window/Graphics environment.
635     if( !fgGlutInit(argc, argv) ) {
636         fgPrintf( FG_GENERAL, FG_EXIT, "GLUT initialization failed ...\n" );
637     }
638
639     // Parse remaining command line options
640     result = current_options.parse(argc, argv);
641
642     if ( result != FG_OPTIONS_OK ) {
643         // Something must have gone horribly wrong with the command
644         // line parsing or maybe the user just requested help ... :-)
645         current_options.usage();
646         fgPrintf( FG_GENERAL, FG_EXIT, "\nShutting down ...\n");
647     }
648
649     // These are a few miscellaneous things that aren't really
650     // "subsystems" but still need to be initialized.
651     if( !fgInitGeneral()) {
652         fgPrintf( FG_GENERAL, FG_EXIT, "General initializations failed ...\n" );
653     }
654
655     // This is the top level init routine which calls all the other
656     // subsystem initialization routines.  If you are adding a
657     // subsystem to flight gear, its initialization call should
658     // located in this routine.
659     if( !fgInitSubsystems()) {
660         fgPrintf( FG_GENERAL, FG_EXIT,
661                   "Subsystem initializations failed ...\n" );
662     }
663
664     // setup OpenGL view parameters
665     fgInitVisuals();
666
667     if ( use_signals ) {
668         // init timer routines, signals, etc.  Arrange for an alarm
669         // signal to be generated, etc.
670         fgInitTimeDepCalcs();
671     }
672
673     // Initialize the various GLUT Event Handlers.
674     if( !fgGlutInitEvents() ) {
675         fgPrintf( FG_GENERAL, FG_EXIT, 
676                   "GLUT event handler initialization failed ...\n" );
677     }
678
679     // pass control off to the master GLUT event handler
680     glutMainLoop();
681
682     // we never actually get here ... but just in case ... :-)
683     return(0);
684 }
685
686
687 #ifdef __SUNPRO_CC
688 extern "C" {
689     void __eprintf( void ) {
690     }
691 }
692 #endif
693
694
695 // $Log$
696 // Revision 1.6  1998/04/25 22:06:30  curt
697 // Edited cvs log messages in source files ... bad bad bad!
698 //
699 // Revision 1.5  1998/04/25 20:24:01  curt
700 // Cleaned up initialization sequence to eliminate interdependencies
701 // between sun position, lighting, and view position.  This creates a
702 // valid single pass initialization path.
703 //
704 // Revision 1.4  1998/04/24 14:19:30  curt
705 // Fog tweaks.
706 //
707 // Revision 1.3  1998/04/24 00:49:18  curt
708 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
709 // Trying out some different option parsing code.
710 // Some code reorganization.
711 //
712 // Revision 1.2  1998/04/22 13:25:41  curt
713 // C++ - ifing the code.
714 // Starting a bit of reorganization of lighting code.
715 //
716 // Revision 1.1  1998/04/21 17:02:39  curt
717 // Prepairing for C++ integration.
718 //
719 // Revision 1.71  1998/04/18 04:11:26  curt
720 // Moved fg_debug to it's own library, added zlib support.
721 //
722 // Revision 1.70  1998/04/14 02:21:02  curt
723 // Incorporated autopilot heading hold contributed by:  Jeff Goeke-Smith
724 // <jgoeke@voyager.net>
725 //
726 // Revision 1.69  1998/04/08 23:35:34  curt
727 // Tweaks to Gnu automake/autoconf system.
728 //
729 // Revision 1.68  1998/04/03 22:09:03  curt
730 // Converting to Gnu autoconf system.
731 //
732 // Revision 1.67  1998/03/23 21:24:37  curt
733 // Source code formating tweaks.
734 //
735 // Revision 1.66  1998/03/14 00:31:20  curt
736 // Beginning initial terrain texturing experiments.
737 //
738 // Revision 1.65  1998/03/09 22:45:57  curt
739 // Minor tweaks for building on sparc platform.
740 //
741 // Revision 1.64  1998/02/20 00:16:23  curt
742 // Thursday's tweaks.
743 //
744 // Revision 1.63  1998/02/16 16:17:39  curt
745 // Minor tweaks.
746 //
747 // Revision 1.62  1998/02/16 13:39:42  curt
748 // Miscellaneous weekend tweaks.  Fixed? a cache problem that caused whole
749 // tiles to occasionally be missing.
750 //
751 // Revision 1.61  1998/02/12 21:59:46  curt
752 // Incorporated code changes contributed by Charlie Hotchkiss
753 // <chotchkiss@namg.us.anritsu.com>
754 //
755 // Revision 1.60  1998/02/11 02:50:40  curt
756 // Minor changes.
757 //
758 // Revision 1.59  1998/02/09 22:56:54  curt
759 // Removed "depend" files from cvs control.  Other minor make tweaks.
760 //
761 // Revision 1.58  1998/02/09 15:07:49  curt
762 // Minor tweaks.
763 //
764 // Revision 1.57  1998/02/07 15:29:40  curt
765 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
766 // <chotchkiss@namg.us.anritsu.com>
767 //
768 // Revision 1.56  1998/02/03 23:20:23  curt
769 // Lots of little tweaks to fix various consistency problems discovered by
770 // Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
771 // passed arguments along to the real printf().  Also incorporated HUD changes
772 // by Michele America.
773 //
774 // Revision 1.55  1998/02/02 20:53:58  curt
775 // Incorporated Durk's changes.
776 //
777 // Revision 1.54  1998/01/31 00:43:10  curt
778 // Added MetroWorks patches from Carmen Volpe.
779 //
780 // Revision 1.53  1998/01/27 18:35:54  curt
781 // Minor tweaks.
782 //
783 // Revision 1.52  1998/01/27 00:47:56  curt
784 // Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
785 // system and commandline/config file processing code.
786 //
787 // Revision 1.51  1998/01/26 15:57:05  curt
788 // Tweaks for dynamic scenery development.
789 //
790 // Revision 1.50  1998/01/19 19:27:07  curt
791 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
792 // This should simplify things tremendously.
793 //
794 // Revision 1.49  1998/01/19 18:40:31  curt
795 // Tons of little changes to clean up the code and to remove fatal errors
796 // when building with the c++ compiler.
797 //
798 // Revision 1.48  1998/01/19 18:35:46  curt
799 // Minor tweaks and fixes for cygwin32.
800 //
801 // Revision 1.47  1998/01/13 00:23:08  curt
802 // Initial changes to support loading and management of scenery tiles.  Note,
803 // there's still a fair amount of work left to be done.
804 //
805 // Revision 1.46  1998/01/08 02:22:06  curt
806 // Beginning to integrate Tile management subsystem.
807 //
808 // Revision 1.45  1998/01/07 03:18:55  curt
809 // Moved astronomical stuff from .../Src/Scenery to .../Src/Astro/
810 //
811 // Revision 1.44  1997/12/30 22:22:31  curt
812 // Further integration of event manager.
813 //
814 // Revision 1.43  1997/12/30 20:47:43  curt
815 // Integrated new event manager with subsystem initializations.
816 //
817 // Revision 1.42  1997/12/30 16:36:47  curt
818 // Merged in Durk's changes ...
819 //
820 // Revision 1.41  1997/12/30 13:06:56  curt
821 // A couple lighting tweaks ...
822 //
823 // Revision 1.40  1997/12/30 01:38:37  curt
824 // Switched back to per vertex normals and smooth shading for terrain.
825 //
826 // Revision 1.39  1997/12/22 23:45:45  curt
827 // First stab at sunset/sunrise sky glow effects.
828 //
829 // Revision 1.38  1997/12/22 04:14:28  curt
830 // Aligned sky with sun so dusk/dawn effects can be correct relative to the sun.
831 //
832 // Revision 1.37  1997/12/19 23:34:03  curt
833 // Lot's of tweaking with sky rendering and lighting.
834 //
835 // Revision 1.36  1997/12/19 16:44:57  curt
836 // Working on scene rendering order and options.
837 //
838 // Revision 1.35  1997/12/18 23:32:32  curt
839 // First stab at sky dome actually starting to look reasonable. :-)
840 //
841 // Revision 1.34  1997/12/17 23:13:34  curt
842 // Began working on rendering a sky.
843 //
844 // Revision 1.33  1997/12/15 23:54:45  curt
845 // Add xgl wrappers for debugging.
846 // Generate terrain normals on the fly.
847 //
848 // Revision 1.32  1997/12/15 20:59:08  curt
849 // Misc. tweaks.
850 //
851 // Revision 1.31  1997/12/12 21:41:25  curt
852 // More light/material property tweaking ... still a ways off.
853 //
854 // Revision 1.30  1997/12/12 19:52:47  curt
855 // Working on lightling and material properties.
856 //
857 // Revision 1.29  1997/12/11 04:43:54  curt
858 // Fixed sun vector and lighting problems.  I thing the moon is now lit
859 // correctly.
860 //
861 // Revision 1.28  1997/12/10 22:37:45  curt
862 // Prepended "fg" on the name of all global structures that didn't have it yet.
863 // i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
864 //
865 // Revision 1.27  1997/12/09 05:11:54  curt
866 // Working on tweaking lighting.
867 //
868 // Revision 1.26  1997/12/09 04:25:29  curt
869 // Working on adding a global lighting params structure.
870 //
871 // Revision 1.25  1997/12/08 22:54:09  curt
872 // Enabled GL_CULL_FACE.
873 //
874 // Revision 1.24  1997/11/25 19:25:32  curt
875 // Changes to integrate Durk's moon/sun code updates + clean up.
876 //
877 // Revision 1.23  1997/11/15 18:16:34  curt
878 // minor tweaks.
879 //
880 // Revision 1.22  1997/10/30 12:38:41  curt
881 // Working on new scenery subsystem.
882 //
883 // Revision 1.21  1997/09/23 00:29:38  curt
884 // Tweaks to get things to compile with gcc-win32.
885 //
886 // Revision 1.20  1997/09/22 14:44:19  curt
887 // Continuing to try to align stars correctly.
888 //
889 // Revision 1.19  1997/09/18 16:20:08  curt
890 // At dusk/dawn add/remove stars in stages.
891 //
892 // Revision 1.18  1997/09/16 22:14:51  curt
893 // Tweaked time of day lighting equations.  Don't draw stars during the day.
894 //
895 // Revision 1.17  1997/09/16 15:50:29  curt
896 // Working on star alignment and time issues.
897 //
898 // Revision 1.16  1997/09/13 02:00:06  curt
899 // Mostly working on stars and generating sidereal time for accurate star
900 // placement.
901 //
902 // Revision 1.15  1997/09/05 14:17:27  curt
903 // More tweaking with stars.
904 //
905 // Revision 1.14  1997/09/05 01:35:53  curt
906 // Working on getting stars right.
907 //
908 // Revision 1.13  1997/09/04 02:17:34  curt
909 // Shufflin' stuff.
910 //
911 // Revision 1.12  1997/08/27 21:32:24  curt
912 // Restructured view calculation code.  Added stars.
913 //
914 // Revision 1.11  1997/08/27 03:30:16  curt
915 // Changed naming scheme of basic shared structures.
916 //
917 // Revision 1.10  1997/08/25 20:27:22  curt
918 // Merged in initial HUD and Joystick code.
919 //
920 // Revision 1.9  1997/08/22 21:34:39  curt
921 // Doing a bit of reorganizing and house cleaning.
922 //
923 // Revision 1.8  1997/08/19 23:55:03  curt
924 // Worked on better simulating real lighting.
925 //
926 // Revision 1.7  1997/08/16 12:22:38  curt
927 // Working on improving the lighting/shading.
928 //
929 // Revision 1.6  1997/08/13 20:24:56  curt
930 // Changes due to changing sunpos interface.
931 //
932 // Revision 1.5  1997/08/06 21:08:32  curt
933 // Sun position now really* works (I think) ... I still have sun time warping
934 // code in place, probably should remove it soon.
935 //
936 // Revision 1.4  1997/08/06 15:41:26  curt
937 // Working on correct sun position.
938 //
939 // Revision 1.3  1997/08/06 00:24:22  curt
940 // Working on correct real time sun lighting.
941 //
942 // Revision 1.2  1997/08/04 20:25:15  curt
943 // Organizational tweaking.
944 //
945 // Revision 1.1  1997/08/02 18:45:00  curt
946 // Renamed GLmain.c GLUTmain.c
947 //
948 // Revision 1.43  1997/08/02 16:23:47  curt
949 // Misc. tweaks.
950 //
951 // Revision 1.42  1997/08/01 19:43:33  curt
952 // Making progress with coordinate system overhaul.
953 //
954 // Revision 1.41  1997/07/31 22:52:37  curt
955 // Working on redoing internal coordinate systems & scenery transformations.
956 //
957 // Revision 1.40  1997/07/30 16:12:42  curt
958 // Moved fg_random routines from Util/ to Math/
959 //
960 // Revision 1.39  1997/07/21 14:45:01  curt
961 // Minor tweaks.
962 //
963 // Revision 1.38  1997/07/19 23:04:47  curt
964 // Added an initial weather section.
965 //
966 // Revision 1.37  1997/07/19 22:34:02  curt
967 // Moved PI definitions to ../constants.h
968 // Moved random() stuff to ../Utils/ and renamed fg_random()
969 //
970 // Revision 1.36  1997/07/18 23:41:25  curt
971 // Tweaks for building with Cygnus Win32 compiler.
972 //
973 // Revision 1.35  1997/07/18 14:28:34  curt
974 // Hacked in some support for wind/turbulence.
975 //
976 // Revision 1.34  1997/07/16 20:04:48  curt
977 // Minor tweaks to aid Win32 port.
978 //
979 // Revision 1.33  1997/07/12 03:50:20  curt
980 // Added an #include <Windows32/Base.h> to help compiling for Win32
981 //
982 // Revision 1.32  1997/07/11 03:23:18  curt
983 // Solved some scenery display/orientation problems.  Still have a positioning
984 // (or transformation?) problem.
985 //
986 // Revision 1.31  1997/07/11 01:29:58  curt
987 // More tweaking of terrian floor.
988 //
989 // Revision 1.30  1997/07/10 04:26:37  curt
990 // We now can interpolated ground elevation for any position in the grid.  We
991 // can use this to enforce a "hard" ground.  We still need to enforce some
992 // bounds checking so that we don't try to lookup data points outside the
993 // grid data set.
994 //
995 // Revision 1.29  1997/07/09 21:31:12  curt
996 // Working on making the ground "hard."
997 //
998 // Revision 1.28  1997/07/08 18:20:12  curt
999 // Working on establishing a hard ground.
1000 //
1001 // Revision 1.27  1997/07/07 20:59:49  curt
1002 // Working on scenery transformations to enable us to fly fluidly over the
1003 // poles with no discontinuity/distortion in scenery.
1004 //
1005 // Revision 1.26  1997/07/05 20:43:34  curt
1006 // renamed mat3 directory to Math so we could add other math related routines.
1007 //
1008 // Revision 1.25  1997/06/29 21:19:17  curt
1009 // Working on scenery management system.
1010 //
1011 // Revision 1.24  1997/06/26 22:14:53  curt
1012 // Beginning work on a scenery management system.
1013 //
1014 // Revision 1.23  1997/06/26 19:08:33  curt
1015 // Restructuring make, adding automatic "make dep" support.
1016 //
1017 // Revision 1.22  1997/06/25 15:39:47  curt
1018 // Minor changes to compile with rsxnt/win32.
1019 //
1020 // Revision 1.21  1997/06/22 21:44:41  curt
1021 // Working on intergrating the VRML (subset) parser.
1022 //
1023 // Revision 1.20  1997/06/21 17:12:53  curt
1024 // Capitalized subdirectory names.
1025 //
1026 // Revision 1.19  1997/06/18 04:10:31  curt
1027 // A couple more runway tweaks ...
1028 //
1029 // Revision 1.18  1997/06/18 02:21:24  curt
1030 // Hacked in a runway
1031 //
1032 // Revision 1.17  1997/06/17 16:51:58  curt
1033 // Timer interval stuff now uses gettimeofday() instead of ftime()
1034 //
1035 // Revision 1.16  1997/06/17 04:19:16  curt
1036 // More timer related tweaks with respect to view direction changes.
1037 //
1038 // Revision 1.15  1997/06/17 03:41:10  curt
1039 // Nonsignal based interval timing is now working.
1040 // This would be a good time to look at cleaning up the code structure a bit.
1041 //
1042 // Revision 1.14  1997/06/16 19:32:51  curt
1043 // Starting to add general timer support.
1044 //
1045 // Revision 1.13  1997/06/02 03:40:06  curt
1046 // A tiny bit more view tweaking.
1047 //
1048 // Revision 1.12  1997/06/02 03:01:38  curt
1049 // Working on views (side, front, back, transitions, etc.)
1050 //
1051 // Revision 1.11  1997/05/31 19:16:25  curt
1052 // Elevator trim added.
1053 //
1054 // Revision 1.10  1997/05/31 04:13:52  curt
1055 // WE CAN NOW FLY!!!
1056 //
1057 // Continuing work on the LaRCsim flight model integration.
1058 // Added some MSFS-like keyboard input handling.
1059 //
1060 // Revision 1.9  1997/05/30 19:27:01  curt
1061 // The LaRCsim flight model is starting to look like it is working.
1062 //
1063 // Revision 1.8  1997/05/30 03:54:10  curt
1064 // Made a bit more progress towards integrating the LaRCsim flight model.
1065 //
1066 // Revision 1.7  1997/05/29 22:39:49  curt
1067 // Working on incorporating the LaRCsim flight model.
1068 //
1069 // Revision 1.6  1997/05/29 12:31:39  curt
1070 // Minor tweaks, moving towards general flight model integration.
1071 //
1072 // Revision 1.5  1997/05/29 02:33:23  curt
1073 // Updated to reflect changing interfaces in other "modules."
1074 //
1075 // Revision 1.4  1997/05/27 17:44:31  curt
1076 // Renamed & rearranged variables and routines.   Added some initial simple
1077 // timer/alarm routines so the flight model can be updated on a regular 
1078 // interval.
1079 //
1080 // Revision 1.3  1997/05/23 15:40:25  curt
1081 // Added GNU copyright headers.
1082 // Fog now works!
1083 //
1084 // Revision 1.2  1997/05/23 00:35:12  curt
1085 // Trying to get fog to work ...
1086 //
1087 // Revision 1.1  1997/05/21 15:57:51  curt
1088 // Renamed due to added GLUT support.
1089 //
1090 // Revision 1.3  1997/05/19 18:22:42  curt
1091 // Parameter tweaking ... starting to stub in fog support.
1092 //
1093 // Revision 1.2  1997/05/17 00:17:34  curt
1094 // Trying to stub in support for standard OpenGL.
1095 //
1096 // Revision 1.1  1997/05/16 16:05:52  curt
1097 // Initial revision.
1098 //