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