]> git.mxchange.org Git - flightgear.git/blob - src/Main/main.cxx
Refactored some of the navlist code and removed the built in "fail to find"
[flightgear.git] / src / Main / main.cxx
1 // main.cxx -- top level sim routines
2 //
3 // Written by Curtis Olson, started May 1997.
4 //
5 // Copyright (C) 1997 - 2002  Curtis L. Olson  - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #if defined(__linux__) && defined(__i386__)
29 #  include <fpu_control.h>
30 #  include <signal.h>
31 #endif
32
33 #include <simgear/compiler.h>
34
35 #include STL_IOSTREAM
36 SG_USING_STD(cerr);
37 SG_USING_STD(endl);
38
39 #include <simgear/misc/exception.hxx>
40 #include <simgear/ephemeris/ephemeris.hxx>
41 #include <simgear/route/route.hxx>
42
43 #ifdef SG_MATH_EXCEPTION_CLASH
44 #  include <math.h>
45 #endif
46
47 #ifdef HAVE_WINDOWS_H
48 #  include <windows.h>
49 #  include <float.h>
50 #endif
51
52 #include GLUT_H
53
54 #include <stdio.h>
55 #include <string.h>             // for strcmp()
56 #include <string>
57
58 #ifdef HAVE_STDLIB_H
59 #   include <stdlib.h>
60 #endif
61
62 #ifdef HAVE_SYS_STAT_H
63 #  include <sys/stat.h>         // for stat()
64 #endif
65
66 #ifdef HAVE_UNISTD_H
67 #  include <unistd.h>           // for stat()
68 #endif
69
70 #include <plib/netChat.h>
71 #include <plib/pu.h>
72 #include <plib/sg.h>
73 #include <plib/ssg.h>
74
75 #include <simgear/constants.h>  // for VERSION
76 #include <simgear/debug/logstream.hxx>
77 #include <simgear/math/polar3d.hxx>
78 #include <simgear/math/sg_random.h>
79 #include <simgear/misc/sg_path.hxx>
80 #ifdef FG_USE_CLOUDS_3D
81 #  include <simgear/sky/clouds3d/SkySceneLoader.hpp>
82 #  include <simgear/sky/clouds3d/SkyUtil.hpp>
83 #endif
84 #include <simgear/sky/sky.hxx>
85 #include <simgear/timing/sg_time.hxx>
86
87 #include <Include/general.hxx>
88
89 #include <Aircraft/aircraft.hxx>
90
91 #include <ATC/ATCmgr.hxx>
92 #include <ATC/ATCdisplay.hxx>
93 #include <ATC/AIMgr.hxx>
94
95
96 #include <Autopilot/newauto.hxx>
97
98 #include <Cockpit/cockpit.hxx>
99 #include <Cockpit/radiostack.hxx>
100 #include <Cockpit/steam.hxx>
101
102 #include <FDM/UIUCModel/uiuc_aircraftdir.h>
103 #include <GUI/gui.h>
104 #include <Model/acmodel.hxx>
105 #include <Model/loader.hxx>
106 #include <Model/model.hxx>
107 #include <Model/modelmgr.hxx>
108 #include <Main/location.hxx>
109 #include <Model/panelnode.hxx>
110 #ifdef FG_NETWORK_OLK
111 #include <NetworkOLK/network.h>
112 #endif
113 #include <Objects/matlib.hxx>
114 #include <Scenery/scenery.hxx>
115 #include <Scenery/tilemgr.hxx>
116 #ifdef ENABLE_AUDIO_SUPPORT
117 #  include <Sound/soundmgr.hxx>
118 #  include <Sound/fg_fx.hxx>
119 #  include <Sound/morse.hxx>
120 #endif
121 #include <Systems/system_mgr.hxx>
122 #include <Instrumentation/instrument_mgr.hxx>
123 #include <Time/FGEventMgr.hxx>
124 #include <Time/fg_timer.hxx>
125 #include <Time/light.hxx>
126 #include <Time/sunpos.hxx>
127 #include <Time/tmp.hxx>
128
129 // ADA
130 #include <simgear/misc/sgstream.hxx>
131 #include <simgear/math/point3d.hxx>
132 #include <FDM/flight.hxx>
133 #include <FDM/ADA.hxx>
134 #include <Scenery/tileentry.hxx>
135
136 #include "fg_commands.hxx"
137
138 #ifdef FG_EXPERIMENTAL_POINT_LIGHTING
139 #ifdef WIN32
140   typedef void (APIENTRY * PFNGLPOINTPARAMETERFEXTPROC)(GLenum pname,
141                                                         GLfloat param);
142   typedef void (APIENTRY * PFNGLPOINTPARAMETERFVEXTPROC)(GLenum pname,
143                                                          const GLfloat *params);
144
145   PFNGLPOINTPARAMETERFEXTPROC glPointParameterfEXT = 0;
146   PFNGLPOINTPARAMETERFVEXTPROC glPointParameterfvEXT = 0;
147 #elif linux
148   #include <GL/glx.h>
149
150   typedef void (* OpenGLFuncExt)(GLenum pname, GLfloat param);
151   typedef void (* OpenGLFuncExtv)(GLenum pname, const GLfloat *params);
152
153   OpenGLFuncExt glPointParameterfEXT = 0;
154   OpenGLFuncExtv glPointParameterfvEXT = 0;
155 #endif
156 #endif
157
158 float default_attenuation[3] = {1.0, 0.0, 0.0};
159 //Required for using GL_extensions
160 void fgLoadDCS (void);
161 void fgUpdateDCS (void);
162 ssgSelector *ship_sel=NULL;
163 // upto 32 instances of a same object can be loaded.
164 ssgTransform *ship_pos[32];
165 double obj_lat[32],obj_lon[32],obj_alt[32],obj_pitch[32],obj_roll[32];
166 int objc=0;
167 ssgSelector *lightpoints_brightness = new ssgSelector;
168 ssgTransform *lightpoints_transform = new ssgTransform;
169 FGTileEntry *dummy_tile;
170 sgVec3 rway_ols;
171 // ADA
172 // Clip plane settings...
173 float scene_nearplane = 0.5f;
174 float scene_farplane = 120000.0f;
175
176 static double delta_time_sec = 0;
177
178
179 #ifdef FG_WEATHERCM
180 #  include <WeatherCM/FGLocalWeatherDatabase.h>
181 #else
182 #  include <Environment/environment_mgr.hxx>
183 #endif
184
185 #include "version.h"
186
187 #include "fg_init.hxx"
188 #include "fg_io.hxx"
189 #include "fg_props.hxx"
190 #include "globals.hxx"
191 #include "splash.hxx"
192 #include "viewmgr.hxx"
193 #include "options.hxx"
194 #include "logger.hxx"
195
196 #ifdef macintosh
197 #  include <console.h>          // -dw- for command line dialog
198 #endif
199
200
201 FGEventMgr global_events;
202
203 // This is a record containing a bit of global housekeeping information
204 FGGeneral general;
205
206 // Specify our current idle function state.  This is used to run all
207 // our initializations out of the glutIdleLoop() so that we can get a
208 // splash screen up and running right away.
209 static int idle_state = 0;
210 static long global_multi_loop;
211
212 // forward declaration
213 void fgReshape( int width, int height );
214
215 // fog constants.  I'm a little nervous about putting actual code out
216 // here but it seems to work (?)
217 static const double m_log01 = -log( 0.01 );
218 static const double sqrt_m_log01 = sqrt( m_log01 );
219 static GLfloat fog_exp_density;
220 static GLfloat fog_exp2_density;
221 static GLfloat rwy_exp2_punch_through;
222 static GLfloat taxi_exp2_punch_through;
223 static GLfloat ground_exp2_punch_through;
224
225 #ifdef FG_NETWORK_OLK
226 ssgSelector *fgd_sel = NULL;
227 ssgTransform *fgd_pos = NULL;
228 #endif
229
230 // Sky structures
231 SGSky *thesky;
232
233 #ifdef FG_USE_CLOUDS_3D
234   SkySceneLoader *sgClouds3d;
235   bool _bcloud_orig = true;
236 #endif
237
238 // hack
239 sgMat4 copy_of_ssgOpenGLAxisSwapMatrix =
240 {
241   {  1.0f,  0.0f,  0.0f,  0.0f },
242   {  0.0f,  0.0f, -1.0f,  0.0f },
243   {  0.0f,  1.0f,  0.0f,  0.0f },
244   {  0.0f,  0.0f,  0.0f,  1.0f }
245 };
246
247 // The following defines flightgear options. Because glutlib will also
248 // want to parse its own options, those options must not be included here
249 // or they will get parsed by the main program option parser. Hence case
250 // is significant for any option added that might be in conflict with
251 // glutlib's parser.
252 //
253 // glutlib parses for:
254 //    -display
255 //    -direct   (invalid in Win32)
256 //    -geometry
257 //    -gldebug
258 //    -iconized
259 //    -indirect (invalid in Win32)
260 //    -synce
261 //
262 // Note that glutlib depends upon strings while this program's
263 // option parser wants only initial characters followed by numbers
264 // or pathnames.
265 //
266
267
268 ssgSimpleState *cloud3d_imposter_state;
269 ssgSimpleState *default_state;
270 ssgSimpleState *hud_and_panel;
271 ssgSimpleState *menus;
272
273 SGTimeStamp last_time_stamp;
274 SGTimeStamp current_time_stamp;
275
276 void fgBuildRenderStates( void ) {
277     default_state = new ssgSimpleState;
278     default_state->ref();
279     default_state->disable( GL_TEXTURE_2D );
280     default_state->enable( GL_CULL_FACE );
281     default_state->enable( GL_COLOR_MATERIAL );
282     default_state->setColourMaterial( GL_AMBIENT_AND_DIFFUSE );
283     default_state->setMaterial( GL_EMISSION, 0, 0, 0, 1 );
284     default_state->setMaterial( GL_SPECULAR, 0, 0, 0, 1 );
285     default_state->disable( GL_BLEND );
286     default_state->disable( GL_ALPHA_TEST );
287     default_state->disable( GL_LIGHTING );
288
289     cloud3d_imposter_state = new ssgSimpleState;
290     cloud3d_imposter_state->ref();
291     cloud3d_imposter_state->enable( GL_TEXTURE_2D );
292     cloud3d_imposter_state->enable( GL_CULL_FACE );
293     cloud3d_imposter_state->enable( GL_COLOR_MATERIAL );
294     cloud3d_imposter_state->setColourMaterial( GL_AMBIENT_AND_DIFFUSE );
295     cloud3d_imposter_state->setMaterial( GL_DIFFUSE, 1, 1, 1, 1 );
296     cloud3d_imposter_state->setMaterial( GL_AMBIENT, 1, 1, 1, 1 );
297     cloud3d_imposter_state->setMaterial( GL_EMISSION, 0, 0, 0, 1 );
298     cloud3d_imposter_state->setMaterial( GL_SPECULAR, 0, 0, 0, 1 );
299     cloud3d_imposter_state->enable( GL_BLEND );
300     cloud3d_imposter_state->enable( GL_ALPHA_TEST );
301     cloud3d_imposter_state->disable( GL_LIGHTING );
302
303     hud_and_panel = new ssgSimpleState;
304     hud_and_panel->ref();
305     hud_and_panel->disable( GL_CULL_FACE );
306     hud_and_panel->disable( GL_TEXTURE_2D );
307     hud_and_panel->disable( GL_LIGHTING );
308     hud_and_panel->enable( GL_BLEND );
309
310     menus = new ssgSimpleState;
311     menus->ref();
312     menus->disable( GL_CULL_FACE );
313     menus->disable( GL_TEXTURE_2D );
314     menus->enable( GL_BLEND );
315 }
316
317
318 // fgInitVisuals() -- Initialize various GL/view parameters
319 void fgInitVisuals( void ) {
320     fgLIGHT *l;
321
322     l = &cur_light_params;
323
324 #ifndef GLUT_WRONG_VERSION
325     // Go full screen if requested ...
326     if ( fgGetBool("/sim/startup/fullscreen") ) {
327         glutFullScreen();
328     }
329 #endif
330
331     // If enabled, normal vectors specified with glNormal are scaled
332     // to unit length after transformation.  Enabling this has
333     // performance implications.  See the docs for glNormal.
334     // glEnable( GL_NORMALIZE );
335
336     glEnable( GL_LIGHTING );
337     glEnable( GL_LIGHT0 );
338     // glLightfv( GL_LIGHT0, GL_POSITION, l->sun_vec );  // done later with ssg
339
340     sgVec3 sunpos;
341     sgSetVec3( sunpos, l->sun_vec[0], l->sun_vec[1], l->sun_vec[2] );
342     ssgGetLight( 0 ) -> setPosition( sunpos );
343
344     glFogi (GL_FOG_MODE, GL_EXP2);
345     if ( (!strcmp(fgGetString("/sim/rendering/fog"), "disabled")) || 
346          (!fgGetBool("/sim/rendering/shading"))) {
347         // if fastest fog requested, or if flat shading force fastest
348         glHint ( GL_FOG_HINT, GL_FASTEST );
349     } else if ( !strcmp(fgGetString("/sim/rendering/fog"), "nicest") ) {
350         glHint ( GL_FOG_HINT, GL_NICEST );
351     }
352     if ( fgGetBool("/sim/rendering/wireframe") ) {
353         // draw wire frame
354         glPolygonMode( GL_FRONT_AND_BACK, GL_LINE );
355     }
356
357     // This is the default anyways, but it can't hurt
358     glFrontFace ( GL_CCW );
359
360     // Just testing ...
361     // glEnable(GL_POINT_SMOOTH);
362     // glEnable(GL_LINE_SMOOTH);
363     // glEnable(GL_POLYGON_SMOOTH);      
364 }
365
366
367 // For HiRes screen Dumps using Brian Pauls TR Library
368 void trRenderFrame( void ) {
369
370     if ( fgPanelVisible() ) {
371         GLfloat height = fgGetInt("/sim/startup/ysize");
372         GLfloat view_h =
373             (current_panel->getViewHeight() - current_panel->getYOffset())
374             * (height / 768.0) + 1;
375         glTranslatef( 0.0, view_h, 0.0 );
376     }
377
378     static GLfloat black[4] = { 0.0, 0.0, 0.0, 1.0 };
379     static GLfloat white[4] = { 1.0, 1.0, 1.0, 1.0 };
380
381     fgLIGHT *l = &cur_light_params;
382
383     glClearColor(l->adj_fog_color[0], l->adj_fog_color[1], 
384                  l->adj_fog_color[2], l->adj_fog_color[3]);
385
386     glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
387
388     // set the opengl state to known default values
389     default_state->force();
390
391     glEnable( GL_FOG );
392     glFogf  ( GL_FOG_DENSITY, fog_exp2_density);
393     glFogi  ( GL_FOG_MODE,    GL_EXP2 );
394     glFogfv ( GL_FOG_COLOR,   l->adj_fog_color );
395
396     // GL_LIGHT_MODEL_AMBIENT has a default non-zero value so if
397     // we only update GL_AMBIENT for our lights we will never get
398     // a completely dark scene.  So, we set GL_LIGHT_MODEL_AMBIENT
399     // explicitely to black.
400     glLightModelfv( GL_LIGHT_MODEL_AMBIENT, black );
401     glLightModeli( GL_LIGHT_MODEL_LOCAL_VIEWER, GL_FALSE );
402
403     ssgGetLight( 0 ) -> setColour( GL_AMBIENT, l->scene_ambient );
404
405     // texture parameters
406     glTexEnvi( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE ) ;
407     glHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST ) ;
408
409     // we need a white diffuse light for the phase of the moon
410     ssgGetLight( 0 ) -> setColour( GL_DIFFUSE, white );
411     thesky->preDraw();
412
413     // draw the ssg scene
414     // return to the desired diffuse color
415     ssgGetLight( 0 ) -> setColour( GL_DIFFUSE, l->scene_diffuse );
416     glEnable( GL_DEPTH_TEST );
417     ssgSetNearFar( scene_nearplane, scene_farplane );
418     ssgCullAndDraw( globals->get_scenery()->get_scene_graph() );
419
420     // draw the lights
421     glFogf (GL_FOG_DENSITY, rwy_exp2_punch_through);
422     ssgSetNearFar( scene_nearplane, scene_farplane );
423     ssgCullAndDraw( globals->get_scenery()->get_rwy_lights_root() );
424
425     ssgCullAndDraw( globals->get_scenery()->get_gnd_lights_root() );
426
427     if (fgGetBool("/environment/clouds/status"))
428         thesky->postDraw( cur_fdm_state->get_Altitude() * SG_FEET_TO_METER );
429
430     globals->get_model_mgr()->draw();
431     globals->get_aircraft_model()->draw();
432 }
433
434
435 // Update all Visuals (redraws anything graphics related)
436 void fgRenderFrame() {
437   
438     GLfloat black[4] = { 0.0, 0.0, 0.0, 1.0 };
439     GLfloat white[4] = { 1.0, 1.0, 1.0, 1.0 };
440
441     // Process/manage pending events
442     global_events.update( delta_time_sec );
443
444     static const SGPropertyNode *longitude
445         = fgGetNode("/position/longitude-deg");
446     static const SGPropertyNode *latitude
447         = fgGetNode("/position/latitude-deg");
448     static const SGPropertyNode *altitude
449         = fgGetNode("/position/altitude-ft");
450     static const SGPropertyNode *groundlevel_nearplane
451         = fgGetNode("/sim/current-view/ground-level-nearplane-m");
452
453     // Update the default (kludged) properties.
454     fgUpdateProps();
455
456     FGViewer *current__view = globals->get_current_view();
457
458     fgLIGHT *l = &cur_light_params;
459     static double last_visibility = -9999;
460
461     // update fog params
462     double actual_visibility;
463     if (fgGetBool("/environment/clouds/status"))
464         actual_visibility = thesky->get_visibility();
465     else
466         actual_visibility = fgGetDouble("/environment/visibility-m");
467     if ( actual_visibility != last_visibility ) {
468         last_visibility = actual_visibility;
469
470         fog_exp_density = m_log01 / actual_visibility;
471         fog_exp2_density = sqrt_m_log01 / actual_visibility;
472         ground_exp2_punch_through = sqrt_m_log01 / (actual_visibility * 1.5);
473         if ( actual_visibility < 8000 ) {
474             rwy_exp2_punch_through = sqrt_m_log01 / (actual_visibility * 2.5);
475             taxi_exp2_punch_through = sqrt_m_log01 / (actual_visibility * 1.5);
476         } else {
477             rwy_exp2_punch_through = sqrt_m_log01 / ( 8000 * 2.5 );
478             taxi_exp2_punch_through = sqrt_m_log01 / ( 8000 * 1.5 );
479         }
480     }
481
482     // double angle;
483     // GLfloat black[4] = { 0.0, 0.0, 0.0, 1.0 };
484     // GLfloat white[4] = { 1.0, 1.0, 1.0, 1.0 };
485     // GLfloat terrain_color[4] = { 0.54, 0.44, 0.29, 1.0 };
486     // GLfloat mat_shininess[] = { 10.0 };
487     GLbitfield clear_mask;
488     
489     if ( idle_state != 1000 ) {
490         // still initializing, draw the splash screen
491         if ( fgGetBool("/sim/startup/splash-screen") ) {
492             fgSplashUpdate(0.0, 1.0);
493         }
494         // Keep resetting sim time while the sim is initializing
495         globals->set_sim_time_sec( 0.0 );
496     } else {
497         // idle_state is now 1000 meaning we've finished all our
498         // initializations and are running the main loop, so this will
499         // now work without seg faulting the system.
500
501         // calculate our current position in cartesian space
502         globals->get_scenery()->set_center( globals->get_scenery()->get_next_center() );
503
504         // update view port
505         fgReshape( fgGetInt("/sim/startup/xsize"),
506                    fgGetInt("/sim/startup/ysize") );
507
508         if ( fgGetBool("/sim/rendering/clouds3d") ) {
509             glClear( GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT );
510             cloud3d_imposter_state->force();
511             glDisable( GL_FOG );
512             glColor4f( 1.0, 1.0, 1.0, 1.0 );
513             glEnable(GL_DEPTH_TEST);
514             glEnable(GL_BLEND);
515             glBlendFunc( GL_ONE, GL_ONE_MINUS_SRC_ALPHA ) ;
516
517 #ifdef FG_USE_CLOUDS_3D
518             if ( _bcloud_orig ) {
519                 Point3D c = globals->get_scenery()->get_center();
520                 sgClouds3d->Set_Cloud_Orig( &c );
521                 _bcloud_orig = false;
522             }
523             sgClouds3d->Update( current__view->get_absolute_view_pos() );
524 #endif
525             glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA ) ;
526             glDisable(GL_DEPTH_TEST);
527         }
528
529         clear_mask = GL_DEPTH_BUFFER_BIT;
530         if ( fgGetBool("/sim/rendering/wireframe") ) {
531             clear_mask |= GL_COLOR_BUFFER_BIT;
532         }
533
534         if ( fgGetBool("/sim/rendering/skyblend") ) {
535             if ( fgGetBool("/sim/rendering/textures") ) {
536                 // glClearColor(black[0], black[1], black[2], black[3]);
537                 glClearColor(l->adj_fog_color[0], l->adj_fog_color[1], 
538                              l->adj_fog_color[2], l->adj_fog_color[3]);
539                 clear_mask |= GL_COLOR_BUFFER_BIT;
540             }
541         } else {
542             glClearColor(l->sky_color[0], l->sky_color[1], 
543                          l->sky_color[2], l->sky_color[3]);
544             clear_mask |= GL_COLOR_BUFFER_BIT;
545         }
546         glClear( clear_mask );
547
548         // Tell GL we are switching to model view parameters
549
550         // I really should create a derived ssg node or use a call
551         // back or something so that I can draw the sky within the
552         // ssgCullAndDraw() function, but for now I just mimic what
553         // ssg does to set up the model view matrix
554         glMatrixMode(GL_MODELVIEW);
555         glLoadIdentity();
556         ssgSetCamera( (sgVec4 *)current__view->get_VIEW() );
557
558         // set the opengl state to known default values
559         default_state->force();
560
561         // update fog params if visibility has changed
562         double visibility_meters = fgGetDouble("/environment/visibility-m");
563         thesky->set_visibility(visibility_meters);
564
565         thesky->modify_vis( cur_fdm_state->get_Altitude() * SG_FEET_TO_METER,
566                             ( global_multi_loop * fgGetInt("/sim/speed-up") )
567                             / (double)fgGetInt("/sim/model-hz") );
568
569         // Set correct opengl fog density
570         glFogf (GL_FOG_DENSITY, fog_exp2_density);
571
572         // update the sky dome
573         if ( fgGetBool("/sim/rendering/skyblend") ) {
574             /* cout << "thesky->repaint() sky_color = "
575                  << cur_light_params.sky_color[0] << " "
576                  << cur_light_params.sky_color[1] << " "
577                  << cur_light_params.sky_color[2] << " "
578                  << cur_light_params.sky_color[3] << endl;
579             cout << "    fog = "
580                  << cur_light_params.fog_color[0] << " "
581                  << cur_light_params.fog_color[1] << " "
582                  << cur_light_params.fog_color[2] << " "
583                  << cur_light_params.fog_color[3] << endl;
584             cout << "    sun_angle = " << cur_light_params.sun_angle
585                  << "    moon_angle = " << cur_light_params.moon_angle
586                  << endl; */
587             thesky->repaint( cur_light_params.sky_color,
588                              cur_light_params.adj_fog_color,
589                              cur_light_params.sun_angle,
590                              cur_light_params.moon_angle,
591                              globals->get_ephem()->getNumPlanets(),
592                              globals->get_ephem()->getPlanets(),
593                              globals->get_ephem()->getNumStars(),
594                              globals->get_ephem()->getStars() );
595  
596             /* cout << "thesky->reposition( view_pos = " << view_pos[0] << " "
597                  << view_pos[1] << " " << view_pos[2] << endl;
598             cout << "    zero_elev = " << zero_elev[0] << " "
599                  << zero_elev[1] << " " << zero_elev[2]
600                  << " lon = " << cur_fdm_state->get_Longitude()
601                  << " lat = " << cur_fdm_state->get_Latitude() << endl;
602             cout << "    sun_rot = " << cur_light_params.sun_rotation
603                  << " gst = " << SGTime::cur_time_params->getGst() << endl;
604             cout << "    sun ra = " << globals->get_ephem()->getSunRightAscension()
605                  << " sun dec = " << globals->get_ephem()->getSunDeclination() 
606                  << " moon ra = " << globals->get_ephem()->getMoonRightAscension()
607                  << " moon dec = " << globals->get_ephem()->getMoonDeclination() << endl; */
608
609             thesky->reposition( current__view->get_view_pos(),
610                                 current__view->get_zero_elev(),
611                                 current__view->get_world_up(),
612                                 current__view->getLongitude_deg()
613                                   * SGD_DEGREES_TO_RADIANS,
614                                 current__view->getLatitude_deg()
615                                   * SGD_DEGREES_TO_RADIANS,
616                                 current__view->getAltitudeASL_ft() * SG_FEET_TO_METER,
617                                 cur_light_params.sun_rotation,
618                                 globals->get_time_params()->getGst(),
619                                 globals->get_ephem()->getSunRightAscension(),
620                                 globals->get_ephem()->getSunDeclination(),
621                                 50000.0,
622                                 globals->get_ephem()->getMoonRightAscension(),
623                                 globals->get_ephem()->getMoonDeclination(),
624                                 50000.0 );
625         }
626
627         glEnable( GL_DEPTH_TEST );
628         if ( strcmp(fgGetString("/sim/rendering/fog"), "disabled") ) {
629             glEnable( GL_FOG );
630             glFogi( GL_FOG_MODE, GL_EXP2 );
631             glFogfv( GL_FOG_COLOR, l->adj_fog_color );
632         }
633
634         // set sun/lighting parameters
635         ssgGetLight( 0 ) -> setPosition( l->sun_vec );
636
637         // GL_LIGHT_MODEL_AMBIENT has a default non-zero value so if
638         // we only update GL_AMBIENT for our lights we will never get
639         // a completely dark scene.  So, we set GL_LIGHT_MODEL_AMBIENT
640         // explicitely to black.
641         glLightModelfv( GL_LIGHT_MODEL_AMBIENT, black );
642
643         ssgGetLight( 0 ) -> setColour( GL_AMBIENT, l->scene_ambient );
644         ssgGetLight( 0 ) -> setColour( GL_DIFFUSE, l->scene_diffuse );
645         ssgGetLight( 0 ) -> setColour( GL_SPECULAR, l->scene_specular );
646
647         // texture parameters
648         // glEnable( GL_TEXTURE_2D );
649         glTexEnvi( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE ) ;
650         glHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST ) ;
651
652         // glMatrixMode( GL_PROJECTION );
653         // glLoadIdentity();
654         ssgSetFOV( current__view->get_h_fov(),
655                    current__view->get_v_fov() );
656
657         double agl =
658             current_aircraft.fdm_state->get_Altitude() * SG_FEET_TO_METER
659             - globals->get_scenery()->get_cur_elev();
660
661         if ( agl > 10.0 ) {
662             scene_nearplane = 10.0f;
663             scene_farplane = 120000.0f;
664         } else {
665             scene_nearplane = groundlevel_nearplane->getDoubleValue();
666             scene_farplane = 120000.0f;
667         }
668
669         ssgSetNearFar( scene_nearplane, scene_farplane );
670
671         // $$$ begin - added VS Renganthan 17 Oct 2K
672         if(objc)
673           fgUpdateDCS();
674         // $$$ end - added VS Renganthan 17 Oct 2K
675
676 # ifdef FG_NETWORK_OLK
677         if ( fgGetBool("/sim/networking/network-olk") ) {
678             sgCoord fgdpos;
679             other = head->next;             /* put listpointer to start  */
680             while ( other != tail) {        /* display all except myself */
681                 if ( strcmp( other->ipadr, fgd_mcp_ip) != 0) {
682                     other->fgd_sel->select(1);
683                     sgSetCoord( &fgdpos, other->sgFGD_COORD );
684                     other->fgd_pos->setTransform( &fgdpos );
685                 }
686                 other = other->next;
687             }
688
689             // fgd_sel->select(1);
690             // sgCopyMat4( sgTUX, current_view.sgVIEW);
691             // sgCoord fgdpos;
692             // sgSetCoord( &fgdpos, sgFGD_VIEW );
693             // fgd_pos->setTransform( &fgdpos);
694         }
695 # endif
696
697         if ( fgGetBool("/sim/rendering/skyblend") ) {
698             // draw the sky backdrop
699
700             // we need a white diffuse light for the phase of the moon
701             ssgGetLight( 0 ) -> setColour( GL_DIFFUSE, white );
702
703             thesky->preDraw();
704
705             // return to the desired diffuse color
706             ssgGetLight( 0 ) -> setColour( GL_DIFFUSE, l->scene_diffuse );
707         }
708
709         // draw the ssg scene
710         glEnable( GL_DEPTH_TEST );
711
712         ssgSetNearFar( scene_nearplane, scene_farplane );
713         ssgCullAndDraw( globals->get_scenery()->get_scene_graph() );
714
715         // This is a bit kludgy.  Every 200 frames, do an extra
716         // traversal of the scene graph without drawing anything, but
717         // with the field-of-view set to 360x360 degrees.  This
718         // ensures that out-of-range random objects that are not in
719         // the current view frustum will still be freed properly.
720         static int counter = 0;
721         counter++;
722         if (counter == 200) {
723           sgFrustum f;
724           f.setFOV(360, 360);
725                                 // No need to put the near plane too close;
726                                 // this way, at least the aircraft can be
727                                 // culled.
728           f.setNearFar(1000, 1000000);
729           sgMat4 m;
730           ssgGetModelviewMatrix(m);
731           globals->get_scenery()->get_scene_graph()->cull(&f, m, true);
732           counter = 0;
733         }
734
735         // change state for lighting here
736
737         // draw runway lighting
738         glFogf (GL_FOG_DENSITY, rwy_exp2_punch_through);
739         ssgSetNearFar( scene_nearplane, scene_farplane );
740
741 #ifdef FG_EXPERIMENTAL_POINT_LIGHTING
742         // Enable states for drawing points with GL_extension
743         glEnable(GL_POINT_SMOOTH);
744
745         if ( fgGetBool("/sim/rendering/distance-attenuation")
746              && glutExtensionSupported("GL_EXT_point_parameters") )
747         {
748             float quadratic[3] = {1.0, 0.001, 0.0000001};
749             // makes the points fade as they move away
750             glPointParameterfvEXT(GL_DISTANCE_ATTENUATION_EXT, quadratic);
751             glPointParameterfEXT(GL_POINT_SIZE_MIN_EXT, 1.0); 
752         }
753         glPointSize(4.0);
754
755         // blending function for runway lights
756         glBlendFunc ( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) ;
757 #endif
758
759         glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_SPHERE_MAP);
760         glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_SPHERE_MAP);
761         glEnable(GL_TEXTURE_GEN_S);
762         glEnable(GL_TEXTURE_GEN_T);
763         glPolygonMode(GL_FRONT, GL_POINT);
764
765         // draw runway lighting
766         ssgCullAndDraw( globals->get_scenery()->get_rwy_lights_root() );
767
768         // change punch through and then draw taxi lighting
769         glFogf ( GL_FOG_DENSITY, fog_exp2_density );
770         // sgVec3 taxi_fog;
771         // sgSetVec3( taxi_fog, 0.0, 0.0, 0.0 );
772         // glFogfv ( GL_FOG_COLOR, taxi_fog );
773         ssgCullAndDraw( globals->get_scenery()->get_taxi_lights_root() );
774
775         // clean up lighting
776         glPolygonMode(GL_FRONT, GL_FILL);
777         glDisable(GL_TEXTURE_GEN_S);
778         glDisable(GL_TEXTURE_GEN_T);
779
780         //static int _frame_count = 0;
781         //if (_frame_count % 30 == 0) {
782         //  printf("SSG: %s\n", ssgShowStats());
783         //}
784         //else {
785         //  ssgShowStats();
786         //}
787         //_frame_count++;
788
789
790 #ifdef FG_EXPERIMENTAL_POINT_LIGHTING
791         if ( fgGetBool("/sim/rendering/distance-attenuation")
792              && glutExtensionSupported("GL_EXT_point_parameters") )
793         {
794             glPointParameterfvEXT(GL_DISTANCE_ATTENUATION_EXT,
795                                   default_attenuation);
796         }
797
798         glPointSize(1.0);
799         glDisable(GL_POINT_SMOOTH);
800 #endif
801
802         // draw ground lighting
803         glFogf (GL_FOG_DENSITY, ground_exp2_punch_through);
804         ssgCullAndDraw( globals->get_scenery()->get_gnd_lights_root() );
805
806         if ( fgGetBool("/sim/rendering/skyblend") ) {
807             // draw the sky cloud layers
808             if (fgGetBool("/environment/clouds/status")) {
809                 thesky->postDraw( cur_fdm_state->get_Altitude()
810                                   * SG_FEET_TO_METER );
811             }
812         }
813
814         if ( fgGetBool("/sim/rendering/clouds3d") ) {
815             glDisable( GL_FOG );
816             glDisable( GL_LIGHTING );
817             // cout << "drawing new clouds" << endl;
818
819             glEnable(GL_DEPTH_TEST);
820             glEnable(GL_BLEND);
821             glBlendFunc( GL_ONE, GL_ONE_MINUS_SRC_ALPHA ) ;
822
823             /*
824             glEnable( GL_TEXTURE_2D );
825             glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
826             glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
827             glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
828             glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
829             */
830
831 #ifdef FG_USE_CLOUDS_3D
832             sgClouds3d->Draw((sgVec4 *)current__view->get_VIEW());
833 #endif
834             glEnable( GL_FOG );
835             glEnable( GL_LIGHTING );
836             glEnable( GL_DEPTH_TEST );
837             glBlendFunc ( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA ) ;
838         }
839
840         globals->get_model_mgr()->draw();
841         globals->get_aircraft_model()->draw();
842
843         // display HUD && Panel
844         glDisable( GL_FOG );
845         glDisable( GL_DEPTH_TEST );
846         // glDisable( GL_CULL_FACE );
847         // glDisable( GL_TEXTURE_2D );
848
849         // update the controls subsystem
850         globals->get_controls()->update(delta_time_sec);
851
852         hud_and_panel->apply();
853         fgCockpitUpdate();
854
855         // Use the hud_and_panel ssgSimpleState for rendering the ATC output
856         // This only works properly if called before the panel call
857         globals->get_ATC_display()->update(delta_time_sec);
858
859         // update the panel subsystem
860         if ( current_panel != NULL ) {
861             current_panel->update(delta_time_sec);
862         }
863         fgUpdate3DPanels();
864
865         // We can do translucent menus, so why not. :-)
866         menus->apply();
867         glBlendFunc ( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA ) ;
868         puDisplay();
869         // glDisable ( GL_BLEND ) ;
870
871         glEnable( GL_DEPTH_TEST );
872         glEnable( GL_FOG );
873
874         // Fade out the splash screen over the first three seconds.
875         double t = globals->get_sim_time_sec();
876         if ( t <= 1.0 ) {
877             fgSplashUpdate(0.0, 1.0);
878         } else if ( t <= 3.0) {
879             fgSplashUpdate(0.0, (3.0 - t) / 2.0);
880         }
881     }
882
883     glutSwapBuffers();
884 }
885
886
887 // Update internal time dependent calculations (i.e. flight model)
888 // FIXME: this distinction is obsolete; all subsystems now get delta
889 // time on update.
890 void fgUpdateTimeDepCalcs() {
891     static bool inited = false;
892
893     //SG_LOG(SG_FLIGHT,SG_INFO, "Updating time dep calcs()");
894
895     fgLIGHT *l = &cur_light_params;
896
897     // Initialize the FDM here if it hasn't been and if we have a
898     // scenery elevation hit.
899
900     // cout << "cur_fdm_state->get_inited() = " << cur_fdm_state->get_inited() 
901     //      << " cur_elev = " << scenery.get_cur_elev() << endl;
902
903     if ( !cur_fdm_state->get_inited() &&
904          globals->get_scenery()->get_cur_elev() > -9990 )
905     {
906         SG_LOG(SG_FLIGHT,SG_INFO, "Finally initializing fdm");  
907         
908         cur_fdm_state->init();
909         if ( cur_fdm_state->get_bound() ) {
910             cur_fdm_state->unbind();
911         }
912         cur_fdm_state->bind();
913     }
914
915     // conceptually, the following block could be done for each fdm
916     // instance ...
917     if ( !cur_fdm_state->get_inited() ) {
918         // do nothing, fdm isn't inited yet
919     } else {
920         // we have been inited, and  we are good to go ...
921
922         if ( !inited ) {
923             inited = true;
924         }
925
926         globals->get_autopilot()->update(delta_time_sec);
927         cur_fdm_state->update(delta_time_sec);
928         globals->get_steam()->update(delta_time_sec);
929     }
930
931     globals->get_model_mgr()->update(delta_time_sec);
932     globals->get_aircraft_model()->update(delta_time_sec);
933
934     // update the view angle
935     globals->get_viewmgr()->update(delta_time_sec);
936
937     l->UpdateAdjFog();
938
939     // Update solar system
940     globals->get_ephem()->update( globals->get_time_params()->getMjd(),
941                                   globals->get_time_params()->getLst(),
942                                   cur_fdm_state->get_Latitude() );
943
944     // Update radio stack model
945     current_radiostack->update(delta_time_sec);
946 }
947
948
949 void fgInitTimeDepCalcs( void ) {
950     // noop for now
951 }
952
953
954 static const double alt_adjust_ft = 3.758099;
955 static const double alt_adjust_m = alt_adjust_ft * SG_FEET_TO_METER;
956
957
958 // What should we do when we have nothing else to do?  Let's get ready
959 // for the next move and update the display?
960 static void fgMainLoop( void ) {
961
962     static const SGPropertyNode *longitude
963         = fgGetNode("/position/longitude-deg");
964     static const SGPropertyNode *latitude
965         = fgGetNode("/position/latitude-deg");
966     static const SGPropertyNode *altitude
967         = fgGetNode("/position/altitude-ft");
968     static const SGPropertyNode *clock_freeze
969         = fgGetNode("/sim/freeze/clock", true);
970     static const SGPropertyNode *cur_time_override
971         = fgGetNode("/sim/time/cur-time-override", true);
972
973     // Update the elapsed time.
974     static bool first_time = true;
975     if ( first_time ) {
976         last_time_stamp.stamp();
977         first_time = false;
978     }
979     current_time_stamp.stamp();
980     delta_time_sec = double(current_time_stamp - last_time_stamp) / 1000000.0;
981     if (clock_freeze->getBoolValue())
982         delta_time_sec = 0;
983     last_time_stamp = current_time_stamp;
984     globals->inc_sim_time_sec( delta_time_sec );
985
986     static long remainder = 0;
987     long elapsed;
988 #ifdef FANCY_FRAME_COUNTER
989     int i;
990     double accum;
991 #else
992     static time_t last_time = 0;
993     static int frames = 0;
994 #endif // FANCY_FRAME_COUNTER
995
996     SGTime *t = globals->get_time_params();
997
998     FGLocation * acmodel_location = 0;
999     if(cur_fdm_state->getACModel() != 0) {
1000       acmodel_location = (FGLocation *)  cur_fdm_state->getACModel()->get3DModel()->getFGLocation();
1001     }
1002
1003     SG_LOG( SG_ALL, SG_DEBUG, "Running Main Loop");
1004     SG_LOG( SG_ALL, SG_DEBUG, "======= ==== ====");
1005
1006 #ifdef FG_NETWORK_OLK
1007     if ( fgGetBool("/sim/networking/network-olk") ) {
1008         if ( net_is_registered == 0 ) {      // We first have to reg. to fgd
1009             // printf("FGD: Netupdate\n");
1010             fgd_send_com( "A", FGFS_host);   // Send Mat4 data
1011             fgd_send_com( "B", FGFS_host);   // Recv Mat4 data
1012         }
1013     }
1014 #endif
1015
1016 #if defined( ENABLE_PLIB_JOYSTICK )
1017     // Read joystick and update control settings
1018     // if ( fgGetString("/sim/control-mode") == "joystick" )
1019     // {
1020     //    fgJoystickRead();
1021     // }
1022 #elif defined( ENABLE_GLUT_JOYSTICK )
1023     // Glut joystick support works by feeding a joystick handler
1024     // function to glut.  This is taken care of once in the joystick
1025     // init routine and we don't have to worry about it again.
1026 #endif
1027
1028 #ifndef FG_WEATHERCM
1029     globals->get_environment_mgr()->update(delta_time_sec);
1030 #endif
1031
1032     // Fix elevation.  I'm just sticking this here for now, it should
1033     // probably move eventually
1034
1035     /* printf("Before - ground = %.2f  runway = %.2f  alt = %.2f\n",
1036            scenery.get_cur_elev(),
1037            cur_fdm_state->get_Runway_altitude() * SG_FEET_TO_METER,
1038            cur_fdm_state->get_Altitude() * SG_FEET_TO_METER); */
1039
1040 // Curt is this code used?  I don't see any problems when I comment it out.
1041     if ( acmodel_location != 0 ) {
1042       if ( acmodel_location->get_cur_elev_m() > -9990 && cur_fdm_state->get_inited() ) {
1043         if ( cur_fdm_state->get_Altitude() * SG_FEET_TO_METER < 
1044              (acmodel_location->get_cur_elev_m() + alt_adjust_m - 3.0) ) {
1045             // now set aircraft altitude above ground
1046             printf("(*) Current Altitude = %.2f < %.2f forcing to %.2f\n", 
1047                    cur_fdm_state->get_Altitude() * SG_FEET_TO_METER,
1048                    acmodel_location->get_cur_elev_m() + alt_adjust_m - 3.0,
1049                    acmodel_location->get_cur_elev_m() + alt_adjust_m );
1050             cur_fdm_state->set_Altitude( (acmodel_location->get_cur_elev_m() 
1051                                                 + alt_adjust_m) * SG_METER_TO_FEET );
1052             SG_LOG( SG_ALL, SG_DEBUG, 
1053                     "<*> resetting altitude to " 
1054                     << cur_fdm_state->get_Altitude() * SG_FEET_TO_METER
1055                     << " meters" );
1056         }
1057       }
1058     }
1059 // End of code in question. (see Curt is this code used? above)
1060
1061     /* printf("Adjustment - ground = %.2f  runway = %.2f  alt = %.2f\n",
1062            scenery.get_cur_elev(),
1063            cur_fdm_state->get_Runway_altitude() * SG_FEET_TO_METER,
1064            cur_fdm_state->get_Altitude() * SG_FEET_TO_METER); */
1065
1066     // cout << "Warp = " << globals->get_warp() << endl;
1067
1068     // update "time"
1069     static bool last_clock_freeze = false;
1070
1071     if ( clock_freeze->getBoolValue() ) {
1072         // clock freeze requested
1073         if ( cur_time_override->getLongValue() == 0 ) {
1074             fgSetLong( "/sim/time/cur-time-override", t->get_cur_time() );
1075             globals->set_warp( 0 );
1076         }
1077     } else {
1078         // no clock freeze requested
1079         if ( last_clock_freeze == true ) {
1080             // clock just unfroze, let's set warp as the difference
1081             // between frozen time and current time so we don't get a
1082             // time jump (and corresponding sky object and lighting
1083             // jump.)
1084             globals->set_warp( cur_time_override->getLongValue() - time(NULL) );
1085             fgSetLong( "/sim/time/cur-time-override", 0 );
1086         }
1087         if ( globals->get_warp_delta() != 0 ) {
1088             globals->inc_warp( globals->get_warp_delta() );
1089         }
1090     }
1091
1092     last_clock_freeze = clock_freeze->getBoolValue();
1093
1094     t->update( longitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS,
1095                latitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS,
1096                cur_time_override->getLongValue(),
1097                globals->get_warp() );
1098
1099     if ( globals->get_warp_delta() != 0 ) {
1100         fgUpdateSkyAndLightingParams();
1101     }
1102
1103     // update magvar model
1104     globals->get_mag()->update( longitude->getDoubleValue()
1105                                   * SGD_DEGREES_TO_RADIANS,
1106                                 latitude->getDoubleValue()
1107                                   * SGD_DEGREES_TO_RADIANS,
1108                                 altitude->getDoubleValue() * SG_FEET_TO_METER,
1109                                 globals->get_time_params()->getJD() );
1110
1111     // Get elapsed time (in usec) for this past frame
1112     elapsed = fgGetTimeInterval();
1113     SG_LOG( SG_ALL, SG_DEBUG, 
1114             "Elapsed time interval is = " << elapsed 
1115             << ", previous remainder is = " << remainder );
1116
1117     // Calculate frame rate average
1118 #ifdef FANCY_FRAME_COUNTER
1119     /* old fps calculation */
1120     if ( elapsed > 0 ) {
1121         double tmp;
1122         accum = 0.0;
1123         for ( i = FG_FRAME_RATE_HISTORY - 2; i >= 0; i-- ) {
1124             tmp = general.get_frame(i);
1125             accum += tmp;
1126             // printf("frame[%d] = %.2f\n", i, g->frames[i]);
1127             general.set_frame(i+1,tmp);
1128         }
1129         tmp = 1000000.0 / (float)elapsed;
1130         general.set_frame(0,tmp);
1131         // printf("frame[0] = %.2f\n", general.frames[0]);
1132         accum += tmp;
1133         general.set_frame_rate(accum / (float)FG_FRAME_RATE_HISTORY);
1134         // printf("ave = %.2f\n", general.frame_rate);
1135     }
1136 #else
1137     if ( (t->get_cur_time() != last_time) && (last_time > 0) ) {
1138         general.set_frame_rate( frames );
1139         SG_LOG( SG_ALL, SG_DEBUG, 
1140                 "--> Frame rate is = " << general.get_frame_rate() );
1141         frames = 0;
1142     }
1143     last_time = t->get_cur_time();
1144     ++frames;
1145 #endif
1146
1147     // Run ATC subsystem
1148     globals->get_ATC_mgr()->update(delta_time_sec);
1149
1150     // Run the AI subsystem
1151     if (fgGetBool("/sim/ai-traffic/enabled"))
1152         globals->get_AI_mgr()->update(delta_time_sec);
1153
1154     // Run flight model
1155
1156     // Calculate model iterations needed for next frame
1157     elapsed += remainder;
1158
1159     global_multi_loop = (long)(((double)elapsed * 0.000001) * 
1160                               fgGetInt("/sim/model-hz"));
1161     remainder = elapsed - ( (global_multi_loop*1000000) / 
1162                             fgGetInt("/sim/model-hz") );
1163     SG_LOG( SG_ALL, SG_DEBUG, 
1164             "Model iterations needed = " << global_multi_loop
1165             << ", new remainder = " << remainder );
1166         
1167     // chop max interations to something reasonable if the sim was
1168     // delayed for an excesive amount of time
1169     if ( global_multi_loop > 2.0 * fgGetInt("/sim/model-hz") ) {
1170         global_multi_loop = (int)(2.0 * fgGetInt("/sim/model-hz") );
1171         remainder = 0;
1172     }
1173
1174     // flight model
1175     if ( global_multi_loop > 0 ) {
1176         fgUpdateTimeDepCalcs();
1177     } else {
1178         SG_LOG( SG_ALL, SG_DEBUG, 
1179                 "Elapsed time is zero ... we're zinging" );
1180     }
1181
1182     // Do any I/O channel work that might need to be done
1183     globals->get_io()->update( delta_time_sec );
1184
1185     // see if we need to load any deferred-load textures
1186     material_lib.load_next_deferred();
1187
1188     // Run audio scheduler
1189 #ifdef ENABLE_AUDIO_SUPPORT
1190     if ( fgGetBool("/sim/sound/audible")
1191            && globals->get_soundmgr()->is_working() ) {
1192         globals->get_soundmgr()->update( delta_time_sec );
1193     }
1194 #endif
1195
1196     globals->get_subsystem_mgr()->update(delta_time_sec);
1197
1198     //
1199     // Tile Manager updates - see if we need to load any new scenery tiles.
1200     //   this code ties together the fdm, viewer and scenery classes...
1201     //   we may want to move this to it's own class at some point
1202     //
1203     double visibility_meters = fgGetDouble("/environment/visibility-m");
1204     FGViewer *current_view = globals->get_current_view();
1205
1206     // update tile manager for FDM...
1207     // ...only if location is different than the viewer (to avoid duplicating effort)
1208     if( acmodel_location != current_view->getFGLocation() ) {
1209       if( acmodel_location != 0 ) {
1210         globals->get_tile_mgr()->prep_ssg_nodes( acmodel_location,
1211                                                  visibility_meters );
1212         globals->get_tile_mgr()->
1213             update( acmodel_location, visibility_meters,
1214                     acmodel_location->get_absolute_view_pos() );
1215         // save results of update in FGLocation for fdm...
1216         if ( globals->get_scenery()->get_cur_elev() > -9990 ) {
1217           acmodel_location->
1218               set_cur_elev_m( globals->get_scenery()->get_cur_elev() );
1219         }
1220         acmodel_location->
1221             set_tile_center( globals->get_scenery()->get_next_center() );
1222       }
1223     }
1224
1225     globals->get_tile_mgr()->prep_ssg_nodes( current_view->getFGLocation(),
1226                                              visibility_meters );
1227     // update tile manager for view...
1228     // IMPORTANT!!! the tilemgr update for view location _must_ be done last 
1229     // after the FDM's until all of Flight Gear code references the viewer's location
1230     // for elevation instead of the "scenery's" current elevation.
1231     FGLocation *view_location = globals->get_current_view()->getFGLocation();
1232     globals->get_tile_mgr()->update( view_location, visibility_meters,
1233                                      current_view->get_absolute_view_pos() );
1234     // save results of update in FGLocation for fdm...
1235     if ( globals->get_scenery()->get_cur_elev() > -9990 ) {
1236       current_view->getFGLocation()->set_cur_elev_m( globals->get_scenery()->get_cur_elev() );
1237     }
1238     current_view->getFGLocation()->set_tile_center( globals->get_scenery()->get_next_center() );
1239
1240     // If fdm location is same as viewer's then we didn't do the update for fdm location 
1241     //   above so we need to save the viewer results in the fdm FGLocation as well...
1242     if( acmodel_location == current_view->getFGLocation() ) {
1243       if( acmodel_location != 0 ) {
1244         if ( globals->get_scenery()->get_cur_elev() > -9990 ) {
1245           acmodel_location->set_cur_elev_m( globals->get_scenery()->get_cur_elev() );
1246         }
1247         acmodel_location->set_tile_center( globals->get_scenery()->get_next_center() );
1248       }
1249     }
1250
1251     // END Tile Manager udpates
1252
1253     // redraw display
1254     fgRenderFrame();
1255
1256     SG_LOG( SG_ALL, SG_DEBUG, "" );
1257 }
1258
1259
1260 // This is the top level master main function that is registered as
1261 // our idle funciton
1262
1263 // The first few passes take care of initialization things (a couple
1264 // per pass) and once everything has been initialized fgMainLoop from
1265 // then on.
1266
1267 static void fgIdleFunction ( void ) {
1268     // printf("idle state == %d\n", idle_state);
1269
1270     if ( idle_state == 0 ) {
1271         // Initialize the splash screen right away
1272         if ( fgGetBool("/sim/startup/splash-screen") ) {
1273             fgSplashInit();
1274         }
1275         
1276         idle_state++;
1277     } else if ( idle_state == 1 ) {
1278         // Initialize audio support
1279 #ifdef ENABLE_AUDIO_SUPPORT
1280
1281         // Start the intro music
1282         if ( fgGetBool("/sim/startup/intro-music") ) {
1283             SGPath mp3file( globals->get_fg_root() );
1284             mp3file.append( "Sounds/intro.mp3" );
1285
1286             SG_LOG( SG_GENERAL, SG_INFO, 
1287                     "Starting intro music: " << mp3file.str() );
1288
1289 #if defined( __CYGWIN__ )
1290             string command = "start /m `cygpath -w " + mp3file.str() + "`";
1291 #elif defined( WIN32 )
1292             string command = "start /m " + mp3file.str();
1293 #else
1294             string command = "mpg123 " + mp3file.str() + "> /dev/null 2>&1";
1295 #endif
1296
1297             system ( command.c_str() );
1298         }
1299 #endif
1300
1301         idle_state++;
1302     } else if ( idle_state == 2 ) {
1303         // These are a few miscellaneous things that aren't really
1304         // "subsystems" but still need to be initialized.
1305
1306 #ifdef USE_GLIDE
1307         if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
1308             grTexLodBiasValue ( GR_TMU0, 1.0 ) ;
1309         }
1310 #endif
1311
1312         idle_state++;
1313     } else if ( idle_state == 3 ) {
1314         // This is the top level init routine which calls all the
1315         // other subsystem initialization routines.  If you are adding
1316         // a subsystem to flightgear, its initialization call should
1317         // located in this routine.
1318         if( !fgInitSubsystems()) {
1319             SG_LOG( SG_GENERAL, SG_ALERT,
1320                     "Subsystem initializations failed ..." );
1321             exit(-1);
1322         }
1323
1324         idle_state++;
1325     } else if ( idle_state == 4 ) {
1326         // setup OpenGL view parameters
1327         fgInitVisuals();
1328
1329         idle_state++;
1330     } else if ( idle_state == 5 ) {
1331
1332         idle_state++;
1333     } else if ( idle_state == 6 ) {
1334         // sleep(1);
1335         idle_state = 1000;
1336
1337         SG_LOG( SG_GENERAL, SG_INFO, "Panel visible = " << fgPanelVisible() );
1338         fgReshape( fgGetInt("/sim/startup/xsize"),
1339                    fgGetInt("/sim/startup/ysize") );
1340     } 
1341
1342     if ( idle_state == 1000 ) {
1343         // We've finished all our initialization steps, from now on we
1344         // run the main loop.
1345
1346         glutIdleFunc(fgMainLoop);
1347     } else {
1348         if ( fgGetBool("/sim/startup/splash-screen") ) {
1349             fgSplashUpdate(0.0, 1.0);
1350         }
1351     }
1352 }
1353
1354 // options.cxx needs to see this for toggle_panel()
1355 // Handle new window size or exposure
1356 void fgReshape( int width, int height ) {
1357     int view_h;
1358
1359     if ( (!fgGetBool("/sim/virtual-cockpit"))
1360          && fgPanelVisible() && idle_state == 1000 ) {
1361         view_h = (int)(height * (current_panel->getViewHeight() -
1362                                  current_panel->getYOffset()) / 768.0);
1363     } else {
1364         view_h = height;
1365     }
1366
1367     // for all views
1368     FGViewMgr *viewmgr = globals->get_viewmgr();
1369     for ( int i = 0; i < viewmgr->size(); ++i ) {
1370       viewmgr->get_view(i)->
1371         set_aspect_ratio((float)view_h / (float)width);
1372     }
1373
1374     glViewport( 0, (GLint)(height - view_h), (GLint)(width), (GLint)(view_h) );
1375
1376     fgSetInt("/sim/startup/xsize", width);
1377     fgSetInt("/sim/startup/ysize", height);
1378     guiInitMouse(width, height);
1379
1380     ssgSetFOV( viewmgr->get_current_view()->get_h_fov(),
1381                viewmgr->get_current_view()->get_v_fov() );
1382
1383     fgHUDReshape();
1384
1385 #ifdef FG_USE_CLOUDS_3D
1386     sgClouds3d->Resize( viewmgr->get_current_view()->get_h_fov(),
1387                         viewmgr->get_current_view()->get_v_fov() );
1388 #endif
1389
1390 }
1391
1392 // Initialize GLUT and define a main window
1393 static bool fgGlutInit( int *argc, char **argv ) {
1394
1395 #if !defined( macintosh )
1396     // GLUT will extract all glut specific options so later on we only
1397     // need wory about our own.
1398     glutInit(argc, argv);
1399 #endif
1400
1401     // Define Display Parameters. Clouds3d works best with --bpp32 option
1402     if ( fgGetBool("/sim/rendering/clouds3d") ) {
1403         glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE | GLUT_ALPHA );
1404     } else {
1405         glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE );
1406     }
1407
1408     SG_LOG( SG_GENERAL, SG_INFO, "Opening a window: " <<
1409             fgGetInt("/sim/startup/xsize") << "x"
1410             << fgGetInt("/sim/startup/ysize") );
1411
1412     // Define initial window size
1413     glutInitWindowSize( fgGetInt("/sim/startup/xsize"),
1414                         fgGetInt("/sim/startup/ysize") );
1415
1416     // Initialize windows
1417     if ( !fgGetBool("/sim/startup/game-mode")) {
1418         // Open the regular window
1419         glutCreateWindow("FlightGear");
1420 #ifndef GLUT_WRONG_VERSION
1421     } else {
1422         // Open the cool new 'game mode' window
1423         char game_mode_str[256];
1424 //#define SYNC_OPENGL_WITH_DESKTOP_SETTINGS
1425 #if defined(WIN32) && defined(SYNC_OPENGL_WITH_DESKTOP_SETTINGS)
1426 #ifndef ENUM_CURRENT_SETTINGS
1427 #define ENUM_CURRENT_SETTINGS       ((DWORD)-1)
1428 #define ENUM_REGISTRY_SETTINGS      ((DWORD)-2)
1429 #endif
1430
1431         DEVMODE dm;
1432         dm.dmSize = sizeof(DEVMODE);
1433         EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &dm);
1434         fgSetInt("/sim/startup/xsize", dm.dmPelsWidth);
1435         fgSetInt("/sim/startup/ysize", dm.dmPelsHeight);
1436         glutInitWindowSize( fgGetInt("/sim/startup/xsize"),
1437                                                 fgGetInt("/sim/startup/ysize") );
1438         sprintf( game_mode_str, "%dx%d:%d@%d",
1439                          dm.dmPelsWidth,
1440                          dm.dmPelsHeight,
1441                          dm.dmBitsPerPel,
1442                          dm.dmDisplayFrequency );
1443 #else
1444         // Open the cool new 'game mode' window
1445         sprintf( game_mode_str, "width=%d height=%d bpp=%d",
1446                  fgGetInt("/sim/startup/xsize"),
1447                  fgGetInt("/sim/startup/ysize"),
1448                  fgGetInt("/sim/rendering/bits-per-pixel"));
1449
1450 #endif // HAVE_WINDOWS_H
1451         SG_LOG( SG_GENERAL, SG_INFO, 
1452                 "game mode params = " << game_mode_str );
1453         glutGameModeString( game_mode_str );
1454         glutEnterGameMode();
1455 #endif // GLUT_WRONG_VERSION
1456     }
1457
1458     // This seems to be the absolute earliest in the init sequence
1459     // that these calls will return valid info.  Too bad it's after
1460     // we've already created and sized out window. :-(
1461     general.set_glVendor( (char *)glGetString ( GL_VENDOR ) );
1462     general.set_glRenderer( (char *)glGetString ( GL_RENDERER ) );
1463     general.set_glVersion( (char *)glGetString ( GL_VERSION ) );
1464     SG_LOG( SG_GENERAL, SG_INFO, general.get_glRenderer() );
1465
1466     GLint tmp;
1467     glGetIntegerv( GL_MAX_TEXTURE_SIZE, &tmp );
1468     general.set_glMaxTexSize( tmp );
1469     SG_LOG ( SG_GENERAL, SG_INFO, "Max texture size = " << tmp );
1470
1471     glGetIntegerv( GL_DEPTH_BITS, &tmp );
1472     general.set_glDepthBits( tmp );
1473     SG_LOG ( SG_GENERAL, SG_INFO, "Depth buffer bits = " << tmp );
1474
1475     return true;
1476 }
1477
1478
1479 // Initialize GLUT event handlers
1480 static bool fgGlutInitEvents( void ) {
1481     // call fgReshape() on window resizes
1482     glutReshapeFunc( fgReshape );
1483
1484     // keyboard and mouse callbacks are set in FGInput::init
1485
1486     // call fgMainLoop() whenever there is
1487     // nothing else to do
1488     glutIdleFunc( fgIdleFunction );
1489
1490     // draw the scene
1491     glutDisplayFunc( fgRenderFrame );
1492
1493     return true;
1494 }
1495
1496 // Main top level initialization
1497 static bool fgMainInit( int argc, char **argv ) {
1498
1499 #if defined( macintosh )
1500     freopen ("stdout.txt", "w", stdout );
1501     freopen ("stderr.txt", "w", stderr );
1502     argc = ccommand( &argv );
1503 #endif
1504
1505     // set default log levels
1506     sglog().setLogLevels( SG_ALL, SG_INFO );
1507
1508     string version;
1509 #ifdef FLIGHTGEAR_VERSION
1510     version = FLIGHTGEAR_VERSION;
1511 #else
1512     version = "unknown version";
1513 #endif
1514     SG_LOG( SG_GENERAL, SG_INFO, "FlightGear:  Version "
1515             << version );
1516     SG_LOG( SG_GENERAL, SG_INFO, "Built with " << SG_COMPILER_STR << endl );
1517
1518     // Allocate global data structures.  This needs to happen before
1519     // we parse command line options
1520
1521     globals = new FGGlobals;
1522
1523 #ifndef FG_WEATHERCM
1524     globals->set_environment_mgr(new FGEnvironmentMgr);
1525 #endif
1526
1527     // seed the random number generater
1528     sg_srandom_time();
1529
1530     SGRoute *route = new SGRoute;
1531     globals->set_route( route );
1532
1533     FGControls *controls = new FGControls;
1534     globals->set_controls( controls );
1535
1536     FGSteam *steam = new FGSteam;
1537     globals->set_steam( steam );
1538
1539     string_list *col = new string_list;
1540     globals->set_channel_options_list( col );
1541
1542     // Scan the config file(s) and command line options to see if
1543     // fg_root was specified (ignore all other options for now)
1544     fgInitFGRoot(argc, argv);
1545
1546     // Check for the correct base package version
1547     static char required_version[] = "0.9.1";
1548     string base_version = fgBasePackageVersion();
1549     if ( !(base_version == required_version) ) {
1550         // tell the operator how to use this application
1551
1552         cerr << endl << "Base package check failed ... " \
1553              << "Found version " << base_version << " at: " \
1554              << globals->get_fg_root() << endl;
1555         cerr << "Please upgrade to version: " << required_version << endl;
1556         exit(-1);
1557     }
1558
1559     // Initialize the Aircraft directory to "" (UIUC)
1560     aircraft_dir = "";
1561
1562     // Load the configuration parameters.  (Command line options
1563     // overrides config file options.  Config file options override
1564     // defaults.)
1565     if ( !fgInitConfig(argc, argv) ) {
1566         SG_LOG( SG_GENERAL, SG_ALERT, "Config option parsing failed ..." );
1567         exit(-1);
1568     }
1569
1570     // Initialize the Window/Graphics environment.
1571     if( !fgGlutInit(&argc, argv) ) {
1572         SG_LOG( SG_GENERAL, SG_ALERT, "GLUT initialization failed ..." );
1573         exit(-1);
1574     }
1575
1576     // Initialize the various GLUT Event Handlers.
1577     if( !fgGlutInitEvents() ) {
1578         SG_LOG( SG_GENERAL, SG_ALERT, 
1579                 "GLUT event handler initialization failed ..." );
1580         exit(-1);
1581     }
1582
1583     // Initialize plib net interface
1584     netInit( &argc, argv );
1585
1586     // Initialize ssg (from plib).  Needs to come before we do any
1587     // other ssg stuff, but after opengl/glut has been initialized.
1588     ssgInit();
1589
1590     // Initialize the user interface (we need to do this before
1591     // passing off control to glut and before fgInitGeneral to get our
1592     // fonts !!!
1593     guiInit();
1594
1595 #ifdef GL_EXT_texture_lod_bias
1596     glTexEnvf( GL_TEXTURE_FILTER_CONTROL_EXT, GL_TEXTURE_LOD_BIAS_EXT, -0.5 ) ;
1597 #endif
1598
1599 #ifdef FG_EXPERIMENTAL_POINT_LIGHTING
1600             // get the address of our OpenGL extensions
1601     if ( fgGetBool("/sim/rendering/distance-attenuation") )
1602     {
1603 #ifdef WIN32
1604         glPointParameterfEXT = (PFNGLPOINTPARAMETERFEXTPROC) 
1605             wglGetProcAddress("glPointParameterfEXT");
1606         glPointParameterfvEXT = (PFNGLPOINTPARAMETERFVEXTPROC) 
1607             wglGetProcAddress("glPointParameterfvEXT");
1608 #elif linux
1609         glPointParameterfEXT = (OpenGLFuncExt) 
1610             glXGetProcAddressARB((GLubyte *)"glPointParameterfEXT");
1611         glPointParameterfvEXT = (OpenGLFuncExtv) 
1612             glXGetProcAddressARB((GLubyte *)"glPointParameterfvEXT");
1613 #endif
1614    }
1615 #endif
1616
1617     // based on the requested presets, calculate the true starting
1618     // lon, lat
1619     fgInitPosition();
1620
1621     SGTime *t = fgInitTime();
1622     globals->set_time_params( t );
1623
1624     // Do some quick general initializations
1625     if( !fgInitGeneral()) {
1626         SG_LOG( SG_GENERAL, SG_ALERT, 
1627                 "General initializations failed ..." );
1628         exit(-1);
1629     }
1630
1631     SGPath modelpath( globals->get_fg_root() );
1632     ssgModelPath( (char *)modelpath.c_str() );
1633
1634     // Initialize the global scenery manager
1635     globals->set_scenery( new FGScenery );
1636     globals->get_scenery()->init();
1637     globals->get_scenery()->bind();
1638
1639     // Initialize the global tile manager
1640     globals->set_tile_mgr( new FGTileMgr );
1641
1642     ////////////////////////////////////////////////////////////////////
1643     // Initialize the property-based built-in commands
1644     ////////////////////////////////////////////////////////////////////
1645     fgInitCommands();
1646
1647     ////////////////////////////////////////////////////////////////////
1648     // Initialize the general model subsystem.
1649     ////////////////////////////////////////////////////////////////////
1650
1651     globals->set_model_loader(new FGModelLoader);
1652     globals->set_texture_loader(new FGTextureLoader);
1653     globals->set_model_mgr(new FGModelMgr);
1654     globals->get_model_mgr()->init();
1655     globals->get_model_mgr()->bind();
1656
1657     ////////////////////////////////////////////////////////////////////
1658     // Initialize the 3D aircraft model subsystem.
1659     ////////////////////////////////////////////////////////////////////
1660
1661     globals->set_aircraft_model(new FGAircraftModel);
1662     globals->get_aircraft_model()->init();
1663     globals->get_aircraft_model()->bind();
1664
1665     ////////////////////////////////////////////////////////////////////
1666     // Initialize the view manager subsystem.
1667     ////////////////////////////////////////////////////////////////////
1668
1669     FGViewMgr *viewmgr = new FGViewMgr;
1670     globals->set_viewmgr( viewmgr );
1671     viewmgr->init();
1672     viewmgr->bind();
1673
1674
1675     // Initialize the sky
1676     SGPath ephem_data_path( globals->get_fg_root() );
1677     ephem_data_path.append( "Astro" );
1678     SGEphemeris *ephem = new SGEphemeris( ephem_data_path.c_str() );
1679     ephem->update( globals->get_time_params()->getMjd(),
1680                    globals->get_time_params()->getLst(),
1681                    0.0 );
1682     globals->set_ephem( ephem );
1683
1684                                 // TODO: move to environment mgr
1685     thesky = new SGSky;
1686     SGPath texture_path(globals->get_fg_root());
1687     texture_path.append("Textures");
1688     texture_path.append("Sky");
1689     for (int i = 0; i < FGEnvironmentMgr::MAX_CLOUD_LAYERS; i++) {
1690         SGCloudLayer * layer = new SGCloudLayer(texture_path.str());
1691         thesky->add_cloud_layer(layer);
1692     }
1693
1694
1695     SGPath sky_tex_path( globals->get_fg_root() );
1696     sky_tex_path.append( "Textures" );
1697     sky_tex_path.append( "Sky" );
1698     thesky->texture_path( sky_tex_path.str() );
1699
1700     thesky->build( 550.0, 550.0,
1701                    globals->get_ephem()->getNumPlanets(), 
1702                    globals->get_ephem()->getPlanets(), 60000.0,
1703                    globals->get_ephem()->getNumStars(),
1704                    globals->get_ephem()->getStars(), 60000.0 );
1705
1706     // Initialize MagVar model
1707     SGMagVar *magvar = new SGMagVar();
1708     globals->set_mag( magvar );
1709
1710     // airport = new ssgBranch;
1711     // airport->setName( "Airport Lighting" );
1712     // lighting->addKid( airport );
1713
1714     // ADA
1715     fgLoadDCS();
1716     // ADA
1717
1718 #ifdef FG_NETWORK_OLK
1719     // Do the network intialization
1720     if ( fgGetBool("/sim/networking/network-olk") ) {
1721         printf("Multipilot mode %s\n",
1722                fg_net_init( globals->get_scenery()->get_scene_graph() ) );
1723     }
1724 #endif
1725
1726     // build our custom render states
1727     fgBuildRenderStates();
1728     
1729     // pass control off to the master GLUT event handler
1730     glutMainLoop();
1731
1732     // we never actually get here ... but to avoid compiler warnings,
1733     // etc.
1734     return false;
1735 }
1736
1737
1738 // $$$ end - added VS Renganathan, 15 Oct 2K
1739 //         - added Venky         , 12 Nov 2K
1740
1741 #if defined(__linux__) && defined(__i386__)
1742
1743 static void handleFPE (int);
1744
1745 static void
1746 initFPE ()
1747 {
1748     fpu_control_t fpe_flags = 0;
1749     _FPU_GETCW(fpe_flags);
1750 //     fpe_flags &= ~_FPU_MASK_IM;      // invalid operation
1751 //     fpe_flags &= ~_FPU_MASK_DM;      // denormalized operand
1752 //     fpe_flags &= ~_FPU_MASK_ZM;      // zero-divide
1753 //     fpe_flags &= ~_FPU_MASK_OM;      // overflow
1754 //     fpe_flags &= ~_FPU_MASK_UM;      // underflow
1755 //     fpe_flags &= ~_FPU_MASK_PM;      // precision (inexact result)
1756     _FPU_SETCW(fpe_flags);
1757     signal(SIGFPE, handleFPE);
1758 }
1759
1760 static void
1761 handleFPE (int num)
1762 {
1763   initFPE();
1764   SG_LOG(SG_GENERAL, SG_ALERT, "Floating point interrupt (SIGFPE)");
1765 }
1766 #endif
1767
1768 #ifdef __APPLE__
1769
1770 typedef struct
1771 {
1772   int  lo;
1773   int  hi;
1774 } PSN;
1775
1776 extern "C" {
1777   short CPSGetCurrentProcess(PSN *psn);
1778   short CPSSetProcessName (PSN *psn, char *processname);
1779   short CPSEnableForegroundOperation(PSN *psn, int _arg2, int _arg3, int _arg4, int _arg5);
1780   short CPSSetFrontProcess(PSN *psn);
1781 };
1782
1783 #define CPSEnableFG(psn) CPSEnableForegroundOperation(psn,0x03,0x3C,0x2C,0x1103)
1784
1785 #endif
1786
1787 // Main entry point; catch any exceptions that have made it this far.
1788 int main ( int argc, char **argv ) {
1789
1790     // Enable floating-point exceptions for Linux/x86
1791 #if defined(__linux__) && defined(__i386__)
1792     initFPE();
1793 #endif
1794
1795     // Enable floating-point exceptions for Windows
1796 #if defined( _MSC_VER ) && defined( DEBUG )
1797     // Christian, we should document what this does
1798     _control87( _EM_INEXACT, _MCW_EM );
1799 #endif
1800
1801 #if defined( HAVE_BC5PLUS )
1802     _control87(MCW_EM, MCW_EM);  /* defined in float.h */
1803 #endif
1804
1805     // Keyboard focus hack
1806 #ifdef __APPLE__
1807     {
1808       PSN psn;
1809
1810       glutInit (&argc, argv);
1811
1812       CPSGetCurrentProcess(&psn);
1813       CPSSetProcessName(&psn, "FlightGear");
1814       CPSEnableFG(&psn);
1815       CPSSetFrontProcess(&psn);
1816     }
1817 #endif
1818
1819     // FIXME: add other, more specific
1820     // exceptions.
1821     try {
1822         fgMainInit(argc, argv);
1823     } catch (sg_throwable &t) {
1824                                 // We must use cerr rather than
1825                                 // logging, since logging may be
1826                                 // disabled.
1827         cerr << "Fatal error: " << t.getFormattedMessage()
1828              << "\n (received from " << t.getOrigin() << ')' << endl;
1829         exit(1);
1830     }
1831
1832     return 0;
1833 }
1834
1835
1836 void fgLoadDCS(void) {
1837
1838     ssgEntity *ship_obj = NULL;
1839
1840     char obj_filename[25];
1841
1842     for ( int k = 0; k < 32; k++ ) {
1843         ship_pos[k]=NULL;
1844     }
1845
1846     SGPath tile_path( globals->get_fg_root());
1847     tile_path.append( "Scenery" );
1848     tile_path.append( "Objects.txt" );
1849     sg_gzifstream in( tile_path.str() );
1850     if ( ! in.is_open() ) {
1851         SG_LOG( SG_TERRAIN, SG_ALERT, "Cannot open file: " << tile_path.str() );
1852     } else {
1853
1854         SGPath modelpath( globals->get_fg_root() );
1855         modelpath.append( "Models" );
1856         modelpath.append( "Geometry" );
1857   
1858         SGPath texturepath( globals->get_fg_root() );
1859         texturepath.append( "Models" );
1860         texturepath.append( "Textures" );
1861  
1862         ssgModelPath( (char *)modelpath.c_str() );
1863         ssgTexturePath( (char *)texturepath.c_str() );
1864
1865         ship_sel = new ssgSelector;
1866
1867         char c;
1868         while ( ! in.eof() ) {
1869             in >> ::skipws;
1870             if ( in.get( c ) && c == '#' ) { 
1871                 in >> skipeol;
1872             } else { 
1873                 in.putback(c);
1874                 in >> obj_filename >> obj_lat[objc] >> obj_lon[objc] >> obj_alt[objc];
1875                 /* cout << endl << obj_filename << " " << obj_lat[objc] << " " << obj_lon[objc] <<  " " << obj_alt[objc] << endl;
1876                    int chj=getchar();*/
1877                 
1878                 obj_lon[objc] *=SGD_DEGREES_TO_RADIANS;
1879                 obj_lat[objc] *=SGD_DEGREES_TO_RADIANS;
1880                 
1881                 ship_pos[objc] = new ssgTransform;
1882        
1883                 // type "repeat" in objects.txt to load one more
1884                 // instance of the last object.
1885
1886                 if ( strcmp(obj_filename,"repeat") != 0) {
1887                     ship_obj =
1888                         globals->get_model_loader()->load_model( obj_filename );
1889                 }
1890       
1891                 if ( ship_obj != NULL ) {
1892                                         ship_obj->setName(obj_filename);
1893                                 if (objc == 0)
1894                                                 ship_obj->clrTraversalMaskBits( SSGTRAV_HOT );
1895                                         else
1896                                                 ship_obj->setTraversalMaskBits( SSGTRAV_HOT );
1897                     ship_pos[objc]->addKid( ship_obj ); // add object to transform node
1898                     ship_sel->addKid( ship_pos[objc] ); // add transform node to selector
1899                     SG_LOG( SG_TERRAIN, SG_ALERT, "Loaded file: "
1900                             << obj_filename );
1901                 } else {
1902                     SG_LOG( SG_TERRAIN, SG_ALERT, "Cannot open file: "
1903                             << obj_filename );
1904                 }
1905             
1906                                 // temporary hack for deck lights - ultimately should move to PLib (when??)
1907                                 //const char *extn = file_extension ( obj_filename ) ;
1908                                 if ( objc == 1 ){
1909                                     ssgVertexArray *lights = new ssgVertexArray( 100 );
1910                                         ssgVertexArray *lightpoints = new ssgVertexArray( 100 );
1911                                         ssgVertexArray *lightnormals = new ssgVertexArray( 100 );
1912                                         ssgVertexArray *lightdir = new ssgVertexArray( 100 );
1913                                         int ltype[500], light_type;
1914                                         static int ltcount = 0;
1915                                     string token;
1916                                         sgVec3 rway_dir,rway_normal,lightpt;
1917                                         Point3D node;
1918                                         modelpath.append(obj_filename);
1919                                         sg_gzifstream in1( modelpath.str() );
1920                                         if ( ! in1.is_open() ) {
1921                                                 SG_LOG( SG_TERRAIN, SG_ALERT, "Cannot open file: " << modelpath.str() );
1922                                         } else {
1923                                                 while ( ! in1.eof() ) {
1924                                                         in1 >> ::skipws;
1925                                                         if ( in1.get( c ) && c == '#' ) { 
1926                                                                 in1 >> skipeol;
1927                                                         } else { 
1928                                                                 in1.putback(c);
1929                                                                 in1 >> token;
1930                                                                 //cout << token << endl;
1931                                                                 if ( token == "runway" ) {
1932                                                                         in1 >> node;
1933                                                                         sgSetVec3 (rway_dir, node[0], node[1], node[2] );                        
1934                                                                 } else if ( token == "edgelight" ) {
1935                                                                         in1 >> node;
1936                                                                         sgSetVec3 (rway_normal, node[0], node[1], node[2] );
1937                                                                         light_type = 1;
1938                                                                 } else if ( token == "taxi" ) {
1939                                                                         in1 >> node;
1940                                                                         sgSetVec3 (rway_normal, node[0], node[1], node[2] );                     
1941                                                                         light_type = 2;
1942                                                                 } else if ( token == "vasi" ) {
1943                                                                         in1 >> node;
1944                                                                         sgSetVec3 (rway_normal, node[0], node[1], node[2] );                     
1945                                                                         light_type = 3;
1946                                                                 } else if ( token == "threshold" ) {
1947                                                                         in1 >> node;
1948                                                                         sgSetVec3 (rway_normal, node[0], node[1], node[2] );                     
1949                                                                         light_type = 4;
1950                                                                 } else if ( token == "rabbit" ) {
1951                                                                         in1 >> node;
1952                                                                         sgSetVec3 (rway_normal, node[0], node[1], node[2] );
1953                                                                         light_type = 5;
1954                                                                 } else if ( token == "ols" ) {
1955                                                                         in1 >> node;
1956                                                                         sgSetVec3 (rway_ols, node[0], node[1], node[2] );
1957                                                                         light_type = 6;
1958                                                                 } else if ( token == "red" ) {
1959                                                                         in1 >> node;
1960                                                                         sgSetVec3 (rway_normal, node[0], node[1], node[2] );
1961                                                                         light_type = 7;
1962                                                                 } else if ( token == "green" ) {
1963                                                                         in1 >> node;
1964                                                                         sgSetVec3 (rway_normal, node[0], node[1], node[2] );
1965                                                                         light_type = 8;
1966                                                                 } else if ( token == "lp" ) {
1967                                                                         in1 >> node;
1968                                                                         sgSetVec3 (lightpt, node[0], node[1], node[2] );
1969                                                                         lightpoints->add( lightpt );
1970                                                                         lightnormals->add( rway_normal );
1971                                                                         lightdir->add( rway_dir );
1972                                                                         ltype[ltcount]= light_type;
1973                                                                         ltcount++;
1974                                                                 }
1975                                                                 if (in1.eof()) break;
1976                                                         } 
1977                                                 }  //while
1978         
1979                                                 if ( lightpoints->getNum() ) {
1980                                                         ssgBranch *lightpoints_branch;
1981                                                         long int dummy = -999;
1982                                                         dummy_tile = new FGTileEntry((SGBucket)dummy);
1983                                                         dummy_tile->lightmaps_sequence = new ssgSelector;
1984                                                         dummy_tile->ols_transform = new ssgTransform;
1985
1986                                                         // call function to generate the runway lights
1987                                                         lightpoints_branch = 
1988                                                         dummy_tile->gen_runway_lights( lightpoints, lightnormals,
1989                                                                                                                                 lightdir, ltype);
1990                                                         lightpoints_brightness->addKid(lightpoints_branch);
1991                                                         lightpoints_transform->addKid(lightpoints_brightness);
1992                                                     //dummy_tile->lightmaps_sequence->setTraversalMaskBits( SSGTRAV_HOT );
1993                                                         lightpoints_transform->addKid( dummy_tile->lightmaps_sequence );
1994                                                         lightpoints_transform->ref();
1995                                                         globals->get_scenery()->get_gnd_lights_root()->addKid( lightpoints_transform );
1996                                                 } 
1997                                         } //if in1 
1998                 } //if objc
1999                                 // end hack for deck lights
2000
2001                 objc++;
2002
2003                 if (in.eof()) break;
2004             }
2005         } // while
2006
2007         SG_LOG ( SG_TERRAIN, SG_ALERT, "Finished object processing." );
2008
2009         globals->get_scenery()->get_terrain_branch()->addKid( ship_sel ); //add selector node to root node 
2010     }
2011
2012     return;
2013  }
2014
2015
2016 void fgUpdateDCS (void) {
2017
2018     // double eye_lat,eye_lon,eye_alt;
2019     // static double obj_head;
2020     double sl_radius,obj_latgc;
2021     // float nresultmat[4][4];
2022     // sgMat4 Trans,rothead,rotlon,rot180,rotlat,resultmat1,resultmat2,resultmat3;
2023     double bz[3];
2024
2025     // Instantaneous Geodetic Lat/Lon/Alt of moving object
2026     FGADA *fdm = (FGADA *)current_aircraft.fdm_state;
2027     
2028     // Deck should be the first object in objects.txt in case of fdm=ada
2029
2030     if (!strcmp(fgGetString("/sim/flight-model"), "ada")) {
2031                 if ((fdm->get_iaux(1))==1)
2032                 {
2033                         obj_lat[1] = fdm->get_daux(1)*SGD_DEGREES_TO_RADIANS;
2034                         obj_lon[1] = fdm->get_daux(2)*SGD_DEGREES_TO_RADIANS;
2035                         obj_alt[1] = fdm->get_daux(3);
2036                         obj_pitch[1] = fdm->get_faux(1);
2037                         obj_roll[1] = fdm->get_faux(2);
2038                 }
2039     }
2040     
2041     for ( int m = 0; m < objc; m++ ) {
2042         //cout << endl <<  obj_lat[m]*SGD_RADIANS_TO_DEGREES << " " << obj_lon[m]*SGD_RADIANS_TO_DEGREES << " " << obj_alt[m] << " " << objc << endl;
2043         //int v=getchar();
2044
2045         //Geodetic to Geocentric angles for rotation
2046         sgGeodToGeoc(obj_lat[m],obj_alt[m],&sl_radius,&obj_latgc);
2047
2048         //moving object gbs-posn in cartesian coords
2049         Point3D obj_posn = Point3D( obj_lon[m],obj_lat[m],obj_alt[m]);
2050         Point3D obj_pos = sgGeodToCart( obj_posn );
2051
2052         // Translate moving object w.r.t eye
2053         Point3D Objtrans = obj_pos - globals->get_scenery()->get_center();
2054         bz[0]=Objtrans.x();
2055         bz[1]=Objtrans.y();
2056         bz[2]=Objtrans.z();
2057
2058        // rotate dynamic objects for lat,lon & alt and other motion about its axes
2059         
2060         sgMat4 sgTRANS;
2061         sgMakeTransMat4( sgTRANS, bz[0],bz[1],bz[2]);
2062
2063         sgVec3 ship_fwd,ship_rt,ship_up;
2064         sgSetVec3( ship_fwd, 1.0, 0.0, 0.0);//east,roll
2065         sgSetVec3( ship_rt, 0.0, 1.0, 0.0);//up,pitch
2066         sgSetVec3( ship_up, 0.0, 0.0, 1.0); //north,yaw
2067
2068         sgMat4 sgROT_lon, sgROT_lat, sgROT_hdg, sgROT_pitch, sgROT_roll;
2069         sgMakeRotMat4( sgROT_lon, obj_lon[m]*SGD_RADIANS_TO_DEGREES, ship_up );
2070         sgMakeRotMat4( sgROT_lat, 90-obj_latgc*SGD_RADIANS_TO_DEGREES, ship_rt );
2071         sgMakeRotMat4( sgROT_hdg, 180.0, ship_up );
2072         sgMakeRotMat4( sgROT_pitch, obj_pitch[m], ship_rt );
2073         sgMakeRotMat4( sgROT_roll, obj_roll[m], ship_fwd );
2074         
2075         sgMat4 sgTUX;
2076         sgCopyMat4( sgTUX, sgROT_hdg );
2077         sgPostMultMat4( sgTUX, sgROT_pitch );
2078         sgPostMultMat4( sgTUX, sgROT_roll );
2079         sgPostMultMat4( sgTUX, sgROT_lat );
2080         sgPostMultMat4( sgTUX, sgROT_lon );
2081         sgPostMultMat4( sgTUX, sgTRANS );
2082
2083         sgCoord shippos;
2084         sgSetCoord(&shippos, sgTUX );
2085         ship_pos[m]->setTransform( &shippos );
2086         // temporary hack for deck lights - ultimately should move to PLib (when ??)
2087         if (m == 1) {
2088                 if (lightpoints_transform) {
2089                         lightpoints_transform->setTransform( &shippos );
2090                         float sun_angle = cur_light_params.sun_angle * SGD_RADIANS_TO_DEGREES;
2091                         if ( sun_angle > 89 ) {
2092                                 lightpoints_brightness->select(0x01);
2093                         } else {
2094                                 lightpoints_brightness->select(0x00);
2095                         }
2096                 }
2097
2098                 float elev;
2099                 sgVec3 rp,to;
2100                 float *vp;
2101                 float alt;
2102                 float ref_elev;
2103                 sgXformPnt3( rp, rway_ols, sgTUX );
2104                 vp = globals->get_current_view()->get_view_pos();
2105             to[0] = rp[0]-vp[0];
2106             to[1] = rp[1]-vp[1];
2107             to[2] = rp[2]-vp[2];
2108                 float dist = sgLengthVec3( to );
2109                 alt = (current_aircraft.fdm_state->get_Altitude() * SG_FEET_TO_METER)-rway_ols[2];
2110
2111                 elev = asin(alt/dist)*SGD_RADIANS_TO_DEGREES;
2112
2113             ref_elev = elev - 3.75; // +ve above, -ve below
2114         
2115                 unsigned int sel;
2116                 sel = 0xFF;
2117 // DO NOT DELETE THIS CODE - This is to compare a discrete FLOLS (without LOD) with analog FLOLS
2118 //              if (ref_elev > 0.51) sel = 0x21;
2119 //              if ((ref_elev <= 0.51) & (ref_elev > 0.17)) sel = 0x22;
2120 //              if ((ref_elev <= 0.17) & (ref_elev >= -0.17)) sel = 0x24;
2121 //              if ((ref_elev < -0.17) & (ref_elev >= -0.51)) sel = 0x28;
2122 //              if (ref_elev < -0.51) sel = 0x30;
2123 // DO NOT DELETE THIS CODE - This is to compare a discrete FLOLS (without LOD) with analog FLOLS
2124                 dummy_tile->lightmaps_sequence->select(sel);
2125
2126                 sgVec3 up;
2127                 sgCopyVec3 (up, ship_up);
2128                 if (dist > 750) 
2129                         sgScaleVec3 (up, 4.0*ref_elev*dist/750.0);
2130                 else
2131                         sgScaleVec3 (up, 4.0*ref_elev);
2132                 dummy_tile->ols_transform->setTransform(up);
2133                 //cout << "ref_elev  " << ref_elev << endl;
2134         }
2135     // end hack for deck lights
2136
2137     }
2138     if ( ship_sel != NULL ) {
2139         ship_sel->select(0xFFFFFFFE); // first object is ownship, added to acmodel
2140     }
2141 }
2142
2143 // $$$ end - added VS Renganathan, 15 Oct 2K
2144 //           added Venky         , 12 Nov 2K