]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_init.cxx
14b5376396a9323f295f56b85aa8b57e159bda53
[flightgear.git] / src / Main / fg_init.cxx
1 // fg_init.cxx -- Flight Gear top level initialization routines
2 //
3 // Written by Curtis Olson, started August 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
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 //
22 // $Id$
23
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 // For BC 5.01 this must be included before OpenGL includes.
30 #ifdef SG_MATH_EXCEPTION_CLASH
31 #  include <math.h>
32 #endif
33
34 #ifdef HAVE_WINDOWS_H
35 #  include <windows.h>
36 #endif
37
38 #include <GL/glut.h>
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>             // strcmp()
43
44
45 #if defined( unix ) || defined( __CYGWIN__ )
46 #  include <unistd.h>           // for gethostname()
47 #endif
48
49 // work around a stdc++ lib bug in some versions of linux, but doesn't
50 // seem to hurt to have this here for all versions of Linux.
51 #ifdef linux
52 #  define _G_NO_EXTERN_TEMPLATES
53 #endif
54
55 #include <simgear/compiler.h>
56 #include <simgear/misc/exception.hxx>
57
58 #include STL_STRING
59
60 #include <simgear/constants.h>
61 #include <simgear/debug/logstream.hxx>
62 #include <simgear/math/point3d.hxx>
63 #include <simgear/math/polar3d.hxx>
64 #include <simgear/math/sg_geodesy.hxx>
65 #include <simgear/misc/sg_path.hxx>
66 #include <simgear/timing/sg_time.hxx>
67 #include <simgear/timing/lowleveltime.h>
68
69 #include <Aircraft/aircraft.hxx>
70 #include <FDM/UIUCModel/uiuc_aircraftdir.h>
71 #include <Airports/runways.hxx>
72 #include <Airports/simple.hxx>
73 #include <ATC/ATCdisplay.hxx>
74 #include <ATC/ATCmgr.hxx>
75 #include <ATC/atislist.hxx>
76 #include <ATC/towerlist.hxx>
77 #include <ATC/approachlist.hxx>
78 #include <ATC/AIMgr.hxx>
79 #include <Autopilot/auto_gui.hxx>
80 #include <Autopilot/newauto.hxx>
81 #include <Cockpit/cockpit.hxx>
82 #include <Cockpit/radiostack.hxx>
83 #include <Cockpit/panel.hxx>
84 #include <Cockpit/panel_io.hxx>
85 #include <FDM/ADA.hxx>
86 #include <FDM/Balloon.h>
87 #include <FDM/External.hxx>
88 #include <FDM/ExternalNet.hxx>
89 #include <FDM/JSBSim/JSBSim.hxx>
90 #include <FDM/LaRCsim.hxx>
91 #include <FDM/MagicCarpet.hxx>
92 #include <FDM/NullFDM.hxx>
93 #include <FDM/YASim/YASim.hxx>
94 #include <Include/general.hxx>
95 #include <Input/input.hxx>
96 // #include <Joystick/joystick.hxx>
97 #include <Objects/matlib.hxx>
98 #include <Navaids/fixlist.hxx>
99 #include <Navaids/ilslist.hxx>
100 #include <Navaids/mkrbeacons.hxx>
101 #include <Navaids/navlist.hxx>
102 #include <Scenery/scenery.hxx>
103 #include <Scenery/tilemgr.hxx>
104 #include <Sound/fg_fx.hxx>
105 #include <Sound/soundmgr.hxx>
106 #include <Time/FGEventMgr.hxx>
107 #include <boost/bind.hpp>
108 #include <Time/light.hxx>
109 #include <Time/sunpos.hxx>
110 #include <Time/moonpos.hxx>
111 #include <Time/tmp.hxx>
112
113 #ifndef FG_NEW_ENVIRONMENT
114 #  include <WeatherCM/FGLocalWeatherDatabase.h>
115 #else
116 #  include <Environment/environment_mgr.hxx>
117 #endif
118
119 #include "fg_init.hxx"
120 #include "fg_io.hxx"
121 #include "fg_commands.hxx"
122 #include "fg_props.hxx"
123 #include "options.hxx"
124 #include "globals.hxx"
125 #include "logger.hxx"
126 #include "viewmgr.hxx"
127
128 #if defined(FX) && defined(XMESA)
129 #include <GL/xmesa.h>
130 #endif
131
132 SG_USING_STD(string);
133
134 extern const char *default_root;
135
136
137 // Read in configuration (file and command line) and just set fg_root
138 bool fgInitFGRoot ( int argc, char **argv ) {
139     string root;
140     char* envp;
141
142     // First parse command line options looking for fg-root, this will
143     // override anything specified in a config file
144     root = fgScanForRoot(argc, argv);
145
146 #if defined( unix ) || defined( __CYGWIN__ )
147     // Next check home directory for .fgfsrc.hostname file
148     if ( root.empty() ) {
149         envp = ::getenv( "HOME" );
150         if ( envp != NULL ) {
151             SGPath config( envp );
152             config.append( ".fgfsrc" );
153             char name[256];
154             gethostname( name, 256 );
155             config.concat( "." );
156             config.concat( name );
157             root = fgScanForRoot(config.str());
158         }
159     }
160 #endif
161
162     // Next check home directory for .fgfsrc file
163     if ( root.empty() ) {
164         envp = ::getenv( "HOME" );
165         if ( envp != NULL ) {
166             SGPath config( envp );
167             config.append( ".fgfsrc" );
168             root = fgScanForRoot(config.str());
169         }
170     }
171     
172     // Next check if fg-root is set as an env variable
173     if ( root.empty() ) {
174         envp = ::getenv( "FG_ROOT" );
175         if ( envp != NULL ) {
176             root = envp;
177         }
178     }
179
180     // Otherwise, default to a random compiled-in location if we can't
181     // find fg-root any other way.
182     if ( root.empty() ) {
183 #if defined( __CYGWIN__ )
184         root = "/FlightGear";
185 #elif defined( WIN32 )
186         root = "\\FlightGear";
187 #elif defined( macintosh )
188         root = "";
189 #else
190         root = PKGLIBDIR;
191 #endif
192     }
193
194     SG_LOG(SG_INPUT, SG_INFO, "fg_root = " << root );
195     globals->set_fg_root(root);
196
197     return true;
198 }
199
200
201 // Return the current base package version
202 string fgBasePackageVersion() {
203     SGPath base_path( globals->get_fg_root() );
204     base_path.append("version");
205
206     sg_gzifstream in( base_path.str() );
207     if ( !in.is_open() ) {
208         SGPath old_path( globals->get_fg_root() );
209         old_path.append( "Thanks" );
210         sg_gzifstream old( old_path.str() );
211         if ( !old.is_open() ) {
212             return "[none]";
213         } else {
214             return "[old version]";
215         }
216     }
217
218     string version;
219     in >> version;
220
221     return version;
222 }
223
224
225 // Read in configuration (file and command line)
226 bool fgInitConfig ( int argc, char **argv ) {
227
228                                 // First, set some sane default values
229     fgSetDefaults();
230
231     // Read global preferences from $FG_ROOT/preferences.xml
232     SGPath props_path(globals->get_fg_root());
233     props_path.append("preferences.xml");
234     SG_LOG(SG_INPUT, SG_INFO, "Reading global preferences");
235     readProperties(props_path.str(), globals->get_props());
236     SG_LOG(SG_INPUT, SG_INFO, "Finished Reading global preferences");
237
238     // Read the default aircraft config file.
239     string aircraft = fgGetString("/sim/aircraft", "");
240     if (aircraft.size() > 0) {
241       SGPath aircraft_path(globals->get_fg_root());
242       aircraft_path.append("Aircraft");
243       aircraft_path.append(aircraft);
244       aircraft_path.concat("-set.xml");
245       SG_LOG(SG_INPUT, SG_INFO, "Reading default aircraft: " << aircraft
246              << " from " << aircraft_path.str());
247       try {
248         readProperties(aircraft_path.str(), globals->get_props());
249       } catch (const sg_exception &e) {
250         string message = "Error reading default aircraft: ";
251         message += e.getFormattedMessage();
252         SG_LOG(SG_INPUT, SG_ALERT, message);
253         exit(2);
254       }
255     } else {
256       SG_LOG(SG_INPUT, SG_ALERT, "No default aircraft specified");
257     }
258
259     // Attempt to locate and parse the various config files in order
260     // from least precidence to greatest precidence
261
262     // Check for $fg_root/system.fgfsrc
263     SGPath config( globals->get_fg_root() );
264     config.append( "system.fgfsrc" );
265     fgParseOptions(config.str());
266
267     char name[256];
268 #if defined( unix ) || defined( __CYGWIN__ )
269     // Check for $fg_root/system.fgfsrc.hostname
270     gethostname( name, 256 );
271     config.concat( "." );
272     config.concat( name );
273     fgParseOptions(config.str());
274 #endif
275
276     // Check for ~/.fgfsrc
277     char* envp = ::getenv( "HOME" );
278     if ( envp != NULL ) {
279         config.set( envp );
280         config.append( ".fgfsrc" );
281         fgParseOptions(config.str());
282     }
283
284 #if defined( unix ) || defined( __CYGWIN__ )
285     // Check for ~/.fgfsrc.hostname
286     gethostname( name, 256 );
287     config.concat( "." );
288     config.concat( name );
289     fgParseOptions(config.str());
290 #endif
291
292     // Parse remaining command line options
293     // These will override anything specified in a config file
294     fgParseArgs(argc, argv);
295
296     return true;
297 }
298
299
300 // find basic airport location info from airport database
301 bool fgFindAirportID( const string& id, FGAirport *a ) {
302     if ( id.length() ) {
303         SGPath path( globals->get_fg_root() );
304         path.append( "Airports" );
305         path.append( "simple.mk4" );
306         FGAirports airports( path.c_str() );
307
308         SG_LOG( SG_GENERAL, SG_INFO, "Searching for airport code = " << id );
309
310         if ( ! airports.search( id, a ) ) {
311             SG_LOG( SG_GENERAL, SG_ALERT,
312                     "Failed to find " << id << " in " << path.str() );
313             return false;
314         }
315     } else {
316         return false;
317     }
318
319     SG_LOG( SG_GENERAL, SG_INFO,
320             "Position for " << id << " is ("
321             << a->longitude << ", "
322             << a->latitude << ")" );
323
324     return true;
325 }
326
327
328 // Set current_options lon/lat given an airport id
329 bool fgSetPosFromAirportID( const string& id ) {
330     FGAirport a;
331     // double lon, lat;
332
333     SG_LOG( SG_GENERAL, SG_INFO,
334             "Attempting to set starting position from airport code " << id );
335
336     if ( fgFindAirportID( id, &a ) ) {
337         fgSetDouble("/position/longitude-deg",  a.longitude );
338         fgSetDouble("/position/latitude-deg",  a.latitude );
339         SG_LOG( SG_GENERAL, SG_INFO,
340                 "Position for " << id << " is ("
341                 << a.longitude << ", "
342                 << a.latitude << ")" );
343
344         return true;
345     } else {
346         return false;
347     }
348
349 }
350
351
352
353 // Set current tower position lon/lat given an airport id
354 bool fgSetTowerPosFromAirportID( const string& id, double hdg ) {
355     FGAirport a;
356     // tower height hard coded for now...
357     float towerheight=50.0f;
358
359     // make a little off the heading for 1 runway airports...
360     float fudge_lon = fabs(sin(hdg)) * .003f;
361     float fudge_lat = .003f - fudge_lon;
362
363     if ( fgFindAirportID( id, &a ) ) {
364         fgSetDouble("/sim/tower/longitude-deg",  a.longitude + fudge_lon);
365         fgSetDouble("/sim/tower/latitude-deg",  a.latitude + fudge_lat);
366         fgSetDouble("/sim/tower/altitude-ft", a.elevation + towerheight);
367         return true;
368     } else {
369         return false;
370     }
371
372 }
373
374
375 // Set current_options lon/lat given an airport id and heading (degrees)
376 bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
377     FGRunway r;
378     FGRunway found_r;
379     double found_dir = 0.0;
380
381     if ( id.length() ) {
382         // set initial position from runway and heading
383
384         SGPath path( globals->get_fg_root() );
385         path.append( "Airports" );
386         path.append( "runways.mk4" );
387         FGRunways runways( path.c_str() );
388
389         SG_LOG( SG_GENERAL, SG_INFO,
390                 "Attempting to set starting position from runway code "
391                 << id << " heading " << tgt_hdg );
392
393         // SGPath inpath( globals->get_fg_root() );
394         // inpath.append( "Airports" );
395         // inpath.append( "apt_simple" );
396         // airports.load( inpath.c_str() );
397
398         // SGPath outpath( globals->get_fg_root() );
399         // outpath.append( "Airports" );
400         // outpath.append( "simple.gdbm" );
401         // airports.dump_gdbm( outpath.c_str() );
402
403         if ( ! runways.search( id, &r ) ) {
404             SG_LOG( SG_GENERAL, SG_ALERT,
405                     "Failed to find " << id << " in database." );
406             return false;
407         }
408
409         double diff;
410         double min_diff = 360.0;
411
412         while ( r.id == id ) {
413             // forward direction
414             diff = tgt_hdg - r.heading;
415             while ( diff < -180.0 ) { diff += 360.0; }
416             while ( diff >  180.0 ) { diff -= 360.0; }
417             diff = fabs(diff);
418             SG_LOG( SG_GENERAL, SG_INFO,
419                     "Runway " << r.rwy_no << " heading = " << r.heading <<
420                     " diff = " << diff );
421             if ( diff < min_diff ) {
422                 min_diff = diff;
423                 found_r = r;
424                 found_dir = 0;
425             }
426
427             // reverse direction
428             diff = tgt_hdg - r.heading - 180.0;
429             while ( diff < -180.0 ) { diff += 360.0; }
430             while ( diff >  180.0 ) { diff -= 360.0; }
431             diff = fabs(diff);
432             SG_LOG( SG_GENERAL, SG_INFO,
433                     "Runway -" << r.rwy_no << " heading = " <<
434                     r.heading + 180.0 <<
435                     " diff = " << diff );
436             if ( diff < min_diff ) {
437                 min_diff = diff;
438                 found_r = r;
439                 found_dir = 180.0;
440             }
441
442             runways.next( &r );
443         }
444
445         SG_LOG( SG_GENERAL, SG_INFO, "closest runway = " << found_r.rwy_no
446                 << " + " << found_dir );
447
448     } else {
449         return false;
450     }
451
452     double heading = found_r.heading + found_dir;
453     while ( heading >= 360.0 ) { heading -= 360.0; }
454
455     double lat2, lon2, az2;
456     double azimuth = found_r.heading + found_dir + 180.0;
457     while ( azimuth >= 360.0 ) { azimuth -= 360.0; }
458
459     SG_LOG( SG_GENERAL, SG_INFO,
460             "runway =  " << found_r.lon << ", " << found_r.lat
461             << " length = " << found_r.length * SG_FEET_TO_METER * 0.5 
462             << " heading = " << azimuth );
463     
464     geo_direct_wgs_84 ( 0, found_r.lat, found_r.lon, 
465                         azimuth, found_r.length * SG_FEET_TO_METER * 0.5 - 5.0,
466                         &lat2, &lon2, &az2 );
467
468     if ( fabs( fgGetDouble("/sim/startup/offset-distance") ) > SG_EPSILON ) {
469         double olat, olon;
470         double odist = fgGetDouble("/sim/startup/offset-distance");
471         odist *= SG_NM_TO_METER;
472         double oaz = azimuth;
473         if ( fabs(fgGetDouble("/sim/startup/offset-azimuth")) > SG_EPSILON ) {
474             oaz = fgGetDouble("/sim/startup/offset-azimuth") + 180;
475         }
476         while ( oaz >= 360.0 ) { oaz -= 360.0; }
477         geo_direct_wgs_84 ( 0, lat2, lon2, oaz, odist, &olat, &olon, &az2 );
478         lat2=olat;
479         lon2=olon;
480     }
481         
482     fgSetDouble("/position/longitude-deg",  lon2 );
483     fgSetDouble("/position/latitude-deg",  lat2 );
484     fgSetDouble("/orientation/heading-deg", heading );
485
486     SG_LOG( SG_GENERAL, SG_INFO,
487             "Position for " << id << " is ("
488             << lon2 << ", "
489             << lat2 << ") new heading is "
490             << heading );
491
492     return true;
493 }
494
495 void fgSetPosFromGlideSlope(void) {
496     double gs = fgGetDouble("/velocities/glideslope");
497     double od = fgGetDouble("/sim/startup/offset-distance");
498     double alt = fgGetDouble("/position/altitude-ft");
499     
500     //if glideslope and offset-distance are set and altitude is
501     //not, calculate the initial altitude
502     if( fabs(gs) > 0.01 && fabs(od) > 0.1 && alt < -9990 ) {
503         od *= SG_NM_TO_METER * SG_METER_TO_FEET;
504         alt = fabs(od*tan(gs));
505         fgSetDouble("/position/altitude-ft",alt);
506         fgSetBool("/sim/startup/onground", false);
507         SG_LOG(SG_GENERAL,SG_INFO, "Calculated altitude as: " << alt  << " ft");
508     } else if( fabs(gs) > 0.01 && alt > 0 && fabs(od) < 0.1) {
509         od  = alt/tan(gs);
510         od *= -1*SG_FEET_TO_METER * SG_METER_TO_NM;
511         fgSetDouble("/sim/startup/offset-distance",od);
512         SG_LOG(SG_GENERAL,SG_INFO, "Calculated offset distance as: " 
513                                        << od  << " nm");
514     } else if( fabs(gs) > 0.01 ) {
515         SG_LOG(SG_GENERAL,SG_ALERT, "Glideslope given but not altitude" 
516                                   << " or offset-distance.  Resetting"
517                                   << " glideslope to zero" );
518         fgSetDouble("/velocities/glideslope",0);                                  
519     }                              
520                                       
521 }                       
522
523 // General house keeping initializations
524 bool fgInitGeneral( void ) {
525     string root;
526
527 #if defined(FX) && defined(XMESA)
528     char *mesa_win_state;
529 #endif
530
531     SG_LOG( SG_GENERAL, SG_INFO, "General Initialization" );
532     SG_LOG( SG_GENERAL, SG_INFO, "======= ==============" );
533
534     root = globals->get_fg_root();
535     if ( ! root.length() ) {
536         // No root path set? Then bail ...
537         SG_LOG( SG_GENERAL, SG_ALERT,
538                 "Cannot continue without a path to the base package "
539                 << "being defined." );
540         exit(-1);
541     }
542     SG_LOG( SG_GENERAL, SG_INFO, "FG_ROOT = " << '"' << root << '"' << endl );
543
544 #if defined(FX) && defined(XMESA)
545     // initialize full screen flag
546     globals->set_fullscreen(false);
547     if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
548         // Test for the MESA_GLX_FX env variable
549         if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
550             // test if we are fullscreen mesa/glide
551             if ( (mesa_win_state[0] == 'f') ||
552                  (mesa_win_state[0] == 'F') ) {
553                 globals->set_fullscreen(true);
554             }
555         }
556     }
557 #endif
558
559     return true;
560 }
561
562
563 // Initialize the flight model subsystem.  This just creates the
564 // object.  The actual fdm initialization is delayed until we get a
565 // proper scenery elevation hit.  This is checked for in main.cxx
566
567 void fgInitFDM() {
568
569     if ( cur_fdm_state ) {
570         delete cur_fdm_state;
571         cur_fdm_state = 0;
572     }
573
574     double dt = 1.0 / fgGetInt("/sim/model-hz");
575     aircraft_dir = fgGetString("/sim/aircraft-dir");
576     const string &model = fgGetString("/sim/flight-model");
577
578     try {
579         if (model == "larcsim") {
580             cur_fdm_state = new FGLaRCsim( dt );
581         } else if (model == "jsb") {
582             cur_fdm_state = new FGJSBsim( dt );
583         } else if (model == "ada") {
584             cur_fdm_state = new FGADA( dt );
585         } else if (model == "balloon") {
586             cur_fdm_state = new FGBalloonSim( dt );
587         } else if (model == "magic") {
588             cur_fdm_state = new FGMagicCarpet( dt );
589         } else if (model == "external") {
590             cur_fdm_state = new FGExternal( dt );
591         } else if (model == "network") {
592             cur_fdm_state = new FGExternalNet( dt, 5501, 5502, 5503, "localhost" );
593         } else if (model == "null") {
594             cur_fdm_state = new FGNullFDM( dt );
595         } else if (model == "yasim") {
596             cur_fdm_state = new YASim( dt );
597         } else {
598             SG_LOG(SG_GENERAL, SG_ALERT,
599                    "Unrecognized flight model '" << model
600                    << "', cannot init flight dynamics model.");
601             exit(-1);
602         }
603     } catch ( ... ) {
604         SG_LOG(SG_GENERAL, SG_ALERT, "FlightGear aborting\n\n");
605         exit(-1);
606     }
607 }
608
609
610 // Initialize view parameters
611 void fgInitView() {
612   globals->get_viewmgr()->update(0);
613 }
614
615
616 SGTime *fgInitTime() {
617     // Initialize time
618     static const SGPropertyNode *longitude
619         = fgGetNode("/position/longitude-deg");
620     static const SGPropertyNode *latitude
621         = fgGetNode("/position/latitude-deg");
622     static const SGPropertyNode *cur_time_override
623         = fgGetNode("/sim/time/cur-time-override", true);
624
625     SGPath zone( globals->get_fg_root() );
626     zone.append( "Timezone" );
627     SGTime *t = new SGTime( longitude->getDoubleValue()
628                               * SGD_DEGREES_TO_RADIANS,
629                             latitude->getDoubleValue()
630                               * SGD_DEGREES_TO_RADIANS,
631                             zone.str(),
632                             cur_time_override->getLongValue() );
633
634     // Handle potential user specified time offsets
635     time_t cur_time = t->get_cur_time();
636     time_t currGMT = sgTimeGetGMT( gmtime(&cur_time) );
637     time_t systemLocalTime = sgTimeGetGMT( localtime(&cur_time) );
638     time_t aircraftLocalTime = 
639         sgTimeGetGMT( fgLocaltime(&cur_time, t->get_zonename() ) );
640
641     // Okay, we now have six possible scenarios
642     int offset = fgGetInt("/sim/startup/time-offset");
643     const string &offset_type = fgGetString("/sim/startup/time-offset-type");
644     if (offset_type == "system-offset") {
645         globals->set_warp( offset );
646     } else if (offset_type == "gmt-offset") {
647         globals->set_warp( offset - (currGMT - systemLocalTime) );
648     } else if (offset_type == "latitude-offset") {
649         globals->set_warp( offset - (aircraftLocalTime - systemLocalTime) );
650     } else if (offset_type == "system") {
651         globals->set_warp( offset - cur_time );
652     } else if (offset_type == "gmt") {
653         globals->set_warp( offset - currGMT );
654     } else if (offset_type == "latitude") {
655         globals->set_warp( offset - (aircraftLocalTime - systemLocalTime) - 
656                            cur_time ); 
657     } else {
658         SG_LOG( SG_GENERAL, SG_ALERT,
659                 "FG_TIME::Unsupported offset type " << offset_type );
660         exit( -1 );
661     }
662
663     SG_LOG( SG_GENERAL, SG_INFO, "After time init, warp = " 
664             << globals->get_warp() );
665
666     globals->set_warp_delta( 0 );
667
668     t->update( 0.0, 0.0,
669                cur_time_override->getLongValue(),
670                globals->get_warp() );
671
672     return t;
673 }
674
675
676 // This is the top level init routine which calls all the other
677 // initialization routines.  If you are adding a subsystem to flight
678 // gear, its initialization call should located in this routine.
679 // Returns non-zero if a problem encountered.
680 bool fgInitSubsystems( void ) {
681     static const SGPropertyNode *longitude
682         = fgGetNode("/position/longitude-deg");
683     static const SGPropertyNode *latitude
684         = fgGetNode("/position/latitude-deg");
685     static const SGPropertyNode *altitude
686         = fgGetNode("/position/altitude-ft");
687
688     fgLIGHT *l = &cur_light_params;
689
690     SG_LOG( SG_GENERAL, SG_INFO, "Initialize Subsystems");
691     SG_LOG( SG_GENERAL, SG_INFO, "========== ==========");
692
693
694     ////////////////////////////////////////////////////////////////////
695     // Initialize the material property subsystem.
696     ////////////////////////////////////////////////////////////////////
697
698     SGPath mpath( globals->get_fg_root() );
699     mpath.append( "materials.xml" );
700     if ( ! material_lib.load( mpath.str() ) ) {
701         SG_LOG( SG_GENERAL, SG_ALERT, "Error loading material lib!" );
702         exit(-1);
703     }
704
705
706     ////////////////////////////////////////////////////////////////////
707     // Initialize the scenery management subsystem.
708     ////////////////////////////////////////////////////////////////////
709
710     scenery.init();
711     scenery.bind();
712
713     if ( global_tile_mgr.init() ) {
714         // Load the local scenery data
715         global_tile_mgr.update( longitude->getDoubleValue(),
716                                 latitude->getDoubleValue() );
717     } else {
718         SG_LOG( SG_GENERAL, SG_ALERT, "Error in Tile Manager initialization!" );
719         exit(-1);
720     }
721
722     SG_LOG( SG_GENERAL, SG_DEBUG,
723             "Current terrain elevation after tile mgr init " <<
724             scenery.get_cur_elev() );
725
726
727     ////////////////////////////////////////////////////////////////////
728     // Initialize the flight model subsystem.
729     ////////////////////////////////////////////////////////////////////
730
731     fgInitFDM();
732         
733     // allocates structures so must happen before any of the flight
734     // model or control parameters are set
735     fgAircraftInit();   // In the future this might not be the case.
736
737
738     ////////////////////////////////////////////////////////////////////
739     // Initialize the event manager subsystem.
740     ////////////////////////////////////////////////////////////////////
741
742     global_events.init();
743
744     // Output event stats every 60 seconds
745     global_events.Register( "fgEVENT_MGR::PrintStats()",
746                             boost::bind( &FGEventMgr::print_stats,
747                                          &global_events ),
748                             60000 );
749
750
751     ////////////////////////////////////////////////////////////////////
752     // Initialize the view manager subsystem.
753     ////////////////////////////////////////////////////////////////////
754
755     fgInitView();
756
757
758     ////////////////////////////////////////////////////////////////////
759     // Initialize the lighting subsystem.
760     ////////////////////////////////////////////////////////////////////
761
762     // fgUpdateSunPos() needs a few position and view parameters set
763     // so it can calculate local relative sun angle and a few other
764     // things for correctly orienting the sky.
765     fgUpdateSunPos();
766     fgUpdateMoonPos();
767     global_events.Register( "fgUpdateSunPos()", &fgUpdateSunPos,
768                             60000);
769     global_events.Register( "fgUpdateMoonPos()", &fgUpdateMoonPos,
770                             60000);
771
772     // Initialize Lighting interpolation tables
773     l->Init();
774
775     // update the lighting parameters (based on sun angle)
776     global_events.Register( "fgLight::Update()",
777                             boost::bind( &fgLIGHT::Update, &cur_light_params ),
778                             30000 );
779
780
781     ////////////////////////////////////////////////////////////////////
782     // Initialize the logger.
783     ////////////////////////////////////////////////////////////////////
784     
785     globals->set_logger(new FGLogger);
786     globals->get_logger()->init();
787     globals->get_logger()->bind();
788
789     ////////////////////////////////////////////////////////////////////
790     // Initialize the local time subsystem.
791     ////////////////////////////////////////////////////////////////////
792
793     // update the current timezone each 30 minutes
794     global_events.Register( "fgUpdateLocalTime()", &fgUpdateLocalTime,
795                             30*60*1000 );
796
797
798     ////////////////////////////////////////////////////////////////////
799     // Initialize the weather subsystem.
800     ////////////////////////////////////////////////////////////////////
801
802     // Initialize the weather modeling subsystem
803 #ifndef FG_NEW_ENVIRONMENT
804     // Initialize the WeatherDatabase
805     SG_LOG(SG_GENERAL, SG_INFO, "Creating LocalWeatherDatabase");
806     sgVec3 position;
807     sgSetVec3( position, current_aircraft.fdm_state->get_Latitude(),
808                current_aircraft.fdm_state->get_Longitude(),
809                current_aircraft.fdm_state->get_Altitude() * SG_FEET_TO_METER );
810     double init_vis = fgGetDouble("/environment/visibility-m");
811
812     FGLocalWeatherDatabase::DatabaseWorkingType working_type;
813
814     if (!strcmp(fgGetString("/environment/weather/working-type"), "internet"))
815     {
816       working_type = FGLocalWeatherDatabase::use_internet;
817     } else {
818       working_type = FGLocalWeatherDatabase::default_mode;
819     }
820     
821     if ( init_vis > 0 ) {
822       FGLocalWeatherDatabase::theFGLocalWeatherDatabase = 
823         new FGLocalWeatherDatabase( position,
824                                     globals->get_fg_root(),
825                                     working_type,
826                                     init_vis );
827     } else {
828       FGLocalWeatherDatabase::theFGLocalWeatherDatabase = 
829         new FGLocalWeatherDatabase( position,
830                                     globals->get_fg_root(),
831                                     working_type );
832     }
833
834     // cout << theFGLocalWeatherDatabase << endl;
835     // cout << "visibility = " 
836     //      << theFGLocalWeatherDatabase->getWeatherVisibility() << endl;
837
838     WeatherDatabase = FGLocalWeatherDatabase::theFGLocalWeatherDatabase;
839
840     // register the periodic update of the weather
841     global_events.Register( "weather update", &fgUpdateWeatherDatabase,
842                             30000);
843 #else
844     globals->get_environment_mgr()->init();
845     globals->get_environment_mgr()->bind();
846 #endif
847
848     ////////////////////////////////////////////////////////////////////
849     // Initialize vor/ndb/ils/fix list management and query systems
850     ////////////////////////////////////////////////////////////////////
851
852     SG_LOG(SG_GENERAL, SG_INFO, "Loading Navaids");
853
854     SG_LOG(SG_GENERAL, SG_INFO, "  VOR/NDB");
855     current_navlist = new FGNavList;
856     SGPath p_nav( globals->get_fg_root() );
857     p_nav.append( "Navaids/default.nav" );
858     current_navlist->init( p_nav );
859
860     SG_LOG(SG_GENERAL, SG_INFO, "  ILS and Marker Beacons");
861     current_beacons = new FGMarkerBeacons;
862     current_beacons->init();
863     current_ilslist = new FGILSList;
864     SGPath p_ils( globals->get_fg_root() );
865     p_ils.append( "Navaids/default.ils" );
866     current_ilslist->init( p_ils );
867
868     SG_LOG(SG_GENERAL, SG_INFO, "  Fixes");
869     current_fixlist = new FGFixList;
870     SGPath p_fix( globals->get_fg_root() );
871     p_fix.append( "Navaids/default.fix" );
872     current_fixlist->init( p_fix );
873
874     ////////////////////////////////////////////////////////////////////
875     // Initialize ATC list management and query systems
876     ////////////////////////////////////////////////////////////////////
877
878     SG_LOG(SG_GENERAL, SG_INFO, "  ATIS");
879     current_atislist = new FGATISList;
880     SGPath p_atis( globals->get_fg_root() );
881     p_atis.append( "ATC/default.atis" );
882     current_atislist->init( p_atis );
883
884     SG_LOG(SG_GENERAL, SG_INFO, "  Tower");
885     current_towerlist = new FGTowerList;
886     SGPath p_tower( globals->get_fg_root() );
887     p_tower.append( "ATC/default.tower" );
888     current_towerlist->init( p_tower );
889
890     SG_LOG(SG_GENERAL, SG_INFO, "  Approach");
891     current_approachlist = new FGApproachList;
892     SGPath p_approach( globals->get_fg_root() );
893     p_approach.append( "ATC/default.approach" );
894     current_approachlist->init( p_approach );
895
896     ////////////////////////////////////////////////////////////////////
897     // Initialise ATC display system
898     ////////////////////////////////////////////////////////////////////
899
900     SG_LOG(SG_GENERAL, SG_INFO, "  ATC Display");
901     globals->set_ATC_display(new FGATCDisplay);
902     globals->get_ATC_display()->init(); 
903
904     ////////////////////////////////////////////////////////////////////
905     // Initialise the ATC Manager 
906     ////////////////////////////////////////////////////////////////////
907
908     SG_LOG(SG_GENERAL, SG_INFO, "  ATC Manager");
909     globals->set_ATC_mgr(new FGATCMgr);
910     globals->get_ATC_mgr()->init(); 
911     
912     ////////////////////////////////////////////////////////////////////
913     // Initialise the AI Manager 
914     ////////////////////////////////////////////////////////////////////
915
916     SG_LOG(SG_GENERAL, SG_INFO, "  AI Manager");
917     globals->set_AI_mgr(new FGAIMgr);
918     globals->get_AI_mgr()->init();     
919
920     ////////////////////////////////////////////////////////////////////
921     // Initialize the built-in commands.
922     ////////////////////////////////////////////////////////////////////
923     fgInitCommands();
924
925
926 #ifdef ENABLE_AUDIO_SUPPORT
927     ////////////////////////////////////////////////////////////////////
928     // Initialize the sound subsystem.
929     ////////////////////////////////////////////////////////////////////
930
931     globals->set_soundmgr(new FGSoundMgr);
932     globals->get_soundmgr()->init();
933     globals->get_soundmgr()->bind();
934
935
936     ////////////////////////////////////////////////////////////////////
937     // Initialize the sound-effects subsystem.
938     ////////////////////////////////////////////////////////////////////
939     globals->set_fx(new FGFX);
940     globals->get_fx()->init();
941     globals->get_fx()->bind();
942
943 #endif
944
945     ////////////////////////////////////////////////////////////////////
946     // Initialize the radio stack subsystem.
947     ////////////////////////////////////////////////////////////////////
948
949                                 // A textbook example of how FGSubsystem
950                                 // should work...
951     current_radiostack = new FGRadioStack;
952     current_radiostack->init();
953     current_radiostack->bind();
954
955
956     ////////////////////////////////////////////////////////////////////
957     // Initialize the cockpit subsystem
958     ////////////////////////////////////////////////////////////////////
959
960     if( fgCockpitInit( &current_aircraft )) {
961         // Cockpit initialized ok.
962     } else {
963         SG_LOG( SG_GENERAL, SG_ALERT, "Error in Cockpit initialization!" );
964         exit(-1);
965     }
966
967
968     ////////////////////////////////////////////////////////////////////
969     // Initialize the joystick subsystem.
970     ////////////////////////////////////////////////////////////////////
971
972     // if ( ! fgJoystickInit() ) {
973     //   SG_LOG( SG_GENERAL, SG_ALERT, "Error in Joystick initialization!" );
974     // }
975
976
977     ////////////////////////////////////////////////////////////////////
978     // Initialize the autopilot subsystem.
979     ////////////////////////////////////////////////////////////////////
980
981     globals->set_autopilot(new FGAutopilot);
982     globals->get_autopilot()->init();
983     globals->get_autopilot()->bind();
984
985                                 // FIXME: these should go in the
986                                 // GUI initialization code, not here.
987     fgAPAdjustInit();
988     NewTgtAirportInit();
989     NewHeadingInit();
990     NewAltitudeInit();
991
992     ////////////////////////////////////////////////////////////////////
993     // Initialize I/O subsystem.
994     ////////////////////////////////////////////////////////////////////
995
996 #if ! defined( macintosh )
997     fgIOInit();
998 #endif
999
1000     // Initialize the 2D panel.
1001     string panel_path = fgGetString("/sim/panel/path",
1002                                     "Panels/Default/default.xml");
1003     current_panel = fgReadPanel(panel_path);
1004     if (current_panel == 0) {
1005         SG_LOG( SG_INPUT, SG_ALERT, 
1006                 "Error reading new panel from " << panel_path );
1007     } else {
1008         SG_LOG( SG_INPUT, SG_INFO, "Loaded new panel from " << panel_path );
1009         current_panel->init();
1010         current_panel->bind();
1011     }
1012
1013     
1014     ////////////////////////////////////////////////////////////////////
1015     // Initialize the default (kludged) properties.
1016     ////////////////////////////////////////////////////////////////////
1017
1018     fgInitProps();
1019
1020
1021     ////////////////////////////////////////////////////////////////////
1022     // Initialize the controls subsystem.
1023     ////////////////////////////////////////////////////////////////////
1024
1025     globals->get_controls()->init();
1026     globals->get_controls()->bind();
1027
1028
1029     ////////////////////////////////////////////////////////////////////
1030     // Initialize the input subsystem.
1031     ////////////////////////////////////////////////////////////////////
1032
1033     current_input.init();
1034     current_input.bind();
1035
1036
1037     ////////////////////////////////////////////////////////////////////////
1038     // End of subsystem initialization.
1039     ////////////////////////////////////////////////////////////////////
1040
1041     SG_LOG( SG_GENERAL, SG_INFO, endl);
1042
1043                                 // Save the initial state for future
1044                                 // reference.
1045     globals->saveInitialState();
1046
1047     return true;
1048 }
1049
1050
1051 void fgReInitSubsystems( void )
1052 {
1053     static const SGPropertyNode *longitude
1054         = fgGetNode("/position/longitude-deg");
1055     static const SGPropertyNode *latitude
1056         = fgGetNode("/position/latitude-deg");
1057     static const SGPropertyNode *altitude
1058         = fgGetNode("/position/altitude-ft");
1059     static const SGPropertyNode *master_freeze
1060         = fgGetNode("/sim/freeze/master");
1061
1062     SG_LOG( SG_GENERAL, SG_INFO,
1063             "/position/altitude = " << altitude->getDoubleValue() );
1064
1065     bool freeze = master_freeze->getBoolValue();
1066     if ( !freeze ) {
1067         fgSetBool("/sim/freeze/master", true);
1068     }
1069     
1070     // Initialize the Scenery Management subsystem
1071     scenery.init();
1072
1073 #if 0
1074     if( global_tile_mgr.init() ) {
1075         Load the local scenery data
1076         global_tile_mgr.update( longitude->getDoubleValue(),
1077                                 latitude->getDoubleValue() );
1078     } else {
1079         SG_LOG( SG_GENERAL, SG_ALERT, "Error in Tile Manager initialization!" );
1080         exit(-1);
1081     }
1082 #endif
1083
1084     fgInitFDM();
1085     
1086     // allocates structures so must happen before any of the flight
1087     // model or control parameters are set
1088     fgAircraftInit();   // In the future this might not be the case.
1089
1090     fgInitView();
1091
1092     globals->get_controls()->reset_all();
1093     globals->get_autopilot()->reset();
1094
1095     fgUpdateSunPos();
1096     fgUpdateMoonPos();
1097     cur_light_params.Update();
1098     fgUpdateLocalTime();
1099
1100     if ( !freeze ) {
1101         fgSetBool("/sim/freeze/master", false);
1102     }
1103 }
1104