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