]> git.mxchange.org Git - flightgear.git/blob - src/Main/main.cxx
Changes for animated effects
[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  - http://www.flightgear.org/~curt
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <simgear/compiler.h>
29
30 #if defined(__linux__) && defined(__i386__)
31 #  include <fpu_control.h>
32 #  include <signal.h>
33 #endif
34
35 #include <iostream>
36
37 #include <plib/netSocket.h>
38
39 #include <osg/Camera>
40 #include <osg/GraphicsContext>
41 #include <osgDB/Registry>
42
43 // Class references
44 #include <simgear/ephemeris/ephemeris.hxx>
45 #include <simgear/scene/model/modellib.hxx>
46 #include <simgear/scene/material/matlib.hxx>
47 #include <simgear/scene/model/animation.hxx>
48 #include <simgear/scene/sky/sky.hxx>
49 #include <simgear/structure/event_mgr.hxx>
50 #include <simgear/props/AtomicChangeListener.hxx>
51 #include <simgear/props/props.hxx>
52 #include <simgear/timing/sg_time.hxx>
53 #include <simgear/math/sg_random.h>
54
55 #include <Time/light.hxx>
56 #include <Include/general.hxx>
57 #include <Aircraft/replay.hxx>
58 #include <Cockpit/cockpit.hxx>
59 #include <Cockpit/hud.hxx>
60 #include <Model/panelnode.hxx>
61 #include <Model/modelmgr.hxx>
62 #include <Model/acmodel.hxx>
63 #include <Scenery/scenery.hxx>
64 #include <Scenery/tilemgr.hxx>
65 #include <Sound/beacon.hxx>
66 #include <Sound/morse.hxx>
67 #include <Sound/fg_fx.hxx>
68 #include <FDM/flight.hxx>
69 #include <ATCDCL/ATCmgr.hxx>
70 #include <ATCDCL/AIMgr.hxx>
71 #include <Time/tmp.hxx>
72 #include <Environment/environment_mgr.hxx>
73 #include <GUI/new_gui.hxx>
74 #include <MultiPlayer/multiplaymgr.hxx>
75
76 #include "CameraGroup.hxx"
77 #include "fg_commands.hxx"
78 #include "fg_io.hxx"
79 #include "renderer.hxx"
80 #include "splash.hxx"
81 #include "main.hxx"
82 #include "util.hxx"
83 #include "fg_init.hxx"
84 #include "fg_os.hxx"
85 #include "WindowSystemAdapter.hxx"
86 #include <Main/viewer.hxx>
87
88 static double real_delta_time_sec = 0.0;
89 double delta_time_sec = 0.0;
90 extern float init_volume;
91
92 using namespace flightgear;
93
94 using std::cerr;
95
96 // This is a record containing a bit of global housekeeping information
97 FGGeneral general;
98
99 // Specify our current idle function state.  This is used to run all
100 // our initializations out of the idle callback so that we can get a
101 // splash screen up and running right away.
102 int idle_state = 0;
103 long global_multi_loop;
104
105 SGTimeStamp last_time_stamp;
106 SGTimeStamp current_time_stamp;
107
108 // The atexit() function handler should know when the graphical subsystem
109 // is initialized.
110 extern int _bootstrap_OSInit;
111
112
113
114 // Update internal time dependent calculations (i.e. flight model)
115 // FIXME: this distinction is obsolete; all subsystems now get delta
116 // time on update.
117 void fgUpdateTimeDepCalcs() {
118     static bool inited = false;
119
120     static const SGPropertyNode *replay_state
121         = fgGetNode( "/sim/freeze/replay-state", true );
122     static SGPropertyNode *replay_time
123         = fgGetNode( "/sim/replay/time", true );
124     // static const SGPropertyNode *replay_end_time
125     //     = fgGetNode( "/sim/replay/end-time", true );
126
127     //SG_LOG(SG_FLIGHT,SG_INFO, "Updating time dep calcs()");
128
129     // Initialize the FDM here if it hasn't been and if we have a
130     // scenery elevation hit.
131
132     // cout << "cur_fdm_state->get_inited() = " << cur_fdm_state->get_inited() 
133     //      << " cur_elev = " << scenery.get_cur_elev() << endl;
134
135     if (!cur_fdm_state->get_inited()) {
136         // Check for scenery around the aircraft.
137         double lon = fgGetDouble("/sim/presets/longitude-deg");
138         double lat = fgGetDouble("/sim/presets/latitude-deg");
139         // We require just to have 50 meter scenery availabe around
140         // the aircraft.
141         double range = 1000.0;
142         SGGeod geod = SGGeod::fromDeg(lon, lat);
143         if (globals->get_scenery()->scenery_available(geod, range)) {
144             //SG_LOG(SG_FLIGHT, SG_INFO, "Finally initializing fdm");
145             cur_fdm_state->init();
146             if ( cur_fdm_state->get_bound() ) {
147                 cur_fdm_state->unbind();
148             }
149             cur_fdm_state->bind();
150         }
151     }
152
153     // conceptually, the following block could be done for each fdm
154     // instance ...
155     if ( cur_fdm_state->get_inited() ) {
156         // we have been inited, and  we are good to go ...
157
158         if ( replay_state->getIntValue() == 0 ) {
159             // replay off, run fdm
160             cur_fdm_state->update( delta_time_sec );
161         } else {
162             FGReplay *r = (FGReplay *)(globals->get_subsystem( "replay" ));
163             r->replay( replay_time->getDoubleValue() );
164             if ( replay_state->getIntValue() == 1 ) {
165                 // normal playback
166                 replay_time->setDoubleValue( replay_time->getDoubleValue()
167                                              + ( delta_time_sec
168                                                  * fgGetInt("/sim/speed-up") ) );
169             } else if ( replay_state->getIntValue() == 2 ) {
170                 // paused playback (don't advance replay time)
171             }
172         }
173
174         if ( !inited ) {
175             inited = true;
176             fgSetBool("/sim/signals/fdm-initialized", true);
177         }
178
179     } else {
180         // do nothing, fdm isn't inited yet
181     }
182
183     globals->get_aircraft_model()->update(delta_time_sec);
184
185     // Update solar system
186     globals->get_ephem()->update( globals->get_time_params()->getMjd(),
187                                   globals->get_time_params()->getLst(),
188                                   cur_fdm_state->get_Latitude() );
189
190 }
191
192
193 // What should we do when we have nothing else to do?  Let's get ready
194 // for the next move and update the display?
195 static void fgMainLoop( void ) {
196     int model_hz = fgGetInt("/sim/model-hz");
197
198     static SGConstPropertyNode_ptr longitude
199         = fgGetNode("/position/longitude-deg");
200     static SGConstPropertyNode_ptr latitude
201         = fgGetNode("/position/latitude-deg");
202     static SGConstPropertyNode_ptr altitude
203         = fgGetNode("/position/altitude-ft");
204     static SGConstPropertyNode_ptr vn_fps
205         = fgGetNode("/velocities/speed-north-fps");
206     static SGConstPropertyNode_ptr ve_fps
207         = fgGetNode("/velocities/speed-east-fps");
208     static SGConstPropertyNode_ptr vd_fps
209         = fgGetNode("/velocities/speed-down-fps");
210     static SGConstPropertyNode_ptr clock_freeze
211         = fgGetNode("/sim/freeze/clock", true);
212     static SGConstPropertyNode_ptr cur_time_override
213         = fgGetNode("/sim/time/cur-time-override", true);
214     static SGConstPropertyNode_ptr max_simtime_per_frame
215         = fgGetNode("/sim/max-simtime-per-frame", true);
216     static SGPropertyNode_ptr frame_signal
217         = fgGetNode("/sim/signals/frame", true);
218
219     frame_signal->fireValueChanged();
220     SGCloudLayer::enable_bump_mapping = fgGetBool("/sim/rendering/bump-mapping");
221
222     bool scenery_loaded = fgGetBool("sim/sceneryloaded");
223     bool wait_for_scenery = !(scenery_loaded || fgGetBool("sim/sceneryloaded-override"));
224
225     // Update the elapsed time.
226     static bool first_time = true;
227     if ( first_time ) {
228         last_time_stamp.stamp();
229         first_time = false;
230     }
231
232     double throttle_hz = fgGetDouble("/sim/frame-rate-throttle-hz", 0.0);
233     if ( throttle_hz > 0.0 && !wait_for_scenery ) {
234         // optionally throttle the frame rate (to get consistent frame
235         // rates or reduce cpu usage.
236
237         double frame_us = 1000000.0 / throttle_hz;
238
239 #define FG_SLEEP_BASED_TIMING 1
240 #if defined(FG_SLEEP_BASED_TIMING)
241         // sleep based timing loop.
242         //
243         // Calling sleep, even usleep() on linux is less accurate than
244         // we like, but it does free up the cpu for other tasks during
245         // the sleep so it is desirable.  Because of the way sleep()
246         // is implemented in consumer operating systems like windows
247         // and linux, you almost always sleep a little longer than the
248         // requested amount.
249         //
250         // To combat the problem of sleeping too long, we calculate the
251         // desired wait time and shorten it by 2000us (2ms) to avoid
252         // [hopefully] over-sleep'ing.  The 2ms value was arrived at
253         // via experimentation.  We follow this up at the end with a
254         // simple busy-wait loop to get the final pause timing exactly
255         // right.
256         //
257         // Assuming we don't oversleep by more than 2000us, this
258         // should be a reasonable compromise between sleep based
259         // waiting, and busy waiting.
260
261         // sleep() will always overshoot by a bit so undersleep by
262         // 2000us in the hopes of never oversleeping.
263         frame_us -= 2000.0;
264         if ( frame_us < 0.0 ) {
265             frame_us = 0.0;
266         }
267         current_time_stamp.stamp();
268         /* Convert to ms */
269         double elapsed_us = (current_time_stamp - last_time_stamp).toUSecs();
270         if ( elapsed_us < frame_us ) {
271             double requested_us = frame_us - elapsed_us;
272             ulMilliSecondSleep ( (int)(requested_us / 1000.0) ) ;
273         }
274 #endif
275
276         // busy wait timing loop.
277         //
278         // This yields the most accurate timing.  If the previous
279         // ulMilliSecondSleep() call is omitted this will peg the cpu
280         // (which is just fine if FG is the only app you care about.)
281         current_time_stamp.stamp();
282         SGTimeStamp next_time_stamp = last_time_stamp;
283         next_time_stamp += SGTimeStamp::fromSec(1e-6*frame_us);
284         while ( current_time_stamp < next_time_stamp ) {
285             current_time_stamp.stamp();
286         }
287     } else {
288         // run as fast as the app will go
289         current_time_stamp.stamp();
290     }
291
292     real_delta_time_sec = (current_time_stamp - last_time_stamp).toSecs();
293
294     // Limit the time we need to spend in simulation loops
295     // That means, if the /sim/max-simtime-per-frame value is strictly positive
296     // you can limit the maximum amount of time you will do simulations for
297     // one frame to display. The cpu time spent in simulations code is roughly
298     // at least O(real_delta_time_sec). If this is (due to running debug
299     // builds or valgrind or something different blowing up execution times)
300     // larger than the real time you will no longer get any response
301     // from flightgear. This limits that effect. Just set to property from
302     // your .fgfsrc or commandline ...
303     double dtMax = max_simtime_per_frame->getDoubleValue();
304     if (0 < dtMax && dtMax < real_delta_time_sec)
305         real_delta_time_sec = dtMax;
306
307     // round the real time down to a multiple of 1/model-hz.
308     // this way all systems are updated the _same_ amount of dt.
309     static double reminder = 0.0;
310     real_delta_time_sec += reminder;
311     global_multi_loop = long(floor(real_delta_time_sec*model_hz));
312     global_multi_loop = SGMisc<long>::max(0, global_multi_loop);
313     reminder = real_delta_time_sec - double(global_multi_loop)/double(model_hz);
314     real_delta_time_sec = double(global_multi_loop)/double(model_hz);
315
316     if (clock_freeze->getBoolValue() || wait_for_scenery) {
317         delta_time_sec = 0;
318     } else {
319         delta_time_sec = real_delta_time_sec;
320     }
321     last_time_stamp = current_time_stamp;
322     globals->inc_sim_time_sec( delta_time_sec );
323
324     // These are useful, especially for Nasal scripts.
325     fgSetDouble("/sim/time/delta-realtime-sec", real_delta_time_sec);
326     fgSetDouble("/sim/time/delta-sec", delta_time_sec);
327
328 #ifdef FANCY_FRAME_COUNTER
329     int i;
330     double accum;
331 #else
332     static time_t last_time = 0;
333     static int frames = 0;
334 #endif // FANCY_FRAME_COUNTER
335
336     SGTime *t = globals->get_time_params();
337
338     SG_LOG( SG_ALL, SG_DEBUG, "Running Main Loop");
339     SG_LOG( SG_ALL, SG_DEBUG, "======= ==== ====");
340
341     // Fix elevation.  I'm just sticking this here for now, it should
342     // probably move eventually
343
344     /* printf("Before - ground = %.2f  runway = %.2f  alt = %.2f\n",
345        scenery.get_cur_elev(),
346        cur_fdm_state->get_Runway_altitude() * SG_FEET_TO_METER,
347        cur_fdm_state->get_Altitude() * SG_FEET_TO_METER); */
348
349     /* printf("Adjustment - ground = %.2f  runway = %.2f  alt = %.2f\n",
350        scenery.get_cur_elev(),
351        cur_fdm_state->get_Runway_altitude() * SG_FEET_TO_METER,
352        cur_fdm_state->get_Altitude() * SG_FEET_TO_METER); */
353
354     // cout << "Warp = " << globals->get_warp() << endl;
355
356     // update "time"
357     static bool last_clock_freeze = false;
358
359     if ( clock_freeze->getBoolValue() ) {
360         // clock freeze requested
361         if ( cur_time_override->getLongValue() == 0 ) {
362             fgSetLong( "/sim/time/cur-time-override", t->get_cur_time() );
363             globals->set_warp( 0 );
364         }
365     } else {
366         // no clock freeze requested
367         if ( last_clock_freeze == true ) {
368             // clock just unfroze, let's set warp as the difference
369             // between frozen time and current time so we don't get a
370             // time jump (and corresponding sky object and lighting
371             // jump.)
372             globals->set_warp( cur_time_override->getLongValue() - time(NULL) );
373             fgSetLong( "/sim/time/cur-time-override", 0 );
374         }
375         if ( globals->get_warp_delta() != 0 ) {
376             globals->inc_warp( globals->get_warp_delta() );
377         }
378     }
379
380     last_clock_freeze = clock_freeze->getBoolValue();
381
382     t->update( longitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS,
383                latitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS,
384                cur_time_override->getLongValue(),
385                globals->get_warp() );
386
387     if (globals->get_warp_delta() != 0) {
388         FGLight *l = (FGLight *)(globals->get_subsystem("lighting"));
389         l->update( 0.5 );
390     }
391
392     // update magvar model
393     globals->get_mag()->update( longitude->getDoubleValue()
394                                 * SGD_DEGREES_TO_RADIANS,
395                                 latitude->getDoubleValue()
396                                 * SGD_DEGREES_TO_RADIANS,
397                                 altitude->getDoubleValue() * SG_FEET_TO_METER,
398                                 globals->get_time_params()->getJD() );
399
400     // Calculate frame rate average
401 #ifdef FANCY_FRAME_COUNTER
402     /* old fps calculation */
403     if ( elapsed > 0 ) {
404         double tmp;
405         accum = 0.0;
406         for ( i = FG_FRAME_RATE_HISTORY - 2; i >= 0; i-- ) {
407             tmp = general.get_frame(i);
408             accum += tmp;
409             // printf("frame[%d] = %.2f\n", i, g->frames[i]);
410             general.set_frame(i+1,tmp);
411         }
412         tmp = 1000000.0 / (float)elapsed;
413         general.set_frame(0,tmp);
414         // printf("frame[0] = %.2f\n", general.frames[0]);
415         accum += tmp;
416         general.set_frame_rate(accum / (float)FG_FRAME_RATE_HISTORY);
417         // printf("ave = %.2f\n", general.frame_rate);
418     }
419 #else
420     if ( (t->get_cur_time() != last_time) && (last_time > 0) ) {
421         general.set_frame_rate( frames );
422         fgSetInt("/sim/frame-rate", frames);
423         SG_LOG( SG_ALL, SG_DEBUG,
424                 "--> Frame rate is = " << general.get_frame_rate() );
425         frames = 0;
426     }
427     last_time = t->get_cur_time();
428     ++frames;
429 #endif
430
431     // Update any multiplayer's network queues, the AIMultiplayer
432     // implementation is an AI model and depends on that
433     globals->get_multiplayer_mgr()->Update();
434
435     // Run ATC subsystem
436     if (fgGetBool("/sim/atc/enabled"))
437         globals->get_ATC_mgr()->update(delta_time_sec);
438
439     // Run the AI subsystem
440     // FIXME: run that also if we have multiplaying enabled since the
441     // multiplayer information is interpreted by an AI model
442     if (fgGetBool("/sim/ai-traffic/enabled"))
443         globals->get_AI_mgr()->update(delta_time_sec);
444
445     // Run flight model
446     if (0 < global_multi_loop) {
447         // first run the flight model each frame until it is initialized
448         // then continue running each frame only after initial scenery
449         // load is complete.
450         fgUpdateTimeDepCalcs();
451     } else {
452         SG_LOG( SG_ALL, SG_DEBUG,
453                 "Elapsed time is zero ... we're zinging" );
454     }
455
456     globals->get_subsystem_mgr()->update(delta_time_sec);
457
458     //
459     // Tile Manager updates - see if we need to load any new scenery tiles.
460     //   this code ties together the fdm, viewer and scenery classes...
461     //   we may want to move this to its own class at some point
462     //
463     double visibility_meters = fgGetDouble("/environment/visibility-m");
464
465     globals->get_tile_mgr()->prep_ssg_nodes( visibility_meters );
466     // update tile manager for view...
467     SGVec3d viewPos = globals->get_current_view()->get_view_pos();
468     SGGeod geodViewPos = SGGeod::fromCart(viewPos);
469     globals->get_tile_mgr()->update(geodViewPos, visibility_meters);
470
471     // run Nasal's settimer() loops right before the view manager
472     globals->get_event_mgr()->update(delta_time_sec);
473
474     // pick up model coordidnates that Nasal code may have set relative to the
475     // aircraft's
476     globals->get_model_mgr()->update(delta_time_sec);
477
478     // update the view angle as late as possible, but before sound calculations
479     globals->get_viewmgr()->update(real_delta_time_sec);
480
481     // Run audio scheduler
482 #ifdef ENABLE_AUDIO_SUPPORT
483     FGFX* fx = (FGFX*) globals->get_subsystem("fx");
484     fx->update_fx_late(delta_time_sec);
485 #endif
486
487     // END Tile Manager udpates
488
489     if (!scenery_loaded && globals->get_tile_mgr()->isSceneryLoaded()
490         && cur_fdm_state->get_inited()) {
491         fgSetBool("sim/sceneryloaded",true);
492         fgSetFloat("/sim/sound/volume", init_volume);
493         globals->get_soundmgr()->set_volume(init_volume);
494     }
495     simgear::AtomicChangeListener::fireChangeListeners();
496     fgRequestRedraw();
497
498     SG_LOG( SG_ALL, SG_DEBUG, "" );
499 }
500
501 // Operation for querying OpenGL parameters. This must be done in a
502 // valid OpenGL context, potentially in another thread.
503 namespace
504 {
505 struct GeneralInitOperation : public GraphicsContextOperation
506 {
507     GeneralInitOperation()
508         : GraphicsContextOperation(std::string("General init"))
509     {
510     }
511     void run(osg::GraphicsContext* gc)
512     {
513         general.set_glVendor( (char *)glGetString ( GL_VENDOR ) );
514         general.set_glRenderer( (char *)glGetString ( GL_RENDERER ) );
515         general.set_glVersion( (char *)glGetString ( GL_VERSION ) );
516         SG_LOG( SG_GENERAL, SG_INFO, general.get_glRenderer() );
517
518         GLint tmp;
519         glGetIntegerv( GL_MAX_TEXTURE_SIZE, &tmp );
520         general.set_glMaxTexSize( tmp );
521         SG_LOG ( SG_GENERAL, SG_INFO, "Max texture size = " << tmp );
522
523         glGetIntegerv( GL_DEPTH_BITS, &tmp );
524         general.set_glDepthBits( tmp );
525         SG_LOG ( SG_GENERAL, SG_INFO, "Depth buffer bits = " << tmp );
526     }
527 };
528 }
529
530 // This is the top level master main function that is registered as
531 // our idle funciton
532
533 // The first few passes take care of initialization things (a couple
534 // per pass) and once everything has been initialized fgMainLoop from
535 // then on.
536
537 static void fgIdleFunction ( void ) {
538     static osg::ref_ptr<GeneralInitOperation> genOp;
539     if ( idle_state == 0 ) {
540         idle_state++;
541         // Pick some window on which to do queries.
542         // XXX Perhaps all this graphics initialization code should be
543         // moved to renderer.cxx?
544         genOp = new GeneralInitOperation;
545         osg::Camera* guiCamera = getGUICamera(CameraGroup::getDefault());
546         WindowSystemAdapter* wsa = WindowSystemAdapter::getWSA();
547         osg::GraphicsContext* gc = 0;
548         if (guiCamera)
549             gc = guiCamera->getGraphicsContext();
550         if (gc) {
551             gc->add(genOp.get());
552         } else {
553             wsa->windows[0]->gc->add(genOp.get());
554         }
555         guiStartInit(gc);
556     } else if ( idle_state == 1 ) {
557         if (genOp.valid()) {
558             if (!genOp->isFinished())
559                 return;
560             genOp = 0;
561         }
562         if (!guiFinishInit())
563             return;
564         idle_state++;
565         fgSplashProgress("reading aircraft list");
566
567
568     } else if ( idle_state == 2 ) {
569         idle_state++;
570         // Read the list of available aircraft
571         fgReadAircraft();
572         fgSplashProgress("reading airport & navigation data");
573
574
575     } else if ( idle_state == 3 ) {
576         idle_state++;
577         fgInitNav();
578         fgSplashProgress("setting up scenery");
579
580
581     } else if ( idle_state == 4 ) {
582         idle_state++;
583         // based on the requested presets, calculate the true starting
584         // lon, lat
585         fgInitPosition();
586         fgInitTowerLocationListener();
587
588         SGTime *t = fgInitTime();
589         globals->set_time_params( t );
590
591         // Do some quick general initializations
592         if( !fgInitGeneral()) {
593             SG_LOG( SG_GENERAL, SG_ALERT,
594                 "General initialization failed ..." );
595             exit(-1);
596         }
597
598         ////////////////////////////////////////////////////////////////////
599         // Initialize the property-based built-in commands
600         ////////////////////////////////////////////////////////////////////
601         fgInitCommands();
602
603
604         ////////////////////////////////////////////////////////////////////
605         // Initialize the material manager
606         ////////////////////////////////////////////////////////////////////
607         globals->set_matlib( new SGMaterialLib );
608         simgear::SGModelLib::init(globals->get_fg_root());
609
610
611         ////////////////////////////////////////////////////////////////////
612         // Initialize the TG scenery subsystem.
613         ////////////////////////////////////////////////////////////////////
614         globals->set_scenery( new FGScenery );
615         globals->get_scenery()->init();
616         globals->get_scenery()->bind();
617         globals->set_tile_mgr( new FGTileMgr );
618
619
620         ////////////////////////////////////////////////////////////////////
621         // Initialize the general model subsystem.
622         ////////////////////////////////////////////////////////////////////
623         globals->set_model_mgr(new FGModelMgr);
624         globals->get_model_mgr()->init();
625         globals->get_model_mgr()->bind();
626         fgSplashProgress("loading aircraft");
627
628
629     } else if ( idle_state == 5 ) {
630         idle_state++;
631         ////////////////////////////////////////////////////////////////////
632         // Initialize the 3D aircraft model subsystem (has a dependency on
633         // the scenery subsystem.)
634         ////////////////////////////////////////////////////////////////////
635         globals->set_aircraft_model(new FGAircraftModel);
636         globals->get_aircraft_model()->init();
637         globals->get_aircraft_model()->bind();
638
639         ////////////////////////////////////////////////////////////////////
640         // Initialize the view manager subsystem.
641         ////////////////////////////////////////////////////////////////////
642         FGViewMgr *viewmgr = new FGViewMgr;
643         globals->set_viewmgr( viewmgr );
644         viewmgr->init();
645         viewmgr->bind();
646         fgSplashProgress("generating sky elements");
647
648
649     } else if ( idle_state == 6 ) {
650         idle_state++;
651         // Initialize the sky
652         SGPath ephem_data_path( globals->get_fg_root() );
653         ephem_data_path.append( "Astro" );
654         SGEphemeris *ephem = new SGEphemeris( ephem_data_path.c_str() );
655         ephem->update( globals->get_time_params()->getMjd(),
656                        globals->get_time_params()->getLst(),
657                        0.0 );
658         globals->set_ephem( ephem );
659
660         // TODO: move to environment mgr
661         thesky = new SGSky;
662         SGPath texture_path(globals->get_fg_root());
663         texture_path.append("Textures");
664         texture_path.append("Sky");
665         for (int i = 0; i < FGEnvironmentMgr::MAX_CLOUD_LAYERS; i++) {
666             SGCloudLayer * layer = new SGCloudLayer(texture_path.str());
667             thesky->add_cloud_layer(layer);
668         }
669
670         SGPath sky_tex_path( globals->get_fg_root() );
671         sky_tex_path.append( "Textures" );
672         sky_tex_path.append( "Sky" );
673         thesky->texture_path( sky_tex_path.str() );
674
675         // The sun and moon diameters are scaled down numbers of the
676         // actual diameters. This was needed to fit both the sun and the
677         // moon within the distance to the far clip plane.
678         // Moon diameter:    3,476 kilometers
679         // Sun diameter: 1,390,000 kilometers
680         thesky->build( 80000.0, 80000.0,
681                        463.3, 361.8,
682                        *globals->get_ephem(),
683                        fgGetNode("/environment", true));
684
685         // Initialize MagVar model
686         SGMagVar *magvar = new SGMagVar();
687         globals->set_mag( magvar );
688
689
690                                     // kludge to initialize mag compass
691                                     // (should only be done for in-flight
692                                     // startup)
693         // update magvar model
694         globals->get_mag()->update( fgGetDouble("/position/longitude-deg")
695                                     * SGD_DEGREES_TO_RADIANS,
696                                     fgGetDouble("/position/latitude-deg")
697                                     * SGD_DEGREES_TO_RADIANS,
698                                     fgGetDouble("/position/altitude-ft")
699                                     * SG_FEET_TO_METER,
700                                     globals->get_time_params()->getJD() );
701         double var = globals->get_mag()->get_magvar() * SGD_RADIANS_TO_DEGREES;
702         fgSetDouble("/instrumentation/heading-indicator/offset-deg", -var);
703         fgSetDouble("/instrumentation/heading-indicator-fg/offset-deg", -var);
704
705
706         // airport = new ssgBranch;
707         // airport->setName( "Airport Lighting" );
708         // lighting->addKid( airport );
709
710         // build our custom render states
711         fgSplashProgress("initializing subsystems");
712
713
714     } else if ( idle_state == 7 ) {
715         idle_state++;
716         // Initialize audio support
717 #ifdef ENABLE_AUDIO_SUPPORT
718
719         // Start the intro music
720         if ( fgGetBool("/sim/startup/intro-music") ) {
721             SGPath mp3file( globals->get_fg_root() );
722             mp3file.append( "Sounds/intro.mp3" );
723
724             SG_LOG( SG_GENERAL, SG_INFO,
725                 "Starting intro music: " << mp3file.str() );
726
727 #if defined( __CYGWIN__ )
728             string command = "start /m `cygpath -w " + mp3file.str() + "`";
729 #elif defined( WIN32 )
730             string command = "start /m " + mp3file.str();
731 #else
732             string command = "mpg123 " + mp3file.str() + "> /dev/null 2>&1";
733 #endif
734
735             system ( command.c_str() );
736         }
737 #endif
738         // This is the top level init routine which calls all the
739         // other subsystem initialization routines.  If you are adding
740         // a subsystem to flightgear, its initialization call should be
741         // located in this routine.
742         if( !fgInitSubsystems()) {
743             SG_LOG( SG_GENERAL, SG_ALERT,
744                 "Subsystem initialization failed ..." );
745             exit(-1);
746         }
747         fgSplashProgress("setting up time & renderer");
748
749
750     } else if ( idle_state == 8 ) {
751         idle_state = 1000;
752         // Initialize the time offset (warp) after fgInitSubsystem
753         // (which initializes the lighting interpolation tables.)
754         fgInitTimeOffset();
755
756         // setup OpenGL view parameters
757         globals->get_renderer()->init();
758
759         SG_LOG( SG_GENERAL, SG_INFO, "Panel visible = " << fgPanelVisible() );
760         globals->get_renderer()->resize( fgGetInt("/sim/startup/xsize"),
761                                          fgGetInt("/sim/startup/ysize") );
762
763         fgSplashProgress("loading scenery objects");
764         int session = fgGetInt("/sim/session",0);
765         session++;
766         fgSetInt("/sim/session",session);
767     }
768
769     if ( idle_state == 1000 ) {
770         // We've finished all our initialization steps, from now on we
771         // run the main loop.
772         fgSetBool("sim/sceneryloaded", false);
773         fgRegisterIdleHandler( fgMainLoop );
774     }
775 }
776
777
778 static void upper_case_property(const char *name)
779 {
780     using namespace simgear;
781     SGPropertyNode *p = fgGetNode(name, false);
782     if (!p) {
783         p = fgGetNode(name, true);
784         p->setStringValue("");
785     } else {
786         props::Type t = p->getType();
787         if (t == props::NONE || t == props::UNSPECIFIED)
788             p->setStringValue("");
789         else
790             assert(t == props::STRING);
791     }
792     p->addChangeListener(new FGMakeUpperCase);
793 }
794
795
796 // Main top level initialization
797 bool fgMainInit( int argc, char **argv ) {
798
799     // set default log levels
800     sglog().setLogLevels( SG_ALL, SG_ALERT );
801
802     string version;
803 #ifdef FLIGHTGEAR_VERSION
804     version = FLIGHTGEAR_VERSION;
805 #else
806     version = "unknown version";
807 #endif
808     SG_LOG( SG_GENERAL, SG_INFO, "FlightGear:  Version "
809             << version );
810     SG_LOG( SG_GENERAL, SG_INFO, "Built with " << SG_COMPILER_STR << endl );
811
812     // Allocate global data structures.  This needs to happen before
813     // we parse command line options
814
815     globals = new FGGlobals;
816
817     // seed the random number generator
818     sg_srandom_time();
819
820     FGControls *controls = new FGControls;
821     globals->set_controls( controls );
822
823     string_list *col = new string_list;
824     globals->set_channel_options_list( col );
825
826     fgValidatePath("", false);  // initialize static variables
827     upper_case_property("/sim/presets/airport-id");
828     upper_case_property("/sim/presets/runway");
829     upper_case_property("/sim/tower/airport-id");
830     upper_case_property("/autopilot/route-manager/input");
831
832     // Scan the config file(s) and command line options to see if
833     // fg_root was specified (ignore all other options for now)
834     fgInitFGRoot(argc, argv);
835
836     // Check for the correct base package version
837     static char required_version[] = "1.9.0";
838     string base_version = fgBasePackageVersion();
839     if ( !(base_version == required_version) ) {
840         // tell the operator how to use this application
841
842         SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on windows
843         cerr << endl << "Base package check failed ... " \
844              << "Found version " << base_version << " at: " \
845              << globals->get_fg_root() << endl;
846         cerr << "Please upgrade to version: " << required_version << endl;
847 #ifdef _MSC_VER
848         cerr << "Hit a key to continue..." << endl;
849         cin.get();
850 #endif
851         exit(-1);
852     }
853
854     // Load the configuration parameters.  (Command line options
855     // override config file options.  Config file options override
856     // defaults.)
857     if ( !fgInitConfig(argc, argv) ) {
858         SG_LOG( SG_GENERAL, SG_ALERT, "Config option parsing failed ..." );
859         exit(-1);
860     }
861
862     // Initialize the Window/Graphics environment.
863     fgOSInit(&argc, argv);
864     _bootstrap_OSInit++;
865
866     fgRegisterWindowResizeHandler( &FGRenderer::resize );
867     fgRegisterIdleHandler( &fgIdleFunction );
868     fgRegisterDrawHandler( &FGRenderer::update );
869
870 #ifdef FG_ENABLE_MULTIPASS_CLOUDS
871     bool get_stencil_buffer = true;
872 #else
873     bool get_stencil_buffer = false;
874 #endif
875
876     // Initialize plib net interface
877     netInit( &argc, argv );
878
879     // Clouds3D requires an alpha channel
880     // clouds may require stencil buffer
881     fgOSOpenWindow(get_stencil_buffer);
882
883     // Initialize the splash screen right away
884     fntInit();
885     fgSplashInit();
886
887     // pass control off to the master event handler
888     fgOSMainLoop();
889
890     // we never actually get here ... but to avoid compiler warnings,
891     // etc.
892     return false;
893 }
894
895