]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTmain.cxx
Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
[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 / 10000000.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     GLfloat black[4] = { 0.0, 0.0, 0.0, 1.0 };
326
327     l = &cur_light_params;
328     o = &current_options;
329     t = &cur_time_params;
330     v = &current_view;
331
332     // update view volume parameters
333     fgUpdateViewParams();
334
335     xglClear( GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT );
336
337     // Tell GL we are switching to model view parameters
338     xglMatrixMode(GL_MODELVIEW);
339     // xglLoadIdentity();
340
341     // draw sky
342     xglDisable( GL_DEPTH_TEST );
343     xglDisable( GL_LIGHTING );
344     xglDisable( GL_CULL_FACE );
345     xglDisable( GL_FOG );
346     xglShadeModel( GL_SMOOTH );
347     fgSkyRender();
348
349     // setup transformation for drawing astronomical objects
350     xglPushMatrix();
351     // Translate to view position
352     xglTranslatef( v->view_pos.x, v->view_pos.y, v->view_pos.z );
353     // Rotate based on gst (sidereal time)
354     angle = t->gst * 15.041085; /* should be 15.041085, Curt thought it was 15*/
355     // printf("Rotating astro objects by %.2f degrees\n",angle);
356     xglRotatef( angle, 0.0, 0.0, -1.0 );
357
358     // draw stars and planets
359     fgStarsRender();
360     fgPlanetsRender();
361
362     // draw the sun
363     fgSunRender();
364
365     // render the moon
366     xglEnable( GL_LIGHTING );
367     // set lighting parameters
368     xglLightfv(GL_LIGHT0, GL_AMBIENT, white );
369     xglLightfv(GL_LIGHT0, GL_DIFFUSE, white );
370     xglEnable( GL_CULL_FACE );
371     
372     // Let's try some blending technique's (Durk)
373     glEnable(GL_BLEND);
374     glBlendFunc(GL_ONE, GL_ONE);
375     fgMoonRender();
376     glDisable(GL_BLEND);
377
378     xglPopMatrix();
379
380     // draw scenery
381     xglShadeModel( /* GL_FLAT */ GL_SMOOTH ); 
382     xglEnable( GL_DEPTH_TEST );
383     xglEnable( GL_FOG );
384     xglFogfv (GL_FOG_COLOR, l->fog_color);
385     // set lighting parameters
386     xglLightfv(GL_LIGHT0, GL_AMBIENT, l->scene_ambient );
387     xglLightfv(GL_LIGHT0, GL_DIFFUSE, l->scene_diffuse );
388     // texture parameters
389     xglEnable( GL_TEXTURE_2D ); /* xglDisable( GL_TEXTURE_2D ); */
390     xglTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT ) ;
391     xglTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT ) ;
392     xglTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR ) ;
393     xglTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, 
394                       GL_LINEAR /* GL_LINEAR_MIPMAP_LINEAR */ ) ;
395     xglTexEnvi( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE ) ;
396     xglHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST ) ;
397     // set base color (I don't think this is doing anything here)
398     xglMaterialfv (GL_FRONT, GL_AMBIENT, white);
399     xglMaterialfv (GL_FRONT, GL_DIFFUSE, white);
400
401     fgTileMgrRender();
402
403     xglDisable( GL_TEXTURE_2D );
404
405     // display HUD
406     if( o->hud_status ) {
407         fgCockpitUpdate();
408     }
409
410     // display instruments
411     if (displayInstruments) {
412         fgUpdateInstrViewParams();
413     }
414
415     xglutSwapBuffers();
416 }
417
418
419 // Update internal time dependent calculations (i.e. flight model)
420 void fgUpdateTimeDepCalcs(int multi_loop) {
421     fgFLIGHT *f;
422     struct fgTIME *t;
423     struct fgVIEW *v;
424     int i;
425
426     f = current_aircraft.flight;
427     t = &cur_time_params;
428     v = &current_view;
429
430     // update the flight model
431     if ( multi_loop < 0 ) {
432         multi_loop = DEFAULT_MULTILOOP;
433     }
434
435     // printf("updating flight model x %d\n", multi_loop);
436     fgFlightModelUpdate(FG_LARCSIM, f, multi_loop);
437
438     // update the view angle
439     for ( i = 0; i < multi_loop; i++ ) {
440         if ( fabs(v->goal_view_offset - v->view_offset) < 0.05 ) {
441             v->view_offset = v->goal_view_offset;
442             break;
443         } else {
444             // move v->view_offset towards v->goal_view_offset
445             if ( v->goal_view_offset > v->view_offset ) {
446                 if ( v->goal_view_offset - v->view_offset < FG_PI ) {
447                     v->view_offset += 0.01;
448                 } else {
449                     v->view_offset -= 0.01;
450                 }
451             } else {
452                 if ( v->view_offset - v->goal_view_offset < FG_PI ) {
453                     v->view_offset -= 0.01;
454                 } else {
455                     v->view_offset += 0.01;
456                 }
457             }
458             if ( v->view_offset > FG_2PI ) {
459                 v->view_offset -= FG_2PI;
460             } else if ( v->view_offset < 0 ) {
461                 v->view_offset += FG_2PI;
462             }
463         }
464     }
465 }
466
467
468 void fgInitTimeDepCalcs( void ) {
469     // initialize timer
470
471 #ifdef HAVE_SETITIMER
472     fgTimerInit( 1.0 / DEFAULT_TIMER_HZ, fgUpdateTimeDepCalcs );
473 #endif HAVE_SETITIMER
474
475 }
476
477
478 // What should we do when we have nothing else to do?  Let's get ready
479 // for the next move and update the display?
480 static void fgMainLoop( void ) {
481     static int remainder = 0;
482     int elapsed, multi_loop;
483     double cur_elev;
484     // double joy_x, joy_y;
485     // int joy_b1, joy_b2;
486     fgAIRCRAFT *a;
487     fgFLIGHT *f;
488     struct fgTIME *t;
489
490     fgPrintf( FG_ALL, FG_DEBUG, "Running Main Loop\n");
491     fgPrintf( FG_ALL, FG_DEBUG, "======= ==== ====\n");
492
493     a = &current_aircraft;
494     f = a->flight;
495     t = &cur_time_params;
496
497     // update "time"
498     fgTimeUpdate(f, t);
499
500     // Read joystick
501     /* fgJoystickRead( &joy_x, &joy_y, &joy_b1, &joy_b2 );
502     printf( "Joystick X %f  Y %f  B1 %d  B2 %d\n",  
503             joy_x, joy_y, joy_b1, joy_b2 );
504     fgElevSet( -joy_y );
505     fgAileronSet( joy_x ); */
506
507     // Calculate model iterations needed
508     elapsed = fgGetTimeInterval();
509     fgPrintf( FG_ALL, FG_BULK, 
510               "Time interval is = %d, previous remainder is = %d\n", 
511               elapsed, remainder);
512     fgPrintf( FG_ALL, FG_BULK, 
513               "--> Frame rate is = %.2f\n", 1000.0 / (float)elapsed);
514     elapsed += remainder;
515
516     multi_loop = (int)(((float)elapsed * 0.001) * DEFAULT_MODEL_HZ);
517     remainder = elapsed - ((multi_loop*1000) / DEFAULT_MODEL_HZ);
518     fgPrintf( FG_ALL, FG_BULK, 
519               "Model iterations needed = %d, new remainder = %d\n", 
520               multi_loop, remainder);
521         
522     // Run flight model
523     if ( ! use_signals ) {
524         // flight model
525         fgUpdateTimeDepCalcs(multi_loop);
526     }
527
528     // I'm just sticking this here for now, it should probably move
529     // eventually
530     /* cur_elev = mesh_altitude(FG_Longitude * RAD_TO_ARCSEC, 
531                                FG_Latitude  * RAD_TO_ARCSEC); */
532     // there is no ground collision detection really, so for now I
533     // just hard code the ground elevation to be 0 */
534     cur_elev = 0;
535
536     // printf("Ground elevation is %.2f meters here.\n", cur_elev);
537     // FG_Runway_altitude = cur_elev * METER_TO_FEET;
538
539     if ( FG_Altitude * FEET_TO_METER < cur_elev + 3.758099) {
540         // set this here, otherwise if we set runway height above our
541         // current height we get a really nasty bounce.
542         FG_Runway_altitude = FG_Altitude - 3.758099;
543
544         // now set aircraft altitude above ground
545         FG_Altitude = cur_elev * METER_TO_FEET + 3.758099;
546         fgPrintf( FG_ALL, FG_BULK, "<*> resetting altitude to %.0f meters\n", 
547                FG_Altitude * FEET_TO_METER);
548     }
549
550     fgAircraftOutputCurrent(a);
551
552     // see if we need to load any new scenery tiles
553     fgTileMgrUpdate();
554
555     // Process/manage pending events
556     fgEventProcess();
557
558     // redraw display
559     fgRenderFrame();
560
561     fgPrintf( FG_ALL, FG_DEBUG, "\n");
562 }
563
564
565 // Handle new window size or exposure
566 static void fgReshape( int width, int height ) {
567     // Do this so we can call fgReshape(0,0) ourselves without having
568     // to know what the values of width & height are.
569     if ( (height > 0) && (width > 0) ) {
570         win_ratio = (GLfloat) height / (GLfloat) width;
571     }
572
573     winWidth = width;
574     winHeight = height;
575
576     // Inform gl of our view window size (now handled elsewhere)
577     // xglViewport(0, 0, (GLint)width, (GLint)height);
578     fgUpdateViewParams();
579     
580     // xglClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
581 }
582
583
584 // Initialize GLUT and define a main window
585 int fgGlutInit( int argc, char **argv ) {
586     // GLUT will extract all glut specific options so later on we only
587     // need wory about our own.
588     xglutInit(&argc, argv);
589
590     // Define Display Parameters
591     xglutInitDisplayMode( GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE );
592
593     // Define initial window size
594     xglutInitWindowSize(640, 480);
595
596     // Initialize windows
597     xglutCreateWindow("Flight Gear");
598
599     return(1);
600 }
601
602
603 // Initialize GLUT event handlers
604 int fgGlutInitEvents( void ) {
605     // call fgReshape() on window resizes
606     xglutReshapeFunc( fgReshape );
607
608     // call GLUTkey() on keyboard event
609     xglutKeyboardFunc( GLUTkey );
610     glutSpecialFunc( GLUTspecialkey );
611
612     // call fgMainLoop() whenever there is
613     // nothing else to do
614     xglutIdleFunc( fgMainLoop );
615
616     // draw the scene
617     xglutDisplayFunc( fgRenderFrame );
618
619     return(1);
620 }
621
622
623 // Main ...
624 int main( int argc, char **argv ) {
625     fgFLIGHT *f;
626     int result;  // Used in command line argument.
627
628     f = current_aircraft.flight;
629
630     // Initialize the debugging output system
631     fgInitDebug();
632
633     fgPrintf(FG_GENERAL, FG_INFO, "Flight Gear:  Version %s\n\n", VERSION);
634
635     // Initialize the Window/Graphics environment.
636     if( !fgGlutInit(argc, argv) ) {
637         fgPrintf( FG_GENERAL, FG_EXIT, "GLUT initialization failed ...\n" );
638     }
639
640     // Parse remaining command line options
641     result = current_options.parse(argc, argv);
642
643     if ( result != FG_OPTIONS_OK ) {
644         // Something must have gone horribly wrong with the command
645         // line parsing or maybe the user just requested help ... :-)
646         current_options.usage();
647         fgPrintf( FG_GENERAL, FG_EXIT, "\nShutting down ...\n");
648     }
649
650     // This is the general house keeping init routine. It initializes the
651     // debug trail scheme and then any other stuff.
652
653     if( !fgInitGeneral()) {
654         fgPrintf( FG_GENERAL, FG_EXIT, "General initializations failed ...\n" );
655     }
656
657     // This is the top level init routine which calls all the other
658     // subsystem initialization routines.  If you are adding a
659     // subsystem to flight gear, its initialization call should
660     // located in this routine.
661     if( !fgInitSubsystems()) {
662         fgPrintf( FG_GENERAL, FG_EXIT,
663                   "Subsystem initializations failed ...\n" );
664     }
665
666     // setup view parameters, only makes GL calls
667     fgInitVisuals();
668
669     if ( use_signals ) {
670         // init timer routines, signals, etc.  Arrange for an
671         // alarm signal to be generated, etc.
672         fgInitTimeDepCalcs();
673     }
674
675     // Initialize the GLUT Event Handlers.
676     if( !fgGlutInitEvents() ) {
677         fgPrintf( FG_GENERAL, FG_EXIT, 
678                   "GLUT event handler initialization failed ...\n" );
679     }
680
681     // pass control off to the GLUT event handler
682     glutMainLoop();
683
684     // we never actually get here ... but just in case ... :-)
685     return(0);
686 }
687
688
689 #ifdef __SUNPRO_CC
690 extern "C" {
691     void __eprintf( void ) {
692     }
693 }
694 #endif
695
696
697 // $Log$
698 // Revision 1.3  1998/04/24 00:49:18  curt
699 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
700 // Trying out some different option parsing code.
701 // Some code reorganization.
702 //
703 // Revision 1.2  1998/04/22 13:25:41  curt
704 // C++ - ifing the code.
705 // Starting a bit of reorganization of lighting code.
706 //
707 // Revision 1.1  1998/04/21 17:02:39  curt
708 // Prepairing for C++ integration.
709 //
710 // Revision 1.71  1998/04/18 04:11:26  curt
711 // Moved fg_debug to it's own library, added zlib support.
712 //
713 // Revision 1.70  1998/04/14 02:21:02  curt
714 // Incorporated autopilot heading hold contributed by:  Jeff Goeke-Smith
715 // <jgoeke@voyager.net>
716 //
717 // Revision 1.69  1998/04/08 23:35:34  curt
718 // Tweaks to Gnu automake/autoconf system.
719 //
720 // Revision 1.68  1998/04/03 22:09:03  curt
721 // Converting to Gnu autoconf system.
722 //
723 // Revision 1.67  1998/03/23 21:24:37  curt
724 // Source code formating tweaks.
725 //
726 // Revision 1.66  1998/03/14 00:31:20  curt
727 // Beginning initial terrain texturing experiments.
728 //
729 // Revision 1.65  1998/03/09 22:45:57  curt
730 // Minor tweaks for building on sparc platform.
731 //
732 // Revision 1.64  1998/02/20 00:16:23  curt
733 // Thursday's tweaks.
734 //
735 // Revision 1.63  1998/02/16 16:17:39  curt
736 // Minor tweaks.
737 //
738 // Revision 1.62  1998/02/16 13:39:42  curt
739 // Miscellaneous weekend tweaks.  Fixed? a cache problem that caused whole
740 // tiles to occasionally be missing.
741 //
742 // Revision 1.61  1998/02/12 21:59:46  curt
743 // Incorporated code changes contributed by Charlie Hotchkiss
744 // <chotchkiss@namg.us.anritsu.com>
745 //
746 // Revision 1.60  1998/02/11 02:50:40  curt
747 // Minor changes.
748 //
749 // Revision 1.59  1998/02/09 22:56:54  curt
750 // Removed "depend" files from cvs control.  Other minor make tweaks.
751 //
752 // Revision 1.58  1998/02/09 15:07:49  curt
753 // Minor tweaks.
754 //
755 // Revision 1.57  1998/02/07 15:29:40  curt
756 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
757 // <chotchkiss@namg.us.anritsu.com>
758 //
759 // Revision 1.56  1998/02/03 23:20:23  curt
760 // Lots of little tweaks to fix various consistency problems discovered by
761 // Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
762 // passed arguments along to the real printf().  Also incorporated HUD changes
763 // by Michele America.
764 //
765 // Revision 1.55  1998/02/02 20:53:58  curt
766 // Incorporated Durk's changes.
767 //
768 // Revision 1.54  1998/01/31 00:43:10  curt
769 // Added MetroWorks patches from Carmen Volpe.
770 //
771 // Revision 1.53  1998/01/27 18:35:54  curt
772 // Minor tweaks.
773 //
774 // Revision 1.52  1998/01/27 00:47:56  curt
775 // Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
776 // system and commandline/config file processing code.
777 //
778 // Revision 1.51  1998/01/26 15:57:05  curt
779 // Tweaks for dynamic scenery development.
780 //
781 // Revision 1.50  1998/01/19 19:27:07  curt
782 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
783 // This should simplify things tremendously.
784 //
785 // Revision 1.49  1998/01/19 18:40:31  curt
786 // Tons of little changes to clean up the code and to remove fatal errors
787 // when building with the c++ compiler.
788 //
789 // Revision 1.48  1998/01/19 18:35:46  curt
790 // Minor tweaks and fixes for cygwin32.
791 //
792 // Revision 1.47  1998/01/13 00:23:08  curt
793 // Initial changes to support loading and management of scenery tiles.  Note,
794 // there's still a fair amount of work left to be done.
795 //
796 // Revision 1.46  1998/01/08 02:22:06  curt
797 // Beginning to integrate Tile management subsystem.
798 //
799 // Revision 1.45  1998/01/07 03:18:55  curt
800 // Moved astronomical stuff from .../Src/Scenery to .../Src/Astro/
801 //
802 // Revision 1.44  1997/12/30 22:22:31  curt
803 // Further integration of event manager.
804 //
805 // Revision 1.43  1997/12/30 20:47:43  curt
806 // Integrated new event manager with subsystem initializations.
807 //
808 // Revision 1.42  1997/12/30 16:36:47  curt
809 // Merged in Durk's changes ...
810 //
811 // Revision 1.41  1997/12/30 13:06:56  curt
812 // A couple lighting tweaks ...
813 //
814 // Revision 1.40  1997/12/30 01:38:37  curt
815 // Switched back to per vertex normals and smooth shading for terrain.
816 //
817 // Revision 1.39  1997/12/22 23:45:45  curt
818 // First stab at sunset/sunrise sky glow effects.
819 //
820 // Revision 1.38  1997/12/22 04:14:28  curt
821 // Aligned sky with sun so dusk/dawn effects can be correct relative to the sun.
822 //
823 // Revision 1.37  1997/12/19 23:34:03  curt
824 // Lot's of tweaking with sky rendering and lighting.
825 //
826 // Revision 1.36  1997/12/19 16:44:57  curt
827 // Working on scene rendering order and options.
828 //
829 // Revision 1.35  1997/12/18 23:32:32  curt
830 // First stab at sky dome actually starting to look reasonable. :-)
831 //
832 // Revision 1.34  1997/12/17 23:13:34  curt
833 // Began working on rendering a sky.
834 //
835 // Revision 1.33  1997/12/15 23:54:45  curt
836 // Add xgl wrappers for debugging.
837 // Generate terrain normals on the fly.
838 //
839 // Revision 1.32  1997/12/15 20:59:08  curt
840 // Misc. tweaks.
841 //
842 // Revision 1.31  1997/12/12 21:41:25  curt
843 // More light/material property tweaking ... still a ways off.
844 //
845 // Revision 1.30  1997/12/12 19:52:47  curt
846 // Working on lightling and material properties.
847 //
848 // Revision 1.29  1997/12/11 04:43:54  curt
849 // Fixed sun vector and lighting problems.  I thing the moon is now lit
850 // correctly.
851 //
852 // Revision 1.28  1997/12/10 22:37:45  curt
853 // Prepended "fg" on the name of all global structures that didn't have it yet.
854 // i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
855 //
856 // Revision 1.27  1997/12/09 05:11:54  curt
857 // Working on tweaking lighting.
858 //
859 // Revision 1.26  1997/12/09 04:25:29  curt
860 // Working on adding a global lighting params structure.
861 //
862 // Revision 1.25  1997/12/08 22:54:09  curt
863 // Enabled GL_CULL_FACE.
864 //
865 // Revision 1.24  1997/11/25 19:25:32  curt
866 // Changes to integrate Durk's moon/sun code updates + clean up.
867 //
868 // Revision 1.23  1997/11/15 18:16:34  curt
869 // minor tweaks.
870 //
871 // Revision 1.22  1997/10/30 12:38:41  curt
872 // Working on new scenery subsystem.
873 //
874 // Revision 1.21  1997/09/23 00:29:38  curt
875 // Tweaks to get things to compile with gcc-win32.
876 //
877 // Revision 1.20  1997/09/22 14:44:19  curt
878 // Continuing to try to align stars correctly.
879 //
880 // Revision 1.19  1997/09/18 16:20:08  curt
881 // At dusk/dawn add/remove stars in stages.
882 //
883 // Revision 1.18  1997/09/16 22:14:51  curt
884 // Tweaked time of day lighting equations.  Don't draw stars during the day.
885 //
886 // Revision 1.17  1997/09/16 15:50:29  curt
887 // Working on star alignment and time issues.
888 //
889 // Revision 1.16  1997/09/13 02:00:06  curt
890 // Mostly working on stars and generating sidereal time for accurate star
891 // placement.
892 //
893 // Revision 1.15  1997/09/05 14:17:27  curt
894 // More tweaking with stars.
895 //
896 // Revision 1.14  1997/09/05 01:35:53  curt
897 // Working on getting stars right.
898 //
899 // Revision 1.13  1997/09/04 02:17:34  curt
900 // Shufflin' stuff.
901 //
902 // Revision 1.12  1997/08/27 21:32:24  curt
903 // Restructured view calculation code.  Added stars.
904 //
905 // Revision 1.11  1997/08/27 03:30:16  curt
906 // Changed naming scheme of basic shared structures.
907 //
908 // Revision 1.10  1997/08/25 20:27:22  curt
909 // Merged in initial HUD and Joystick code.
910 //
911 // Revision 1.9  1997/08/22 21:34:39  curt
912 // Doing a bit of reorganizing and house cleaning.
913 //
914 // Revision 1.8  1997/08/19 23:55:03  curt
915 // Worked on better simulating real lighting.
916 //
917 // Revision 1.7  1997/08/16 12:22:38  curt
918 // Working on improving the lighting/shading.
919 //
920 // Revision 1.6  1997/08/13 20:24:56  curt
921 // Changes due to changing sunpos interface.
922 //
923 // Revision 1.5  1997/08/06 21:08:32  curt
924 // Sun position now really* works (I think) ... I still have sun time warping
925 // code in place, probably should remove it soon.
926 //
927 // Revision 1.4  1997/08/06 15:41:26  curt
928 // Working on correct sun position.
929 //
930 // Revision 1.3  1997/08/06 00:24:22  curt
931 // Working on correct real time sun lighting.
932 //
933 // Revision 1.2  1997/08/04 20:25:15  curt
934 // Organizational tweaking.
935 //
936 // Revision 1.1  1997/08/02 18:45:00  curt
937 // Renamed GLmain.c GLUTmain.c
938 //
939 // Revision 1.43  1997/08/02 16:23:47  curt
940 // Misc. tweaks.
941 //
942 // Revision 1.42  1997/08/01 19:43:33  curt
943 // Making progress with coordinate system overhaul.
944 //
945 // Revision 1.41  1997/07/31 22:52:37  curt
946 // Working on redoing internal coordinate systems & scenery transformations.
947 //
948 // Revision 1.40  1997/07/30 16:12:42  curt
949 // Moved fg_random routines from Util/ to Math/
950 //
951 // Revision 1.39  1997/07/21 14:45:01  curt
952 // Minor tweaks.
953 //
954 // Revision 1.38  1997/07/19 23:04:47  curt
955 // Added an initial weather section.
956 //
957 // Revision 1.37  1997/07/19 22:34:02  curt
958 // Moved PI definitions to ../constants.h
959 // Moved random() stuff to ../Utils/ and renamed fg_random()
960 //
961 // Revision 1.36  1997/07/18 23:41:25  curt
962 // Tweaks for building with Cygnus Win32 compiler.
963 //
964 // Revision 1.35  1997/07/18 14:28:34  curt
965 // Hacked in some support for wind/turbulence.
966 //
967 // Revision 1.34  1997/07/16 20:04:48  curt
968 // Minor tweaks to aid Win32 port.
969 //
970 // Revision 1.33  1997/07/12 03:50:20  curt
971 // Added an #include <Windows32/Base.h> to help compiling for Win32
972 //
973 // Revision 1.32  1997/07/11 03:23:18  curt
974 // Solved some scenery display/orientation problems.  Still have a positioning
975 // (or transformation?) problem.
976 //
977 // Revision 1.31  1997/07/11 01:29:58  curt
978 // More tweaking of terrian floor.
979 //
980 // Revision 1.30  1997/07/10 04:26:37  curt
981 // We now can interpolated ground elevation for any position in the grid.  We
982 // can use this to enforce a "hard" ground.  We still need to enforce some
983 // bounds checking so that we don't try to lookup data points outside the
984 // grid data set.
985 //
986 // Revision 1.29  1997/07/09 21:31:12  curt
987 // Working on making the ground "hard."
988 //
989 // Revision 1.28  1997/07/08 18:20:12  curt
990 // Working on establishing a hard ground.
991 //
992 // Revision 1.27  1997/07/07 20:59:49  curt
993 // Working on scenery transformations to enable us to fly fluidly over the
994 // poles with no discontinuity/distortion in scenery.
995 //
996 // Revision 1.26  1997/07/05 20:43:34  curt
997 // renamed mat3 directory to Math so we could add other math related routines.
998 //
999 // Revision 1.25  1997/06/29 21:19:17  curt
1000 // Working on scenery management system.
1001 //
1002 // Revision 1.24  1997/06/26 22:14:53  curt
1003 // Beginning work on a scenery management system.
1004 //
1005 // Revision 1.23  1997/06/26 19:08:33  curt
1006 // Restructuring make, adding automatic "make dep" support.
1007 //
1008 // Revision 1.22  1997/06/25 15:39:47  curt
1009 // Minor changes to compile with rsxnt/win32.
1010 //
1011 // Revision 1.21  1997/06/22 21:44:41  curt
1012 // Working on intergrating the VRML (subset) parser.
1013 //
1014 // Revision 1.20  1997/06/21 17:12:53  curt
1015 // Capitalized subdirectory names.
1016 //
1017 // Revision 1.19  1997/06/18 04:10:31  curt
1018 // A couple more runway tweaks ...
1019 //
1020 // Revision 1.18  1997/06/18 02:21:24  curt
1021 // Hacked in a runway
1022 //
1023 // Revision 1.17  1997/06/17 16:51:58  curt
1024 // Timer interval stuff now uses gettimeofday() instead of ftime()
1025 //
1026 // Revision 1.16  1997/06/17 04:19:16  curt
1027 // More timer related tweaks with respect to view direction changes.
1028 //
1029 // Revision 1.15  1997/06/17 03:41:10  curt
1030 // Nonsignal based interval timing is now working.
1031 // This would be a good time to look at cleaning up the code structure a bit.
1032 //
1033 // Revision 1.14  1997/06/16 19:32:51  curt
1034 // Starting to add general timer support.
1035 //
1036 // Revision 1.13  1997/06/02 03:40:06  curt
1037 // A tiny bit more view tweaking.
1038 //
1039 // Revision 1.12  1997/06/02 03:01:38  curt
1040 // Working on views (side, front, back, transitions, etc.)
1041 //
1042 // Revision 1.11  1997/05/31 19:16:25  curt
1043 // Elevator trim added.
1044 //
1045 // Revision 1.10  1997/05/31 04:13:52  curt
1046 // WE CAN NOW FLY!!!
1047 //
1048 // Continuing work on the LaRCsim flight model integration.
1049 // Added some MSFS-like keyboard input handling.
1050 //
1051 // Revision 1.9  1997/05/30 19:27:01  curt
1052 // The LaRCsim flight model is starting to look like it is working.
1053 //
1054 // Revision 1.8  1997/05/30 03:54:10  curt
1055 // Made a bit more progress towards integrating the LaRCsim flight model.
1056 //
1057 // Revision 1.7  1997/05/29 22:39:49  curt
1058 // Working on incorporating the LaRCsim flight model.
1059 //
1060 // Revision 1.6  1997/05/29 12:31:39  curt
1061 // Minor tweaks, moving towards general flight model integration.
1062 //
1063 // Revision 1.5  1997/05/29 02:33:23  curt
1064 // Updated to reflect changing interfaces in other "modules."
1065 //
1066 // Revision 1.4  1997/05/27 17:44:31  curt
1067 // Renamed & rearranged variables and routines.   Added some initial simple
1068 // timer/alarm routines so the flight model can be updated on a regular 
1069 // interval.
1070 //
1071 // Revision 1.3  1997/05/23 15:40:25  curt
1072 // Added GNU copyright headers.
1073 // Fog now works!
1074 //
1075 // Revision 1.2  1997/05/23 00:35:12  curt
1076 // Trying to get fog to work ...
1077 //
1078 // Revision 1.1  1997/05/21 15:57:51  curt
1079 // Renamed due to added GLUT support.
1080 //
1081 // Revision 1.3  1997/05/19 18:22:42  curt
1082 // Parameter tweaking ... starting to stub in fog support.
1083 //
1084 // Revision 1.2  1997/05/17 00:17:34  curt
1085 // Trying to stub in support for standard OpenGL.
1086 //
1087 // Revision 1.1  1997/05/16 16:05:52  curt
1088 // Initial revision.
1089 //