]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_init.cxx
Merge branch 'next' into durk-atc
[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  - 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 <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>             // strcmp()
31
32 #if defined( unix ) || defined( __CYGWIN__ )
33 #  include <unistd.h>           // for gethostname()
34 #endif
35 #ifdef _WIN32
36 #  include <direct.h>           // for getcwd()
37 #  define getcwd _getcwd
38 #  include <io.h>               // isatty()
39 #  define isatty _isatty
40 #  include "winsock2.h"         // for gethostname()
41 #endif
42
43 // work around a stdc++ lib bug in some versions of linux, but doesn't
44 // seem to hurt to have this here for all versions of Linux.
45 #ifdef linux
46 #  define _G_NO_EXTERN_TEMPLATES
47 #endif
48
49 #include <simgear/compiler.h>
50
51 #include <string>
52 #include <boost/algorithm/string/compare.hpp>
53 #include <boost/algorithm/string/predicate.hpp>
54
55 #include <simgear/constants.h>
56 #include <simgear/debug/logstream.hxx>
57 #include <simgear/structure/exception.hxx>
58 #include <simgear/structure/event_mgr.hxx>
59 #include <simgear/misc/sg_path.hxx>
60 #include <simgear/misc/sg_dir.hxx>
61 #include <simgear/misc/sgstream.hxx>
62
63 #include <simgear/misc/interpolator.hxx>
64 #include <simgear/scene/material/matlib.hxx>
65 #include <simgear/scene/model/particles.hxx>
66 #include <simgear/sound/soundmgr_openal.hxx>
67
68 #include <Aircraft/controls.hxx>
69 #include <Aircraft/replay.hxx>
70 #include <Airports/apt_loader.hxx>
71 #include <Airports/runways.hxx>
72 #include <Airports/simple.hxx>
73 #include <Airports/dynamics.hxx>
74
75 #include <AIModel/AIManager.hxx>
76
77 #include <ATCDCL/ATCmgr.hxx>
78 #include <ATCDCL/commlist.hxx>
79 #include <ATC/atis_mgr.hxx>
80 #include <ATC/atc_mgr.hxx>
81
82 #include <Autopilot/route_mgr.hxx>
83 #include <Autopilot/autopilotgroup.hxx>
84
85 #include <Cockpit/panel.hxx>
86 #include <Cockpit/panel_io.hxx>
87
88 #include <GUI/new_gui.hxx>
89 #include <Input/input.hxx>
90 #include <Instrumentation/instrument_mgr.hxx>
91 #include <Model/acmodel.hxx>
92 #include <Model/modelmgr.hxx>
93 #include <AIModel/submodel.hxx>
94 #include <AIModel/AIManager.hxx>
95 #include <Navaids/navdb.hxx>
96 #include <Navaids/navlist.hxx>
97 #include <Navaids/fix.hxx>
98 #include <Navaids/fixlist.hxx>
99 #include <Navaids/airways.hxx>
100 #include <Scenery/scenery.hxx>
101 #include <Scenery/tilemgr.hxx>
102 #include <Scripting/NasalSys.hxx>
103 #include <Sound/voice.hxx>
104 #include <Systems/system_mgr.hxx>
105 #include <Time/light.hxx>
106 #include <Traffic/TrafficMgr.hxx>
107 #include <MultiPlayer/multiplaymgr.hxx>
108 #include <FDM/fdm_shell.hxx>
109
110 #include <Environment/environment_mgr.hxx>
111
112 #include "fg_init.hxx"
113 #include "fg_io.hxx"
114 #include "fg_commands.hxx"
115 #include "fg_props.hxx"
116 #include "options.hxx"
117 #include "globals.hxx"
118 #include "logger.hxx"
119 #include "renderer.hxx"
120 #include "viewmgr.hxx"
121 #include "main.hxx"
122
123
124 #ifdef __APPLE__
125 #  include <CoreFoundation/CoreFoundation.h>
126 #endif
127
128 using std::string;
129 using namespace boost::algorithm;
130
131 extern const char *default_root;
132
133
134 // Scan the command line options for the specified option and return
135 // the value.
136 static string fgScanForOption( const string& option, int argc, char **argv ) {
137     int i = 1;
138
139     if (hostname == NULL)
140     {
141         char _hostname[256];
142         if( gethostname(_hostname, 256) >= 0 ) {
143             hostname = strdup(_hostname);
144             free_hostname = true;
145         }
146     }
147
148     SG_LOG(SG_GENERAL, SG_INFO, "Scanning command line for: " << option );
149
150     int len = option.length();
151
152     while ( i < argc ) {
153         SG_LOG( SG_GENERAL, SG_DEBUG, "argv[" << i << "] = " << argv[i] );
154
155         string arg = argv[i];
156         if ( arg.find( option ) == 0 ) {
157             return arg.substr( len );
158         }
159
160         i++;
161     }
162
163     return "";
164 }
165
166
167 // Scan the user config files for the specified option and return
168 // the value.
169 static string fgScanForOption( const string& option, const string& path ) {
170     sg_gzifstream in( path );
171     if ( !in.is_open() ) {
172         return "";
173     }
174
175     SG_LOG( SG_GENERAL, SG_INFO, "Scanning " << path << " for: " << option );
176
177     int len = option.length();
178
179     in >> skipcomment;
180     while ( ! in.eof() ) {
181         string line;
182         getline( in, line, '\n' );
183
184         // catch extraneous (DOS) line ending character
185         if ( line[line.length() - 1] < 32 ) {
186             line = line.substr( 0, line.length()-1 );
187         }
188
189         if ( line.find( option ) == 0 ) {
190             return line.substr( len );
191         }
192
193         in >> skipcomment;
194     }
195
196     return "";
197 }
198
199 // Scan the user config files for the specified option and return
200 // the value.
201 static string fgScanForOption( const string& option ) {
202     string arg("");
203
204 #if defined( unix ) || defined( __CYGWIN__ ) || defined(_MSC_VER)
205     // Next check home directory for .fgfsrc.hostname file
206     if ( arg.empty() ) {
207         if ( homedir != NULL && hostname != NULL && strlen(hostname) > 0) {
208             SGPath config( homedir );
209             config.append( ".fgfsrc" );
210             config.concat( "." );
211             config.concat( hostname );
212             arg = fgScanForOption( option, config.str() );
213         }
214     }
215 #endif
216
217     // Next check home directory for .fgfsrc file
218     if ( arg.empty() ) {
219         if ( homedir != NULL ) {
220             SGPath config( homedir );
221             config.append( ".fgfsrc" );
222             arg = fgScanForOption( option, config.str() );
223         }
224     }
225
226     if ( arg.empty() ) {
227         // Check for $fg_root/system.fgfsrc
228         SGPath config( globals->get_fg_root() );
229         config.append( "system.fgfsrc" );
230         arg = fgScanForOption( option, config.str() );
231     }
232
233     return arg;
234 }
235
236
237 // Read in configuration (files and command line options) but only set
238 // fg_root and aircraft_paths, which are needed *before* do_options() is called
239 // in fgInitConfig
240
241 bool fgInitFGRoot ( int argc, char **argv ) {
242     string root;
243
244     // First parse command line options looking for --fg-root=, this
245     // will override anything specified in a config file
246     root = fgScanForOption( "--fg-root=", argc, argv);
247
248     // Check in one of the user configuration files.
249     if (root.empty() )
250         root = fgScanForOption( "--fg-root=" );
251     
252     // Next check if fg-root is set as an env variable
253     if ( root.empty() ) {
254         char *envp = ::getenv( "FG_ROOT" );
255         if ( envp != NULL ) {
256             root = envp;
257         }
258     }
259
260     // Otherwise, default to a random compiled-in location if we can't
261     // find fg-root any other way.
262     if ( root.empty() ) {
263 #if defined( __CYGWIN__ )
264         root = "../data";
265 #elif defined( _WIN32 )
266         root = "..\\data";
267 #elif defined(__APPLE__) 
268         /*
269         The following code looks for the base package inside the application 
270         bundle, in the standard Contents/Resources location. 
271         */
272         CFURLRef resourcesUrl = CFBundleCopyResourcesDirectoryURL(CFBundleGetMainBundle());
273
274         // look for a 'data' subdir
275         CFURLRef dataDir = CFURLCreateCopyAppendingPathComponent(NULL, resourcesUrl, CFSTR("data"), true);
276
277         // now convert down to a path, and the a c-string
278         CFStringRef path = CFURLCopyFileSystemPath(dataDir, kCFURLPOSIXPathStyle);
279         root = CFStringGetCStringPtr(path, CFStringGetSystemEncoding());
280
281         CFRelease(resourcesUrl);
282         CFRelease(dataDir);
283         CFRelease(path);
284 #else
285         root = PKGLIBDIR;
286 #endif
287     }
288
289     SG_LOG(SG_INPUT, SG_INFO, "fg_root = " << root );
290     globals->set_fg_root(root);
291     
292     return true;
293 }
294
295
296 // Read in configuration (files and command line options) but only set
297 // aircraft
298 bool fgInitFGAircraft ( int argc, char **argv ) {
299     
300     string aircraftDir = fgScanForOption("--fg-aircraft=", argc, argv);
301     if (aircraftDir.empty()) {
302       aircraftDir =  fgScanForOption("--fg-aircraft="); 
303     }
304
305     const char* envp = ::getenv("FG_AIRCRAFT");
306     if (aircraftDir.empty() && envp) {
307       globals->append_aircraft_paths(envp);
308     }
309     
310     if (!aircraftDir.empty()) {
311       globals->append_aircraft_paths(aircraftDir);
312     }
313     
314     string aircraft;
315
316     // First parse command line options looking for --aircraft=, this
317     // will override anything specified in a config file
318     aircraft = fgScanForOption( "--aircraft=", argc, argv );
319     if ( aircraft.empty() ) {
320         // check synonym option
321         aircraft = fgScanForOption( "--vehicle=", argc, argv );
322     }
323
324     // Check in one of the user configuration files.
325     if ( aircraft.empty() ) {
326         aircraft = fgScanForOption( "--aircraft=" );
327     }
328     if ( aircraft.empty() ) {
329         aircraft = fgScanForOption( "--vehicle=" );
330     }
331
332     // if an aircraft was specified, set the property name
333     if ( !aircraft.empty() ) {
334         SG_LOG(SG_INPUT, SG_INFO, "aircraft = " << aircraft );
335         fgSetString("/sim/aircraft", aircraft.c_str() );
336     } else {
337         SG_LOG(SG_INPUT, SG_INFO, "No user specified aircraft, using default" );
338     }
339
340     return true;
341 }
342
343
344 // Return the current base package version
345 string fgBasePackageVersion() {
346     SGPath base_path( globals->get_fg_root() );
347     base_path.append("version");
348
349     sg_gzifstream in( base_path.str() );
350     if ( !in.is_open() ) {
351         SGPath old_path( globals->get_fg_root() );
352         old_path.append( "Thanks" );
353         sg_gzifstream old( old_path.str() );
354         if ( !old.is_open() ) {
355             return "[none]";
356         } else {
357             return "[old version]";
358         }
359     }
360
361     string version;
362     in >> version;
363
364     return version;
365 }
366
367
368 // Initialize the localization
369 SGPropertyNode *fgInitLocale(const char *language) {
370    SGPropertyNode *c_node = NULL, *d_node = NULL;
371    SGPropertyNode *intl = fgGetNode("/sim/intl");
372
373    SG_LOG(SG_GENERAL, SG_INFO, "Selecting language: " << language );
374
375    // localization not defined
376    if (!intl)
377       return NULL;
378
379    //
380    // Select the proper language from the list
381    //
382    vector<SGPropertyNode_ptr> locale = intl->getChildren("locale");
383    for (unsigned int i = 0; i < locale.size(); i++) {
384
385       vector<SGPropertyNode_ptr> lang = locale[i]->getChildren("lang");
386       for (unsigned int j = 0; j < lang.size(); j++) {
387
388          if (!strcmp(lang[j]->getStringValue(), language)) {
389             c_node = locale[i];
390             break;
391          }
392       }
393    }
394
395
396    // Get the defaults
397    d_node = intl->getChild("locale");
398    if (!c_node)
399       c_node = d_node;
400
401    // Check for localized font
402    SGPropertyNode *font_n = c_node->getNode("font", true);
403    if ( !strcmp(font_n->getStringValue(), "") )
404       font_n->setStringValue(d_node->getStringValue("font", "typewriter.txf"));
405
406
407    //
408    // Load the default strings
409    //
410    SGPath d_path( globals->get_fg_root() );
411
412    const char *d_path_str = d_node->getStringValue("strings");
413    if (!d_path_str) {
414       SG_LOG(SG_GENERAL, SG_ALERT, "No path in " << d_node->getPath() << "/strings.");
415       return NULL;
416    }
417
418    d_path.append(d_path_str);
419    SG_LOG(SG_GENERAL, SG_INFO, "Reading localized strings from " << d_path.str());
420
421    SGPropertyNode *strings = c_node->getNode("strings");
422    try {
423       readProperties(d_path.str(), strings);
424    } catch (const sg_exception &) {
425       SG_LOG(SG_GENERAL, SG_ALERT, "Unable to read the localized strings");
426       return NULL;
427    }
428
429    //
430    // Load the language specific strings
431    //
432    if (c_node != d_node) {
433       SGPath c_path( globals->get_fg_root() );
434
435       const char *c_path_str = c_node->getStringValue("strings");
436       if (!c_path_str) {
437          SG_LOG(SG_GENERAL, SG_ALERT, "No path in " << c_node->getPath() << "/strings");
438          return NULL;
439       }
440
441       c_path.append(c_path_str);
442       SG_LOG(SG_GENERAL, SG_INFO, "Reading localized strings from " << c_path.str());
443
444       try {
445          readProperties(c_path.str(), strings);
446       } catch (const sg_exception &) {
447          SG_LOG(SG_GENERAL, SG_ALERT,
448                  "Unable to read the localized strings from " << c_path.str());
449          return NULL;
450       }
451    }
452
453    return c_node;
454 }
455
456
457
458 // Initialize the localization routines
459 bool fgDetectLanguage() {
460     const char *language = ::getenv("LANG");
461
462     if (language == NULL) {
463         SG_LOG(SG_GENERAL, SG_INFO, "Unable to detect the language" );
464         language = "C";
465     }
466
467     SGPropertyNode *locale = fgInitLocale(language);
468     if (!locale) {
469        SG_LOG(SG_GENERAL, SG_ALERT,
470               "No internationalization settings specified in preferences.xml" );
471
472        return false;
473     }
474
475     globals->set_locale( locale );
476
477     return true;
478 }
479
480 // Attempt to locate and parse the various non-XML config files in order
481 // from least precidence to greatest precidence
482 static void
483 do_options (int argc, char ** argv)
484 {
485     // Check for $fg_root/system.fgfsrc
486     SGPath config( globals->get_fg_root() );
487     config.append( "system.fgfsrc" );
488     fgParseOptions(config.str());
489
490 #if defined( unix ) || defined( __CYGWIN__ ) || defined(_MSC_VER)
491     if( hostname != NULL && strlen(hostname) > 0 ) {
492         config.concat( "." );
493         config.concat( hostname );
494         fgParseOptions(config.str());
495     }
496 #endif
497
498     // Check for ~/.fgfsrc
499     if ( homedir != NULL ) {
500         config.set( homedir );
501         config.append( ".fgfsrc" );
502         fgParseOptions(config.str());
503     }
504
505 #if defined( unix ) || defined( __CYGWIN__ ) || defined(_MSC_VER)
506     if( hostname != NULL && strlen(hostname) > 0 ) {
507         // Check for ~/.fgfsrc.hostname
508         config.concat( "." );
509         config.concat( hostname );
510         fgParseOptions(config.str());
511     }
512 #endif
513
514     // Parse remaining command line options
515     // These will override anything specified in a config file
516     fgParseArgs(argc, argv);
517 }
518
519 template <class T>
520 bool fgFindAircraftInDir(const SGPath& dirPath, T* obj, bool (T::*pred)(const SGPath& p))
521 {
522   if (!dirPath.exists()) {
523     SG_LOG(SG_GENERAL, SG_WARN, "fgFindAircraftInDir: no such path:" << dirPath.str());
524     return false;
525   }
526     
527   bool recurse = true;
528   simgear::Dir dir(dirPath);
529   simgear::PathList setFiles(dir.children(simgear::Dir::TYPE_FILE, "-set.xml"));
530   simgear::PathList::iterator p;
531   for (p = setFiles.begin(); p != setFiles.end(); ++p) {
532     // check file name ends with -set.xml
533     
534     // if we found a -set.xml at this level, don't recurse any deeper
535     recurse = false;
536     
537     bool done = (obj->*pred)(*p);
538     if (done) {
539       return true;
540     }
541   } // of -set.xml iteration
542   
543   if (!recurse) {
544     return false;
545   }
546   
547   simgear::PathList subdirs(dir.children(simgear::Dir::TYPE_DIR | simgear::Dir::NO_DOT_OR_DOTDOT));
548   for (p = subdirs.begin(); p != subdirs.end(); ++p) {
549     if (p->file() == "CVS") {
550       continue;
551     }
552     
553     if (fgFindAircraftInDir(*p, obj, pred)) {
554       return true;
555     }
556   } // of subdirs iteration
557   
558   return false;
559 }
560
561 template <class T>
562 void fgFindAircraft(T* obj, bool (T::*pred)(const SGPath& p))
563 {
564   const string_list& paths(globals->get_aircraft_paths());
565   string_list::const_iterator it = paths.begin();
566   for (; it != paths.end(); ++it) {
567     bool done = fgFindAircraftInDir(SGPath(*it), obj, pred);
568     if (done) {
569       return;
570     }
571   } // of aircraft paths iteration
572   
573   // if we reach this point, search the default location (always last)
574   SGPath rootAircraft(globals->get_fg_root());
575   rootAircraft.append("Aircraft");
576   fgFindAircraftInDir(rootAircraft, obj, pred);
577 }
578
579 class FindAndCacheAircraft
580 {
581 public:
582   FindAndCacheAircraft(SGPropertyNode* autoSave)
583   {
584     _cache = autoSave->getNode("sim/startup/path-cache", true);
585   }
586   
587   bool loadAircraft()
588   {
589     std::string aircraft = fgGetString( "/sim/aircraft", "");
590     if (aircraft.empty()) {
591       SG_LOG(SG_GENERAL, SG_ALERT, "no aircraft specified");
592       return false;
593     }
594     
595     _searchAircraft = aircraft + "-set.xml";
596     if (!checkCache()) {
597       // prepare cache for re-scan
598       SGPropertyNode *n = _cache->getNode("fg-root", true);
599       n->setStringValue(globals->get_fg_root().c_str());
600       n->setAttribute(SGPropertyNode::USERARCHIVE, true);
601       n = _cache->getNode("fg-aircraft", true);
602       n->setStringValue(getAircraftPaths().c_str());
603       n->setAttribute(SGPropertyNode::USERARCHIVE, true);
604       _cache->removeChildren("aircraft");
605   
606       fgFindAircraft(this, &FindAndCacheAircraft::checkAircraft);
607     }
608     
609     if (_foundPath.str().empty()) {
610       SG_LOG(SG_GENERAL, SG_ALERT, "Cannot find specified aircraft: " << aircraft );
611       return false;
612     }
613     
614     SG_LOG(SG_GENERAL, SG_INFO, "Loading aircraft -set file from:" << _foundPath.str());
615     fgSetString( "/sim/aircraft-dir", _foundPath.dir().c_str());
616     if (!_foundPath.exists()) {
617       SG_LOG(SG_GENERAL, SG_ALERT, "Unable to find -set file:" << _foundPath.str());
618       return false;
619     }
620     
621     try {
622       readProperties(_foundPath.str(), globals->get_props());
623     } catch ( const sg_exception &e ) {
624       SG_LOG(SG_INPUT, SG_ALERT, "Error reading aircraft: " << e.getFormattedMessage());
625       return false;
626     }
627     
628     return true;
629   }
630   
631 private:
632   SGPath getAircraftPaths() {
633     string_list pathList = globals->get_aircraft_paths();
634     SGPath aircraftPaths;
635     string_list::const_iterator it = pathList.begin();
636     if (it != pathList.end()) {
637         aircraftPaths.set(*it);
638         it++;
639     }
640     for (; it != pathList.end(); ++it) {
641         aircraftPaths.add(*it);
642     }
643     return aircraftPaths;
644   }
645   
646   bool checkCache()
647   {
648     if (globals->get_fg_root() != _cache->getStringValue("fg-root", "")) {
649       return false; // cache mismatch
650     }
651
652     if (getAircraftPaths().str() != _cache->getStringValue("fg-aircraft", "")) {
653       return false; // cache mismatch
654     }
655     
656     vector<SGPropertyNode_ptr> cache = _cache->getChildren("aircraft");
657     for (unsigned int i = 0; i < cache.size(); i++) {
658       const char *name = cache[i]->getStringValue("file", "");
659       if (!boost::equals(_searchAircraft, name, is_iequal())) {
660         continue;
661       }
662       
663       SGPath xml(cache[i]->getStringValue("path", ""));
664       xml.append(name);
665       if (xml.exists()) {
666         _foundPath = xml;
667         return true;
668       } 
669       
670       return false;
671     } // of aircraft in cache iteration
672     
673     return false;
674   }
675   
676   bool checkAircraft(const SGPath& p)
677   {
678     // create cache node
679     int i = 0;
680     while (1) {
681         if (!_cache->getChild("aircraft", i++, false))
682             break;
683     }
684     
685     SGPropertyNode *n, *entry = _cache->getChild("aircraft", --i, true);
686
687     std::string fileName(p.file());
688     n = entry->getNode("file", true);
689     n->setStringValue(fileName);
690     n->setAttribute(SGPropertyNode::USERARCHIVE, true);
691
692     n = entry->getNode("path", true);
693     n->setStringValue(p.dir());
694     n->setAttribute(SGPropertyNode::USERARCHIVE, true);
695
696     if ( boost::equals(fileName, _searchAircraft.c_str(), is_iequal()) ) {
697         _foundPath = p;
698         return true;
699     }
700
701     return false;
702   }
703   
704   std::string _searchAircraft;
705   SGPath _foundPath;
706   SGPropertyNode* _cache;
707 };
708
709 // Read in configuration (file and command line)
710 bool fgInitConfig ( int argc, char **argv ) {
711
712     // First, set some sane default values
713     fgSetDefaults();
714
715     // Read global preferences from $FG_ROOT/preferences.xml
716     SG_LOG(SG_INPUT, SG_INFO, "Reading global preferences");
717     fgLoadProps("preferences.xml", globals->get_props());
718     SG_LOG(SG_INPUT, SG_INFO, "Finished Reading global preferences");
719
720     // Detect the required language as early as possible
721     if ( !fgDetectLanguage() ) {
722         return false;
723     }
724
725     SGPropertyNode autosave;
726 #ifdef _WIN32
727     char *envp = ::getenv( "APPDATA" );
728     if (envp != NULL ) {
729         SGPath config( envp );
730         config.append( "flightgear.org" );
731 #else
732     if ( homedir != NULL ) {
733         SGPath config( homedir );
734         config.append( ".fgfs" );
735 #endif
736         const char *fg_home = getenv("FG_HOME");
737         if (fg_home)
738             config = fg_home;
739
740         SGPath home_export(config.str());
741         home_export.append("Export/dummy");
742         home_export.create_dir(0777);
743
744         // Set /sim/fg-home and don't allow malign code to override it until
745         // Nasal security is set up.  Use FG_HOME if necessary.
746         SGPropertyNode *home = fgGetNode("/sim", true);
747         home->removeChild("fg-home", 0, false);
748         home = home->getChild("fg-home", 0, true);
749         home->setStringValue(config.c_str());
750         home->setAttribute(SGPropertyNode::WRITE, false);
751
752         config.append( "autosave.xml" );
753         if (config.exists()) {
754           SG_LOG(SG_INPUT, SG_INFO, "Reading user settings from " << config.str());
755           try {
756               readProperties(config.str(), &autosave, SGPropertyNode::USERARCHIVE);
757           } catch (sg_exception& e) {
758               SG_LOG(SG_INPUT, SG_WARN, "failed to read user settings:" << e.getMessage()
759                 << "(from " << e.getOrigin() << ")");
760           }
761         }
762     }
763     
764     // Scan user config files and command line for a specified aircraft.
765     fgInitFGAircraft(argc, argv);
766     FindAndCacheAircraft f(&autosave);
767     if (!f.loadAircraft()) {
768       return false;
769     }
770
771     copyProperties(&autosave, globals->get_props());
772
773     // parse options after loading aircraft to ensure any user
774     // overrides of defaults are honored.
775     do_options(argc, argv);
776
777     return true;
778 }
779
780 // Set current tower position lon/lat given an airport id
781 static bool fgSetTowerPosFromAirportID( const string& id) {
782     const FGAirport *a = fgFindAirportID( id);
783     if (a) {
784         SGGeod tower = a->getTowerLocation();
785         fgSetDouble("/sim/tower/longitude-deg",  tower.getLongitudeDeg());
786         fgSetDouble("/sim/tower/latitude-deg",  tower.getLatitudeDeg());
787         fgSetDouble("/sim/tower/altitude-ft", tower.getElevationFt());
788         return true;
789     } else {
790         return false;
791     }
792
793 }
794
795 struct FGTowerLocationListener : SGPropertyChangeListener {
796     void valueChanged(SGPropertyNode* node) {
797         string id(node->getStringValue());
798         if (fgGetBool("/sim/tower/auto-position",true))
799         {
800             // enforce using closest airport when auto-positioning is enabled 
801             const char* closest_airport = fgGetString("/sim/airport/closest-airport-id", "");
802             if (closest_airport && (id != closest_airport))
803             {
804                 id = closest_airport;
805                 node->setStringValue(id);
806             }
807         }
808         fgSetTowerPosFromAirportID(id);
809     }
810 };
811
812 struct FGClosestTowerLocationListener : SGPropertyChangeListener
813 {
814     void valueChanged(SGPropertyNode* )
815     {
816         // closest airport has changed
817         if (fgGetBool("/sim/tower/auto-position",true))
818         {
819             // update tower position
820             const char* id = fgGetString("/sim/airport/closest-airport-id", "");
821             if (id && *id!=0)
822                 fgSetString("/sim/tower/airport-id", id);
823         }
824     }
825 };
826
827 void fgInitTowerLocationListener() {
828     fgGetNode("/sim/tower/airport-id",  true)
829         ->addChangeListener( new FGTowerLocationListener(), true );
830     FGClosestTowerLocationListener* ntcl = new FGClosestTowerLocationListener();
831     fgGetNode("/sim/airport/closest-airport-id", true)
832         ->addChangeListener(ntcl , true );
833     fgGetNode("/sim/tower/auto-position", true)
834            ->addChangeListener(ntcl, true );
835 }
836
837 static void fgApplyStartOffset(const SGGeod& aStartPos, double aHeading, double aTargetHeading = HUGE_VAL)
838 {
839   SGGeod startPos(aStartPos);
840   if (aTargetHeading == HUGE_VAL) {
841     aTargetHeading = aHeading;
842   }
843   
844   if ( fabs( fgGetDouble("/sim/presets/offset-distance-nm") ) > SG_EPSILON ) {
845     double offsetDistance = fgGetDouble("/sim/presets/offset-distance-nm");
846     offsetDistance *= SG_NM_TO_METER;
847     double offsetAzimuth = aHeading;
848     if ( fabs(fgGetDouble("/sim/presets/offset-azimuth-deg")) > SG_EPSILON ) {
849       offsetAzimuth = fgGetDouble("/sim/presets/offset-azimuth-deg");
850       aHeading = aTargetHeading;
851     }
852
853     SGGeod offset;
854     double az2; // dummy
855     SGGeodesy::direct(startPos, offsetAzimuth + 180, offsetDistance, offset, az2);
856     startPos = offset;
857   }
858
859   // presets
860   fgSetDouble("/sim/presets/longitude-deg", startPos.getLongitudeDeg() );
861   fgSetDouble("/sim/presets/latitude-deg", startPos.getLatitudeDeg() );
862   fgSetDouble("/sim/presets/heading-deg", aHeading );
863
864   // other code depends on the actual values being set ...
865   fgSetDouble("/position/longitude-deg",  startPos.getLongitudeDeg() );
866   fgSetDouble("/position/latitude-deg",  startPos.getLatitudeDeg() );
867   fgSetDouble("/orientation/heading-deg", aHeading );
868 }
869
870 // Set current_options lon/lat given an airport id and heading (degrees)
871 bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
872     if ( id.empty() )
873         return false;
874
875     // set initial position from runway and heading
876     SG_LOG( SG_GENERAL, SG_INFO,
877             "Attempting to set starting position from airport code "
878             << id << " heading " << tgt_hdg );
879
880     const FGAirport* apt = fgFindAirportID(id);
881     if (!apt) return false;
882     FGRunway* r = apt->findBestRunwayForHeading(tgt_hdg);
883     fgSetString("/sim/atc/runway", r->ident().c_str());
884
885     SGGeod startPos = r->pointOnCenterline(fgGetDouble("/sim/airport/runways/start-offset-m", 5.0));
886           fgApplyStartOffset(startPos, r->headingDeg(), tgt_hdg);
887     return true;
888 }
889
890 // Set current_options lon/lat given an airport id and parkig position name
891 static bool fgSetPosFromAirportIDandParkpos( const string& id, const string& parkpos ) {
892     if ( id.empty() )
893         return false;
894
895     // can't see an easy way around this const_cast at the moment
896     FGAirport* apt = const_cast<FGAirport*>(fgFindAirportID(id));
897     if (!apt) {
898         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to find airport " << id );
899         return false;
900     }
901     FGAirportDynamics* dcs = apt->getDynamics();
902     if (!dcs) {
903         SG_LOG( SG_GENERAL, SG_ALERT,
904                 "Failed to find parking position " << parkpos <<
905                 " at airport " << id );
906         return false;
907     }
908     
909     int park_index = dcs->getNrOfParkings() - 1;
910     while (park_index >= 0 && dcs->getParkingName(park_index) != parkpos) park_index--;
911     if (park_index < 0) {
912         SG_LOG( SG_GENERAL, SG_ALERT,
913                 "Failed to find parking position " << parkpos <<
914                 " at airport " << id );
915         return false;
916     }
917     FGParking* parking = dcs->getParking(park_index);
918     parking->setAvailable(false);
919     fgApplyStartOffset(
920       SGGeod::fromDeg(parking->getLongitude(), parking->getLatitude()),
921       parking->getHeading());
922     return true;
923 }
924
925
926 // Set current_options lon/lat given an airport id and runway number
927 static bool fgSetPosFromAirportIDandRwy( const string& id, const string& rwy, bool rwy_req ) {
928     if ( id.empty() )
929         return false;
930
931     // set initial position from airport and runway number
932     SG_LOG( SG_GENERAL, SG_INFO,
933             "Attempting to set starting position for "
934             << id << ":" << rwy );
935
936     const FGAirport* apt = fgFindAirportID(id);
937     if (!apt) {
938       SG_LOG( SG_GENERAL, SG_ALERT, "Failed to find airport:" << id);
939       return false;
940     }
941     
942     if (!apt->hasRunwayWithIdent(rwy)) {
943       SG_LOG( SG_GENERAL, rwy_req ? SG_ALERT : SG_INFO,
944                 "Failed to find runway " << rwy <<
945                 " at airport " << id << ". Using default runway." );
946       return false;
947     }
948     
949     FGRunway* r(apt->getRunwayByIdent(rwy));
950     fgSetString("/sim/atc/runway", r->ident().c_str());
951     SGGeod startPos = r->pointOnCenterline( fgGetDouble("/sim/airport/runways/start-offset-m", 5.0));
952           fgApplyStartOffset(startPos, r->headingDeg());
953     return true;
954 }
955
956
957 static void fgSetDistOrAltFromGlideSlope() {
958     // cout << "fgSetDistOrAltFromGlideSlope()" << endl;
959     string apt_id = fgGetString("/sim/presets/airport-id");
960     double gs = fgGetDouble("/sim/presets/glideslope-deg")
961         * SG_DEGREES_TO_RADIANS ;
962     double od = fgGetDouble("/sim/presets/offset-distance-nm");
963     double alt = fgGetDouble("/sim/presets/altitude-ft");
964
965     double apt_elev = 0.0;
966     if ( ! apt_id.empty() ) {
967         apt_elev = fgGetAirportElev( apt_id );
968         if ( apt_elev < -9990.0 ) {
969             apt_elev = 0.0;
970         }
971     } else {
972         apt_elev = 0.0;
973     }
974
975     if( fabs(gs) > 0.01 && fabs(od) > 0.1 && alt < -9990 ) {
976         // set altitude from glideslope and offset-distance
977         od *= SG_NM_TO_METER * SG_METER_TO_FEET;
978         alt = fabs(od*tan(gs)) + apt_elev;
979         fgSetDouble("/sim/presets/altitude-ft", alt);
980         fgSetBool("/sim/presets/onground", false);
981         SG_LOG( SG_GENERAL, SG_INFO, "Calculated altitude as: "
982                 << alt  << " ft" );
983     } else if( fabs(gs) > 0.01 && alt > 0 && fabs(od) < 0.1) {
984         // set offset-distance from glideslope and altitude
985         od  = (alt - apt_elev) / tan(gs);
986         od *= -1*SG_FEET_TO_METER * SG_METER_TO_NM;
987         fgSetDouble("/sim/presets/offset-distance-nm", od);
988         fgSetBool("/sim/presets/onground", false);
989         SG_LOG( SG_GENERAL, SG_INFO, "Calculated offset distance as: " 
990                 << od  << " nm" );
991     } else if( fabs(gs) > 0.01 ) {
992         SG_LOG( SG_GENERAL, SG_ALERT,
993                 "Glideslope given but not altitude or offset-distance." );
994         SG_LOG( SG_GENERAL, SG_ALERT, "Resetting glideslope to zero" );
995         fgSetDouble("/sim/presets/glideslope-deg", 0);
996         fgSetBool("/sim/presets/onground", true);
997     }
998 }
999
1000
1001 // Set current_options lon/lat given an airport id and heading (degrees)
1002 static bool fgSetPosFromNAV( const string& id, const double& freq ) {
1003     FGNavRecord *nav
1004         = globals->get_navlist()->findByIdentAndFreq( id.c_str(), freq );
1005
1006   if (!nav) {
1007     SG_LOG( SG_GENERAL, SG_ALERT, "Failed to locate NAV = "
1008                 << id << ":" << freq );
1009     return false;
1010   }
1011   
1012   fgApplyStartOffset(nav->geod(), fgGetDouble("/sim/presets/heading-deg"));
1013   return true;
1014 }
1015
1016 // Set current_options lon/lat given an aircraft carrier id
1017 static bool fgSetPosFromCarrier( const string& carrier, const string& posid ) {
1018
1019     // set initial position from runway and heading
1020     SGGeod geodPos;
1021     double heading;
1022     SGVec3d uvw;
1023     if (FGAIManager::getStartPosition(carrier, posid, geodPos, heading, uvw)) {
1024         double lon = geodPos.getLongitudeDeg();
1025         double lat = geodPos.getLatitudeDeg();
1026         double alt = geodPos.getElevationFt();
1027
1028         SG_LOG( SG_GENERAL, SG_INFO, "Attempting to set starting position for "
1029                 << carrier << " at lat = " << lat << ", lon = " << lon
1030                 << ", alt = " << alt << ", heading = " << heading);
1031
1032         fgSetDouble("/sim/presets/longitude-deg",  lon);
1033         fgSetDouble("/sim/presets/latitude-deg",  lat);
1034         fgSetDouble("/sim/presets/altitude-ft", alt);
1035         fgSetDouble("/sim/presets/heading-deg", heading);
1036         fgSetDouble("/position/longitude-deg",  lon);
1037         fgSetDouble("/position/latitude-deg",  lat);
1038         fgSetDouble("/position/altitude-ft", alt);
1039         fgSetDouble("/orientation/heading-deg", heading);
1040
1041         fgSetString("/sim/presets/speed-set", "UVW");
1042         fgSetDouble("/velocities/uBody-fps", uvw(0));
1043         fgSetDouble("/velocities/vBody-fps", uvw(1));
1044         fgSetDouble("/velocities/wBody-fps", uvw(2));
1045         fgSetDouble("/sim/presets/uBody-fps", uvw(0));
1046         fgSetDouble("/sim/presets/vBody-fps", uvw(1));
1047         fgSetDouble("/sim/presets/wBody-fps", uvw(2));
1048
1049         fgSetBool("/sim/presets/onground", true);
1050
1051         return true;
1052     } else {
1053         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to locate aircraft carrier = "
1054                 << carrier );
1055         return false;
1056     }
1057 }
1058  
1059 // Set current_options lon/lat given an airport id and heading (degrees)
1060 static bool fgSetPosFromFix( const string& id )
1061 {
1062   FGPositioned::TypeFilter fixFilter(FGPositioned::FIX);
1063   FGPositioned* fix = FGPositioned::findNextWithPartialId(NULL, id, &fixFilter);
1064   if (!fix) {
1065     SG_LOG( SG_GENERAL, SG_ALERT, "Failed to locate fix = " << id );
1066     return false;
1067   }
1068   
1069   fgApplyStartOffset(fix->geod(), fgGetDouble("/sim/presets/heading-deg"));
1070   return true;
1071 }
1072
1073 /**
1074  * Initialize vor/ndb/ils/fix list management and query systems (as
1075  * well as simple airport db list)
1076  */
1077 bool
1078 fgInitNav ()
1079 {
1080     SG_LOG(SG_GENERAL, SG_INFO, "Loading Airport Database ...");
1081
1082     SGPath aptdb( globals->get_fg_root() );
1083     aptdb.append( "Airports/apt.dat" );
1084
1085     SGPath p_metar( globals->get_fg_root() );
1086     p_metar.append( "Airports/metar.dat" );
1087
1088 // Initialise the frequency search map BEFORE reading
1089 // the airport database:
1090
1091
1092
1093     current_commlist = new FGCommList;
1094     current_commlist->init( globals->get_fg_root() );
1095     fgAirportDBLoad( aptdb.str(), current_commlist, p_metar.str() );
1096
1097     FGNavList *navlist = new FGNavList;
1098     FGNavList *loclist = new FGNavList;
1099     FGNavList *gslist = new FGNavList;
1100     FGNavList *dmelist = new FGNavList;
1101     FGNavList *tacanlist = new FGNavList;
1102     FGNavList *carrierlist = new FGNavList;
1103     FGTACANList *channellist = new FGTACANList;
1104
1105     globals->set_navlist( navlist );
1106     globals->set_loclist( loclist );
1107     globals->set_gslist( gslist );
1108     globals->set_dmelist( dmelist );
1109     globals->set_tacanlist( tacanlist );
1110     globals->set_carrierlist( carrierlist );
1111     globals->set_channellist( channellist );
1112
1113     if ( !fgNavDBInit(navlist, loclist, gslist, dmelist, tacanlist, carrierlist, channellist) ) {
1114         SG_LOG( SG_GENERAL, SG_ALERT,
1115                 "Problems loading one or more navigational database" );
1116     }
1117     
1118     SG_LOG(SG_GENERAL, SG_INFO, "  Fixes");
1119     SGPath p_fix( globals->get_fg_root() );
1120     p_fix.append( "Navaids/fix.dat" );
1121     FGFixList fixlist;
1122     fixlist.init( p_fix );  // adds fixes to the DB in positioned.cxx
1123
1124     SG_LOG(SG_GENERAL, SG_INFO, "  Airways");
1125     flightgear::Airway::load();
1126     
1127     return true;
1128 }
1129
1130
1131 // Set the initial position based on presets (or defaults)
1132 bool fgInitPosition() {
1133     // cout << "fgInitPosition()" << endl;
1134     double gs = fgGetDouble("/sim/presets/glideslope-deg")
1135         * SG_DEGREES_TO_RADIANS ;
1136     double od = fgGetDouble("/sim/presets/offset-distance-nm");
1137     double alt = fgGetDouble("/sim/presets/altitude-ft");
1138
1139     bool set_pos = false;
1140
1141     // If glideslope is specified, then calculate offset-distance or
1142     // altitude relative to glide slope if either of those was not
1143     // specified.
1144     if ( fabs( gs ) > 0.01 ) {
1145         fgSetDistOrAltFromGlideSlope();
1146     }
1147
1148
1149     // If we have an explicit, in-range lon/lat, don't change it, just use it.
1150     // If not, check for an airport-id and use that.
1151     // If not, default to the middle of the KSFO field.
1152     // The default values for lon/lat are deliberately out of range
1153     // so that the airport-id can take effect; valid lon/lat will
1154     // override airport-id, however.
1155     double lon_deg = fgGetDouble("/sim/presets/longitude-deg");
1156     double lat_deg = fgGetDouble("/sim/presets/latitude-deg");
1157     if ( lon_deg >= -180.0 && lon_deg <= 180.0
1158          && lat_deg >= -90.0 && lat_deg <= 90.0 )
1159     {
1160         set_pos = true;
1161     }
1162
1163     string apt = fgGetString("/sim/presets/airport-id");
1164     string rwy_no = fgGetString("/sim/presets/runway");
1165     bool rwy_req = fgGetBool("/sim/presets/runway-requested");
1166     string vor = fgGetString("/sim/presets/vor-id");
1167     double vor_freq = fgGetDouble("/sim/presets/vor-freq");
1168     string ndb = fgGetString("/sim/presets/ndb-id");
1169     double ndb_freq = fgGetDouble("/sim/presets/ndb-freq");
1170     string carrier = fgGetString("/sim/presets/carrier");
1171     string parkpos = fgGetString("/sim/presets/parkpos");
1172     string fix = fgGetString("/sim/presets/fix");
1173     SGPropertyNode *hdg_preset = fgGetNode("/sim/presets/heading-deg", true);
1174     double hdg = hdg_preset->getDoubleValue();
1175
1176     // save some start parameters, so that we can later say what the
1177     // user really requested. TODO generalize that and move it to options.cxx
1178     static bool start_options_saved = false;
1179     if (!start_options_saved) {
1180         start_options_saved = true;
1181         SGPropertyNode *opt = fgGetNode("/sim/startup/options", true);
1182
1183         opt->setDoubleValue("latitude-deg", lat_deg);
1184         opt->setDoubleValue("longitude-deg", lon_deg);
1185         opt->setDoubleValue("heading-deg", hdg);
1186         opt->setStringValue("airport", apt.c_str());
1187         opt->setStringValue("runway", rwy_no.c_str());
1188     }
1189
1190     if (hdg > 9990.0)
1191         hdg = fgGetDouble("/environment/config/boundary/entry/wind-from-heading-deg", 270);
1192
1193     if ( !set_pos && !apt.empty() && !parkpos.empty() ) {
1194         // An airport + parking position is requested
1195         if ( fgSetPosFromAirportIDandParkpos( apt, parkpos ) ) {
1196             // set tower position
1197             fgSetString("/sim/airport/closest-airport-id",  apt.c_str());
1198             fgSetString("/sim/tower/airport-id",  apt.c_str());
1199             set_pos = true;
1200         }
1201     }
1202
1203     if ( !set_pos && !apt.empty() && !rwy_no.empty() ) {
1204         // An airport + runway is requested
1205         if ( fgSetPosFromAirportIDandRwy( apt, rwy_no, rwy_req ) ) {
1206             // set tower position (a little off the heading for single
1207             // runway airports)
1208             fgSetString("/sim/airport/closest-airport-id",  apt.c_str());
1209             fgSetString("/sim/tower/airport-id",  apt.c_str());
1210             set_pos = true;
1211         }
1212     }
1213
1214     if ( !set_pos && !apt.empty() ) {
1215         // An airport is requested (find runway closest to hdg)
1216         if ( fgSetPosFromAirportIDandHdg( apt, hdg ) ) {
1217             // set tower position (a little off the heading for single
1218             // runway airports)
1219             fgSetString("/sim/airport/closest-airport-id",  apt.c_str());
1220             fgSetString("/sim/tower/airport-id",  apt.c_str());
1221             set_pos = true;
1222         }
1223     }
1224
1225     if (hdg_preset->getDoubleValue() > 9990.0)
1226         hdg_preset->setDoubleValue(hdg);
1227
1228     if ( !set_pos && !vor.empty() ) {
1229         // a VOR is requested
1230         if ( fgSetPosFromNAV( vor, vor_freq ) ) {
1231             set_pos = true;
1232         }
1233     }
1234
1235     if ( !set_pos && !ndb.empty() ) {
1236         // an NDB is requested
1237         if ( fgSetPosFromNAV( ndb, ndb_freq ) ) {
1238             set_pos = true;
1239         }
1240     }
1241
1242     if ( !set_pos && !carrier.empty() ) {
1243         // an aircraft carrier is requested
1244         if ( fgSetPosFromCarrier( carrier, parkpos ) ) {
1245             set_pos = true;
1246         }
1247     }
1248
1249     if ( !set_pos && !fix.empty() ) {
1250         // a Fix is requested
1251         if ( fgSetPosFromFix( fix ) ) {
1252             set_pos = true;
1253         }
1254     }
1255
1256     if ( !set_pos ) {
1257         // No lon/lat specified, no airport specified, default to
1258         // middle of KSFO field.
1259         fgSetDouble("/sim/presets/longitude-deg", -122.374843);
1260         fgSetDouble("/sim/presets/latitude-deg", 37.619002);
1261     }
1262
1263     fgSetDouble( "/position/longitude-deg",
1264                  fgGetDouble("/sim/presets/longitude-deg") );
1265     fgSetDouble( "/position/latitude-deg",
1266                  fgGetDouble("/sim/presets/latitude-deg") );
1267     fgSetDouble( "/orientation/heading-deg", hdg_preset->getDoubleValue());
1268
1269     // determine if this should be an on-ground or in-air start
1270     if ((fabs(gs) > 0.01 || fabs(od) > 0.1 || alt > 0.1) && carrier.empty()) {
1271         fgSetBool("/sim/presets/onground", false);
1272     } else {
1273         fgSetBool("/sim/presets/onground", true);
1274     }
1275
1276     return true;
1277 }
1278
1279
1280 // General house keeping initializations
1281 bool fgInitGeneral() {
1282     string root;
1283
1284     SG_LOG( SG_GENERAL, SG_INFO, "General Initialization" );
1285     SG_LOG( SG_GENERAL, SG_INFO, "======= ==============" );
1286
1287     root = globals->get_fg_root();
1288     if ( ! root.length() ) {
1289         // No root path set? Then bail ...
1290         SG_LOG( SG_GENERAL, SG_ALERT,
1291                 "Cannot continue without a path to the base package "
1292                 << "being defined." );
1293         exit(-1);
1294     }
1295     SG_LOG( SG_GENERAL, SG_INFO, "FG_ROOT = " << '"' << root << '"' << endl );
1296
1297     globals->set_browser(fgGetString("/sim/startup/browser-app", "firefox %u"));
1298
1299     char buf[512], *cwd = getcwd(buf, 511);
1300     buf[511] = '\0';
1301     SGPropertyNode *curr = fgGetNode("/sim", true);
1302     curr->removeChild("fg-current", 0, false);
1303     curr = curr->getChild("fg-current", 0, true);
1304     curr->setStringValue(cwd ? cwd : "");
1305     curr->setAttribute(SGPropertyNode::WRITE, false);
1306
1307     fgSetBool("/sim/startup/stdout-to-terminal", isatty(1) != 0 );
1308     fgSetBool("/sim/startup/stderr-to-terminal", isatty(2) != 0 );
1309     return true;
1310 }
1311
1312 // This is the top level init routine which calls all the other
1313 // initialization routines.  If you are adding a subsystem to flight
1314 // gear, its initialization call should located in this routine.
1315 // Returns non-zero if a problem encountered.
1316 bool fgInitSubsystems() {
1317     // static const SGPropertyNode *longitude
1318     //     = fgGetNode("/sim/presets/longitude-deg");
1319     // static const SGPropertyNode *latitude
1320     //     = fgGetNode("/sim/presets/latitude-deg");
1321     // static const SGPropertyNode *altitude
1322     //     = fgGetNode("/sim/presets/altitude-ft");
1323
1324     SG_LOG( SG_GENERAL, SG_INFO, "Initialize Subsystems");
1325     SG_LOG( SG_GENERAL, SG_INFO, "========== ==========");
1326
1327     ////////////////////////////////////////////////////////////////////
1328     // Initialize the event manager subsystem.
1329     ////////////////////////////////////////////////////////////////////
1330
1331     globals->get_event_mgr()->init();
1332     globals->get_event_mgr()->setRealtimeProperty(fgGetNode("/sim/time/delta-realtime-sec", true));
1333
1334     ////////////////////////////////////////////////////////////////////
1335     // Initialize the property interpolator subsystem. Put into the INIT
1336     // group because the "nasal" subsystem may need it at GENERAL take-down.
1337     ////////////////////////////////////////////////////////////////////
1338     globals->add_subsystem("interpolator", new SGInterpolator, SGSubsystemMgr::INIT);
1339
1340
1341     ////////////////////////////////////////////////////////////////////
1342     // Add the FlightGear property utilities.
1343     ////////////////////////////////////////////////////////////////////
1344     globals->add_subsystem("properties", new FGProperties);
1345
1346     ////////////////////////////////////////////////////////////////////
1347     // Initialize the material property subsystem.
1348     ////////////////////////////////////////////////////////////////////
1349
1350     SGPath mpath( globals->get_fg_root() );
1351     mpath.append( "materials.xml" );
1352     if ( ! globals->get_matlib()->load(globals->get_fg_root(), mpath.str(),
1353             globals->get_props()) ) {
1354         SG_LOG( SG_GENERAL, SG_ALERT, "Error loading material lib!" );
1355         exit(-1);
1356     }
1357
1358
1359     ////////////////////////////////////////////////////////////////////
1360     // Initialize the scenery management subsystem.
1361     ////////////////////////////////////////////////////////////////////
1362
1363     globals->get_scenery()->get_scene_graph()
1364         ->addChild(simgear::Particles::getCommonRoot());
1365     simgear::GlobalParticleCallback::setSwitch(fgGetNode("/sim/rendering/particles", true));
1366
1367     ////////////////////////////////////////////////////////////////////
1368     // Initialize the flight model subsystem.
1369     ////////////////////////////////////////////////////////////////////
1370
1371     globals->add_subsystem("flight", new FDMShell, SGSubsystemMgr::FDM);
1372
1373     ////////////////////////////////////////////////////////////////////
1374     // Initialize the weather subsystem.
1375     ////////////////////////////////////////////////////////////////////
1376
1377     // Initialize the weather modeling subsystem
1378     globals->add_subsystem("environment", new FGEnvironmentMgr);
1379
1380     ////////////////////////////////////////////////////////////////////
1381     // Initialize the aircraft systems and instrumentation (before the
1382     // autopilot.)
1383     ////////////////////////////////////////////////////////////////////
1384
1385     globals->add_subsystem("instrumentation", new FGInstrumentMgr, SGSubsystemMgr::FDM);
1386     globals->add_subsystem("systems", new FGSystemMgr, SGSubsystemMgr::FDM);
1387
1388     ////////////////////////////////////////////////////////////////////
1389     // Initialize the XML Autopilot subsystem.
1390     ////////////////////////////////////////////////////////////////////
1391
1392     globals->add_subsystem( "xml-autopilot", FGXMLAutopilotGroup::createInstance(), SGSubsystemMgr::FDM );
1393     globals->add_subsystem( "route-manager", new FGRouteMgr );
1394
1395     ////////////////////////////////////////////////////////////////////
1396     // Initialize the Input-Output subsystem
1397     ////////////////////////////////////////////////////////////////////
1398     globals->add_subsystem( "io", new FGIO );
1399
1400     ////////////////////////////////////////////////////////////////////
1401     // Create and register the logger.
1402     ////////////////////////////////////////////////////////////////////
1403     
1404     globals->add_subsystem("logger", new FGLogger);
1405
1406     ////////////////////////////////////////////////////////////////////
1407     // Create and register the XML GUI.
1408     ////////////////////////////////////////////////////////////////////
1409
1410     globals->add_subsystem("gui", new NewGUI, SGSubsystemMgr::INIT);
1411
1412     //////////////////////////////////////////////////////////////////////
1413     // Initialize the 2D cloud subsystem.
1414     ////////////////////////////////////////////////////////////////////
1415     fgGetBool("/sim/rendering/bump-mapping", false);
1416
1417
1418
1419     ////////////////////////////////////////////////////////////////////
1420     // Initialise the ATC Manager
1421     // Note that this is old stuff, but might be necessesary for the 
1422     // current ATIS implementation. Therefore, leave it in here
1423     // until the ATIS system is ported over to make use of the ATIS 
1424     // sub system infrastructure.
1425     ////////////////////////////////////////////////////////////////////
1426
1427     SG_LOG(SG_GENERAL, SG_INFO, "  ATC Manager");
1428     globals->set_ATC_mgr(new FGATCMgr);
1429     globals->get_ATC_mgr()->init(); 
1430
1431     ////////////////////////////////////////////////////////////////////
1432    // Initialize the ATC subsystem
1433     ////////////////////////////////////////////////////////////////////
1434     globals->add_subsystem("ATC", new FGATCManager, SGSubsystemMgr::POST_FDM);
1435     ////////////////////////////////////////////////////////////////////
1436     // Initialise the ATIS Subsystem
1437     ////////////////////////////////////////////////////////////////////
1438     globals->add_subsystem("atis", new FGAtisManager, SGSubsystemMgr::POST_FDM);
1439
1440
1441     ////////////////////////////////////////////////////////////////////
1442     // Initialize multiplayer subsystem
1443     ////////////////////////////////////////////////////////////////////
1444
1445     globals->add_subsystem("mp", new FGMultiplayMgr, SGSubsystemMgr::POST_FDM);
1446
1447     ////////////////////////////////////////////////////////////////////
1448     // Initialise the AI Model Manager
1449     ////////////////////////////////////////////////////////////////////
1450     SG_LOG(SG_GENERAL, SG_INFO, "  AI Model Manager");
1451     globals->add_subsystem("ai_model", new FGAIManager, SGSubsystemMgr::POST_FDM);
1452     globals->add_subsystem("submodel_mgr", new FGSubmodelMgr, SGSubsystemMgr::POST_FDM);
1453
1454
1455     // It's probably a good idea to initialize the top level traffic manager
1456     // After the AI and ATC systems have been initialized properly.
1457     // AI Traffic manager
1458     globals->add_subsystem("Traffic Manager", new FGTrafficManager, SGSubsystemMgr::POST_FDM);
1459
1460     ////////////////////////////////////////////////////////////////////
1461     // Add a new 2D panel.
1462     ////////////////////////////////////////////////////////////////////
1463
1464     string panel_path(fgGetString("/sim/panel/path"));
1465     if (!panel_path.empty()) {
1466       FGPanel* p = fgReadPanel(panel_path);
1467       if (p) {
1468         globals->set_current_panel(p);
1469         p->init();
1470         p->bind();
1471         SG_LOG( SG_INPUT, SG_INFO, "Loaded new panel from " << panel_path );
1472       } else {
1473         SG_LOG( SG_INPUT, SG_ALERT,
1474                 "Error reading new panel from " << panel_path );
1475       }
1476     }
1477
1478     ////////////////////////////////////////////////////////////////////
1479     // Initialize the controls subsystem.
1480     ////////////////////////////////////////////////////////////////////
1481
1482     globals->get_controls()->init();
1483     globals->get_controls()->bind();
1484
1485
1486     ////////////////////////////////////////////////////////////////////
1487     // Initialize the input subsystem.
1488     ////////////////////////////////////////////////////////////////////
1489
1490     globals->add_subsystem("input", new FGInput);
1491
1492
1493     ////////////////////////////////////////////////////////////////////
1494     // Initialize the replay subsystem
1495     ////////////////////////////////////////////////////////////////////
1496     globals->add_subsystem("replay", new FGReplay);
1497
1498 #ifdef ENABLE_AUDIO_SUPPORT
1499     ////////////////////////////////////////////////////////////////////
1500     // Initialize the sound-effects subsystem.
1501     ////////////////////////////////////////////////////////////////////
1502     globals->add_subsystem("voice", new FGVoiceMgr, SGSubsystemMgr::DISPLAY);
1503 #endif
1504
1505     ////////////////////////////////////////////////////////////////////
1506     // Initialize the lighting subsystem.
1507     ////////////////////////////////////////////////////////////////////
1508
1509     globals->add_subsystem("lighting", new FGLight, SGSubsystemMgr::DISPLAY);
1510     
1511     // ordering here is important : Nasal (via events), then models, then views
1512     globals->add_subsystem("events", globals->get_event_mgr(), SGSubsystemMgr::DISPLAY);
1513     
1514     FGAircraftModel* acm = new FGAircraftModel;
1515     globals->set_aircraft_model(acm);
1516     globals->add_subsystem("aircraft-model", acm, SGSubsystemMgr::DISPLAY);
1517
1518     FGModelMgr* mm = new FGModelMgr;
1519     globals->set_model_mgr(mm);
1520     globals->add_subsystem("model-manager", mm, SGSubsystemMgr::DISPLAY);
1521
1522     FGViewMgr *viewmgr = new FGViewMgr;
1523     globals->set_viewmgr( viewmgr );
1524     globals->add_subsystem("view-manager", viewmgr, SGSubsystemMgr::DISPLAY);
1525
1526     globals->add_subsystem("tile-manager", globals->get_tile_mgr(), 
1527       SGSubsystemMgr::DISPLAY);
1528       
1529     ////////////////////////////////////////////////////////////////////
1530     // Bind and initialize subsystems.
1531     ////////////////////////////////////////////////////////////////////
1532
1533     globals->get_subsystem_mgr()->bind();
1534     globals->get_subsystem_mgr()->init();
1535
1536     ////////////////////////////////////////////////////////////////////////
1537     // Initialize the Nasal interpreter.
1538     // Do this last, so that the loaded scripts see initialized state
1539     ////////////////////////////////////////////////////////////////////////
1540     FGNasalSys* nasal = new FGNasalSys();
1541     globals->add_subsystem("nasal", nasal, SGSubsystemMgr::INIT);
1542     nasal->init();
1543
1544     // initialize methods that depend on other subsystems.
1545     globals->get_subsystem_mgr()->postinit();
1546
1547     ////////////////////////////////////////////////////////////////////////
1548     // End of subsystem initialization.
1549     ////////////////////////////////////////////////////////////////////
1550
1551     fgSetBool("/sim/initialized", true);
1552
1553     SG_LOG( SG_GENERAL, SG_INFO, endl);
1554
1555                                 // Save the initial state for future
1556                                 // reference.
1557     globals->saveInitialState();
1558     
1559     return true;
1560 }
1561
1562 // Reset: this is what the 'reset' command (and hence, GUI) is attached to
1563 void fgReInitSubsystems()
1564 {
1565     static const SGPropertyNode *master_freeze
1566         = fgGetNode("/sim/freeze/master");
1567
1568     SG_LOG( SG_GENERAL, SG_INFO, "fgReInitSubsystems()");
1569
1570 // setup state to begin re-init
1571     bool freeze = master_freeze->getBoolValue();
1572     if ( !freeze ) {
1573         fgSetBool("/sim/freeze/master", true);
1574     }
1575     
1576     fgSetBool("/sim/signals/reinit", true);
1577     fgSetBool("/sim/crashed", false);
1578
1579 // do actual re-init steps
1580     globals->get_subsystem("flight")->unbind();
1581     
1582   // reset control state, before restoring initial state; -set or config files
1583   // may specify values for flaps, trim tabs, magnetos, etc
1584     globals->get_controls()->reset_all();
1585         
1586     globals->restoreInitialState();
1587
1588     // update our position based on current presets
1589     fgInitPosition();
1590     
1591     // Force reupdating the positions of the ai 3d models. They are used for
1592     // initializing ground level for the FDM.
1593     globals->get_subsystem("ai_model")->reinit();
1594
1595     // Initialize the FDM
1596     globals->get_subsystem("flight")->reinit();
1597
1598     // reset replay buffers
1599     globals->get_subsystem("replay")->reinit();
1600     
1601     // reload offsets from config defaults
1602     globals->get_viewmgr()->reinit();
1603
1604     globals->get_subsystem("time")->reinit();
1605
1606     // need to bind FDMshell again, since we manually unbound it above...
1607     globals->get_subsystem("flight")->bind();
1608
1609 // setup state to end re-init
1610     fgSetBool("/sim/signals/reinit", false);
1611     if ( !freeze ) {
1612         fgSetBool("/sim/freeze/master", false);
1613     }
1614     fgSetBool("/sim/sceneryloaded",false);
1615 }
1616
1617
1618 ///////////////////////////////////////////////////////////////////////////////
1619 // helper object to implement the --show-aircraft command.
1620 // resides here so we can share the fgFindAircraftInDir template above,
1621 // and hence ensure this command lists exectly the same aircraft as the normal
1622 // loading path.
1623 class ShowAircraft 
1624 {
1625 public:
1626   ShowAircraft()
1627   {
1628     _minStatus = getNumMaturity(fgGetString("/sim/aircraft-min-status", "all"));
1629   }
1630   
1631   
1632   void show(const SGPath& path)
1633   {
1634     fgFindAircraftInDir(path, this, &ShowAircraft::processAircraft);
1635   
1636     std::sort(_aircraft.begin(), _aircraft.end(), ciLessLibC());
1637     SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on Windows
1638     cout << "Available aircraft:" << endl;
1639     for ( unsigned int i = 0; i < _aircraft.size(); i++ ) {
1640         cout << _aircraft[i] << endl;
1641     }
1642   }
1643   
1644 private:
1645   bool processAircraft(const SGPath& path)
1646   {
1647     SGPropertyNode root;
1648     try {
1649        readProperties(path.str(), &root);
1650     } catch (sg_exception& ) {
1651        return false;
1652     }
1653   
1654     int maturity = 0;
1655     string descStr("   ");
1656     descStr += path.file();
1657   // trim common suffix from file names
1658     int nPos = descStr.rfind("-set.xml");
1659     if (nPos == (int)(descStr.size() - 8)) {
1660       descStr.resize(nPos);
1661     }
1662     
1663     SGPropertyNode *node = root.getNode("sim");
1664     if (node) {
1665       SGPropertyNode* desc = node->getNode("description");
1666       // if a status tag is found, read it in
1667       if (node->hasValue("status")) {
1668         maturity = getNumMaturity(node->getStringValue("status"));
1669       }
1670       
1671       if (desc) {
1672         if (descStr.size() <= 27+3) {
1673           descStr.append(29+3-descStr.size(), ' ');
1674         } else {
1675           descStr += '\n';
1676           descStr.append( 32, ' ');
1677         }
1678         descStr += desc->getStringValue();
1679       }
1680     } // of have 'sim' node
1681     
1682     if (maturity < _minStatus) {
1683       return false;
1684     }
1685
1686     _aircraft.push_back(descStr);
1687     return false;
1688   }
1689
1690
1691   int getNumMaturity(const char * str) 
1692   {
1693     // changes should also be reflected in $FG_ROOT/data/options.xml & 
1694     // $FG_ROOT/data/Translations/string-default.xml
1695     const char* levels[] = {"alpha","beta","early-production","production"}; 
1696
1697     if (!strcmp(str, "all")) {
1698       return 0;
1699     }
1700
1701     for (size_t i=0; i<(sizeof(levels)/sizeof(levels[0]));i++) 
1702       if (strcmp(str,levels[i])==0)
1703         return i;
1704
1705     return 0;
1706   }
1707
1708   // recommended in Meyers, Effective STL when internationalization and embedded
1709   // NULLs aren't an issue.  Much faster than the STL or Boost lex versions.
1710   struct ciLessLibC : public std::binary_function<string, string, bool>
1711   {
1712     bool operator()(const std::string &lhs, const std::string &rhs) const
1713     {
1714       return strcasecmp(lhs.c_str(), rhs.c_str()) < 0 ? 1 : 0;
1715     }
1716   };
1717
1718   int _minStatus;
1719   string_list _aircraft;
1720 };
1721
1722 void fgShowAircraft(const SGPath &path)
1723 {
1724     ShowAircraft s;
1725     s.show(path);
1726         
1727 #ifdef _MSC_VER
1728     cout << "Hit a key to continue..." << endl;
1729     cin.get();
1730 #endif
1731 }
1732
1733