]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTmain.cxx
polar3d.h renamed to polar3d.hxx
[flightgear.git] / Main / GLUTmain.cxx
1
2 //
3 // GLUTmain.cxx -- top level sim routines
4 //
5 // Written by Curtis Olson for OpenGL, started May 1997.
6 //
7 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 //
23 // $Id$
24 // (Log is kept at end of this file)
25
26
27 #ifdef HAVE_CONFIG_H
28 #  include <config.h>
29 #endif
30
31 #ifdef HAVE_WINDOWS_H
32 #  include <windows.h>                     
33 #  include <float.h>                    
34 #endif
35
36 #include <GL/glut.h>
37 #include <XGL/xgl.h>
38 #include <stdio.h>
39 #include <string.h>
40
41 #ifdef HAVE_STDLIB_H
42 #   include <stdlib.h>
43 #endif
44
45 #include <sys/stat.h> /* for stat() */
46
47 #ifdef HAVE_UNISTD_H
48 #  include <unistd.h>   /* for stat() */
49 #endif
50
51 #include <Include/fg_constants.h>  // for VERSION
52 #include <Include/general.h>
53
54 #include <Aircraft/aircraft.h>
55 #include <Astro/moon.hxx>
56 #include <Astro/planets.hxx>
57 #include <Astro/sky.hxx>
58 #include <Astro/stars.hxx>
59 #include <Astro/sun.hxx>
60
61 #ifdef HAVE_AUDIO_SUPPORT
62 #  include <Audio/src/sl.h>
63 #  include <Audio/src/sm.h>
64 #endif
65
66 #include <Cockpit/cockpit.hxx>
67 #include <Debug/fg_debug.h>
68 #include <GUI/gui.h>
69 #include <Joystick/joystick.h>
70 #include <Math/fg_geodesy.h>
71 #include <Math/mat3.h>
72 #include <Math/polar3d.hxx>
73 #include <PUI/pu.h>
74 #include <Scenery/scenery.hxx>
75 #include <Scenery/tilemgr.hxx>
76 #include <Time/event.hxx>
77 #include <Time/fg_time.hxx>
78 #include <Time/fg_timer.hxx>
79 #include <Time/sunpos.hxx>
80 #include <Weather/weather.h>
81
82 #include "GLUTkey.hxx"
83 #include "fg_init.hxx"
84 #include "options.hxx"
85 #include "splash.hxx"
86 #include "views.hxx"
87
88
89 // This is a record containing global housekeeping information
90 fgGENERAL general;
91
92 // Specify our current idle function state.  This is used to run all
93 // our initializations out of the glutIdleLoop() so that we can get a
94 // splash screen up and running right away.
95 static idle_state = 0;
96
97 // Another hack
98 int use_signals = 0;
99
100 // Global structures for the Audio library
101 #ifdef HAVE_AUDIO_SUPPORT
102 slScheduler *audio_sched;
103 smMixer *audio_mixer;
104 slSample *s1;
105 slSample *s2;
106 #endif
107
108
109 // The following defines flight gear options. Because glutlib will also
110 // want to parse its own options, those options must not be included here
111 // or they will get parsed by the main program option parser. Hence case
112 // is significant for any option added that might be in conflict with
113 // glutlib's parser.
114 //
115 // glutlib parses for:
116 //    -display
117 //    -direct   (invalid in Win32)
118 //    -geometry
119 //    -gldebug
120 //    -iconized
121 //    -indirect (invalid in Win32)
122 //    -synce
123 //
124 // Note that glutlib depends upon strings while this program's
125 // option parser wants only initial characters followed by numbers
126 // or pathnames.
127 //
128
129
130 // fgInitVisuals() -- Initialize various GL/view parameters
131 static void fgInitVisuals( void ) {
132     fgLIGHT *l;
133     fgOPTIONS *o;
134     struct fgWEATHER *w;
135
136     l = &cur_light_params;
137     o = &current_options;
138     w = &current_weather;
139
140     // Go full screen if requested ...
141     if ( o->fullscreen ) {
142         glutFullScreen();
143     }
144
145     // If enabled, normal vectors specified with glNormal are scaled
146     // to unit length after transformation.  See glNormal.
147     xglEnable( GL_NORMALIZE );
148
149     xglEnable( GL_LIGHTING );
150     xglEnable( GL_LIGHT0 );
151     xglLightfv( GL_LIGHT0, GL_POSITION, l->sun_vec );
152
153     // xglFogi (GL_FOG_MODE, GL_LINEAR);
154     xglFogi (GL_FOG_MODE, GL_EXP2);
155     // Fog density is now set when the weather system is initialized
156     // xglFogf (GL_FOG_DENSITY, w->fog_density);
157     if ( (o->fog == 1) || (o->shading == 0) ) {
158         // if fastest fog requested, or if flat shading force fastest
159         xglHint (GL_FOG_HINT, GL_FASTEST );
160     } else if ( o->fog == 2 ) {
161         xglHint (GL_FOG_HINT, GL_NICEST );
162     }
163     if ( o->wireframe ) {
164         // draw wire frame
165         xglPolygonMode( GL_FRONT_AND_BACK, GL_LINE );
166     }
167
168     // This is the default anyways, but it can't hurt
169     xglFrontFace ( GL_CCW );
170 }
171
172
173 // Update the view volume, position, and orientation
174 static void fgUpdateViewParams( void ) {
175     fgFLIGHT *f;
176     fgLIGHT *l;
177     fgOPTIONS *o;
178     fgVIEW *v;
179
180     f = current_aircraft.flight;
181     l = &cur_light_params;
182     o = &current_options;
183     v = &current_view;
184
185     v->Update(f);
186     v->UpdateWorldToEye(f);
187
188     // if (!o->panel_status) {
189     // xglViewport( 0, (GLint)((v->winHeight) / 2 ) , 
190     // (GLint)(v->winWidth), (GLint)(v->winHeight) / 2 );
191     // Tell GL we are about to modify the projection parameters
192     // xglMatrixMode(GL_PROJECTION);
193     // xglLoadIdentity();
194     // gluPerspective(o->fov, v->win_ratio / 2.0, 1.0, 100000.0);
195     // } else {
196     xglViewport(0, 0 , (GLint)(v->winWidth), (GLint)(v->winHeight) );
197     // Tell GL we are about to modify the projection parameters
198     xglMatrixMode(GL_PROJECTION);
199     xglLoadIdentity();
200     gluPerspective(o->fov, v->win_ratio, 10.0, 100000.0);
201     // }
202
203     xglMatrixMode(GL_MODELVIEW);
204     xglLoadIdentity();
205     
206     // set up our view volume (default)
207     fg_gluLookAt(v->view_pos.x, v->view_pos.y, v->view_pos.z,
208                v->view_pos.x + v->view_forward[0], 
209                v->view_pos.y + v->view_forward[1], 
210                v->view_pos.z + v->view_forward[2],
211                v->view_up[0], v->view_up[1], v->view_up[2]);
212
213     // look almost straight up (testing and eclipse watching)
214     /* fg_gluLookAt(v->view_pos.x, v->view_pos.y, v->view_pos.z,
215                v->view_pos.x + v->view_up[0] + .001, 
216                v->view_pos.y + v->view_up[1] + .001, 
217                v->view_pos.z + v->view_up[2] + .001,
218                v->view_up[0], v->view_up[1], v->view_up[2]); */
219
220     // lock view horizontally towards sun (testing)
221     /* fg_gluLookAt(v->view_pos.x, v->view_pos.y, v->view_pos.z,
222                v->view_pos.x + v->surface_to_sun[0], 
223                v->view_pos.y + v->surface_to_sun[1], 
224                v->view_pos.z + v->surface_to_sun[2],
225                v->view_up[0], v->view_up[1], v->view_up[2]); */
226
227     // lock view horizontally towards south (testing)
228     /* fg_gluLookAt(v->view_pos.x, v->view_pos.y, v->view_pos.z,
229                v->view_pos.x + v->surface_south[0], 
230                v->view_pos.y + v->surface_south[1], 
231                v->view_pos.z + v->surface_south[2],
232                v->view_up[0], v->view_up[1], v->view_up[2]); */
233
234     // set the sun position
235     xglLightfv( GL_LIGHT0, GL_POSITION, l->sun_vec );
236 }
237
238
239 #ifdef 0
240 // Draw a basic instrument panel
241 static void fgUpdateInstrViewParams( void ) {
242
243     exit(0);
244
245     fgVIEW *v;
246
247     v = &current_view;
248
249     xglViewport(0, 0 , (GLint)(v->winWidth), (GLint)(v->winHeight) / 2);
250   
251     xglMatrixMode(GL_PROJECTION);
252     xglPushMatrix();
253   
254     xglLoadIdentity();
255     gluOrtho2D(0, 640, 0, 480);
256     xglMatrixMode(GL_MODELVIEW);
257     xglPushMatrix();
258     xglLoadIdentity();
259
260     xglColor3f(1.0, 1.0, 1.0);
261     xglIndexi(7);
262   
263     xglDisable(GL_DEPTH_TEST);
264     xglDisable(GL_LIGHTING);
265   
266     xglLineWidth(1);
267     xglColor3f (0.5, 0.5, 0.5);
268
269     xglBegin(GL_QUADS);
270     xglVertex2f(0.0, 0.00);
271     xglVertex2f(0.0, 480.0);
272     xglVertex2f(640.0,480.0);
273     xglVertex2f(640.0, 0.0);
274     xglEnd();
275
276     xglRectf(0.0,0.0, 640, 480);
277     xglEnable(GL_DEPTH_TEST);
278     xglEnable(GL_LIGHTING);
279     xglMatrixMode(GL_PROJECTION);
280     xglPopMatrix();
281     xglMatrixMode(GL_MODELVIEW);
282     xglPopMatrix();
283 }
284 #endif
285
286
287 // Update all Visuals (redraws anything graphics related)
288 static void fgRenderFrame( void ) {
289     fgLIGHT *l;
290     fgOPTIONS *o;
291     fgTIME *t;
292     fgVIEW *v;
293     double angle;
294     GLfloat black[4] = { 0.0, 0.0, 0.0, 1.0 };
295     GLfloat white[4] = { 1.0, 1.0, 1.0, 1.0 };
296     GLfloat terrain_color[4] = { 0.54, 0.44, 0.29, 1.0 };
297         
298     l = &cur_light_params;
299     o = &current_options;
300     t = &cur_time_params;
301     v = &current_view;
302
303     if ( idle_state != 1000 ) {
304         // still initializing, draw the splash screen
305         if ( o->splash_screen == 1 ) {
306             fgSplashUpdate(0.0);
307         }
308     } else {
309         // idle_state is now 1000 meaning we've finished all our
310         // initializations and are running the main loop, so this will
311         // now work without seg faulting the system.
312
313         // this is just a temporary hack, to make me understand Pui
314         timerText -> setLabel (ctime (&t->cur_time));
315         // end of hack
316
317         // update view volume parameters
318         fgUpdateViewParams();
319
320         if ( o->skyblend ) {
321             glClearColor(black[0], black[1], black[2], black[3]);
322             xglClear( GL_DEPTH_BUFFER_BIT );
323         } else {
324             glClearColor(l->sky_color[0], l->sky_color[1], 
325                          l->sky_color[2], l->sky_color[3]);
326             xglClear( GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT );
327         }
328
329         // Tell GL we are switching to model view parameters
330         xglMatrixMode(GL_MODELVIEW);
331         // xglLoadIdentity();
332
333         // draw sky
334         xglDisable( GL_DEPTH_TEST );
335         xglDisable( GL_LIGHTING );
336         xglDisable( GL_CULL_FACE );
337         xglDisable( GL_FOG );
338         xglShadeModel( GL_SMOOTH );
339         if ( o->skyblend ) {
340             fgSkyRender();
341         }
342
343         // setup transformation for drawing astronomical objects
344         xglPushMatrix();
345         // Translate to view position
346         xglTranslatef( v->view_pos.x, v->view_pos.y, v->view_pos.z );
347         // Rotate based on gst (sidereal time)
348         // note: constant should be 15.041085, Curt thought it was 15
349         angle = t->gst * 15.041085;
350         // printf("Rotating astro objects by %.2f degrees\n",angle);
351         xglRotatef( angle, 0.0, 0.0, -1.0 );
352
353         // draw stars and planets
354         fgStarsRender();
355         fgPlanetsRender();
356
357         // draw the sun
358         fgSunRender();
359
360         // render the moon
361         xglEnable( GL_LIGHTING );
362         // set lighting parameters
363         xglLightfv(GL_LIGHT0, GL_AMBIENT, white );
364         xglLightfv(GL_LIGHT0, GL_DIFFUSE, white );
365         xglEnable( GL_CULL_FACE );
366     
367         // Let's try some blending technique's (Durk)
368         glEnable(GL_BLEND);
369         glBlendFunc(GL_ONE, GL_ONE);
370         fgMoonRender();
371         glDisable(GL_BLEND);
372
373         xglPopMatrix();
374
375         // draw scenery
376         if ( o->shading ) {
377             xglShadeModel( GL_SMOOTH ); 
378         } else {
379             xglShadeModel( GL_FLAT ); 
380         }
381         xglEnable( GL_DEPTH_TEST );
382         if ( o->fog > 0 ) {
383             xglEnable( GL_FOG );
384             xglFogfv (GL_FOG_COLOR, l->fog_color);
385         }
386         // set lighting parameters
387         xglLightfv(GL_LIGHT0, GL_AMBIENT, l->scene_ambient );
388         xglLightfv(GL_LIGHT0, GL_DIFFUSE, l->scene_diffuse );
389         
390         if ( o->textures ) {
391             // texture parameters
392             xglEnable( GL_TEXTURE_2D );
393             xglTexEnvi( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE ) ;
394             xglHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST ) ;
395             // set base color (I don't think this is doing anything here)
396             xglMaterialfv (GL_FRONT, GL_AMBIENT, white);
397             xglMaterialfv (GL_FRONT, GL_DIFFUSE, white);
398         } else {
399             xglDisable( GL_TEXTURE_2D );
400             xglMaterialfv (GL_FRONT, GL_AMBIENT, terrain_color);
401             xglMaterialfv (GL_FRONT, GL_DIFFUSE, terrain_color);
402             // xglMaterialfv (GL_FRONT, GL_AMBIENT, white);
403             // xglMaterialfv (GL_FRONT, GL_DIFFUSE, white);
404         }
405
406         fgTileMgrRender();
407
408         xglDisable( GL_TEXTURE_2D );
409
410         // display HUD && Panel
411         fgCockpitUpdate();
412         
413         // display instruments
414         // if (!o->panel_status) {
415         // fgUpdateInstrViewParams();
416         // }
417         puDisplay();
418     }
419
420     xglutSwapBuffers();
421 }
422
423
424 // Update internal time dependent calculations (i.e. flight model)
425 void fgUpdateTimeDepCalcs(int multi_loop) {
426     fgFLIGHT *f;
427     fgTIME *t;
428     fgVIEW *v;
429     int i;
430
431     f = current_aircraft.flight;
432     t = &cur_time_params;
433     v = &current_view;
434
435     // update the flight model
436     if ( multi_loop < 0 ) {
437         multi_loop = DEFAULT_MULTILOOP;
438     }
439
440     // printf("updating flight model x %d\n", multi_loop);
441     fgFlightModelUpdate(FG_LARCSIM, f, multi_loop);
442
443     // update the view angle
444     for ( i = 0; i < multi_loop; i++ ) {
445         if ( fabs(v->goal_view_offset - v->view_offset) < 0.05 ) {
446             v->view_offset = v->goal_view_offset;
447             break;
448         } else {
449             // move v->view_offset towards v->goal_view_offset
450             if ( v->goal_view_offset > v->view_offset ) {
451                 if ( v->goal_view_offset - v->view_offset < FG_PI ) {
452                     v->view_offset += 0.01;
453                 } else {
454                     v->view_offset -= 0.01;
455                 }
456             } else {
457                 if ( v->view_offset - v->goal_view_offset < FG_PI ) {
458                     v->view_offset -= 0.01;
459                 } else {
460                     v->view_offset += 0.01;
461                 }
462             }
463             if ( v->view_offset > FG_2PI ) {
464                 v->view_offset -= FG_2PI;
465             } else if ( v->view_offset < 0 ) {
466                 v->view_offset += FG_2PI;
467             }
468         }
469     }
470 }
471
472
473 void fgInitTimeDepCalcs( void ) {
474     // initialize timer
475
476 #ifdef HAVE_SETITIMER
477     fgTimerInit( 1.0 / DEFAULT_TIMER_HZ, fgUpdateTimeDepCalcs );
478 #endif HAVE_SETITIMER
479
480 }
481
482
483 // What should we do when we have nothing else to do?  Let's get ready
484 // for the next move and update the display?
485 static void fgMainLoop( void ) {
486     fgAIRCRAFT *a;
487     fgFLIGHT *f;
488     fgGENERAL *g;
489     fgTIME *t;
490     static int remainder = 0;
491     int elapsed, multi_loop;
492     double cur_elev;
493     int i;
494     double accum;
495     // double joy_x, joy_y;
496     // int joy_b1, joy_b2;
497
498     a = &current_aircraft;
499     f = a->flight;
500     g = &general;
501     t = &cur_time_params;
502
503     fgPrintf( FG_ALL, FG_DEBUG, "Running Main Loop\n");
504     fgPrintf( FG_ALL, FG_DEBUG, "======= ==== ====\n");
505
506     // update "time"
507     fgTimeUpdate(f, t);
508
509     // Read joystick
510     /* fgJoystickRead( &joy_x, &joy_y, &joy_b1, &joy_b2 );
511     printf( "Joystick X %f  Y %f  B1 %d  B2 %d\n",  
512             joy_x, joy_y, joy_b1, joy_b2 );
513     fgElevSet( -joy_y );
514     fgAileronSet( joy_x ); */
515
516     // Get elapsed time for this past frame
517     elapsed = fgGetTimeInterval();
518     fgPrintf( FG_ALL, FG_BULK, 
519               "Time interval is = %d, previous remainder is = %d\n", 
520               elapsed, remainder);
521
522     // Calculate frame rate average
523     if ( elapsed > 0.0 ) {
524         accum = 0.0;
525         for ( i = FG_FRAME_RATE_HISTORY - 2; i >= 0; i-- ) {
526             accum += g->frames[i];
527             // printf("frame[%d] = %.2f\n", i, g->frames[i]);
528             g->frames[i+1] = g->frames[i];
529         }
530         g->frames[0] = 1000.0 / (float)elapsed;
531         // printf("frame[0] = %.2f\n", g->frames[0]);
532         accum += g->frames[0];
533         g->frame_rate = accum / (float)FG_FRAME_RATE_HISTORY;
534         // printf("ave = %.2f\n", g->frame_rate);
535     }
536
537     // Calculate model iterations needed for next frame
538     fgPrintf( FG_ALL, FG_DEBUG, 
539               "--> Frame rate is = %.2f\n", g->frame_rate);
540     elapsed += remainder;
541
542     multi_loop = (int)(((float)elapsed * 0.001) * DEFAULT_MODEL_HZ);
543     remainder = elapsed - ((multi_loop*1000) / DEFAULT_MODEL_HZ);
544     fgPrintf( FG_ALL, FG_BULK, 
545               "Model iterations needed = %d, new remainder = %d\n", 
546               multi_loop, remainder);
547         
548     // Run flight model
549     if ( ! use_signals ) {
550         // flight model
551         fgUpdateTimeDepCalcs(multi_loop);
552     }
553
554     // I'm just sticking this here for now, it should probably move
555     // eventually
556     /* cur_elev = mesh_altitude(FG_Longitude * RAD_TO_ARCSEC, 
557                                FG_Latitude  * RAD_TO_ARCSEC); */
558     // there is no ground collision detection really, so for now I
559     // just hard code the ground elevation to be 0 */
560     cur_elev = 0;
561
562     // printf("Ground elevation is %.2f meters here.\n", cur_elev);
563     // FG_Runway_altitude = cur_elev * METER_TO_FEET;
564
565     if ( FG_Altitude * FEET_TO_METER < cur_elev + 3.758099) {
566         // set this here, otherwise if we set runway height above our
567         // current height we get a really nasty bounce.
568         FG_Runway_altitude = FG_Altitude - 3.758099;
569
570         // now set aircraft altitude above ground
571         FG_Altitude = cur_elev * METER_TO_FEET + 3.758099;
572         fgPrintf( FG_ALL, FG_BULK, "<*> resetting altitude to %.0f meters\n", 
573                FG_Altitude * FEET_TO_METER);
574     }
575
576     fgAircraftOutputCurrent(a);
577
578     // see if we need to load any new scenery tiles
579     fgTileMgrUpdate();
580
581     // Process/manage pending events
582     global_events.Process();
583
584     // Run audio scheduler
585 #ifdef HAVE_AUDIO_SUPPORT
586     audio_sched -> update();
587 #endif
588
589     // redraw display
590     fgRenderFrame();
591
592     fgPrintf( FG_ALL, FG_DEBUG, "\n");
593 }
594
595
596 // This is the top level master main function that is registered as
597 // our idle funciton
598 //
599
600 // The first few passes take care of initialization things (a couple
601 // per pass) and once everything has been initialized fgMainLoop from
602 // then on.
603
604 static void fgIdleFunction ( void ) {
605     fgGENERAL *g;
606     fgOPTIONS *o;
607     char path[256], mp3file[256], command[256], slfile[256];
608     static char *lockfile = "/tmp/mpg123.running";
609
610     g = &general;
611     o = &current_options;
612
613     // printf("idle state == %d\n", idle_state);
614
615     if ( idle_state == 0 ) {
616         // Initialize the splash screen right away
617         if ( o->splash_screen ) {
618             fgSplashInit();
619         }
620         
621         idle_state++;
622     } else if ( idle_state == 1 ) {
623         // Start the intro music
624 #if !defined(WIN32)
625         if ( o->intro_music ) {
626             strcpy(mp3file, o->fg_root);
627             strcat(mp3file, "/Sounds/");
628             strcat(mp3file, "intro.mp3");
629             sprintf(command, 
630                     "(touch %s; mpg123 %s > /dev/null 2>&1; /bin/rm %s) &", 
631                     lockfile, mp3file, lockfile );
632             fgPrintf( FG_GENERAL, FG_INFO, 
633                       "Starting intro music: %s\n", mp3file);
634             system(command);
635         }
636 #endif
637
638         idle_state++;
639     } else if ( idle_state == 2 ) {
640         // These are a few miscellaneous things that aren't really
641         // "subsystems" but still need to be initialized.
642         if( !fgInitGeneral()) {
643             fgPrintf( FG_GENERAL, FG_EXIT, 
644                       "General initializations failed ...\n" );
645         }
646 #ifdef USE_GLIDE
647         if ( strstr ( g->glRenderer, "Glide" ) ) {
648             grTexLodBiasValue ( GR_TMU0, 1.0 ) ;
649         }
650 #endif
651
652         idle_state++;
653     } else if ( idle_state == 3 ) {
654         // This is the top level init routine which calls all the
655         // other subsystem initialization routines.  If you are adding
656         // a subsystem to flight gear, its initialization call should
657         // located in this routine.
658         if( !fgInitSubsystems()) {
659             fgPrintf( FG_GENERAL, FG_EXIT,
660                       "Subsystem initializations failed ...\n" );
661         }
662
663         idle_state++;
664     } else if ( idle_state == 4 ) {
665         // setup OpenGL view parameters
666         fgInitVisuals();
667
668         if ( use_signals ) {
669             // init timer routines, signals, etc.  Arrange for an alarm
670             // signal to be generated, etc.
671             fgInitTimeDepCalcs();
672         }
673
674         idle_state++;
675     } else if ( idle_state == 5 ) {
676         //Init the user interface
677         guiInit();
678
679         idle_state++;
680     } else if ( idle_state == 6 ) {
681         // Initialize audio support
682 #ifdef HAVE_AUDIO_SUPPORT
683
684 #if !defined(WIN32)
685         if ( o->intro_music ) {
686             // Let's wait for mpg123 to finish
687             struct stat stat_buf;
688
689             fgPrintf( FG_GENERAL, FG_INFO, 
690                       "Waiting for mpg123 player to finish " );
691             while ( stat(lockfile, &stat_buf) == 0 ) {
692                 // file exist, wait ...
693                 sleep(1);
694                 fgPrintf( FG_GENERAL, FG_INFO, ".");
695             }
696             fgPrintf( FG_GENERAL, FG_INFO, "\n");
697         }
698 #endif // WIN32
699
700         audio_sched = new slScheduler ( 8000 );
701         audio_mixer = new smMixer;
702         audio_mixer -> setMasterVolume ( 30 ) ;  /* 50% of max volume. */
703         audio_sched -> setSafetyMargin ( 1.0 ) ;
704         strcpy(path, o->fg_root);
705         strcat(path, "/Sounds/");
706
707         strcpy(slfile, path);
708         strcat(slfile, "prpidle.wav");
709         // s1 = new slSample ( slfile );
710         s1 = new slSample ( "/dos/X-System-HSR/sounds/xp_recip.wav", 
711                             audio_sched );
712         printf("Rate = %d  Bps = %d  Stereo = %d\n", 
713                s1 -> getRate(), s1 -> getBps(), s1 -> getStereo());
714         audio_sched -> loopSample ( s1 );
715         
716         // strcpy(slfile, path);
717         // strcat(slfile, "thunder.wav");
718         // s2 -> loadFile ( slfile );
719         // s2 -> adjustVolume(0.5);
720         // audio_sched -> playSample ( s2 );
721 #endif
722
723         sleep(1);
724         idle_state = 1000;
725     } 
726
727     if ( idle_state == 1000 ) {
728         // We've finished all our initialization steps, from now on we
729         // run the main loop.
730
731         fgMainLoop();
732     } else {
733         if ( o->splash_screen == 1 ) {
734             fgSplashUpdate(0.0);
735         }
736     }
737 }
738
739
740 // Handle new window size or exposure
741 static void fgReshape( int width, int height ) {
742     fgVIEW *v;
743
744     v = &current_view;
745
746     // Do this so we can call fgReshape(0,0) ourselves without having
747     // to know what the values of width & height are.
748     if ( (height > 0) && (width > 0) ) {
749         v->win_ratio = (GLfloat) width / (GLfloat) height;
750     }
751
752     v->winWidth = width;
753     v->winHeight = height;
754
755     // Inform gl of our view window size (now handled elsewhere)
756     // xglViewport(0, 0, (GLint)width, (GLint)height);
757     if ( idle_state == 1000 ) {
758         // yes we've finished all our initializations and are running
759         // the main loop, so this will now work without seg faulting
760         // the system.
761         fgUpdateViewParams();
762     }
763     
764     // xglClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
765 }
766
767
768 // Initialize GLUT and define a main window
769 int fgGlutInit( int *argc, char **argv ) {
770     // GLUT will extract all glut specific options so later on we only
771     // need wory about our own.
772     xglutInit(argc, argv);
773
774     // Define Display Parameters
775     xglutInitDisplayMode( GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE );
776
777     // Define initial window size
778     xglutInitWindowSize(640, 480);
779
780     // Initialize windows
781     xglutCreateWindow("Flight Gear");
782
783     return(1);
784 }
785
786
787 // Initialize GLUT event handlers
788 int fgGlutInitEvents( void ) {
789     // call fgReshape() on window resizes
790     xglutReshapeFunc( fgReshape );
791
792     // call GLUTkey() on keyboard event
793     xglutKeyboardFunc( GLUTkey );
794     glutSpecialFunc( GLUTspecialkey );
795
796     // call guiMouseFunc() whenever our little rodent is used
797     glutMouseFunc ( guiMouseFunc );
798     glutMotionFunc (guiMotionFunc );
799     glutPassiveMotionFunc (guiMotionFunc );
800
801     // call fgMainLoop() whenever there is
802     // nothing else to do
803     xglutIdleFunc( fgIdleFunction );
804
805     // draw the scene
806     xglutDisplayFunc( fgRenderFrame );
807
808     return(1);
809 }
810
811
812 // Main ...
813 int main( int argc, char **argv ) {
814     fgFLIGHT *f;
815     fgOPTIONS *o;
816     char config[256];
817     int result;  // Used in command line argument.
818
819     f = current_aircraft.flight;
820     o = &current_options;
821
822 #ifdef HAVE_BC5PLUS
823     _control87(MCW_EM, MCW_EM);  /* defined in float.h */
824 #endif
825
826     // Initialize the debugging output system
827     fgInitDebug();
828
829     fgPrintf(FG_GENERAL, FG_INFO, "Flight Gear:  Version %s\n\n", VERSION);
830
831     // Initialize the Window/Graphics environment.
832     if( !fgGlutInit(&argc, argv) ) {
833         fgPrintf( FG_GENERAL, FG_EXIT, "GLUT initialization failed ...\n" );
834     }
835
836     // Initialize the various GLUT Event Handlers.
837     if( !fgGlutInitEvents() ) {
838         fgPrintf( FG_GENERAL, FG_EXIT, 
839                   "GLUT event handler initialization failed ...\n" );
840     }
841
842     // Attempt to locate and parse a config file
843     // First check fg_root
844     strcpy(config, o->fg_root);
845     strcat(config, "/system.fgfsrc");
846     result = o->parse_config_file(config);
847
848     // Next check home directory
849     if ( getenv("HOME") != NULL ) {
850         strcpy(config, getenv("HOME"));
851         strcat(config, "/.fgfsrc");
852         result = o->parse_config_file(config);
853     }
854
855     // Parse remaining command line options
856     // These will override anything specified in a config file
857     result = o->parse_command_line(argc, argv);
858     if ( result != FG_OPTIONS_OK ) {
859         // Something must have gone horribly wrong with the command
860         // line parsing or maybe the user just requested help ... :-)
861         o->usage();
862         fgPrintf( FG_GENERAL, FG_EXIT, "\nExiting ...\n");
863     }
864
865     // pass control off to the master GLUT event handler
866     glutMainLoop();
867
868     // we never actually get here ... but just in case ... :-)
869     return(0);
870 }
871
872
873 // $Log$
874 // Revision 1.32  1998/07/08 14:45:07  curt
875 // polar3d.h renamed to polar3d.hxx
876 // vector.h renamed to vector.hxx
877 // updated audio support so it waits to create audio classes (and tie up
878 //   /dev/dsp) until the mpg123 player is finished.
879 //
880 // Revision 1.31  1998/07/06 21:34:17  curt
881 // Added an enable/disable splash screen option.
882 // Added an enable/disable intro music option.
883 // Added an enable/disable instrument panel option.
884 // Added an enable/disable mouse pointer option.
885 // Added using namespace std for compilers that support this.
886 //
887 // Revision 1.30  1998/07/06 02:42:03  curt
888 // Added support for switching between fullscreen and window mode for
889 // Mesa/3dfx/glide.
890 //
891 // Added a basic splash screen.  Restructured the main loop and top level
892 // initialization routines to do this.
893 //
894 // Hacked in some support for playing a startup mp3 sound file while rest
895 // of sim initializes.  Currently only works in Unix using the mpg123 player.
896 // Waits for the mpg123 player to finish before initializing internal
897 // sound drivers.
898 //
899 // Revision 1.29  1998/07/04 00:52:22  curt
900 // Add my own version of gluLookAt() (which is nearly identical to the
901 // Mesa/glu version.)  But, by calculating the Model View matrix our selves
902 // we can save this matrix without having to read it back in from the video
903 // card.  This hopefully allows us to save a few cpu cycles when rendering
904 // out the fragments because we can just use glLoadMatrixd() with the
905 // precalculated matrix for each tile rather than doing a push(), translate(),
906 // pop() for every fragment.
907 //
908 // Panel status defaults to off for now until it gets a bit more developed.
909 //
910 // Extract OpenGL driver info on initialization.
911 //
912 // Revision 1.28  1998/06/27 16:54:32  curt
913 // Replaced "extern displayInstruments" with a entry in fgOPTIONS.
914 // Don't change the view port when displaying the panel.
915 //
916 // Revision 1.27  1998/06/17 21:35:10  curt
917 // Refined conditional audio support compilation.
918 // Moved texture parameter setup calls to ../Scenery/materials.cxx
919 // #include <string.h> before various STL includes.
920 // Make HUD default state be enabled.
921 //
922 // Revision 1.26  1998/06/13 00:40:32  curt
923 // Tweaked fog command line options.
924 //
925 // Revision 1.25  1998/06/12 14:27:26  curt
926 // Pui -> PUI, Gui -> GUI.
927 //
928 // Revision 1.24  1998/06/12 00:57:39  curt
929 // Added support for Pui/Gui.
930 // Converted fog to GL_FOG_EXP2.
931 // Link to static simulator parts.
932 // Update runfg.bat to try to be a little smarter.
933 //
934 // Revision 1.23  1998/06/08 17:57:04  curt
935 // Minor sound/startup position tweaks.
936 //
937 // Revision 1.22  1998/06/05 18:18:40  curt
938 // A bit of fiddling with audio ...
939 //
940 // Revision 1.21  1998/06/03 22:01:06  curt
941 // Tweaking sound library usage.
942 //
943 // Revision 1.20  1998/06/03 00:47:11  curt
944 // Updated to compile in audio support if OSS available.
945 // Updated for new version of Steve's audio library.
946 // STL includes don't use .h
947 // Small view optimizations.
948 //
949 // Revision 1.19  1998/06/01 17:54:40  curt
950 // Added Linux audio support.
951 // avoid glClear( COLOR_BUFFER_BIT ) when not using it to set the sky color.
952 // map stl tweaks.
953 //
954 // Revision 1.18  1998/05/29 20:37:19  curt
955 // Tweaked material properties & lighting a bit in GLUTmain.cxx.
956 // Read airport list into a "map" STL for dynamic list sizing and fast tree
957 // based lookups.
958 //
959 // Revision 1.17  1998/05/22 21:28:52  curt
960 // Modifications to use the new fgEVENT_MGR class.
961 //
962 // Revision 1.16  1998/05/20 20:51:33  curt
963 // Tweaked smooth shaded texture lighting properties.
964 // Converted fgLIGHT to a C++ class.
965 //
966 // Revision 1.15  1998/05/16 13:08:34  curt
967 // C++ - ified views.[ch]xx
968 // Shuffled some additional view parameters into the fgVIEW class.
969 // Changed tile-radius to tile-diameter because it is a much better
970 //   name.
971 // Added a WORLD_TO_EYE transformation to views.cxx.  This allows us
972 //  to transform world space to eye space for view frustum culling.
973 //
974 // Revision 1.14  1998/05/13 18:29:57  curt
975 // Added a keyboard binding to dynamically adjust field of view.
976 // Added a command line option to specify fov.
977 // Adjusted terrain color.
978 // Root path info moved to fgOPTIONS.
979 // Added ability to parse options out of a config file.
980 //
981 // Revision 1.13  1998/05/11 18:18:15  curt
982 // For flat shading use "glHint (GL_FOG_HINT, GL_FASTEST )"
983 //
984 // Revision 1.12  1998/05/07 23:14:15  curt
985 // Added "D" key binding to set autopilot heading.
986 // Made frame rate calculation average out over last 10 frames.
987 // Borland C++ floating point exception workaround.
988 // Added a --tile-radius=n option.
989 //
990 // Revision 1.11  1998/05/06 03:16:23  curt
991 // Added an averaged global frame rate counter.
992 // Added an option to control tile radius.
993 //
994 // Revision 1.10  1998/05/03 00:47:31  curt
995 // Added an option to enable/disable full-screen mode.
996 //
997 // Revision 1.9  1998/04/30 12:34:17  curt
998 // Added command line rendering options:
999 //   enable/disable fog/haze
1000 //   specify smooth/flat shading
1001 //   disable sky blending and just use a solid color
1002 //   enable wireframe drawing mode
1003 //
1004 // Revision 1.8  1998/04/28 01:20:21  curt
1005 // Type-ified fgTIME and fgVIEW.
1006 // Added a command line option to disable textures.
1007 //
1008 // Revision 1.7  1998/04/26 05:10:02  curt
1009 // "struct fgLIGHT" -> "fgLIGHT" because fgLIGHT is typedef'd.
1010 //
1011 // Revision 1.6  1998/04/25 22:06:30  curt
1012 // Edited cvs log messages in source files ... bad bad bad!
1013 //
1014 // Revision 1.5  1998/04/25 20:24:01  curt
1015 // Cleaned up initialization sequence to eliminate interdependencies
1016 // between sun position, lighting, and view position.  This creates a
1017 // valid single pass initialization path.
1018 //
1019 // Revision 1.4  1998/04/24 14:19:30  curt
1020 // Fog tweaks.
1021 //
1022 // Revision 1.3  1998/04/24 00:49:18  curt
1023 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
1024 // Trying out some different option parsing code.
1025 // Some code reorganization.
1026 //
1027 // Revision 1.2  1998/04/22 13:25:41  curt
1028 // C++ - ifing the code.
1029 // Starting a bit of reorganization of lighting code.
1030 //
1031 // Revision 1.1  1998/04/21 17:02:39  curt
1032 // Prepairing for C++ integration.
1033 //
1034 // Revision 1.71  1998/04/18 04:11:26  curt
1035 // Moved fg_debug to it's own library, added zlib support.
1036 //
1037 // Revision 1.70  1998/04/14 02:21:02  curt
1038 // Incorporated autopilot heading hold contributed by:  Jeff Goeke-Smith
1039 // <jgoeke@voyager.net>
1040 //
1041 // Revision 1.69  1998/04/08 23:35:34  curt
1042 // Tweaks to Gnu automake/autoconf system.
1043 //
1044 // Revision 1.68  1998/04/03 22:09:03  curt
1045 // Converting to Gnu autoconf system.
1046 //
1047 // Revision 1.67  1998/03/23 21:24:37  curt
1048 // Source code formating tweaks.
1049 //
1050 // Revision 1.66  1998/03/14 00:31:20  curt
1051 // Beginning initial terrain texturing experiments.
1052 //
1053 // Revision 1.65  1998/03/09 22:45:57  curt
1054 // Minor tweaks for building on sparc platform.
1055 //
1056 // Revision 1.64  1998/02/20 00:16:23  curt
1057 // Thursday's tweaks.
1058 //
1059 // Revision 1.63  1998/02/16 16:17:39  curt
1060 // Minor tweaks.
1061 //
1062 // Revision 1.62  1998/02/16 13:39:42  curt
1063 // Miscellaneous weekend tweaks.  Fixed? a cache problem that caused whole
1064 // tiles to occasionally be missing.
1065 //
1066 // Revision 1.61  1998/02/12 21:59:46  curt
1067 // Incorporated code changes contributed by Charlie Hotchkiss
1068 // <chotchkiss@namg.us.anritsu.com>
1069 //
1070 // Revision 1.60  1998/02/11 02:50:40  curt
1071 // Minor changes.
1072 //
1073 // Revision 1.59  1998/02/09 22:56:54  curt
1074 // Removed "depend" files from cvs control.  Other minor make tweaks.
1075 //
1076 // Revision 1.58  1998/02/09 15:07:49  curt
1077 // Minor tweaks.
1078 //
1079 // Revision 1.57  1998/02/07 15:29:40  curt
1080 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
1081 // <chotchkiss@namg.us.anritsu.com>
1082 //
1083 // Revision 1.56  1998/02/03 23:20:23  curt
1084 // Lots of little tweaks to fix various consistency problems discovered by
1085 // Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
1086 // passed arguments along to the real printf().  Also incorporated HUD changes
1087 // by Michele America.
1088 //
1089 // Revision 1.55  1998/02/02 20:53:58  curt
1090 // Incorporated Durk's changes.
1091 //
1092 // Revision 1.54  1998/01/31 00:43:10  curt
1093 // Added MetroWorks patches from Carmen Volpe.
1094 //
1095 // Revision 1.53  1998/01/27 18:35:54  curt
1096 // Minor tweaks.
1097 //
1098 // Revision 1.52  1998/01/27 00:47:56  curt
1099 // Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
1100 // system and commandline/config file processing code.
1101 //
1102 // Revision 1.51  1998/01/26 15:57:05  curt
1103 // Tweaks for dynamic scenery development.
1104 //
1105 // Revision 1.50  1998/01/19 19:27:07  curt
1106 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
1107 // This should simplify things tremendously.
1108 //
1109 // Revision 1.49  1998/01/19 18:40:31  curt
1110 // Tons of little changes to clean up the code and to remove fatal errors
1111 // when building with the c++ compiler.
1112 //
1113 // Revision 1.48  1998/01/19 18:35:46  curt
1114 // Minor tweaks and fixes for cygwin32.
1115 //
1116 // Revision 1.47  1998/01/13 00:23:08  curt
1117 // Initial changes to support loading and management of scenery tiles.  Note,
1118 // there's still a fair amount of work left to be done.
1119 //
1120 // Revision 1.46  1998/01/08 02:22:06  curt
1121 // Beginning to integrate Tile management subsystem.
1122 //
1123 // Revision 1.45  1998/01/07 03:18:55  curt
1124 // Moved astronomical stuff from .../Src/Scenery to .../Src/Astro/
1125 //
1126 // Revision 1.44  1997/12/30 22:22:31  curt
1127 // Further integration of event manager.
1128 //
1129 // Revision 1.43  1997/12/30 20:47:43  curt
1130 // Integrated new event manager with subsystem initializations.
1131 //
1132 // Revision 1.42  1997/12/30 16:36:47  curt
1133 // Merged in Durk's changes ...
1134 //
1135 // Revision 1.41  1997/12/30 13:06:56  curt
1136 // A couple lighting tweaks ...
1137 //
1138 // Revision 1.40  1997/12/30 01:38:37  curt
1139 // Switched back to per vertex normals and smooth shading for terrain.
1140 //
1141 // Revision 1.39  1997/12/22 23:45:45  curt
1142 // First stab at sunset/sunrise sky glow effects.
1143 //
1144 // Revision 1.38  1997/12/22 04:14:28  curt
1145 // Aligned sky with sun so dusk/dawn effects can be correct relative to the sun.
1146 //
1147 // Revision 1.37  1997/12/19 23:34:03  curt
1148 // Lot's of tweaking with sky rendering and lighting.
1149 //
1150 // Revision 1.36  1997/12/19 16:44:57  curt
1151 // Working on scene rendering order and options.
1152 //
1153 // Revision 1.35  1997/12/18 23:32:32  curt
1154 // First stab at sky dome actually starting to look reasonable. :-)
1155 //
1156 // Revision 1.34  1997/12/17 23:13:34  curt
1157 // Began working on rendering a sky.
1158 //
1159 // Revision 1.33  1997/12/15 23:54:45  curt
1160 // Add xgl wrappers for debugging.
1161 // Generate terrain normals on the fly.
1162 //
1163 // Revision 1.32  1997/12/15 20:59:08  curt
1164 // Misc. tweaks.
1165 //
1166 // Revision 1.31  1997/12/12 21:41:25  curt
1167 // More light/material property tweaking ... still a ways off.
1168 //
1169 // Revision 1.30  1997/12/12 19:52:47  curt
1170 // Working on lightling and material properties.
1171 //
1172 // Revision 1.29  1997/12/11 04:43:54  curt
1173 // Fixed sun vector and lighting problems.  I thing the moon is now lit
1174 // correctly.
1175 //
1176 // Revision 1.28  1997/12/10 22:37:45  curt
1177 // Prepended "fg" on the name of all global structures that didn't have it yet.
1178 // i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
1179 //
1180 // Revision 1.27  1997/12/09 05:11:54  curt
1181 // Working on tweaking lighting.
1182 //
1183 // Revision 1.26  1997/12/09 04:25:29  curt
1184 // Working on adding a global lighting params structure.
1185 //
1186 // Revision 1.25  1997/12/08 22:54:09  curt
1187 // Enabled GL_CULL_FACE.
1188 //
1189 // Revision 1.24  1997/11/25 19:25:32  curt
1190 // Changes to integrate Durk's moon/sun code updates + clean up.
1191 //
1192 // Revision 1.23  1997/11/15 18:16:34  curt
1193 // minor tweaks.
1194 //
1195 // Revision 1.22  1997/10/30 12:38:41  curt
1196 // Working on new scenery subsystem.
1197 //
1198 // Revision 1.21  1997/09/23 00:29:38  curt
1199 // Tweaks to get things to compile with gcc-win32.
1200 //
1201 // Revision 1.20  1997/09/22 14:44:19  curt
1202 // Continuing to try to align stars correctly.
1203 //
1204 // Revision 1.19  1997/09/18 16:20:08  curt
1205 // At dusk/dawn add/remove stars in stages.
1206 //
1207 // Revision 1.18  1997/09/16 22:14:51  curt
1208 // Tweaked time of day lighting equations.  Don't draw stars during the day.
1209 //
1210 // Revision 1.17  1997/09/16 15:50:29  curt
1211 // Working on star alignment and time issues.
1212 //
1213 // Revision 1.16  1997/09/13 02:00:06  curt
1214 // Mostly working on stars and generating sidereal time for accurate star
1215 // placement.
1216 //
1217 // Revision 1.15  1997/09/05 14:17:27  curt
1218 // More tweaking with stars.
1219 //
1220 // Revision 1.14  1997/09/05 01:35:53  curt
1221 // Working on getting stars right.
1222 //
1223 // Revision 1.13  1997/09/04 02:17:34  curt
1224 // Shufflin' stuff.
1225 //
1226 // Revision 1.12  1997/08/27 21:32:24  curt
1227 // Restructured view calculation code.  Added stars.
1228 //
1229 // Revision 1.11  1997/08/27 03:30:16  curt
1230 // Changed naming scheme of basic shared structures.
1231 //
1232 // Revision 1.10  1997/08/25 20:27:22  curt
1233 // Merged in initial HUD and Joystick code.
1234 //
1235 // Revision 1.9  1997/08/22 21:34:39  curt
1236 // Doing a bit of reorganizing and house cleaning.
1237 //
1238 // Revision 1.8  1997/08/19 23:55:03  curt
1239 // Worked on better simulating real lighting.
1240 //
1241 // Revision 1.7  1997/08/16 12:22:38  curt
1242 // Working on improving the lighting/shading.
1243 //
1244 // Revision 1.6  1997/08/13 20:24:56  curt
1245 // Changes due to changing sunpos interface.
1246 //
1247 // Revision 1.5  1997/08/06 21:08:32  curt
1248 // Sun position now really* works (I think) ... I still have sun time warping
1249 // code in place, probably should remove it soon.
1250 //
1251 // Revision 1.4  1997/08/06 15:41:26  curt
1252 // Working on correct sun position.
1253 //
1254 // Revision 1.3  1997/08/06 00:24:22  curt
1255 // Working on correct real time sun lighting.
1256 //
1257 // Revision 1.2  1997/08/04 20:25:15  curt
1258 // Organizational tweaking.
1259 //
1260 // Revision 1.1  1997/08/02 18:45:00  curt
1261 // Renamed GLmain.c GLUTmain.c
1262 //
1263 // Revision 1.43  1997/08/02 16:23:47  curt
1264 // Misc. tweaks.
1265 //
1266 // Revision 1.42  1997/08/01 19:43:33  curt
1267 // Making progress with coordinate system overhaul.
1268 //
1269 // Revision 1.41  1997/07/31 22:52:37  curt
1270 // Working on redoing internal coordinate systems & scenery transformations.
1271 //
1272 // Revision 1.40  1997/07/30 16:12:42  curt
1273 // Moved fg_random routines from Util/ to Math/
1274 //
1275 // Revision 1.39  1997/07/21 14:45:01  curt
1276 // Minor tweaks.
1277 //
1278 // Revision 1.38  1997/07/19 23:04:47  curt
1279 // Added an initial weather section.
1280 //
1281 // Revision 1.37  1997/07/19 22:34:02  curt
1282 // Moved PI definitions to ../constants.h
1283 // Moved random() stuff to ../Utils/ and renamed fg_random()
1284 //
1285 // Revision 1.36  1997/07/18 23:41:25  curt
1286 // Tweaks for building with Cygnus Win32 compiler.
1287 //
1288 // Revision 1.35  1997/07/18 14:28:34  curt
1289 // Hacked in some support for wind/turbulence.
1290 //
1291 // Revision 1.34  1997/07/16 20:04:48  curt
1292 // Minor tweaks to aid Win32 port.
1293 //
1294 // Revision 1.33  1997/07/12 03:50:20  curt
1295 // Added an #include <Windows32/Base.h> to help compiling for Win32
1296 //
1297 // Revision 1.32  1997/07/11 03:23:18  curt
1298 // Solved some scenery display/orientation problems.  Still have a positioning
1299 // (or transformation?) problem.
1300 //
1301 // Revision 1.31  1997/07/11 01:29:58  curt
1302 // More tweaking of terrian floor.
1303 //
1304 // Revision 1.30  1997/07/10 04:26:37  curt
1305 // We now can interpolated ground elevation for any position in the grid.  We
1306 // can use this to enforce a "hard" ground.  We still need to enforce some
1307 // bounds checking so that we don't try to lookup data points outside the
1308 // grid data set.
1309 //
1310 // Revision 1.29  1997/07/09 21:31:12  curt
1311 // Working on making the ground "hard."
1312 //
1313 // Revision 1.28  1997/07/08 18:20:12  curt
1314 // Working on establishing a hard ground.
1315 //
1316 // Revision 1.27  1997/07/07 20:59:49  curt
1317 // Working on scenery transformations to enable us to fly fluidly over the
1318 // poles with no discontinuity/distortion in scenery.
1319 //
1320 // Revision 1.26  1997/07/05 20:43:34  curt
1321 // renamed mat3 directory to Math so we could add other math related routines.
1322 //
1323 // Revision 1.25  1997/06/29 21:19:17  curt
1324 // Working on scenery management system.
1325 //
1326 // Revision 1.24  1997/06/26 22:14:53  curt
1327 // Beginning work on a scenery management system.
1328 //
1329 // Revision 1.23  1997/06/26 19:08:33  curt
1330 // Restructuring make, adding automatic "make dep" support.
1331 //
1332 // Revision 1.22  1997/06/25 15:39:47  curt
1333 // Minor changes to compile with rsxnt/win32.
1334 //
1335 // Revision 1.21  1997/06/22 21:44:41  curt
1336 // Working on intergrating the VRML (subset) parser.
1337 //
1338 // Revision 1.20  1997/06/21 17:12:53  curt
1339 // Capitalized subdirectory names.
1340 //
1341 // Revision 1.19  1997/06/18 04:10:31  curt
1342 // A couple more runway tweaks ...
1343 //
1344 // Revision 1.18  1997/06/18 02:21:24  curt
1345 // Hacked in a runway
1346 //
1347 // Revision 1.17  1997/06/17 16:51:58  curt
1348 // Timer interval stuff now uses gettimeofday() instead of ftime()
1349 //
1350 // Revision 1.16  1997/06/17 04:19:16  curt
1351 // More timer related tweaks with respect to view direction changes.
1352 //
1353 // Revision 1.15  1997/06/17 03:41:10  curt
1354 // Nonsignal based interval timing is now working.
1355 // This would be a good time to look at cleaning up the code structure a bit.
1356 //
1357 // Revision 1.14  1997/06/16 19:32:51  curt
1358 // Starting to add general timer support.
1359 //
1360 // Revision 1.13  1997/06/02 03:40:06  curt
1361 // A tiny bit more view tweaking.
1362 //
1363 // Revision 1.12  1997/06/02 03:01:38  curt
1364 // Working on views (side, front, back, transitions, etc.)
1365 //
1366 // Revision 1.11  1997/05/31 19:16:25  curt
1367 // Elevator trim added.
1368 //
1369 // Revision 1.10  1997/05/31 04:13:52  curt
1370 // WE CAN NOW FLY!!!
1371 //
1372 // Continuing work on the LaRCsim flight model integration.
1373 // Added some MSFS-like keyboard input handling.
1374 //
1375 // Revision 1.9  1997/05/30 19:27:01  curt
1376 // The LaRCsim flight model is starting to look like it is working.
1377 //
1378 // Revision 1.8  1997/05/30 03:54:10  curt
1379 // Made a bit more progress towards integrating the LaRCsim flight model.
1380 //
1381 // Revision 1.7  1997/05/29 22:39:49  curt
1382 // Working on incorporating the LaRCsim flight model.
1383 //
1384 // Revision 1.6  1997/05/29 12:31:39  curt
1385 // Minor tweaks, moving towards general flight model integration.
1386 //
1387 // Revision 1.5  1997/05/29 02:33:23  curt
1388 // Updated to reflect changing interfaces in other "modules."
1389 //
1390 // Revision 1.4  1997/05/27 17:44:31  curt
1391 // Renamed & rearranged variables and routines.   Added some initial simple
1392 // timer/alarm routines so the flight model can be updated on a regular 
1393 // interval.
1394 //
1395 // Revision 1.3  1997/05/23 15:40:25  curt
1396 // Added GNU copyright headers.
1397 // Fog now works!
1398 //
1399 // Revision 1.2  1997/05/23 00:35:12  curt
1400 // Trying to get fog to work ...
1401 //
1402 // Revision 1.1  1997/05/21 15:57:51  curt
1403 // Renamed due to added GLUT support.
1404 //
1405 // Revision 1.3  1997/05/19 18:22:42  curt
1406 // Parameter tweaking ... starting to stub in fog support.
1407 //
1408 // Revision 1.2  1997/05/17 00:17:34  curt
1409 // Trying to stub in support for standard OpenGL.
1410 //
1411 // Revision 1.1  1997/05/16 16:05:52  curt
1412 // Initial revision.
1413 //