]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_init.cxx
set /sim/fg-current to current working directory; getcwd() is defined in
[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 // For BC 5.01 this must be included before OpenGL includes.
29 #ifdef SG_MATH_EXCEPTION_CLASH
30 #  include <math.h>
31 #endif
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>             // strcmp()
36
37 #if defined( unix ) || defined( __CYGWIN__ )
38 #  include <unistd.h>           // for gethostname()
39 #endif
40 #if defined( _MSC_VER) || defined(__MINGW32__)
41 #  include <direct.h>           // for getcwd()
42 #  define getcwd _getcwd
43 #endif
44
45 // work around a stdc++ lib bug in some versions of linux, but doesn't
46 // seem to hurt to have this here for all versions of Linux.
47 #ifdef linux
48 #  define _G_NO_EXTERN_TEMPLATES
49 #endif
50
51 #include <simgear/compiler.h>
52
53 #include STL_STRING
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/math/point3d.hxx>
60 #include <simgear/math/polar3d.hxx>
61 #include <simgear/math/sg_geodesy.hxx>
62 #include <simgear/misc/sg_path.hxx>
63 #include <simgear/misc/interpolator.hxx>
64 #include <simgear/scene/material/matlib.hxx>
65 #include <simgear/timing/sg_time.hxx>
66 #include <simgear/timing/lowleveltime.h>
67
68 #include <Aircraft/aircraft.hxx>
69 #include <Aircraft/replay.hxx>
70 #include <Airports/apt_loader.hxx>
71 #include <Airports/runways.hxx>
72 #include <Airports/simple.hxx>
73 #include <AIModel/AIManager.hxx>
74 #include <ATC/ATCmgr.hxx>
75 #include <ATC/AIMgr.hxx>
76 #include <Autopilot/route_mgr.hxx>
77 #include <Autopilot/xmlauto.hxx>
78 #include <Cockpit/cockpit.hxx>
79 #include <Cockpit/panel.hxx>
80 #include <Cockpit/panel_io.hxx>
81 #ifdef ENABLE_SP_FDM
82 #include <FDM/SP/ADA.hxx>
83 #include <FDM/SP/ACMS.hxx>
84 #endif
85 #include <FDM/Balloon.h>
86 #include <FDM/ExternalNet/ExternalNet.hxx>
87 #include <FDM/ExternalPipe/ExternalPipe.hxx>
88 #include <FDM/JSBSim/JSBSim.hxx>
89 #include <FDM/LaRCsim/LaRCsim.hxx>
90 #include <FDM/MagicCarpet.hxx>
91 #include <FDM/UFO.hxx>
92 #include <FDM/NullFDM.hxx>
93 #include <FDM/YASim/YASim.hxx>
94 #include <GUI/new_gui.hxx>
95 #include <Include/general.hxx>
96 #include <Input/input.hxx>
97 #include <Instrumentation/instrument_mgr.hxx>
98 #include <Model/acmodel.hxx>
99 #include <AIModel/submodel.hxx>
100 #include <AIModel/AIManager.hxx>
101 #include <Navaids/navdb.hxx>
102 #include <Navaids/navlist.hxx>
103 #include <Scenery/scenery.hxx>
104 #include <Scenery/tilemgr.hxx>
105 #include <Scripting/NasalSys.hxx>
106 #include <Sound/fg_fx.hxx>
107 #include <Sound/beacon.hxx>
108 #include <Sound/morse.hxx>
109 #include <Sound/voice.hxx>
110 #include <Systems/system_mgr.hxx>
111 #include <Time/light.hxx>
112 #include <Time/sunsolver.hxx>
113 #include <Time/tmp.hxx>
114 #include <Traffic/TrafficMgr.hxx>
115 #include <MultiPlayer/multiplaymgr.hxx>
116
117 #include <Environment/environment_mgr.hxx>
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 #include "main.hxx"
128
129 #if defined(FX) && defined(XMESA)
130 #include <GL/xmesa.h>
131 #endif
132
133 SG_USING_STD(string);
134
135
136 class Sound;
137 extern const char *default_root;
138 float init_volume;
139
140
141 // Scan the command line options for the specified option and return
142 // the value.
143 static string fgScanForOption( const string& option, int argc, char **argv ) {
144     int i = 1;
145
146     if (hostname == NULL)
147     {
148         char _hostname[256];
149         gethostname(_hostname, 256);
150         hostname = strdup(_hostname);
151         free_hostname = true;
152     }
153
154     SG_LOG(SG_GENERAL, SG_INFO, "Scanning command line for: " << option );
155
156     int len = option.length();
157
158     while ( i < argc ) {
159         SG_LOG( SG_GENERAL, SG_DEBUG, "argv[" << i << "] = " << argv[i] );
160
161         string arg = argv[i];
162         if ( arg.find( option ) == 0 ) {
163             return arg.substr( len );
164         }
165
166         i++;
167     }
168
169     return "";
170 }
171
172
173 // Scan the user config files for the specified option and return
174 // the value.
175 static string fgScanForOption( const string& option, const string& path ) {
176     sg_gzifstream in( path );
177     if ( !in.is_open() ) {
178         return "";
179     }
180
181     SG_LOG( SG_GENERAL, SG_INFO, "Scanning " << path << " for: " << option );
182
183     int len = option.length();
184
185     in >> skipcomment;
186 #ifndef __MWERKS__
187     while ( ! in.eof() ) {
188 #else
189     char c = '\0';
190     while ( in.get(c) && c != '\0' ) {
191         in.putback(c);
192 #endif
193         string line;
194
195 #if defined( macintosh )
196         getline( in, line, '\r' );
197 #else
198         getline( in, line, '\n' );
199 #endif
200
201         // catch extraneous (DOS) line ending character
202         if ( line[line.length() - 1] < 32 ) {
203             line = line.substr( 0, line.length()-1 );
204         }
205
206         if ( line.find( option ) == 0 ) {
207             return line.substr( len );
208         }
209
210         in >> skipcomment;
211     }
212
213     return "";
214 }
215
216 // Scan the user config files for the specified option and return
217 // the value.
218 static string fgScanForOption( const string& option ) {
219     string arg("");
220
221 #if defined( unix ) || defined( __CYGWIN__ )
222     // Next check home directory for .fgfsrc.hostname file
223     if ( arg.empty() ) {
224         if ( homedir != NULL ) {
225             SGPath config( homedir );
226             config.append( ".fgfsrc" );
227             config.concat( "." );
228             config.concat( hostname );
229             arg = fgScanForOption( option, config.str() );
230         }
231     }
232 #endif
233
234     // Next check home directory for .fgfsrc file
235     if ( arg.empty() ) {
236         if ( homedir != NULL ) {
237             SGPath config( homedir );
238             config.append( ".fgfsrc" );
239             arg = fgScanForOption( option, config.str() );
240         }
241     }
242
243     if ( arg.empty() ) {
244         // Check for $fg_root/system.fgfsrc
245         SGPath config( globals->get_fg_root() );
246         config.append( "system.fgfsrc" );
247         arg = fgScanForOption( option, config.str() );
248     }
249
250     return arg;
251 }
252
253
254 // Read in configuration (files and command line options) but only set
255 // fg_root
256 bool fgInitFGRoot ( int argc, char **argv ) {
257     string root;
258
259     // First parse command line options looking for --fg-root=, this
260     // will override anything specified in a config file
261     root = fgScanForOption( "--fg-root=", argc, argv);
262
263     // Check in one of the user configuration files.
264     if (root.empty() )
265         root = fgScanForOption( "--fg-root=" );
266     
267     // Next check if fg-root is set as an env variable
268     if ( root.empty() ) {
269         char *envp = ::getenv( "FG_ROOT" );
270         if ( envp != NULL ) {
271             root = envp;
272         }
273     }
274
275     // Otherwise, default to a random compiled-in location if we can't
276     // find fg-root any other way.
277     if ( root.empty() ) {
278 #if defined( __CYGWIN__ )
279         root = "/FlightGear";
280 #elif defined( WIN32 )
281         root = "\\FlightGear";
282 #elif defined(OSX_BUNDLE) 
283         /* the following code looks for the base package directly inside
284             the application bundle. This can be changed fairly easily by
285             fiddling with the code below. And yes, I know it's ugly and verbose.
286         */
287         CFBundleRef appBundle = CFBundleGetMainBundle();
288         CFURLRef appUrl = CFBundleCopyBundleURL(appBundle);
289         CFRelease(appBundle);
290
291         // look for a 'data' subdir directly inside the bundle : is there
292         // a better place? maybe in Resources? I don't know ...
293         CFURLRef dataDir = CFURLCreateCopyAppendingPathComponent(NULL, appUrl, CFSTR("data"), true);
294
295         // now convert down to a path, and the a c-string
296         CFStringRef path = CFURLCopyFileSystemPath(dataDir, kCFURLPOSIXPathStyle);
297         root = CFStringGetCStringPtr(path, CFStringGetSystemEncoding());
298
299         // tidy up.
300         CFRelease(appBundle);
301         CFRelease(dataDir);
302         CFRelease(path);
303 #else
304         root = PKGLIBDIR;
305 #endif
306     }
307
308     SG_LOG(SG_INPUT, SG_INFO, "fg_root = " << root );
309     globals->set_fg_root(root);
310
311     return true;
312 }
313
314
315 // Read in configuration (files and command line options) but only set
316 // aircraft
317 bool fgInitFGAircraft ( int argc, char **argv ) {
318     string aircraft;
319
320     // First parse command line options looking for --aircraft=, this
321     // will override anything specified in a config file
322     aircraft = fgScanForOption( "--aircraft=", argc, argv );
323
324     // Check in one of the user configuration files.
325     if ( aircraft.empty() )
326         aircraft = fgScanForOption( "--aircraft=" );
327
328     // if an aircraft was specified, set the property name
329     if ( !aircraft.empty() ) {
330         SG_LOG(SG_INPUT, SG_INFO, "aircraft = " << aircraft );
331         fgSetString("/sim/aircraft", aircraft.c_str() );
332     } else {
333         SG_LOG(SG_INPUT, SG_INFO, "No user specified aircraft, using default" );
334     }
335
336     return true;
337 }
338
339
340 // Return the current base package version
341 string fgBasePackageVersion() {
342     SGPath base_path( globals->get_fg_root() );
343     base_path.append("version");
344
345     sg_gzifstream in( base_path.str() );
346     if ( !in.is_open() ) {
347         SGPath old_path( globals->get_fg_root() );
348         old_path.append( "Thanks" );
349         sg_gzifstream old( old_path.str() );
350         if ( !old.is_open() ) {
351             return "[none]";
352         } else {
353             return "[old version]";
354         }
355     }
356
357     string version;
358     in >> version;
359
360     return version;
361 }
362
363
364 // Initialize the localization
365 SGPropertyNode *fgInitLocale(const char *language) {
366    SGPropertyNode *c_node = NULL, *d_node = NULL;
367    SGPropertyNode *intl = fgGetNode("/sim/intl");
368
369    SG_LOG(SG_GENERAL, SG_INFO, "Selecting language: " << language );
370
371    // localization not defined
372    if (!intl)
373       return NULL;
374
375    //
376    // Select the proper language from the list
377    //
378    vector<SGPropertyNode_ptr> locale = intl->getChildren("locale");
379    for (unsigned int i = 0; i < locale.size(); i++) {
380
381       vector<SGPropertyNode_ptr> lang = locale[i]->getChildren("lang");
382       for (unsigned int j = 0; j < lang.size(); j++) {
383
384          if (!strcmp(lang[j]->getStringValue(), language)) {
385             c_node = locale[i];
386             break;
387          }
388       }
389    }
390
391
392    // Get the defaults
393    d_node = intl->getChild("locale");
394    if (!c_node)
395       c_node = d_node;
396
397    // Check for localized font
398    SGPropertyNode *font_n = c_node->getNode("font", true);
399    if ( !strcmp(font_n->getStringValue(), "") )
400       font_n->setStringValue(d_node->getStringValue("font", "typewriter.txf"));
401
402
403    //
404    // Load the default strings
405    //
406    SGPath d_path( globals->get_fg_root() );
407
408    const char *d_path_str = d_node->getStringValue("strings");
409    if (!d_path_str) {
410       SG_LOG(SG_GENERAL, SG_ALERT, "No path in " << d_node->getPath() << "/strings.");
411       return NULL;
412    }
413
414    d_path.append(d_path_str);
415    SG_LOG(SG_GENERAL, SG_INFO, "Reading localized strings from " << d_path.str());
416
417    SGPropertyNode *strings = c_node->getNode("strings");
418    try {
419       readProperties(d_path.str(), strings);
420    } catch (const sg_exception &e) {
421       SG_LOG(SG_GENERAL, SG_ALERT, "Unable to read the localized strings");
422       return NULL;
423    }
424
425    //
426    // Load the language specific strings
427    //
428    if (c_node != d_node) {
429       SGPath c_path( globals->get_fg_root() );
430
431       const char *c_path_str = c_node->getStringValue("strings");
432       if (!c_path_str) {
433          SG_LOG(SG_GENERAL, SG_ALERT, "No path in " << c_node->getPath() << "/strings");
434          return NULL;
435       }
436
437       c_path.append(c_path_str);
438       SG_LOG(SG_GENERAL, SG_INFO, "Reading localized strings from " << c_path.str());
439
440       try {
441          readProperties(c_path.str(), strings);
442       } catch (const sg_exception &e) {
443          SG_LOG(SG_GENERAL, SG_ALERT,
444                  "Unable to read the localized strings from " << c_path.str());
445          return NULL;
446       }
447    }
448
449    return c_node;
450 }
451
452
453
454 // Initialize the localization routines
455 bool fgDetectLanguage() {
456     char *language = ::getenv("LANG");
457
458     if (language == NULL) {
459         SG_LOG(SG_GENERAL, SG_INFO, "Unable to detect the language" );
460         language = "C";
461     }
462
463     SGPropertyNode *locale = fgInitLocale(language);
464     if (!locale) {
465        SG_LOG(SG_GENERAL, SG_ALERT,
466               "No internationalization settings specified in preferences.xml" );
467
468        return false;
469     }
470
471     globals->set_locale( locale );
472
473     return true;
474 }
475
476 // Attempt to locate and parse the various non-XML config files in order
477 // from least precidence to greatest precidence
478 static void
479 do_options (int argc, char ** argv)
480 {
481     // Check for $fg_root/system.fgfsrc
482     SGPath config( globals->get_fg_root() );
483     config.append( "system.fgfsrc" );
484     fgParseOptions(config.str());
485
486 #if defined( unix ) || defined( __CYGWIN__ )
487     config.concat( "." );
488     config.concat( hostname );
489     fgParseOptions(config.str());
490 #endif
491
492     // Check for ~/.fgfsrc
493     if ( homedir != NULL ) {
494         config.set( homedir );
495         config.append( ".fgfsrc" );
496         fgParseOptions(config.str());
497     }
498
499 #if defined( unix ) || defined( __CYGWIN__ )
500     // Check for ~/.fgfsrc.hostname
501     config.concat( "." );
502     config.concat( hostname );
503     fgParseOptions(config.str());
504 #endif
505
506     // Parse remaining command line options
507     // These will override anything specified in a config file
508     fgParseArgs(argc, argv);
509 }
510
511
512 static string fgFindAircraftPath( const SGPath &path, const string &aircraft,
513                                   SGPropertyNode *cache, int depth = 0 )
514 {
515     const int MAXDEPTH = 1;
516
517     ulDirEnt* dire;
518     ulDir *dirp = ulOpenDir(path.str().c_str());
519     if (dirp == NULL) {
520         cerr << "Unable to open aircraft directory '" << path.str() << '\'' << endl;
521         exit(-1);
522     }
523
524     string result;
525     while ((dire = ulReadDir(dirp)) != NULL) {
526         if (dire->d_isdir) {
527             if (depth > MAXDEPTH)
528                 continue;
529
530             if (!strcmp("CVS", dire->d_name) || !strcmp(".", dire->d_name)
531                     || !strcmp("..", dire->d_name) || !strcmp("AI", dire->d_name))
532                 continue;
533
534             SGPath next = path;
535             next.append(dire->d_name);
536
537             result = fgFindAircraftPath( next, aircraft, cache, depth + 1 );
538             if ( ! result.empty() )
539                 break;
540
541         } else {
542             int len = strlen(dire->d_name);
543             if (len < 9 || strcmp(dire->d_name + len - 8, "-set.xml"))
544                 continue;
545
546             // create cache node
547             int i = 0;
548             while (1)
549                 if (!cache->getChild("aircraft", i++, false))
550                     break;
551
552             SGPropertyNode *n, *entry = cache->getChild("aircraft", --i, true);
553
554             n = entry->getNode("file", true);
555             n->setStringValue(dire->d_name);
556             n->setAttribute(SGPropertyNode::USERARCHIVE, true);
557
558             n = entry->getNode("path", true);
559             n->setStringValue(path.str().c_str());
560             n->setAttribute(SGPropertyNode::USERARCHIVE, true);
561
562             if ( !strcmp(dire->d_name, aircraft.c_str()) ) {
563                 result = path.str();
564                 break;
565             }
566         }
567     }
568
569     ulCloseDir(dirp);
570     return result;
571 }
572
573
574 // Read in configuration (file and command line)
575 bool fgInitConfig ( int argc, char **argv ) {
576
577     // First, set some sane default values
578     fgSetDefaults();
579
580     // Read global preferences from $FG_ROOT/preferences.xml
581     SG_LOG(SG_INPUT, SG_INFO, "Reading global preferences");
582     fgLoadProps("preferences.xml", globals->get_props());
583     SG_LOG(SG_INPUT, SG_INFO, "Finished Reading global preferences");
584
585     // Detect the required language as early as possible
586     if ( !fgDetectLanguage() ) {
587         return false;
588     }
589
590     SGPropertyNode autosave;
591 #ifdef _MSC_VER
592     char *envp = ::getenv( "APPDATA" );
593     if (envp != NULL ) {
594         SGPath config( envp );
595         config.append( "flightgear.org" );
596 #else
597     if ( homedir != NULL ) {
598         SGPath config( homedir );
599         config.append( ".fgfs" );
600 #endif
601         fgSetString("/sim/fg-home", config.c_str());
602         config.append( "autosave.xml" );
603         SG_LOG(SG_INPUT, SG_INFO, "Reading user settings from " << config.str());
604         try {
605             readProperties(config.str(), &autosave, SGPropertyNode::USERARCHIVE);
606         } catch (...) {
607             SG_LOG(SG_INPUT, SG_DEBUG, "First time reading user settings");
608         }
609         SG_LOG(SG_INPUT, SG_DEBUG, "Finished Reading user settings");
610     }
611     SGPropertyNode *cache_root = autosave.getNode("sim/startup/path-cache", true);
612
613
614     // Scan user config files and command line for a specified aircraft.
615     fgInitFGAircraft(argc, argv);
616
617     string aircraft = fgGetString( "/sim/aircraft", "" );
618     if ( aircraft.size() > 0 ) {
619         SGPath aircraft_search( globals->get_fg_root() );
620         aircraft_search.append( "Aircraft" );
621
622         string aircraft_set = aircraft + "-set.xml";
623         string result;
624
625         // check if the *-set.xml file is already in the cache
626         if (globals->get_fg_root() == cache_root->getStringValue("fg-root", "")) {
627             vector<SGPropertyNode_ptr> cache = cache_root->getChildren("aircraft");
628             for (unsigned int i = 0; i < cache.size(); i++) {
629                 const char *name = cache[i]->getStringValue("file", "");
630                 if (aircraft_set == name) {
631                     const char *path = cache[i]->getStringValue("path", "");
632                     SGPath xml(path);
633                     xml.append(name);
634                     if (xml.exists())
635                         result = path;
636                     break;
637                 }
638             }
639         }
640
641         if (result.empty()) {
642             // prepare cache for rescan
643             SGPropertyNode *n = cache_root->getNode("fg-root", true);
644             n->setStringValue(globals->get_fg_root().c_str());
645             n->setAttribute(SGPropertyNode::USERARCHIVE, true);
646             cache_root->removeChildren("aircraft");
647
648             result = fgFindAircraftPath( aircraft_search, aircraft_set, cache_root );
649         }
650
651         if ( !result.empty() ) {
652             fgSetString( "/sim/aircraft-dir", result.c_str() );
653             SGPath full_name( result );
654             full_name.append( aircraft_set );
655
656             SG_LOG(SG_INPUT, SG_INFO, "Reading default aircraft: " << aircraft
657                    << " from " << full_name.str());
658             try {
659                 readProperties( full_name.str(), globals->get_props() );
660             } catch ( const sg_exception &e ) {
661                 string message = "Error reading default aircraft: ";
662                 message += e.getFormattedMessage();
663                 SG_LOG(SG_INPUT, SG_ALERT, message);
664                 exit(2);
665             }
666         } else {
667             SG_LOG( SG_INPUT, SG_ALERT, "Cannot find specified aircraft: "
668                     << aircraft );
669             return false;
670         }
671
672     } else {
673         SG_LOG( SG_INPUT, SG_ALERT, "No default aircraft specified" );
674     }
675
676     copyProperties(&autosave, globals->get_props());
677
678     // parse options after loading aircraft to ensure any user
679     // overrides of defaults are honored.
680     do_options(argc, argv);
681
682     return true;
683 }
684
685
686
687
688
689 #if 0 
690   // 
691   // This function is never used, but maybe useful in the future ???
692   //
693
694 // Preset lon/lat given an airport id
695 static bool fgSetPosFromAirportID( const string& id ) {
696     FGAirport *a;
697     // double lon, lat;
698
699     SG_LOG( SG_GENERAL, SG_INFO,
700             "Attempting to set starting position from airport code " << id );
701
702     if ( fgFindAirportID( id, &a ) ) {
703         // presets
704         fgSetDouble("/sim/presets/longitude-deg", a->longitude );
705         fgSetDouble("/sim/presets/latitude-deg", a->latitude );
706
707         // other code depends on the actual postition being set so set
708         // that as well
709         fgSetDouble("/position/longitude-deg", a->longitude );
710         fgSetDouble("/position/latitude-deg", a->latitude );
711
712         SG_LOG( SG_GENERAL, SG_INFO,
713                 "Position for " << id << " is (" << a->longitude
714                 << ", " << a->latitude << ")" );
715
716         return true;
717     } else {
718         return false;
719     }
720 }
721 #endif
722
723
724 // Set current tower position lon/lat given an airport id
725 static bool fgSetTowerPosFromAirportID( const string& id, double hdg ) {
726     
727     // tower height hard coded for now...
728     float towerheight=50.0f;
729
730     // make a little off the heading for 1 runway airports...
731     float fudge_lon = fabs(sin(hdg)) * .003f;
732     float fudge_lat = .003f - fudge_lon;
733
734     const FGAirport *a = fgFindAirportID( id);
735     if ( a) {
736         fgSetDouble("/sim/tower/longitude-deg",  a->getLongitude() + fudge_lon);
737         fgSetDouble("/sim/tower/latitude-deg",  a->getLatitude() + fudge_lat);
738         fgSetDouble("/sim/tower/altitude-ft", a->getElevation() + towerheight);
739         return true;
740     } else {
741         return false;
742     }
743
744 }
745
746 struct FGTowerLocationListener : SGPropertyChangeListener {
747     void valueChanged(SGPropertyNode* node) {
748         const double hdg = fgGetDouble( "/orientation/heading-deg", 0);
749         const string id(node->getStringValue());
750         fgSetTowerPosFromAirportID(id, hdg);
751     }
752 };
753
754 void fgInitTowerLocationListener() {
755     fgGetNode("/sim/tower/airport-id",  true)
756         ->addChangeListener( new FGTowerLocationListener(), true );
757 }
758
759 // Set current_options lon/lat given an airport id and heading (degrees)
760 static bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
761     FGRunway r;
762
763     if ( id.length() ) {
764         // set initial position from runway and heading
765
766         SG_LOG( SG_GENERAL, SG_INFO,
767                 "Attempting to set starting position from airport code "
768                 << id << " heading " << tgt_hdg );
769                 
770         if ( ! globals->get_runways()->search( id, (int)tgt_hdg, &r ) ) {
771             SG_LOG( SG_GENERAL, SG_ALERT,
772                     "Failed to find a good runway for " << id << '\n' );
773             return false;
774         }       
775     } else {
776         return false;
777     }
778
779     double lat2, lon2, az2;
780     double heading = r._heading;
781     double azimuth = heading + 180.0;
782     while ( azimuth >= 360.0 ) { azimuth -= 360.0; }
783
784     SG_LOG( SG_GENERAL, SG_INFO,
785             "runway =  " << r._lon << ", " << r._lat
786             << " length = " << r._length * SG_FEET_TO_METER 
787             << " heading = " << azimuth );
788             
789     geo_direct_wgs_84 ( 0, r._lat, r._lon, azimuth, 
790                         r._length * SG_FEET_TO_METER * 0.5 - 5.0,
791                         &lat2, &lon2, &az2 );
792
793     if ( fabs( fgGetDouble("/sim/presets/offset-distance") ) > SG_EPSILON ) {
794         double olat, olon;
795         double odist = fgGetDouble("/sim/presets/offset-distance");
796         odist *= SG_NM_TO_METER;
797         double oaz = azimuth;
798         if ( fabs(fgGetDouble("/sim/presets/offset-azimuth")) > SG_EPSILON ) {
799             oaz = fgGetDouble("/sim/presets/offset-azimuth") + 180;
800             heading = tgt_hdg;
801         }
802         while ( oaz >= 360.0 ) { oaz -= 360.0; }
803         geo_direct_wgs_84 ( 0, lat2, lon2, oaz, odist, &olat, &olon, &az2 );
804         lat2=olat;
805         lon2=olon;
806     }
807
808     // presets
809     fgSetDouble("/sim/presets/longitude-deg",  lon2 );
810     fgSetDouble("/sim/presets/latitude-deg",  lat2 );
811     fgSetDouble("/sim/presets/heading-deg", heading );
812
813     // other code depends on the actual values being set ...
814     fgSetDouble("/position/longitude-deg",  lon2 );
815     fgSetDouble("/position/latitude-deg",  lat2 );
816     fgSetDouble("/orientation/heading-deg", heading );
817
818     SG_LOG( SG_GENERAL, SG_INFO,
819             "Position for " << id << " is ("
820             << lon2 << ", "
821             << lat2 << ") new heading is "
822             << heading );
823             
824     return true;
825 }
826
827
828 // Set current_options lon/lat given an airport id and runway number
829 static bool fgSetPosFromAirportIDandRwy( const string& id, const string& rwy, bool rwy_req ) {
830     FGRunway r;
831
832     if ( id.length() ) {
833         // set initial position from airport and runway number
834
835         SG_LOG( SG_GENERAL, SG_INFO,
836                 "Attempting to set starting position for "
837                 << id << ":" << rwy );
838
839         if ( ! globals->get_runways()->search( id, rwy, &r ) ) {
840             SG_LOG( SG_GENERAL, rwy_req ? SG_ALERT : SG_INFO,
841                     "Failed to find runway " << rwy << 
842                     " at airport " << id << ". Using default runway." );
843             return false;
844         }
845     } else {
846         return false;
847     }
848
849     double lat2, lon2, az2;
850     double heading = r._heading;
851     double azimuth = heading + 180.0;
852     while ( azimuth >= 360.0 ) { azimuth -= 360.0; }
853     
854     SG_LOG( SG_GENERAL, SG_INFO,
855     "runway =  " << r._lon << ", " << r._lat
856     << " length = " << r._length * SG_FEET_TO_METER 
857     << " heading = " << azimuth );
858     
859     geo_direct_wgs_84 ( 0, r._lat, r._lon, 
860     azimuth,
861     r._length * SG_FEET_TO_METER * 0.5 - 5.0,
862     &lat2, &lon2, &az2 );
863     
864     if ( fabs( fgGetDouble("/sim/presets/offset-distance") ) > SG_EPSILON )
865     {
866         double olat, olon;
867         double odist = fgGetDouble("/sim/presets/offset-distance");
868         odist *= SG_NM_TO_METER;
869         double oaz = azimuth;
870         if ( fabs(fgGetDouble("/sim/presets/offset-azimuth")) > SG_EPSILON )
871         {
872             oaz = fgGetDouble("/sim/presets/offset-azimuth") + 180;
873             heading = fgGetDouble("/sim/presets/heading-deg");
874         }
875         while ( oaz >= 360.0 ) { oaz -= 360.0; }
876         geo_direct_wgs_84 ( 0, lat2, lon2, oaz, odist, &olat, &olon, &az2 );
877         lat2=olat;
878         lon2=olon;
879     }
880     
881     // presets
882     fgSetDouble("/sim/presets/longitude-deg",  lon2 );
883     fgSetDouble("/sim/presets/latitude-deg",  lat2 );
884     fgSetDouble("/sim/presets/heading-deg", heading );
885     
886     // other code depends on the actual values being set ...
887     fgSetDouble("/position/longitude-deg",  lon2 );
888     fgSetDouble("/position/latitude-deg",  lat2 );
889     fgSetDouble("/orientation/heading-deg", heading );
890     
891     SG_LOG( SG_GENERAL, SG_INFO,
892     "Position for " << id << " is ("
893     << lon2 << ", "
894     << lat2 << ") new heading is "
895     << heading );
896     
897     return true;
898 }
899
900
901 static void fgSetDistOrAltFromGlideSlope() {
902     // cout << "fgSetDistOrAltFromGlideSlope()" << endl;
903     string apt_id = fgGetString("/sim/presets/airport-id");
904     double gs = fgGetDouble("/sim/presets/glideslope-deg")
905         * SG_DEGREES_TO_RADIANS ;
906     double od = fgGetDouble("/sim/presets/offset-distance");
907     double alt = fgGetDouble("/sim/presets/altitude-ft");
908
909     double apt_elev = 0.0;
910     if ( ! apt_id.empty() ) {
911         apt_elev = fgGetAirportElev( apt_id );
912         if ( apt_elev < -9990.0 ) {
913             apt_elev = 0.0;
914         }
915     } else {
916         apt_elev = 0.0;
917     }
918
919     if( fabs(gs) > 0.01 && fabs(od) > 0.1 && alt < -9990 ) {
920         // set altitude from glideslope and offset-distance
921         od *= SG_NM_TO_METER * SG_METER_TO_FEET;
922         alt = fabs(od*tan(gs)) + apt_elev;
923         fgSetDouble("/sim/presets/altitude-ft", alt);
924         fgSetBool("/sim/presets/onground", false);
925         SG_LOG( SG_GENERAL, SG_INFO, "Calculated altitude as: "
926                 << alt  << " ft" );
927     } else if( fabs(gs) > 0.01 && alt > 0 && fabs(od) < 0.1) {
928         // set offset-distance from glideslope and altitude
929         od  = (alt - apt_elev) / tan(gs);
930         od *= -1*SG_FEET_TO_METER * SG_METER_TO_NM;
931         fgSetDouble("/sim/presets/offset-distance", od);
932         fgSetBool("/sim/presets/onground", false);
933         SG_LOG( SG_GENERAL, SG_INFO, "Calculated offset distance as: " 
934                 << od  << " nm" );
935     } else if( fabs(gs) > 0.01 ) {
936         SG_LOG( SG_GENERAL, SG_ALERT,
937                 "Glideslope given but not altitude or offset-distance." );
938         SG_LOG( SG_GENERAL, SG_ALERT, "Resetting glideslope to zero" );
939         fgSetDouble("/sim/presets/glideslope-deg", 0);
940         fgSetBool("/sim/presets/onground", true);
941     }                              
942 }
943
944
945 // Set current_options lon/lat given an airport id and heading (degrees)
946 static bool fgSetPosFromNAV( const string& id, const double& freq ) {
947     FGNavRecord *nav
948         = globals->get_navlist()->findByIdentAndFreq( id.c_str(), freq );
949
950     // set initial position from runway and heading
951     if ( nav != NULL ) {
952         SG_LOG( SG_GENERAL, SG_INFO, "Attempting to set starting position for "
953                 << id << ":" << freq );
954
955         double lon = nav->get_lon();
956         double lat = nav->get_lat();
957
958         if ( fabs( fgGetDouble("/sim/presets/offset-distance") ) > SG_EPSILON )
959         {
960             double odist = fgGetDouble("/sim/presets/offset-distance")
961                 * SG_NM_TO_METER;
962             double oaz = fabs(fgGetDouble("/sim/presets/offset-azimuth"))
963                 + 180.0;
964             while ( oaz >= 360.0 ) { oaz -= 360.0; }
965             double olat, olon, az2;
966             geo_direct_wgs_84 ( 0, lat, lon, oaz, odist, &olat, &olon, &az2 );
967
968             lat = olat;
969             lon = olon;
970         }
971
972         // presets
973         fgSetDouble("/sim/presets/longitude-deg",  lon );
974         fgSetDouble("/sim/presets/latitude-deg",  lat );
975
976         // other code depends on the actual values being set ...
977         fgSetDouble("/position/longitude-deg",  lon );
978         fgSetDouble("/position/latitude-deg",  lat );
979         fgSetDouble("/orientation/heading-deg", 
980                     fgGetDouble("/sim/presets/heading-deg") );
981
982         SG_LOG( SG_GENERAL, SG_INFO,
983                 "Position for " << id << ":" << freq << " is ("
984                 << lon << ", "<< lat << ")" );
985
986         return true;
987     } else {
988         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to locate NAV = "
989                 << id << ":" << freq );
990         return false;
991     }
992 }
993
994 // Set current_options lon/lat given an aircraft carrier id
995 static bool fgSetPosFromCarrier( const string& carrier, const string& posid ) {
996
997     // set initial position from runway and heading
998     SGGeod geodPos;
999     double heading;
1000     SGVec3d uvw;
1001     if (FGAIManager::getStartPosition(carrier, posid, geodPos, heading, uvw)) {
1002         double lon = geodPos.getLongitudeDeg();
1003         double lat = geodPos.getLatitudeDeg();
1004         double alt = geodPos.getElevationFt();
1005
1006         SG_LOG( SG_GENERAL, SG_INFO, "Attempting to set starting position for "
1007                 << carrier << " at lat = " << lat << ", lon = " << lon
1008                 << ", alt = " << alt << ", heading = " << heading);
1009
1010         fgSetDouble("/sim/presets/longitude-deg",  lon);
1011         fgSetDouble("/sim/presets/latitude-deg",  lat);
1012         fgSetDouble("/sim/presets/altitude-ft", alt);
1013         fgSetDouble("/sim/presets/heading-deg", heading);
1014         fgSetDouble("/position/longitude-deg",  lon);
1015         fgSetDouble("/position/latitude-deg",  lat);
1016         fgSetDouble("/position/altitude-ft", alt);
1017         fgSetDouble("/orientation/heading-deg", heading);
1018
1019         fgSetString("/sim/presets/speed-set", "UVW");
1020         fgSetDouble("/velocities/uBody-fps", uvw(0));
1021         fgSetDouble("/velocities/vBody-fps", uvw(1));
1022         fgSetDouble("/velocities/wBody-fps", uvw(2));
1023         fgSetDouble("/sim/presets/uBody-fps", uvw(0));
1024         fgSetDouble("/sim/presets/vBody-fps", uvw(1));
1025         fgSetDouble("/sim/presets/wBody-fps", uvw(2));
1026
1027         fgSetBool("/sim/presets/onground", true);
1028
1029         return true;
1030     } else {
1031         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to locate aircraft carrier = "
1032                 << carrier );
1033         return false;
1034     }
1035 }
1036  
1037 // Set current_options lon/lat given an airport id and heading (degrees)
1038 static bool fgSetPosFromFix( const string& id ) {
1039     FGFix fix;
1040
1041     // set initial position from runway and heading
1042     if ( globals->get_fixlist()->query( id.c_str(), &fix ) ) {
1043         SG_LOG( SG_GENERAL, SG_INFO, "Attempting to set starting position for "
1044                 << id );
1045
1046         double lon = fix.get_lon();
1047         double lat = fix.get_lat();
1048
1049         if ( fabs( fgGetDouble("/sim/presets/offset-distance") ) > SG_EPSILON )
1050         {
1051             double odist = fgGetDouble("/sim/presets/offset-distance")
1052                 * SG_NM_TO_METER;
1053             double oaz = fabs(fgGetDouble("/sim/presets/offset-azimuth"))
1054                 + 180.0;
1055             while ( oaz >= 360.0 ) { oaz -= 360.0; }
1056             double olat, olon, az2;
1057             geo_direct_wgs_84 ( 0, lat, lon, oaz, odist, &olat, &olon, &az2 );
1058
1059             lat = olat;
1060             lon = olon;
1061         }
1062
1063         // presets
1064         fgSetDouble("/sim/presets/longitude-deg",  lon );
1065         fgSetDouble("/sim/presets/latitude-deg",  lat );
1066
1067         // other code depends on the actual values being set ...
1068         fgSetDouble("/position/longitude-deg",  lon );
1069         fgSetDouble("/position/latitude-deg",  lat );
1070         fgSetDouble("/orientation/heading-deg", 
1071                     fgGetDouble("/sim/presets/heading-deg") );
1072
1073         SG_LOG( SG_GENERAL, SG_INFO,
1074                 "Position for " << id << " is ("
1075                 << lon << ", "<< lat << ")" );
1076
1077         return true;
1078     } else {
1079         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to locate NAV = "
1080                 << id );
1081         return false;
1082     }
1083 }
1084
1085
1086 /**
1087  * Initialize vor/ndb/ils/fix list management and query systems (as
1088  * well as simple airport db list)
1089  */
1090 bool
1091 fgInitNav ()
1092 {
1093     SG_LOG(SG_GENERAL, SG_INFO, "Loading Airport Database ...");
1094
1095     SGPath aptdb( globals->get_fg_root() );
1096     aptdb.append( "Airports/apt.dat" );
1097
1098     SGPath p_metar( globals->get_fg_root() );
1099     p_metar.append( "Airports/metar.dat" );
1100
1101     FGAirportList *airports = new FGAirportList();
1102     globals->set_airports( airports );
1103     FGRunwayList *runways = new FGRunwayList();
1104     globals->set_runways( runways );
1105
1106     fgAirportDBLoad( airports, runways, aptdb.str(), p_metar.str() );
1107
1108     FGNavList *navlist = new FGNavList;
1109     FGNavList *loclist = new FGNavList;
1110     FGNavList *gslist = new FGNavList;
1111     FGNavList *dmelist = new FGNavList;
1112     FGNavList *mkrlist = new FGNavList;
1113     FGNavList *tacanlist = new FGNavList;
1114     FGNavList *carrierlist = new FGNavList;
1115     FGTACANList *channellist = new FGTACANList;
1116
1117     globals->set_navlist( navlist );
1118     globals->set_loclist( loclist );
1119     globals->set_gslist( gslist );
1120     globals->set_dmelist( dmelist );
1121     globals->set_mkrlist( mkrlist );
1122     globals->set_tacanlist( tacanlist );
1123     globals->set_carrierlist( carrierlist );
1124     globals->set_channellist( channellist );
1125
1126     if ( !fgNavDBInit(airports, navlist, loclist, gslist, dmelist, mkrlist, tacanlist, carrierlist, channellist) ) {
1127         SG_LOG( SG_GENERAL, SG_ALERT,
1128                 "Problems loading one or more navigational database" );
1129     }
1130
1131     if ( fgGetBool("/sim/navdb/localizers/auto-align", true) ) {
1132         // align all the localizers with their corresponding runways
1133         // since data sources are good for cockpit navigation
1134         // purposes, but not always to the error tolerances needed to
1135         // exactly place these items.
1136         double threshold
1137             = fgGetDouble( "/sim/navdb/localizers/auto-align-threshold-deg",
1138                            5.0 );
1139         fgNavDBAlignLOCwithRunway( runways, loclist, threshold );
1140     }
1141
1142     SG_LOG(SG_GENERAL, SG_INFO, "  Fixes");
1143     SGPath p_fix( globals->get_fg_root() );
1144     p_fix.append( "Navaids/fix.dat" );
1145     FGFixList *fixlist = new FGFixList;
1146     fixlist->init( p_fix );
1147     globals->set_fixlist( fixlist );
1148
1149     SG_LOG(SG_GENERAL, SG_INFO, "  Airways");
1150     SGPath p_awy( globals->get_fg_root() );
1151     p_awy.append( "Navaids/awy.dat" );
1152     FGAirwayNetwork *awyNet = new FGAirwayNetwork;
1153     //cerr << "Loading Airways" << endl;
1154     awyNet->load (p_awy );
1155     awyNet->init();
1156     //cerr << "initializing airways" << endl;
1157     globals->set_airwaynet( awyNet );
1158
1159     return true;
1160 }
1161
1162
1163 // Set the initial position based on presets (or defaults)
1164 bool fgInitPosition() {
1165     // cout << "fgInitPosition()" << endl;
1166     double gs = fgGetDouble("/sim/presets/glideslope-deg")
1167         * SG_DEGREES_TO_RADIANS ;
1168     double od = fgGetDouble("/sim/presets/offset-distance");
1169     double alt = fgGetDouble("/sim/presets/altitude-ft");
1170
1171     bool set_pos = false;
1172
1173     // If glideslope is specified, then calculate offset-distance or
1174     // altitude relative to glide slope if either of those was not
1175     // specified.
1176     if ( fabs( gs ) > 0.01 ) {
1177         fgSetDistOrAltFromGlideSlope();
1178     }
1179
1180
1181     // If we have an explicit, in-range lon/lat, don't change it, just use it.
1182     // If not, check for an airport-id and use that.
1183     // If not, default to the middle of the KSFO field.
1184     // The default values for lon/lat are deliberately out of range
1185     // so that the airport-id can take effect; valid lon/lat will
1186     // override airport-id, however.
1187     double lon_deg = fgGetDouble("/sim/presets/longitude-deg");
1188     double lat_deg = fgGetDouble("/sim/presets/latitude-deg");
1189     if ( lon_deg >= -180.0 && lon_deg <= 180.0
1190          && lat_deg >= -90.0 && lat_deg <= 90.0 )
1191     {
1192         set_pos = true;
1193     }
1194
1195     string apt = fgGetString("/sim/presets/airport-id");
1196     string rwy_no = fgGetString("/sim/presets/runway");
1197     bool rwy_req = fgGetBool("/sim/presets/runway-requested");
1198     double hdg = fgGetDouble("/sim/presets/heading-deg");
1199     string vor = fgGetString("/sim/presets/vor-id");
1200     double vor_freq = fgGetDouble("/sim/presets/vor-freq");
1201     string ndb = fgGetString("/sim/presets/ndb-id");
1202     double ndb_freq = fgGetDouble("/sim/presets/ndb-freq");
1203     string carrier = fgGetString("/sim/presets/carrier");
1204     string parkpos = fgGetString("/sim/presets/parkpos");
1205     string fix = fgGetString("/sim/presets/fix");
1206
1207     fgSetDouble( "/orientation/heading-deg", hdg );
1208
1209     if ( !set_pos && !apt.empty() && !rwy_no.empty() ) {
1210         // An airport + runway is requested
1211         if ( fgSetPosFromAirportIDandRwy( apt, rwy_no, rwy_req ) ) {
1212             // set tower position (a little off the heading for single
1213             // runway airports)
1214             fgSetString("/sim/tower/airport-id",  apt.c_str());
1215             set_pos = true;
1216         }
1217     }
1218
1219     if ( !set_pos && !apt.empty() ) {
1220         // An airport is requested (find runway closest to hdg)
1221         if ( fgSetPosFromAirportIDandHdg( apt, hdg ) ) {
1222             // set tower position (a little off the heading for single
1223             // runway airports)
1224             fgSetString("/sim/tower/airport-id",  apt.c_str());
1225             set_pos = true;
1226         }
1227     }
1228
1229     if ( !set_pos && !vor.empty() ) {
1230         // a VOR is requested
1231         if ( fgSetPosFromNAV( vor, vor_freq ) ) {
1232             set_pos = true;
1233         }
1234     }
1235
1236     if ( !set_pos && !ndb.empty() ) {
1237         // an NDB is requested
1238         if ( fgSetPosFromNAV( ndb, ndb_freq ) ) {
1239             set_pos = true;
1240         }
1241     }
1242
1243     if ( !set_pos && !carrier.empty() ) {
1244         // an aircraft carrier is requested
1245         if ( fgSetPosFromCarrier( carrier, parkpos ) ) {
1246             set_pos = true;
1247         }
1248     }
1249
1250     if ( !set_pos && !fix.empty() ) {
1251         // a Fix is requested
1252         if ( fgSetPosFromFix( fix ) ) {
1253             set_pos = true;
1254         }
1255     }
1256
1257     if ( !set_pos ) {
1258         // No lon/lat specified, no airport specified, default to
1259         // middle of KSFO field.
1260         fgSetDouble("/sim/presets/longitude-deg", -122.374843);
1261         fgSetDouble("/sim/presets/latitude-deg", 37.619002);
1262     }
1263
1264     fgSetDouble( "/position/longitude-deg",
1265                  fgGetDouble("/sim/presets/longitude-deg") );
1266     fgSetDouble( "/position/latitude-deg",
1267                  fgGetDouble("/sim/presets/latitude-deg") );
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 #if defined(FX) && defined(XMESA)
1285     char *mesa_win_state;
1286 #endif
1287
1288     SG_LOG( SG_GENERAL, SG_INFO, "General Initialization" );
1289     SG_LOG( SG_GENERAL, SG_INFO, "======= ==============" );
1290
1291     root = globals->get_fg_root();
1292     if ( ! root.length() ) {
1293         // No root path set? Then bail ...
1294         SG_LOG( SG_GENERAL, SG_ALERT,
1295                 "Cannot continue without a path to the base package "
1296                 << "being defined." );
1297         exit(-1);
1298     }
1299     SG_LOG( SG_GENERAL, SG_INFO, "FG_ROOT = " << '"' << root << '"' << endl );
1300
1301 #if defined(FX) && defined(XMESA)
1302     // initialize full screen flag
1303     globals->set_fullscreen(false);
1304     if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
1305         // Test for the MESA_GLX_FX env variable
1306         if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
1307             // test if we are fullscreen mesa/glide
1308             if ( (mesa_win_state[0] == 'f') ||
1309                  (mesa_win_state[0] == 'F') ) {
1310                 globals->set_fullscreen(true);
1311             }
1312         }
1313     }
1314 #endif
1315
1316     char buf[256], *cwd = getcwd(buf, 256);
1317     fgSetString("/sim/fg-current", cwd ? cwd : "");
1318     return true;
1319 }
1320
1321
1322 // Initialize the flight model subsystem.  This just creates the
1323 // object.  The actual fdm initialization is delayed until we get a
1324 // proper scenery elevation hit.  This is checked for in main.cxx
1325
1326 void fgInitFDM() {
1327
1328     if ( cur_fdm_state ) {
1329         delete cur_fdm_state;
1330         cur_fdm_state = 0;
1331     }
1332
1333     double dt = 1.0 / fgGetInt("/sim/model-hz");
1334     string model = fgGetString("/sim/flight-model");
1335
1336     if ( model == "larcsim" ) {
1337         cur_fdm_state = new FGLaRCsim( dt );
1338     } else if ( model == "jsb" ) {
1339         cur_fdm_state = new FGJSBsim( dt );
1340 #if ENABLE_SP_FDM
1341     } else if ( model == "ada" ) {
1342         cur_fdm_state = new FGADA( dt );
1343     } else if ( model == "acms" ) {
1344         cur_fdm_state = new FGACMS( dt );
1345 #endif
1346     } else if ( model == "balloon" ) {
1347         cur_fdm_state = new FGBalloonSim( dt );
1348     } else if ( model == "magic" ) {
1349         cur_fdm_state = new FGMagicCarpet( dt );
1350     } else if ( model == "ufo" ) {
1351         cur_fdm_state = new FGUFO( dt );
1352     } else if ( model == "external" ) {
1353         // external is a synonym for "--fdm=null" and is
1354         // maintained here for backwards compatibility
1355         cur_fdm_state = new FGNullFDM( dt );
1356     } else if ( model.find("network") == 0 ) {
1357         string host = "localhost";
1358         int port1 = 5501;
1359         int port2 = 5502;
1360         int port3 = 5503;
1361         string net_options = model.substr(8);
1362         string::size_type begin, end;
1363         begin = 0;
1364         // host
1365         end = net_options.find( ",", begin );
1366         if ( end != string::npos ) {
1367             host = net_options.substr(begin, end - begin);
1368             begin = end + 1;
1369         }
1370         // port1
1371         end = net_options.find( ",", begin );
1372         if ( end != string::npos ) {
1373             port1 = atoi( net_options.substr(begin, end - begin).c_str() );
1374             begin = end + 1;
1375         }
1376         // port2
1377         end = net_options.find( ",", begin );
1378         if ( end != string::npos ) {
1379             port2 = atoi( net_options.substr(begin, end - begin).c_str() );
1380             begin = end + 1;
1381         }
1382         // port3
1383         end = net_options.find( ",", begin );
1384         if ( end != string::npos ) {
1385             port3 = atoi( net_options.substr(begin, end - begin).c_str() );
1386             begin = end + 1;
1387         }
1388         cur_fdm_state = new FGExternalNet( dt, host, port1, port2, port3 );
1389     } else if ( model.find("pipe") == 0 ) {
1390         // /* old */ string pipe_path = model.substr(5);
1391         // /* old */ cur_fdm_state = new FGExternalPipe( dt, pipe_path );
1392         string pipe_path = "";
1393         string pipe_protocol = "";
1394         string pipe_options = model.substr(5);
1395         string::size_type begin, end;
1396         begin = 0;
1397         // pipe file path
1398         end = pipe_options.find( ",", begin );
1399         if ( end != string::npos ) {
1400             pipe_path = pipe_options.substr(begin, end - begin);
1401             begin = end + 1;
1402         }
1403         // protocol (last option)
1404         pipe_protocol = pipe_options.substr(begin);
1405         cur_fdm_state = new FGExternalPipe( dt, pipe_path, pipe_protocol );
1406     } else if ( model == "null" ) {
1407         cur_fdm_state = new FGNullFDM( dt );
1408     } else if ( model == "yasim" ) {
1409         cur_fdm_state = new YASim( dt );
1410     } else {
1411         throw sg_throwable(string("Unrecognized flight model '") + model
1412                + "', cannot init flight dynamics model.");
1413     }
1414 }
1415
1416 // Initialize view parameters
1417 void fgInitView() {
1418   // force update of model so that viewer can get some data...
1419   globals->get_aircraft_model()->update(0);
1420   // run update for current view so that data is current...
1421   globals->get_viewmgr()->update(0);
1422 }
1423
1424
1425 SGTime *fgInitTime() {
1426     // Initialize time
1427     static const SGPropertyNode *longitude
1428         = fgGetNode("/position/longitude-deg");
1429     static const SGPropertyNode *latitude
1430         = fgGetNode("/position/latitude-deg");
1431     static const SGPropertyNode *cur_time_override
1432         = fgGetNode("/sim/time/cur-time-override", true);
1433
1434     SGPath zone( globals->get_fg_root() );
1435     zone.append( "Timezone" );
1436     SGTime *t = new SGTime( longitude->getDoubleValue()
1437                               * SGD_DEGREES_TO_RADIANS,
1438                             latitude->getDoubleValue()
1439                               * SGD_DEGREES_TO_RADIANS,
1440                             zone.str(),
1441                             cur_time_override->getLongValue() );
1442
1443     globals->set_warp_delta( 0 );
1444
1445     t->update( 0.0, 0.0,
1446                cur_time_override->getLongValue(),
1447                globals->get_warp() );
1448
1449     return t;
1450 }
1451
1452
1453 // set up a time offset (aka warp) if one is specified
1454 void fgInitTimeOffset() {
1455     static const SGPropertyNode *longitude
1456         = fgGetNode("/position/longitude-deg");
1457     static const SGPropertyNode *latitude
1458         = fgGetNode("/position/latitude-deg");
1459     static const SGPropertyNode *cur_time_override
1460         = fgGetNode("/sim/time/cur-time-override", true);
1461
1462     // Handle potential user specified time offsets
1463     int orig_warp = globals->get_warp();
1464     SGTime *t = globals->get_time_params();
1465     time_t cur_time = t->get_cur_time();
1466     time_t currGMT = sgTimeGetGMT( gmtime(&cur_time) );
1467     time_t systemLocalTime = sgTimeGetGMT( localtime(&cur_time) );
1468     time_t aircraftLocalTime = 
1469         sgTimeGetGMT( fgLocaltime(&cur_time, t->get_zonename() ) );
1470     
1471     // Okay, we now have several possible scenarios
1472     int offset = fgGetInt("/sim/startup/time-offset");
1473     string offset_type = fgGetString("/sim/startup/time-offset-type");
1474
1475     int warp = 0;
1476     if ( offset_type == "real" ) {
1477         warp = 0;
1478     } else if ( offset_type == "dawn" ) {
1479         warp = fgTimeSecondsUntilSunAngle( cur_time,
1480                                            longitude->getDoubleValue()
1481                                              * SGD_DEGREES_TO_RADIANS,
1482                                            latitude->getDoubleValue()
1483                                              * SGD_DEGREES_TO_RADIANS,
1484                                            90.0, true ); 
1485     } else if ( offset_type == "morning" ) {
1486         warp = fgTimeSecondsUntilSunAngle( cur_time,
1487                                            longitude->getDoubleValue()
1488                                              * SGD_DEGREES_TO_RADIANS,
1489                                            latitude->getDoubleValue()
1490                                              * SGD_DEGREES_TO_RADIANS,
1491                                            75.0, true ); 
1492     } else if ( offset_type == "noon" ) {
1493         warp = fgTimeSecondsUntilSunAngle( cur_time,
1494                                            longitude->getDoubleValue()
1495                                              * SGD_DEGREES_TO_RADIANS,
1496                                            latitude->getDoubleValue()
1497                                              * SGD_DEGREES_TO_RADIANS,
1498                                            0.0, true ); 
1499     } else if ( offset_type == "afternoon" ) {
1500         warp = fgTimeSecondsUntilSunAngle( cur_time,
1501                                            longitude->getDoubleValue()
1502                                              * SGD_DEGREES_TO_RADIANS,
1503                                            latitude->getDoubleValue()
1504                                              * SGD_DEGREES_TO_RADIANS,
1505                                            60.0, false ); 
1506      } else if ( offset_type == "dusk" ) {
1507         warp = fgTimeSecondsUntilSunAngle( cur_time,
1508                                            longitude->getDoubleValue()
1509                                              * SGD_DEGREES_TO_RADIANS,
1510                                            latitude->getDoubleValue()
1511                                              * SGD_DEGREES_TO_RADIANS,
1512                                            90.0, false ); 
1513      } else if ( offset_type == "evening" ) {
1514         warp = fgTimeSecondsUntilSunAngle( cur_time,
1515                                            longitude->getDoubleValue()
1516                                              * SGD_DEGREES_TO_RADIANS,
1517                                            latitude->getDoubleValue()
1518                                              * SGD_DEGREES_TO_RADIANS,
1519                                            100.0, false ); 
1520     } else if ( offset_type == "midnight" ) {
1521         warp = fgTimeSecondsUntilSunAngle( cur_time,
1522                                            longitude->getDoubleValue()
1523                                              * SGD_DEGREES_TO_RADIANS,
1524                                            latitude->getDoubleValue()
1525                                              * SGD_DEGREES_TO_RADIANS,
1526                                            180.0, false ); 
1527     } else if ( offset_type == "system-offset" ) {
1528         warp = offset;
1529         orig_warp = 0;
1530     } else if ( offset_type == "gmt-offset" ) {
1531         warp = offset - (currGMT - systemLocalTime);
1532         orig_warp = 0;
1533     } else if ( offset_type == "latitude-offset" ) {
1534         warp = offset - (aircraftLocalTime - systemLocalTime);
1535         orig_warp = 0;
1536     } else if ( offset_type == "system" ) {
1537       warp = offset - (systemLocalTime - currGMT) - cur_time;
1538     } else if ( offset_type == "gmt" ) {
1539         warp = offset - cur_time;
1540     } else if ( offset_type == "latitude" ) {
1541         warp = offset - (aircraftLocalTime - currGMT)- cur_time; 
1542     } else {
1543         SG_LOG( SG_GENERAL, SG_ALERT,
1544                 "FG_TIME::Unsupported offset type " << offset_type );
1545         exit( -1 );
1546     }
1547     globals->set_warp( orig_warp + warp );
1548     t->update( longitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS,
1549                latitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS,
1550                cur_time_override->getLongValue(),
1551                globals->get_warp() );
1552
1553     SG_LOG( SG_GENERAL, SG_INFO, "After fgInitTimeOffset(): warp = " 
1554             << globals->get_warp() );
1555 }
1556
1557
1558 // This is the top level init routine which calls all the other
1559 // initialization routines.  If you are adding a subsystem to flight
1560 // gear, its initialization call should located in this routine.
1561 // Returns non-zero if a problem encountered.
1562 bool fgInitSubsystems() {
1563     // static const SGPropertyNode *longitude
1564     //     = fgGetNode("/sim/presets/longitude-deg");
1565     // static const SGPropertyNode *latitude
1566     //     = fgGetNode("/sim/presets/latitude-deg");
1567     // static const SGPropertyNode *altitude
1568     //     = fgGetNode("/sim/presets/altitude-ft");
1569     SG_LOG( SG_GENERAL, SG_INFO, "Initialize Subsystems");
1570     SG_LOG( SG_GENERAL, SG_INFO, "========== ==========");
1571
1572     ////////////////////////////////////////////////////////////////////
1573     // Initialize the event manager subsystem.
1574     ////////////////////////////////////////////////////////////////////
1575
1576     globals->get_event_mgr()->init();
1577     globals->get_event_mgr()->setRealtimeProperty(fgGetNode("/sim/time/delta-realtime-sec", true));
1578
1579     ////////////////////////////////////////////////////////////////////
1580     // Initialize the property interpolator subsystem. Put into the INIT
1581     // group because the "nasal" subsystem may need it at GENERAL take-down.
1582     ////////////////////////////////////////////////////////////////////
1583     globals->add_subsystem("interpolator", new SGInterpolator, SGSubsystemMgr::INIT);
1584
1585
1586     ////////////////////////////////////////////////////////////////////
1587     // Add the FlightGear property utilities.
1588     ////////////////////////////////////////////////////////////////////
1589     globals->add_subsystem("properties", new FGProperties);
1590
1591     ////////////////////////////////////////////////////////////////////
1592     // Initialize the material property subsystem.
1593     ////////////////////////////////////////////////////////////////////
1594
1595     SGPath mpath( globals->get_fg_root() );
1596     mpath.append( "materials.xml" );
1597     string season = fgGetString("/sim/startup/season", "summer");
1598     if ( ! globals->get_matlib()->load(globals->get_fg_root(), mpath.str(), season.c_str()) ) {
1599         SG_LOG( SG_GENERAL, SG_ALERT, "Error loading material lib!" );
1600         exit(-1);
1601     }
1602
1603
1604     ////////////////////////////////////////////////////////////////////
1605     // Initialize the scenery management subsystem.
1606     ////////////////////////////////////////////////////////////////////
1607
1608     if ( globals->get_tile_mgr()->init() ) {
1609         // Load the local scenery data
1610         double visibility_meters = fgGetDouble("/environment/visibility-m");
1611                 
1612         globals->get_tile_mgr()->update( visibility_meters );
1613     } else {
1614         SG_LOG( SG_GENERAL, SG_ALERT, "Error in Tile Manager initialization!" );
1615         exit(-1);
1616     }
1617
1618     // cause refresh of viewer scenery timestamps every 15 seconds...
1619     globals->get_event_mgr()->addTask( "FGTileMgr::refresh_view_timestamps()",
1620                                        globals->get_tile_mgr(),
1621                                        &FGTileMgr::refresh_view_timestamps,
1622                                        15 );
1623
1624
1625     ////////////////////////////////////////////////////////////////////
1626     // Initialize the flight model subsystem.
1627     ////////////////////////////////////////////////////////////////////
1628
1629     fgInitFDM();
1630         
1631     // allocates structures so must happen before any of the flight
1632     // model or control parameters are set
1633     fgAircraftInit();   // In the future this might not be the case.
1634
1635     ////////////////////////////////////////////////////////////////////
1636     // Initialize the aircraft systems and instrumentation (before the
1637     // autopilot.)
1638     ////////////////////////////////////////////////////////////////////
1639
1640     globals->add_subsystem("instrumentation", new FGInstrumentMgr);
1641     globals->add_subsystem("systems", new FGSystemMgr);
1642
1643     ////////////////////////////////////////////////////////////////////
1644     // Initialize the XML Autopilot subsystem.
1645     ////////////////////////////////////////////////////////////////////
1646
1647     globals->add_subsystem( "xml-autopilot", new FGXMLAutopilot );
1648     globals->add_subsystem( "route-manager", new FGRouteMgr );
1649
1650   
1651     ////////////////////////////////////////////////////////////////////
1652     // Initialize the view manager subsystem.
1653     ////////////////////////////////////////////////////////////////////
1654
1655     fgInitView();
1656
1657     ////////////////////////////////////////////////////////////////////
1658     // Create and register the logger.
1659     ////////////////////////////////////////////////////////////////////
1660     
1661     globals->add_subsystem("logger", new FGLogger);
1662
1663     ////////////////////////////////////////////////////////////////////
1664     // Create and register the XML GUI.
1665     ////////////////////////////////////////////////////////////////////
1666
1667     globals->add_subsystem("gui", new NewGUI, SGSubsystemMgr::INIT);
1668
1669
1670     ////////////////////////////////////////////////////////////////////
1671     // Initialize the local time subsystem.
1672     ////////////////////////////////////////////////////////////////////
1673
1674     // update the current timezone each 30 minutes
1675     globals->get_event_mgr()->addTask( "fgUpdateLocalTime()",
1676                                        &fgUpdateLocalTime, 30*60 );
1677     fgInitTimeOffset();         // the environment subsystem needs this
1678
1679
1680     ////////////////////////////////////////////////////////////////////
1681     // Initialize the weather subsystem.
1682     ////////////////////////////////////////////////////////////////////
1683
1684     // Initialize the weather modeling subsystem
1685     globals->add_subsystem("environment", new FGEnvironmentMgr);
1686
1687
1688     ////////////////////////////////////////////////////////////////////
1689     // Initialize the lighting subsystem.
1690     ////////////////////////////////////////////////////////////////////
1691
1692     globals->add_subsystem("lighting", new FGLight);
1693
1694     //////////////////////////////////////////////////////////////////////
1695     // Initialize the 2D cloud subsystem.
1696     ////////////////////////////////////////////////////////////////////
1697     fgGetBool("/sim/rendering/bump-mapping", false);
1698
1699 #ifdef ENABLE_AUDIO_SUPPORT
1700     ////////////////////////////////////////////////////////////////////
1701     // Initialize the sound subsystem.
1702     ////////////////////////////////////////////////////////////////////
1703
1704     init_volume = fgGetFloat("/sim/sound/volume");
1705     fgSetFloat("/sim/sound/volume", 0.0f);
1706     globals->set_soundmgr(new SGSoundMgr);
1707     globals->get_soundmgr()->init();
1708     globals->get_soundmgr()->bind();
1709
1710
1711     ////////////////////////////////////////////////////////////////////
1712     // Initialize the sound-effects subsystem.
1713     ////////////////////////////////////////////////////////////////////
1714
1715     globals->add_subsystem("fx", new FGFX);
1716     globals->add_subsystem("voice", new FGVoiceMgr);
1717 #endif
1718
1719     ////////////////////////////////////////////////////////////////////
1720     // Initialise the ATC Manager 
1721     ////////////////////////////////////////////////////////////////////
1722
1723     SG_LOG(SG_GENERAL, SG_INFO, "  ATC Manager");
1724     globals->set_ATC_mgr(new FGATCMgr);
1725     globals->get_ATC_mgr()->init(); 
1726     
1727     ////////////////////////////////////////////////////////////////////
1728     // Initialise the AI Manager 
1729     ////////////////////////////////////////////////////////////////////
1730
1731     SG_LOG(SG_GENERAL, SG_INFO, "  AI Manager");
1732     globals->set_AI_mgr(new FGAIMgr);
1733     globals->get_AI_mgr()->init();
1734
1735     ////////////////////////////////////////////////////////////////////
1736     // Initialise the AI Model Manager
1737     ////////////////////////////////////////////////////////////////////
1738     SG_LOG(SG_GENERAL, SG_INFO, "  AI Model Manager");
1739     globals->add_subsystem("ai_model", new FGAIManager);
1740     globals->add_subsystem("submodel_mgr", new FGSubmodelMgr);
1741
1742
1743     // It's probably a good idea to initialize the top level traffic manager
1744     // After the AI and ATC systems have been initialized properly.
1745     // AI Traffic manager
1746     globals->add_subsystem("Traffic Manager", new FGTrafficManager);
1747
1748
1749     ////////////////////////////////////////////////////////////////////
1750     // Initialize the cockpit subsystem
1751     ////////////////////////////////////////////////////////////////////
1752     if( fgCockpitInit( &current_aircraft )) {
1753         // Cockpit initialized ok.
1754     } else {
1755         SG_LOG( SG_GENERAL, SG_ALERT, "Error in Cockpit initialization!" );
1756         exit(-1);
1757     }
1758
1759
1760     ////////////////////////////////////////////////////////////////////
1761     // Initialize I/O subsystem.
1762     ////////////////////////////////////////////////////////////////////
1763
1764     globals->get_io()->init();
1765     globals->get_io()->bind();
1766
1767
1768     ////////////////////////////////////////////////////////////////////
1769     // Add a new 2D panel.
1770     ////////////////////////////////////////////////////////////////////
1771
1772     string panel_path = fgGetString("/sim/panel/path",
1773                                     "Panels/Default/default.xml");
1774
1775     globals->set_current_panel( fgReadPanel(panel_path) );
1776     if (globals->get_current_panel() == 0) {
1777         SG_LOG( SG_INPUT, SG_ALERT,
1778                 "Error reading new panel from " << panel_path );
1779     } else {
1780         SG_LOG( SG_INPUT, SG_INFO, "Loaded new panel from " << panel_path );
1781         globals->get_current_panel()->init();
1782         globals->get_current_panel()->bind();
1783     }
1784
1785
1786     ////////////////////////////////////////////////////////////////////
1787     // Initialize the controls subsystem.
1788     ////////////////////////////////////////////////////////////////////
1789
1790     globals->get_controls()->init();
1791     globals->get_controls()->bind();
1792
1793
1794     ////////////////////////////////////////////////////////////////////
1795     // Initialize the input subsystem.
1796     ////////////////////////////////////////////////////////////////////
1797
1798     globals->add_subsystem("input", new FGInput);
1799
1800
1801     ////////////////////////////////////////////////////////////////////
1802     // Initialize the replay subsystem
1803     ////////////////////////////////////////////////////////////////////
1804     globals->add_subsystem("replay", new FGReplay);
1805
1806     ////////////////////////////////////////////////////////////////////
1807     // Bind and initialize subsystems.
1808     ////////////////////////////////////////////////////////////////////
1809
1810     globals->get_subsystem_mgr()->bind();
1811     globals->get_subsystem_mgr()->init();
1812
1813     ////////////////////////////////////////////////////////////////////
1814     // Initialize multiplayer subsystem
1815     ////////////////////////////////////////////////////////////////////
1816
1817     globals->set_multiplayer_mgr(new FGMultiplayMgr);
1818     globals->get_multiplayer_mgr()->init();
1819
1820     ////////////////////////////////////////////////////////////////////////
1821     // Initialize the Nasal interpreter.
1822     // Do this last, so that the loaded scripts see initialized state
1823     ////////////////////////////////////////////////////////////////////////
1824     FGNasalSys* nasal = new FGNasalSys();
1825     globals->add_subsystem("nasal", nasal, SGSubsystemMgr::INIT);
1826     nasal->init();
1827
1828     // initialize methods that depend on other subsystems.
1829     globals->get_subsystem_mgr()->postinit();
1830
1831     ////////////////////////////////////////////////////////////////////////
1832     // End of subsystem initialization.
1833     ////////////////////////////////////////////////////////////////////
1834
1835     SG_LOG( SG_GENERAL, SG_INFO, endl);
1836
1837                                 // Save the initial state for future
1838                                 // reference.
1839     globals->saveInitialState();
1840     
1841     return true;
1842 }
1843
1844
1845 void fgReInitSubsystems()
1846 {
1847     // static const SGPropertyNode *longitude
1848     //     = fgGetNode("/sim/presets/longitude-deg");
1849     // static const SGPropertyNode *latitude
1850     //     = fgGetNode("/sim/presets/latitude-deg");
1851     static const SGPropertyNode *altitude
1852         = fgGetNode("/sim/presets/altitude-ft");
1853     static const SGPropertyNode *master_freeze
1854         = fgGetNode("/sim/freeze/master");
1855
1856     SG_LOG( SG_GENERAL, SG_INFO,
1857             "fgReInitSubsystems(): /position/altitude = "
1858             << altitude->getDoubleValue() );
1859
1860     bool freeze = master_freeze->getBoolValue();
1861     if ( !freeze ) {
1862         fgSetBool("/sim/freeze/master", true);
1863     }
1864     fgSetBool("/sim/crashed", false);
1865
1866     // Force reupdating the positions of the ai 3d models. They are used for
1867     // initializing ground level for the FDM.
1868     globals->get_subsystem("ai_model")->reinit();
1869
1870     // Initialize the FDM
1871     fgInitFDM();
1872     
1873     // allocates structures so must happen before any of the flight
1874     // model or control parameters are set
1875     fgAircraftInit();   // In the future this might not be the case.
1876
1877     // reload offsets from config defaults
1878     globals->get_viewmgr()->reinit();
1879
1880     fgInitView();
1881
1882     globals->get_controls()->reset_all();
1883
1884     fgUpdateLocalTime();
1885
1886     // re-init to proper time of day setting
1887     fgInitTimeOffset();
1888
1889     if ( !freeze ) {
1890         fgSetBool("/sim/freeze/master", false);
1891     }
1892     fgSetBool("/sim/sceneryloaded",false);
1893 }
1894