]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_init.cxx
Change cout and cerr in SG_LOG() where appropriate, otherwise comment it out
[flightgear.git] / src / Main / fg_init.cxx
1 // fg_init.cxx -- Flight Gear top level initialization routines
2 //
3 // Written by Curtis Olson, started August 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 //
22 // $Id$
23
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 // For BC 5.01 this must be included before OpenGL includes.
30 #ifdef SG_MATH_EXCEPTION_CLASH
31 #  include <math.h>
32 #endif
33
34 #ifdef HAVE_WINDOWS_H
35 #  include <windows.h>
36 #endif
37
38 #include GLUT_H
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>             // strcmp()
43
44
45 #if defined( unix ) || defined( __CYGWIN__ )
46 #  include <unistd.h>           // for gethostname()
47 #endif
48
49 // work around a stdc++ lib bug in some versions of linux, but doesn't
50 // seem to hurt to have this here for all versions of Linux.
51 #ifdef linux
52 #  define _G_NO_EXTERN_TEMPLATES
53 #endif
54
55 #include <simgear/compiler.h>
56 #include <simgear/misc/exception.hxx>
57
58 #include STL_STRING
59
60 #include <simgear/constants.h>
61 #include <simgear/debug/logstream.hxx>
62 #include <simgear/math/point3d.hxx>
63 #include <simgear/math/polar3d.hxx>
64 #include <simgear/math/sg_geodesy.hxx>
65 #include <simgear/misc/sg_path.hxx>
66 #ifdef FG_USE_CLOUDS_3D
67 #  include <simgear/sky/clouds3d/SkySceneLoader.hpp>
68 #  include <simgear/sky/clouds3d/SkyUtil.hpp>
69 #endif
70 #include <simgear/timing/sg_time.hxx>
71 #include <simgear/timing/lowleveltime.h>
72
73 #include <Aircraft/aircraft.hxx>
74 #include <FDM/UIUCModel/uiuc_aircraftdir.h>
75 #include <Airports/runways.hxx>
76 #include <Airports/simple.hxx>
77 #include <ATC/ATCdisplay.hxx>
78 #include <ATC/ATCmgr.hxx>
79 #include <ATC/AIMgr.hxx>
80 #include <Autopilot/auto_gui.hxx>
81 #include <Autopilot/newauto.hxx>
82 #include <Cockpit/cockpit.hxx>
83 #include <Cockpit/radiostack.hxx>
84 #include <Cockpit/panel.hxx>
85 #include <Cockpit/panel_io.hxx>
86 #include <FDM/ADA.hxx>
87 #include <FDM/Balloon.h>
88 #include <FDM/ExternalNet/ExternalNet.hxx>
89 #include <FDM/ExternalPipe/ExternalPipe.hxx>
90 #include <FDM/JSBSim/JSBSim.hxx>
91 #include <FDM/LaRCsim.hxx>
92 #include <FDM/MagicCarpet.hxx>
93 #include <FDM/UFO.hxx>
94 #include <FDM/NullFDM.hxx>
95 #include <FDM/YASim/YASim.hxx>
96 #include <GUI/new_gui.hxx>
97 #include <Include/general.hxx>
98 #include <Input/input.hxx>
99 #include <Instrumentation/instrument_mgr.hxx>
100 // #include <Joystick/joystick.hxx>
101 #include <Objects/matlib.hxx>
102 #include <Model/acmodel.hxx>
103 #include <Navaids/fixlist.hxx>
104 #include <Navaids/ilslist.hxx>
105 #include <Navaids/mkrbeacons.hxx>
106 #include <Navaids/navlist.hxx>
107 #include <Scenery/scenery.hxx>
108 #include <Scenery/tilemgr.hxx>
109 #if defined(HAVE_PLIB_PSL)
110 #include <Scripting/scriptmgr.hxx>
111 #endif
112 #include <Sound/fg_fx.hxx>
113 #include <Sound/soundmgr.hxx>
114 #include <Systems/system_mgr.hxx>
115 #include <Time/FGEventMgr.hxx>
116 #include <Time/light.hxx>
117 #include <Time/sunpos.hxx>
118 #include <Time/moonpos.hxx>
119 #include <Time/tmp.hxx>
120
121 #ifdef FG_MPLAYER_AS
122 #include <MultiPlayer/multiplaytxmgr.hxx>
123 #include <MultiPlayer/multiplayrxmgr.hxx>
124 #endif
125
126 #ifdef FG_WEATHERCM
127 #  include <WeatherCM/FGLocalWeatherDatabase.h>
128 #else
129 #  include <Environment/environment_mgr.hxx>
130 #endif
131
132 #include "fg_init.hxx"
133 #include "fg_io.hxx"
134 #include "fg_commands.hxx"
135 #include "fg_props.hxx"
136 #include "options.hxx"
137 #include "globals.hxx"
138 #include "logger.hxx"
139 #include "viewmgr.hxx"
140
141 #if defined(FX) && defined(XMESA)
142 #include <GL/xmesa.h>
143 #endif
144
145 SG_USING_STD(string);
146
147 extern const char *default_root;
148
149 #ifdef FG_USE_CLOUDS_3D
150   SkySceneLoader *sgCloud3d;
151 #endif
152
153
154 // Scan the command line options for the specified option and return
155 // the value.
156 static string fgScanForOption( const string& option, int argc, char **argv ) {
157     int i = 1;
158
159     SG_LOG(SG_GENERAL, SG_INFO, "Scanning command line for: " << option );
160
161     int len = option.length();
162
163     while ( i < argc ) {
164         SG_LOG( SG_GENERAL, SG_DEBUG, "argv[" << i << "] = " << argv[i] );
165
166         string arg = argv[i];
167         if ( arg.find( option ) == 0 ) {
168             return arg.substr( len );
169         }
170
171         i++;
172     }
173
174     return "";
175 }
176
177
178 // Scan the user config files for the specified option and return
179 // the value.
180 static string fgScanForOption( const string& option, const string& path ) {
181     sg_gzifstream in( path );
182     if ( !in.is_open() ) {
183         return "";
184     }
185
186     SG_LOG( SG_GENERAL, SG_INFO, "Scanning " << path << " for: " << option );
187
188     int len = option.length();
189
190     in >> skipcomment;
191 #ifndef __MWERKS__
192     while ( ! in.eof() ) {
193 #else
194     char c = '\0';
195     while ( in.get(c) && c != '\0' ) {
196         in.putback(c);
197 #endif
198         string line;
199
200 #if defined( macintosh )
201         getline( in, line, '\r' );
202 #else
203         getline( in, line, '\n' );
204 #endif
205
206         // catch extraneous (DOS) line ending character
207         if ( line[line.length() - 1] < 32 ) {
208             line = line.substr( 0, line.length()-1 );
209         }
210
211         if ( line.find( option ) == 0 ) {
212             return line.substr( len );
213         }
214
215         in >> skipcomment;
216     }
217
218     return "";
219 }
220
221
222 // Read in configuration (files and command line options) but only set
223 // fg_root
224 bool fgInitFGRoot ( int argc, char **argv ) {
225     string root;
226     char* envp;
227
228     // First parse command line options looking for --fg-root=, this
229     // will override anything specified in a config file
230     root = fgScanForOption( "--fg-root=", argc, argv);
231
232 #if defined( unix ) || defined( __CYGWIN__ )
233     // Next check home directory for .fgfsrc.hostname file
234     if ( root.empty() ) {
235         envp = ::getenv( "HOME" );
236         if ( envp != NULL ) {
237             SGPath config( envp );
238             config.append( ".fgfsrc" );
239             char name[256];
240             gethostname( name, 256 );
241             config.concat( "." );
242             config.concat( name );
243             root = fgScanForOption( "--fg-root=", config.str() );
244         }
245     }
246 #endif
247
248     // Next check home directory for .fgfsrc file
249     if ( root.empty() ) {
250         envp = ::getenv( "HOME" );
251         if ( envp != NULL ) {
252             SGPath config( envp );
253             config.append( ".fgfsrc" );
254             root = fgScanForOption( "--fg-root=", config.str() );
255         }
256     }
257     
258     // Next check if fg-root is set as an env variable
259     if ( root.empty() ) {
260         envp = ::getenv( "FG_ROOT" );
261         if ( envp != NULL ) {
262             root = envp;
263         }
264     }
265
266     // Otherwise, default to a random compiled-in location if we can't
267     // find fg-root any other way.
268     if ( root.empty() ) {
269 #if defined( __CYGWIN__ )
270         root = "/FlightGear";
271 #elif defined( WIN32 )
272         root = "\\FlightGear";
273 #elif defined( macintosh )
274         root = "";
275 #else
276         root = PKGLIBDIR;
277 #endif
278     }
279
280     SG_LOG(SG_INPUT, SG_INFO, "fg_root = " << root );
281     globals->set_fg_root(root);
282
283     return true;
284 }
285
286
287 // Read in configuration (files and command line options) but only set
288 // aircraft
289 bool fgInitFGAircraft ( int argc, char **argv ) {
290     string aircraft;
291     char* envp;
292
293     // First parse command line options looking for --aircraft=, this
294     // will override anything specified in a config file
295     aircraft = fgScanForOption( "--aircraft=", argc, argv );
296
297 #if defined( unix ) || defined( __CYGWIN__ )
298     // Next check home directory for .fgfsrc.hostname file
299     if ( aircraft.empty() ) {
300         envp = ::getenv( "HOME" );
301         if ( envp != NULL ) {
302             SGPath config( envp );
303             config.append( ".fgfsrc" );
304             char name[256];
305             gethostname( name, 256 );
306             config.concat( "." );
307             config.concat( name );
308             aircraft = fgScanForOption( "--aircraft=", config.str() );
309         }
310     }
311 #endif
312
313     // Next check home directory for .fgfsrc file
314     if ( aircraft.empty() ) {
315         envp = ::getenv( "HOME" );
316         if ( envp != NULL ) {
317             SGPath config( envp );
318             config.append( ".fgfsrc" );
319             aircraft = fgScanForOption( "--aircraft=", config.str() );
320         }
321     }
322
323     // if an aircraft was specified, set the property name
324     if ( !aircraft.empty() ) {
325         SG_LOG(SG_INPUT, SG_INFO, "aircraft = " << aircraft );
326         fgSetString("/sim/aircraft", aircraft.c_str() );
327     } else {
328         SG_LOG(SG_INPUT, SG_INFO, "No user specified aircraft, using default" );
329     }
330
331     return true;
332 }
333
334
335 // Return the current base package version
336 string fgBasePackageVersion() {
337     SGPath base_path( globals->get_fg_root() );
338     base_path.append("version");
339
340     sg_gzifstream in( base_path.str() );
341     if ( !in.is_open() ) {
342         SGPath old_path( globals->get_fg_root() );
343         old_path.append( "Thanks" );
344         sg_gzifstream old( old_path.str() );
345         if ( !old.is_open() ) {
346             return "[none]";
347         } else {
348             return "[old version]";
349         }
350     }
351
352     string version;
353     in >> version;
354
355     return version;
356 }
357
358
359 // Initialize the localization
360 SGPropertyNode *fgInitLocale(const char *language) {
361    SGPropertyNode *c_node = NULL, *d_node = NULL;
362    SGPropertyNode *intl = fgGetNode("/sim/intl");
363
364    SG_LOG(SG_GENERAL, SG_INFO, "Selecting language: " << language );
365
366    // localization not defined
367    if (!intl)
368       return NULL;
369
370    //
371    // Select the proper language from the list
372    //
373    vector<SGPropertyNode_ptr> locale = intl->getChildren("locale");
374    for (unsigned int i = 0; i < locale.size(); i++) {
375
376       vector<SGPropertyNode_ptr> lang = locale[i]->getChildren("lang");
377       for (unsigned int j = 0; j < lang.size(); j++) {
378
379          if (!strcmp(lang[j]->getStringValue(), language)) {
380             c_node = locale[i];
381             break;
382          }
383       }
384    }
385
386
387    // Get the defaults
388    d_node = intl->getChild("locale");
389    if (!c_node)
390       c_node = d_node;
391
392    // Check for localized font
393    SGPropertyNode *font_n = c_node->getNode("font", true);
394    if ( !strcmp(font_n->getStringValue(), "") )
395       font_n->setStringValue(d_node->getStringValue("font", "typewriter.txf"));
396
397
398    //
399    // Load the default strings
400    //
401    SGPath d_path( globals->get_fg_root() );
402
403    const char *d_path_str = d_node->getStringValue("strings");
404    if (!d_path_str) {
405       SG_LOG(SG_GENERAL, SG_ALERT, "Incorrect path in configuration file.");
406       return NULL;
407    }
408
409    d_path.append(d_path_str);
410    SG_LOG(SG_GENERAL, SG_INFO, "Reading localized strings from "
411                                   << d_path.str());
412
413    SGPropertyNode *strings = c_node->getNode("strings");
414    try {
415       readProperties(d_path.str(), strings);
416    } catch (const sg_exception &e) {
417       SG_LOG(SG_GENERAL, SG_ALERT, "Unable to read the localized strings");
418       return NULL;
419    }
420
421    //
422    // Load the language specific strings
423    //
424    if (c_node != d_node) {
425       SGPath c_path( globals->get_fg_root() );
426
427       const char *c_path_str = c_node->getStringValue("strings");
428       if (!c_path_str) {
429          SG_LOG(SG_GENERAL, SG_ALERT, "Incorrect path in configuration file.");
430          return NULL;
431       }
432
433       c_path.append(c_path_str);
434       SG_LOG(SG_GENERAL, SG_INFO, "Reading localized strings from "
435                                      << c_path.str());
436
437       try {
438          readProperties(c_path.str(), strings);
439       } catch (const sg_exception &e) {
440          SG_LOG(SG_GENERAL, SG_ALERT, "Unable to read the localized strings");
441          return NULL;
442       }
443    }
444
445    return c_node;
446 }
447
448
449
450 // Initialize the localization routines
451 bool fgDetectLanguage() {
452     char *language = ::getenv("LANG");
453
454     if (language == NULL) {
455         SG_LOG(SG_GENERAL, SG_INFO, "Unable to detect the language" );
456         language = "C";
457     }
458
459     SGPropertyNode *locale = fgInitLocale(language);
460     if (!locale) {
461        SG_LOG(SG_GENERAL, SG_ALERT,
462               "No internationalization settings specified in preferences.xml" );
463
464        return false;
465     }
466
467     globals->set_locale( locale );
468
469     return true;
470 }
471
472 // Attempt to locate and parse the various non-XML config files in order
473 // from least precidence to greatest precidence
474 static void
475 do_options (int argc, char ** argv)
476 {
477     // Check for $fg_root/system.fgfsrc
478     SGPath config( globals->get_fg_root() );
479     config.append( "system.fgfsrc" );
480     fgParseOptions(config.str());
481
482 #if defined( unix ) || defined( __CYGWIN__ )
483     char name[256];
484     // Check for $fg_root/system.fgfsrc.hostname
485     gethostname( name, 256 );
486     config.concat( "." );
487     config.concat( name );
488     fgParseOptions(config.str());
489 #endif
490
491     // Check for ~/.fgfsrc
492     char* envp = ::getenv( "HOME" );
493     if ( envp != NULL ) {
494         config.set( envp );
495         config.append( ".fgfsrc" );
496         fgParseOptions(config.str());
497     }
498
499 #if defined( unix ) || defined( __CYGWIN__ )
500     // Check for ~/.fgfsrc.hostname
501     gethostname( name, 256 );
502     config.concat( "." );
503     config.concat( name );
504     fgParseOptions(config.str());
505 #endif
506
507     // Parse remaining command line options
508     // These will override anything specified in a config file
509     fgParseArgs(argc, argv);
510 }
511
512
513 // Read in configuration (file and command line)
514 bool fgInitConfig ( int argc, char **argv ) {
515
516     // First, set some sane default values
517     fgSetDefaults();
518
519     // Read global preferences from $FG_ROOT/preferences.xml
520     SG_LOG(SG_INPUT, SG_INFO, "Reading global preferences");
521     fgLoadProps("preferences.xml", globals->get_props());
522     SG_LOG(SG_INPUT, SG_INFO, "Finished Reading global preferences");
523
524     // Detect the required language as early as possible
525     if ( !fgDetectLanguage() ) {
526         return false;
527     }
528
529     // Scan user config files and command line for a specified aircraft.
530     fgInitFGAircraft(argc, argv);
531
532     string aircraft = fgGetString("/sim/aircraft", "");
533     if ( aircraft.size() > 0 ) {
534         SGPath aircraft_path(globals->get_fg_root());
535         aircraft_path.append("Aircraft");
536         aircraft_path.append(aircraft);
537         aircraft_path.concat("-set.xml");
538         SG_LOG(SG_INPUT, SG_INFO, "Reading default aircraft: " << aircraft
539                << " from " << aircraft_path.str());
540         try {
541             readProperties(aircraft_path.str(), globals->get_props());
542         } catch (const sg_exception &e) {
543             string message = "Error reading default aircraft: ";
544             message += e.getFormattedMessage();
545             SG_LOG(SG_INPUT, SG_ALERT, message);
546             exit(2);
547         }
548     } else {
549         SG_LOG(SG_INPUT, SG_ALERT, "No default aircraft specified");
550     }
551
552     // parse options after loading aircraft to ensure any user
553     // overrides of defaults are honored.
554     do_options(argc, argv);
555
556     return true;
557 }
558
559
560 // find basic airport location info from airport database
561 bool fgFindAirportID( const string& id, FGAirport *a ) {
562     if ( id.length() ) {
563         SGPath path( globals->get_fg_root() );
564         path.append( "Airports" );
565         path.append( "simple.mk4" );
566         FGAirports airports( path.c_str() );
567
568         SG_LOG( SG_GENERAL, SG_INFO, "Searching for airport code = " << id );
569
570         if ( ! airports.search( id, a ) ) {
571             SG_LOG( SG_GENERAL, SG_ALERT,
572                     "Failed to find " << id << " in " << path.str() );
573             return false;
574         }
575     } else {
576         return false;
577     }
578
579     SG_LOG( SG_GENERAL, SG_INFO,
580             "Position for " << id << " is ("
581             << a->longitude << ", "
582             << a->latitude << ")" );
583
584     return true;
585 }
586
587
588 // get airport elevation
589 static double fgGetAirportElev( const string& id ) {
590     FGAirport a;
591     // double lon, lat;
592
593     SG_LOG( SG_GENERAL, SG_INFO,
594             "Finding elevation for airport: " << id );
595
596     if ( fgFindAirportID( id, &a ) ) {
597         return a.elevation;
598     } else {
599         return -9999.0;
600     }
601 }
602
603
604 // Preset lon/lat given an airport id
605 static bool fgSetPosFromAirportID( const string& id ) {
606     FGAirport a;
607     // double lon, lat;
608
609     SG_LOG( SG_GENERAL, SG_INFO,
610             "Attempting to set starting position from airport code " << id );
611
612     if ( fgFindAirportID( id, &a ) ) {
613         // presets
614         fgSetDouble("/sim/presets/longitude-deg", a.longitude );
615         fgSetDouble("/sim/presets/latitude-deg", a.latitude );
616
617         // other code depends on the actual postition being set so set
618         // that as well
619         fgSetDouble("/position/longitude-deg", a.longitude );
620         fgSetDouble("/position/latitude-deg", a.latitude );
621
622         SG_LOG( SG_GENERAL, SG_INFO,
623                 "Position for " << id << " is (" << a.longitude
624                 << ", " << a.latitude << ")" );
625
626         return true;
627     } else {
628         return false;
629     }
630 }
631
632
633 // Set current tower position lon/lat given an airport id
634 static bool fgSetTowerPosFromAirportID( const string& id, double hdg ) {
635     FGAirport a;
636     // tower height hard coded for now...
637     float towerheight=50.0f;
638
639     // make a little off the heading for 1 runway airports...
640     float fudge_lon = fabs(sin(hdg)) * .003f;
641     float fudge_lat = .003f - fudge_lon;
642
643     if ( fgFindAirportID( id, &a ) ) {
644         fgSetDouble("/sim/tower/longitude-deg",  a.longitude + fudge_lon);
645         fgSetDouble("/sim/tower/latitude-deg",  a.latitude + fudge_lat);
646         fgSetDouble("/sim/tower/altitude-ft", a.elevation + towerheight);
647         return true;
648     } else {
649         return false;
650     }
651
652 }
653
654
655 // Set current_options lon/lat given an airport id and heading (degrees)
656 static bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
657     FGRunway r;
658
659     if ( id.length() ) {
660         // set initial position from runway and heading
661
662         SGPath path( globals->get_fg_root() );
663         path.append( "Airports" );
664         path.append( "runways.mk4" );
665         FGRunways runways( path.c_str() );
666
667         SG_LOG( SG_GENERAL, SG_INFO,
668                 "Attempting to set starting position from airport code "
669                 << id << " heading " << tgt_hdg );
670                 
671         if ( ! runways.search( id, (int)tgt_hdg, &r ) ) {
672             SG_LOG( SG_GENERAL, SG_ALERT,
673                     "Failed to find a good runway for " << id << '\n' );
674             return false;
675         }       
676     } else {
677         return false;
678     }
679
680     double lat2, lon2, az2;
681     double heading = r.heading;
682     double azimuth = heading + 180.0;
683     while ( azimuth >= 360.0 ) { azimuth -= 360.0; }
684
685     SG_LOG( SG_GENERAL, SG_INFO,
686             "runway =  " << r.lon << ", " << r.lat
687             << " length = " << r.length * SG_FEET_TO_METER 
688             << " heading = " << azimuth );
689             
690     geo_direct_wgs_84 ( 0, r.lat, r.lon, azimuth, 
691                         r.length * SG_FEET_TO_METER * 0.5 - 5.0,
692                         &lat2, &lon2, &az2 );
693
694     if ( fabs( fgGetDouble("/sim/presets/offset-distance") ) > SG_EPSILON ) {
695         double olat, olon;
696         double odist = fgGetDouble("/sim/presets/offset-distance");
697         odist *= SG_NM_TO_METER;
698         double oaz = azimuth;
699         if ( fabs(fgGetDouble("/sim/presets/offset-azimuth")) > SG_EPSILON ) {
700             oaz = fgGetDouble("/sim/presets/offset-azimuth") + 180;
701         }
702         while ( oaz >= 360.0 ) { oaz -= 360.0; }
703         geo_direct_wgs_84 ( 0, lat2, lon2, oaz, odist, &olat, &olon, &az2 );
704         lat2=olat;
705         lon2=olon;
706     }
707
708     // presets
709     fgSetDouble("/sim/presets/longitude-deg",  lon2 );
710     fgSetDouble("/sim/presets/latitude-deg",  lat2 );
711     fgSetDouble("/sim/presets/heading-deg", heading );
712
713     // other code depends on the actual values being set ...
714     fgSetDouble("/position/longitude-deg",  lon2 );
715     fgSetDouble("/position/latitude-deg",  lat2 );
716     fgSetDouble("/orientation/heading-deg", heading );
717
718     SG_LOG( SG_GENERAL, SG_INFO,
719             "Position for " << id << " is ("
720             << lon2 << ", "
721             << lat2 << ") new heading is "
722             << heading );
723             
724     return true;
725 }
726
727
728 // Set current_options lon/lat given an airport id and runway number
729 static bool fgSetPosFromAirportIDandRwy( const string& id, const string& rwy ) {
730     FGRunway r;
731
732     if ( id.length() ) {
733         // set initial position from airport and runway number
734
735         SGPath path( globals->get_fg_root() );
736         path.append( "Airports" );
737         path.append( "runways.mk4" );
738         FGRunways runways( path.c_str() );
739
740         SG_LOG( SG_GENERAL, SG_INFO,
741                 "Attempting to set starting position for "
742                 << id << ":" << runway );
743
744         if ( ! runways.search( id, rwy, &r ) ) {
745             SG_LOG( SG_GENERAL, SG_ALERT,
746                     "Failed to find runway " << rwy << 
747                     " at airport " << id );
748             return false;
749         }
750     } else {
751         return false;
752     }
753
754     double lat2, lon2, az2;
755     double heading = r.heading;
756     double azimuth = heading + 180.0;
757     while ( azimuth >= 360.0 ) { azimuth -= 360.0; }
758     
759     SG_LOG( SG_GENERAL, SG_INFO,
760     "runway =  " << r.lon << ", " << r.lat
761     << " length = " << r.length * SG_FEET_TO_METER 
762     << " heading = " << azimuth );
763     
764     geo_direct_wgs_84 ( 0, r.lat, r.lon, 
765     azimuth,
766     r.length * SG_FEET_TO_METER * 0.5 - 5.0,
767     &lat2, &lon2, &az2 );
768     
769     if ( fabs( fgGetDouble("/sim/presets/offset-distance") ) > SG_EPSILON )
770     {
771         double olat, olon;
772         double odist = fgGetDouble("/sim/presets/offset-distance");
773         odist *= SG_NM_TO_METER;
774         double oaz = azimuth;
775         if ( fabs(fgGetDouble("/sim/presets/offset-azimuth")) > SG_EPSILON )
776         {
777             oaz = fgGetDouble("/sim/presets/offset-azimuth") + 180;
778         }
779         while ( oaz >= 360.0 ) { oaz -= 360.0; }
780         geo_direct_wgs_84 ( 0, lat2, lon2, oaz, odist, &olat, &olon, &az2 );
781         lat2=olat;
782         lon2=olon;
783     }
784     
785     // presets
786     fgSetDouble("/sim/presets/longitude-deg",  lon2 );
787     fgSetDouble("/sim/presets/latitude-deg",  lat2 );
788     fgSetDouble("/sim/presets/heading-deg", heading );
789     
790     // other code depends on the actual values being set ...
791     fgSetDouble("/position/longitude-deg",  lon2 );
792     fgSetDouble("/position/latitude-deg",  lat2 );
793     fgSetDouble("/orientation/heading-deg", heading );
794     
795     SG_LOG( SG_GENERAL, SG_INFO,
796     "Position for " << id << " is ("
797     << lon2 << ", "
798     << lat2 << ") new heading is "
799     << heading );
800     
801     return true;
802 }
803
804
805 static void fgSetDistOrAltFromGlideSlope() {
806     string apt_id = fgGetString("/sim/presets/airport-id");
807     double gs = fgGetDouble("/sim/presets/glideslope-deg")
808         * SG_DEGREES_TO_RADIANS ;
809     double od = fgGetDouble("/sim/presets/offset-distance");
810     double alt = fgGetDouble("/sim/presets/altitude-ft");
811
812     double apt_elev = 0.0;
813     if ( ! apt_id.empty() ) {
814         apt_elev = fgGetAirportElev( apt_id );
815         if ( apt_elev < -9990.0 ) {
816             apt_elev = 0.0;
817         }
818     } else {
819         apt_elev = 0.0;
820     }
821
822     if( fabs(gs) > 0.01 && fabs(od) > 0.1 && alt < -9990 ) {
823         // set altitude from glideslope and offset-distance
824         od *= SG_NM_TO_METER * SG_METER_TO_FEET;
825         alt = fabs(od*tan(gs)) + apt_elev;
826         fgSetDouble("/sim/presets/altitude-ft", alt);
827         fgSetBool("/sim/presets/onground", false);
828         SG_LOG( SG_GENERAL, SG_INFO, "Calculated altitude as: "
829                 << alt  << " ft" );
830     } else if( fabs(gs) > 0.01 && alt > 0 && fabs(od) < 0.1) {
831         // set offset-distance from glideslope and altitude
832         od  = (alt - apt_elev) / tan(gs);
833         od *= -1*SG_FEET_TO_METER * SG_METER_TO_NM;
834         fgSetDouble("/sim/presets/offset-distance", od);
835         fgSetBool("/sim/presets/onground", false);
836         SG_LOG( SG_GENERAL, SG_INFO, "Calculated offset distance as: " 
837                 << od  << " nm" );
838     } else if( fabs(gs) > 0.01 ) {
839         SG_LOG( SG_GENERAL, SG_ALERT,
840                 "Glideslope given but not altitude or offset-distance." );
841         SG_LOG( SG_GENERAL, SG_ALERT, "Resetting glideslope to zero" );
842         fgSetDouble("/sim/presets/glideslope-deg", 0);
843         fgSetBool("/sim/presets/onground", true);
844     }                              
845 }                       
846
847
848 // Set current_options lon/lat given an airport id and heading (degrees)
849 static bool fgSetPosFromNAV( const string& id, const double& freq ) {
850     FGNav *nav = current_navlist->findByIdentAndFreq( id.c_str(), freq );
851
852     // set initial position from runway and heading
853     if ( nav != NULL ) {
854         SG_LOG( SG_GENERAL, SG_INFO, "Attempting to set starting position for "
855                 << id << ":" << freq );
856
857         double lon = nav->get_lon();
858         double lat = nav->get_lat();
859
860         if ( fabs( fgGetDouble("/sim/presets/offset-distance") ) > SG_EPSILON )
861         {
862             double odist = fgGetDouble("/sim/presets/offset-distance")
863                 * SG_NM_TO_METER;
864             double oaz = fabs(fgGetDouble("/sim/presets/offset-azimuth"))
865                 + 180.0;
866             while ( oaz >= 360.0 ) { oaz -= 360.0; }
867             double olat, olon, az2;
868             geo_direct_wgs_84 ( 0, lat, lon, oaz, odist, &olat, &olon, &az2 );
869
870             lat = olat;
871             lon = olon;
872         }
873
874         // presets
875         fgSetDouble("/sim/presets/longitude-deg",  lon );
876         fgSetDouble("/sim/presets/latitude-deg",  lat );
877
878         // other code depends on the actual values being set ...
879         fgSetDouble("/position/longitude-deg",  lon );
880         fgSetDouble("/position/latitude-deg",  lat );
881         fgSetDouble("/orientation/heading-deg", 
882                     fgGetDouble("/sim/presets/heading-deg") );
883
884         SG_LOG( SG_GENERAL, SG_INFO,
885                 "Position for " << id << ":" << freq << " is ("
886                 << lon << ", "<< lat << ")" );
887
888         return true;
889     } else {
890         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to locate NAV = "
891                 << id << ":" << freq );
892         return false;
893     }
894 }
895
896
897 // Set current_options lon/lat given an airport id and heading (degrees)
898 static bool fgSetPosFromFix( const string& id ) {
899     FGFix fix;
900
901     // set initial position from runway and heading
902     if ( current_fixlist->query( id.c_str(), &fix ) ) {
903         SG_LOG( SG_GENERAL, SG_INFO, "Attempting to set starting position for "
904                 << id );
905
906         double lon = fix.get_lon();
907         double lat = fix.get_lat();
908
909         if ( fabs( fgGetDouble("/sim/presets/offset-distance") ) > SG_EPSILON )
910         {
911             double odist = fgGetDouble("/sim/presets/offset-distance")
912                 * SG_NM_TO_METER;
913             double oaz = fabs(fgGetDouble("/sim/presets/offset-azimuth"))
914                 + 180.0;
915             while ( oaz >= 360.0 ) { oaz -= 360.0; }
916             double olat, olon, az2;
917             geo_direct_wgs_84 ( 0, lat, lon, oaz, odist, &olat, &olon, &az2 );
918
919             lat = olat;
920             lon = olon;
921         }
922
923         // presets
924         fgSetDouble("/sim/presets/longitude-deg",  lon );
925         fgSetDouble("/sim/presets/latitude-deg",  lat );
926
927         // other code depends on the actual values being set ...
928         fgSetDouble("/position/longitude-deg",  lon );
929         fgSetDouble("/position/latitude-deg",  lat );
930         fgSetDouble("/orientation/heading-deg", 
931                     fgGetDouble("/sim/presets/heading-deg") );
932
933         SG_LOG( SG_GENERAL, SG_INFO,
934                 "Position for " << id << " is ("
935                 << lon << ", "<< lat << ")" );
936
937         return true;
938     } else {
939         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to locate NAV = "
940                 << id );
941         return false;
942     }
943 }
944
945
946 /**
947  * Initialize vor/ndb/ils/fix list management and query systems
948  */
949 bool
950 fgInitNav ()
951 {
952     SG_LOG(SG_GENERAL, SG_INFO, "Loading Navaids");
953
954     SG_LOG(SG_GENERAL, SG_INFO, "  VOR/NDB");
955     current_navlist = new FGNavList;
956     SGPath p_nav( globals->get_fg_root() );
957     p_nav.append( "Navaids/default.nav" );
958     current_navlist->init( p_nav );
959
960     SG_LOG(SG_GENERAL, SG_INFO, "  ILS and Marker Beacons");
961     current_beacons = new FGMarkerBeacons;
962     current_beacons->init();
963     current_ilslist = new FGILSList;
964     SGPath p_ils( globals->get_fg_root() );
965     p_ils.append( "Navaids/default.ils" );
966     current_ilslist->init( p_ils );
967
968     SG_LOG(SG_GENERAL, SG_INFO, "  Fixes");
969     current_fixlist = new FGFixList;
970     SGPath p_fix( globals->get_fg_root() );
971     p_fix.append( "Navaids/default.fix" );
972     current_fixlist->init( p_fix );
973
974     return true;
975 }
976
977
978 // Set the initial position based on presets (or defaults)
979 bool fgInitPosition() {
980     bool set_pos = false;
981
982     // If glideslope is specified, then calculate offset-distance or
983     // altitude relative to glide slope if either of those was not
984     // specified.
985     fgSetDistOrAltFromGlideSlope();
986
987     // If we have an explicit, in-range lon/lat, don't change it, just use it.
988     // If not, check for an airport-id and use that.
989     // If not, default to the middle of the KSFO field.
990     // The default values for lon/lat are deliberately out of range
991     // so that the airport-id can take effect; valid lon/lat will
992     // override airport-id, however.
993     double lon_deg = fgGetDouble("/sim/presets/longitude-deg");
994     double lat_deg = fgGetDouble("/sim/presets/latitude-deg");
995     if ( lon_deg >= -180.0 && lon_deg <= 180.0
996          && lat_deg >= -90.0 && lat_deg <= 90.0 )
997     {
998         set_pos = true;
999     }
1000
1001     string apt = fgGetString("/sim/presets/airport-id");
1002     string rwy_no = fgGetString("/sim/presets/runway");
1003     double hdg = fgGetDouble("/sim/presets/heading-deg");
1004     string vor = fgGetString("/sim/presets/vor-id");
1005     double vor_freq = fgGetDouble("/sim/presets/vor-freq");
1006     string ndb = fgGetString("/sim/presets/ndb-id");
1007     double ndb_freq = fgGetDouble("/sim/presets/ndb-freq");
1008     string fix = fgGetString("/sim/presets/fix");
1009     if ( !set_pos && !apt.empty() && !rwy_no.empty() ) {
1010         // An airport + runway is requested
1011         if ( fgSetPosFromAirportIDandRwy( apt, rwy_no ) ) {
1012             // set position (a little off the heading for single
1013             // runway airports)
1014             fgSetTowerPosFromAirportID( apt, hdg );
1015
1016             set_pos = true;
1017         }
1018     }
1019     if ( !set_pos && !apt.empty() ) {
1020         // An airport is requested (find runway closest to hdg)
1021         bool ok = false;
1022         if (fgGetDouble("/sim/presets/altitude-ft") <= 0 &&
1023             fgGetDouble("/sim/presets/offset-distance") == 0)
1024             ok = fgSetPosFromAirportIDandHdg( apt, hdg );
1025         else
1026             ok = fgSetPosFromAirportID( apt );
1027             
1028         if (ok) {
1029                 // set position (a little off the heading for single
1030                 // runway airports)
1031                 fgSetTowerPosFromAirportID( apt, hdg );
1032
1033             set_pos = true;
1034         }
1035     }
1036     if ( !set_pos && !vor.empty() ) {
1037         // a VOR is requested
1038         if ( fgSetPosFromNAV( vor, vor_freq ) ) {
1039             if ( fgGetDouble("/sim/presets/altitude-ft") > -9990.0 ) {
1040                 fgSetBool("/sim/presets/onground", false);
1041             } else {
1042                 fgSetBool("/sim/presets/onground", true);
1043             }
1044             set_pos = true;
1045         }
1046     }
1047     if ( !set_pos && !ndb.empty() ) {
1048         // an NDB is requested
1049         if ( fgSetPosFromNAV( ndb, ndb_freq ) ) {
1050             if ( fgGetDouble("/sim/presets/altitude-ft") > -9990.0 ) {
1051                 fgSetBool("/sim/presets/onground", false);
1052             } else {
1053                 fgSetBool("/sim/presets/onground", true);
1054             }
1055             set_pos = true;
1056         }
1057     }
1058     if ( !set_pos && !fix.empty() ) {
1059         // a Fix is requested
1060         if ( fgSetPosFromFix( fix ) ) {
1061             if ( fgGetDouble("/sim/presets/altitude-ft") > -9990.0 ) {
1062                 fgSetBool("/sim/presets/onground", false);
1063             } else {
1064                 fgSetBool("/sim/presets/onground", true);
1065             }
1066             set_pos = true;
1067         }
1068     }
1069
1070     if ( !set_pos ) {
1071         // No lon/lat specified, no airport specified, default to
1072         // middle of KSFO field.
1073         fgSetDouble("/sim/presets/longitude-deg", -122.374843);
1074         fgSetDouble("/sim/presets/latitude-deg", 37.619002);
1075     }
1076
1077     fgSetDouble( "/position/longitude-deg",
1078                  fgGetDouble("/sim/presets/longitude-deg") );
1079     fgSetDouble( "/position/latitude-deg",
1080                  fgGetDouble("/sim/presets/latitude-deg") );
1081     fgSetDouble( "/orientation/heading-deg",
1082                  fgGetDouble("/sim/presets/heading-deg") );
1083
1084     return true;
1085 }
1086
1087
1088 // General house keeping initializations
1089 bool fgInitGeneral() {
1090     string root;
1091
1092 #if defined(FX) && defined(XMESA)
1093     char *mesa_win_state;
1094 #endif
1095
1096     SG_LOG( SG_GENERAL, SG_INFO, "General Initialization" );
1097     SG_LOG( SG_GENERAL, SG_INFO, "======= ==============" );
1098
1099     root = globals->get_fg_root();
1100     if ( ! root.length() ) {
1101         // No root path set? Then bail ...
1102         SG_LOG( SG_GENERAL, SG_ALERT,
1103                 "Cannot continue without a path to the base package "
1104                 << "being defined." );
1105         exit(-1);
1106     }
1107     SG_LOG( SG_GENERAL, SG_INFO, "FG_ROOT = " << '"' << root << '"' << endl );
1108
1109 #if defined(FX) && defined(XMESA)
1110     // initialize full screen flag
1111     globals->set_fullscreen(false);
1112     if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
1113         // Test for the MESA_GLX_FX env variable
1114         if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
1115             // test if we are fullscreen mesa/glide
1116             if ( (mesa_win_state[0] == 'f') ||
1117                  (mesa_win_state[0] == 'F') ) {
1118                 globals->set_fullscreen(true);
1119             }
1120         }
1121     }
1122 #endif
1123
1124     return true;
1125 }
1126
1127
1128 // Initialize the flight model subsystem.  This just creates the
1129 // object.  The actual fdm initialization is delayed until we get a
1130 // proper scenery elevation hit.  This is checked for in main.cxx
1131
1132 void fgInitFDM() {
1133
1134     if ( cur_fdm_state ) {
1135         delete cur_fdm_state;
1136         cur_fdm_state = 0;
1137     }
1138
1139     double dt = 1.0 / fgGetInt("/sim/model-hz");
1140     aircraft_dir = fgGetString("/sim/aircraft-dir");
1141     const string &model = fgGetString("/sim/flight-model");
1142
1143     try {
1144         if ( model == "larcsim" ) {
1145             cur_fdm_state = new FGLaRCsim( dt );
1146         } else if ( model == "jsb" ) {
1147             cur_fdm_state = new FGJSBsim( dt );
1148         } else if ( model == "ada" ) {
1149             cur_fdm_state = new FGADA( dt );
1150         } else if ( model == "balloon" ) {
1151             cur_fdm_state = new FGBalloonSim( dt );
1152         } else if ( model == "magic" ) {
1153             cur_fdm_state = new FGMagicCarpet( dt );
1154         } else if ( model == "ufo" ) {
1155             cur_fdm_state = new FGUFO( dt );
1156         } else if ( model == "external" ) {
1157             // external is a synonym for "--fdm=null" and is
1158             // maintained here for backwards compatibility
1159             cur_fdm_state = new FGNullFDM( dt );
1160         } else if ( model.find("network") == 0 ) {
1161             string host = "localhost";
1162             int port1 = 5501;
1163             int port2 = 5502;
1164             int port3 = 5503;
1165             string net_options = model.substr(8);
1166             string::size_type begin, end;
1167             begin = 0;
1168             // host
1169             end = net_options.find( ",", begin );
1170             if ( end != string::npos ) {
1171                 host = net_options.substr(begin, end - begin);
1172                 begin = end + 1;
1173             }
1174             // port1
1175             end = net_options.find( ",", begin );
1176             if ( end != string::npos ) {
1177                 port1 = atoi( net_options.substr(begin, end - begin).c_str() );
1178                 begin = end + 1;
1179             }
1180             // port2
1181             end = net_options.find( ",", begin );
1182             if ( end != string::npos ) {
1183                 port2 = atoi( net_options.substr(begin, end - begin).c_str() );
1184                 begin = end + 1;
1185             }
1186             // port3
1187             end = net_options.find( ",", begin );
1188             if ( end != string::npos ) {
1189                 port3 = atoi( net_options.substr(begin, end - begin).c_str() );
1190                 begin = end + 1;
1191             }
1192             cur_fdm_state = new FGExternalNet( dt, host, port1, port2, port3 );
1193         } else if ( model.find("pipe") == 0 ) {
1194             string pipe_path = model.substr(5);
1195             cur_fdm_state = new FGExternalPipe( dt, pipe_path );
1196         } else if ( model == "null" ) {
1197             cur_fdm_state = new FGNullFDM( dt );
1198         } else if ( model == "yasim" ) {
1199             cur_fdm_state = new YASim( dt );
1200         } else {
1201             SG_LOG(SG_GENERAL, SG_ALERT,
1202                    "Unrecognized flight model '" << model
1203                    << "', cannot init flight dynamics model.");
1204             exit(-1);
1205         }
1206     } catch ( ... ) {
1207         SG_LOG(SG_GENERAL, SG_ALERT, "FlightGear aborting\n\n");
1208         exit(-1);
1209     }
1210 }
1211
1212 static void printMat(const sgVec4 *mat, char *name="")
1213 {
1214     int i;
1215     SG_LOG(SG_GENERAL, SG_BULK, name );
1216     for(i=0; i<4; i++) {
1217         SG_LOG(SG_GENERAL, SG_BULK, "  " << mat[i][0] << " " << mat[i][1]
1218                                     << " " << mat[i][2] << " " << mat[i][3] );
1219     }
1220 }
1221
1222 // Initialize view parameters
1223 void fgInitView() {
1224   // force update of model so that viewer can get some data...
1225   globals->get_aircraft_model()->update(0);
1226   // run update for current view so that data is current...
1227   globals->get_viewmgr()->update(0);
1228
1229   printMat(globals->get_current_view()->get_VIEW(),"VIEW");
1230   printMat(globals->get_current_view()->get_UP(),"UP");
1231   // printMat(globals->get_current_view()->get_LOCAL(),"LOCAL");
1232   
1233 }
1234
1235
1236 SGTime *fgInitTime() {
1237     // Initialize time
1238     static const SGPropertyNode *longitude
1239         = fgGetNode("/position/longitude-deg");
1240     static const SGPropertyNode *latitude
1241         = fgGetNode("/position/latitude-deg");
1242     static const SGPropertyNode *cur_time_override
1243         = fgGetNode("/sim/time/cur-time-override", true);
1244
1245     SGPath zone( globals->get_fg_root() );
1246     zone.append( "Timezone" );
1247     SGTime *t = new SGTime( longitude->getDoubleValue()
1248                               * SGD_DEGREES_TO_RADIANS,
1249                             latitude->getDoubleValue()
1250                               * SGD_DEGREES_TO_RADIANS,
1251                             zone.str(),
1252                             cur_time_override->getLongValue() );
1253
1254     // Handle potential user specified time offsets
1255     time_t cur_time = t->get_cur_time();
1256     time_t currGMT = sgTimeGetGMT( gmtime(&cur_time) );
1257     time_t systemLocalTime = sgTimeGetGMT( localtime(&cur_time) );
1258     time_t aircraftLocalTime = 
1259         sgTimeGetGMT( fgLocaltime(&cur_time, t->get_zonename() ) );
1260
1261     // Okay, we now have six possible scenarios
1262     int offset = fgGetInt("/sim/startup/time-offset");
1263     const string &offset_type = fgGetString("/sim/startup/time-offset-type");
1264     if (offset_type == "system-offset") {
1265         globals->set_warp( offset );
1266     } else if (offset_type == "gmt-offset") {
1267         globals->set_warp( offset - (currGMT - systemLocalTime) );
1268     } else if (offset_type == "latitude-offset") {
1269         globals->set_warp( offset - (aircraftLocalTime - systemLocalTime) );
1270     } else if (offset_type == "system") {
1271         globals->set_warp( offset - cur_time );
1272     } else if (offset_type == "gmt") {
1273         globals->set_warp( offset - currGMT );
1274     } else if (offset_type == "latitude") {
1275         globals->set_warp( offset - (aircraftLocalTime - systemLocalTime) - 
1276                            cur_time ); 
1277     } else {
1278         SG_LOG( SG_GENERAL, SG_ALERT,
1279                 "FG_TIME::Unsupported offset type " << offset_type );
1280         exit( -1 );
1281     }
1282
1283     SG_LOG( SG_GENERAL, SG_INFO, "After time init, warp = " 
1284             << globals->get_warp() );
1285
1286     globals->set_warp_delta( 0 );
1287
1288     t->update( 0.0, 0.0,
1289                cur_time_override->getLongValue(),
1290                globals->get_warp() );
1291
1292     return t;
1293 }
1294
1295
1296 // This is the top level init routine which calls all the other
1297 // initialization routines.  If you are adding a subsystem to flight
1298 // gear, its initialization call should located in this routine.
1299 // Returns non-zero if a problem encountered.
1300 bool fgInitSubsystems() {
1301     static const SGPropertyNode *longitude
1302         = fgGetNode("/sim/presets/longitude-deg");
1303     static const SGPropertyNode *latitude
1304         = fgGetNode("/sim/presets/latitude-deg");
1305     static const SGPropertyNode *altitude
1306         = fgGetNode("/sim/presets/altitude-ft");
1307
1308     fgLIGHT *l = &cur_light_params;
1309
1310     SG_LOG( SG_GENERAL, SG_INFO, "Initialize Subsystems");
1311     SG_LOG( SG_GENERAL, SG_INFO, "========== ==========");
1312
1313
1314     ////////////////////////////////////////////////////////////////////
1315     // Initialize the material property subsystem.
1316     ////////////////////////////////////////////////////////////////////
1317
1318     SGPath mpath( globals->get_fg_root() );
1319     mpath.append( "materials.xml" );
1320     if ( ! material_lib.load( mpath.str() ) ) {
1321         SG_LOG( SG_GENERAL, SG_ALERT, "Error loading material lib!" );
1322         exit(-1);
1323     }
1324
1325     ////////////////////////////////////////////////////////////////////
1326     // Initialize the event manager subsystem.
1327     ////////////////////////////////////////////////////////////////////
1328
1329     global_events.init();
1330
1331     // Output event stats every 60 seconds
1332     global_events.Register( "FGEventMgr::print_stats()",
1333                             &global_events, &FGEventMgr::print_stats,
1334                             60000 );
1335
1336
1337     ////////////////////////////////////////////////////////////////////
1338     // Initialize the scenery management subsystem.
1339     ////////////////////////////////////////////////////////////////////
1340
1341     if ( globals->get_tile_mgr()->init() ) {
1342         // Load the local scenery data
1343         double visibility_meters = fgGetDouble("/environment/visibility-m");
1344                 
1345         globals->get_tile_mgr()->update( visibility_meters );
1346     } else {
1347         SG_LOG( SG_GENERAL, SG_ALERT, "Error in Tile Manager initialization!" );
1348         exit(-1);
1349     }
1350
1351     // cause refresh of viewer scenery timestamps every 15 seconds...
1352     global_events.Register( "FGTileMgr::refresh_view_timestamps()",
1353                             globals->get_tile_mgr(),
1354                             &FGTileMgr::refresh_view_timestamps,
1355                             15000 );
1356
1357     SG_LOG( SG_GENERAL, SG_DEBUG,
1358             "Current terrain elevation after tile mgr init " <<
1359             globals->get_scenery()->get_cur_elev() );
1360
1361
1362     ////////////////////////////////////////////////////////////////////
1363     // Initialize the flight model subsystem.
1364     ////////////////////////////////////////////////////////////////////
1365
1366     fgInitFDM();
1367         
1368     // allocates structures so must happen before any of the flight
1369     // model or control parameters are set
1370     fgAircraftInit();   // In the future this might not be the case.
1371
1372
1373     ////////////////////////////////////////////////////////////////////
1374     // Initialize the view manager subsystem.
1375     ////////////////////////////////////////////////////////////////////
1376
1377     fgInitView();
1378
1379
1380     ////////////////////////////////////////////////////////////////////
1381     // Initialize the lighting subsystem.
1382     ////////////////////////////////////////////////////////////////////
1383
1384     // fgUpdateSunPos() needs a few position and view parameters set
1385     // so it can calculate local relative sun angle and a few other
1386     // things for correctly orienting the sky.
1387     fgUpdateSunPos();
1388     fgUpdateMoonPos();
1389     global_events.Register( "fgUpdateSunPos()", &fgUpdateSunPos,
1390                             60000);
1391     global_events.Register( "fgUpdateMoonPos()", &fgUpdateMoonPos,
1392                             60000);
1393
1394     // Initialize Lighting interpolation tables
1395     l->Init();
1396
1397     // force one lighting update to make it right to start with...
1398     l->Update();
1399     // update the lighting parameters (based on sun angle)
1400     global_events.Register( "fgLight::Update()",
1401                             &cur_light_params, &fgLIGHT::Update,
1402                             30000 );
1403
1404
1405     ////////////////////////////////////////////////////////////////////
1406     // Create and register the logger.
1407     ////////////////////////////////////////////////////////////////////
1408     
1409     globals->add_subsystem("logger", new FGLogger);
1410
1411
1412 #if defined(HAVE_PLIB_PSL)
1413     ////////////////////////////////////////////////////////////////////
1414     // Create and register the script manager.
1415     ////////////////////////////////////////////////////////////////////
1416
1417     globals->add_subsystem("scripting", new FGScriptMgr);
1418 #endif // HAVE_PLIB_PSL
1419
1420
1421     ////////////////////////////////////////////////////////////////////
1422     // Create and register the XML GUI.
1423     ////////////////////////////////////////////////////////////////////
1424
1425     globals->add_subsystem("gui", new NewGUI, FGSubsystemMgr::INIT);
1426
1427
1428     ////////////////////////////////////////////////////////////////////
1429     // Initialize the local time subsystem.
1430     ////////////////////////////////////////////////////////////////////
1431
1432     // update the current timezone each 30 minutes
1433     global_events.Register( "fgUpdateLocalTime()", &fgUpdateLocalTime,
1434                             30*60*1000 );
1435
1436
1437     ////////////////////////////////////////////////////////////////////
1438     // Initialize the weather subsystem.
1439     ////////////////////////////////////////////////////////////////////
1440
1441     // Initialize the weather modeling subsystem
1442 #ifdef FG_WEATHERCM
1443     // Initialize the WeatherDatabase
1444     SG_LOG(SG_GENERAL, SG_INFO, "Creating LocalWeatherDatabase");
1445     sgVec3 position;
1446     sgSetVec3( position, current_aircraft.fdm_state->get_Latitude(),
1447                current_aircraft.fdm_state->get_Longitude(),
1448                current_aircraft.fdm_state->get_Altitude() * SG_FEET_TO_METER );
1449     double init_vis = fgGetDouble("/environment/visibility-m");
1450
1451     FGLocalWeatherDatabase::DatabaseWorkingType working_type;
1452
1453     if (!strcmp(fgGetString("/environment/weather/working-type"), "internet"))
1454     {
1455       working_type = FGLocalWeatherDatabase::use_internet;
1456     } else {
1457       working_type = FGLocalWeatherDatabase::default_mode;
1458     }
1459     
1460     if ( init_vis > 0 ) {
1461       FGLocalWeatherDatabase::theFGLocalWeatherDatabase = 
1462         new FGLocalWeatherDatabase( position,
1463                                     globals->get_fg_root(),
1464                                     working_type,
1465                                     init_vis );
1466     } else {
1467       FGLocalWeatherDatabase::theFGLocalWeatherDatabase = 
1468         new FGLocalWeatherDatabase( position,
1469                                     globals->get_fg_root(),
1470                                     working_type );
1471     }
1472
1473     // cout << theFGLocalWeatherDatabase << endl;
1474     // cout << "visibility = " 
1475     //      << theFGLocalWeatherDatabase->getWeatherVisibility() << endl;
1476
1477     WeatherDatabase = FGLocalWeatherDatabase::theFGLocalWeatherDatabase;
1478
1479     // register the periodic update of the weather
1480     global_events.Register( "weather update", &fgUpdateWeatherDatabase,
1481                             30000);
1482 #else
1483     globals->get_environment_mgr()->init();
1484     globals->get_environment_mgr()->bind();
1485 #endif
1486
1487 #ifdef FG_USE_CLOUDS_3D
1488     ////////////////////////////////////////////////////////////////////
1489     // Initialize the 3D cloud subsystem.
1490     ////////////////////////////////////////////////////////////////////
1491     if ( fgGetBool("/sim/rendering/clouds3d") ) {
1492         SGPath cloud_path(globals->get_fg_root());
1493         cloud_path.append("large.sky");
1494         SG_LOG(SG_GENERAL, SG_INFO, "Loading CLOUDS3d from: " << cloud_path.c_str());
1495         if ( !sgCloud3d->Load( cloud_path.str(),
1496                                latitude->getDoubleValue(),
1497                                longitude->getDoubleValue()) )
1498         {
1499             fgSetBool("/sim/rendering/clouds3d", false);
1500             SG_LOG(SG_GENERAL, SG_INFO, "CLOUDS3d FAILED: ");
1501         }
1502         SG_LOG(SG_GENERAL, SG_INFO, "CLOUDS3d Loaded: ");
1503     }
1504 #endif
1505
1506     ////////////////////////////////////////////////////////////////////
1507     // Initialise ATC display system
1508     ////////////////////////////////////////////////////////////////////
1509
1510     SG_LOG(SG_GENERAL, SG_INFO, "  ATC Display");
1511     globals->set_ATC_display(new FGATCDisplay);
1512     globals->get_ATC_display()->init(); 
1513
1514     ////////////////////////////////////////////////////////////////////
1515     // Initialise the ATC Manager 
1516     ////////////////////////////////////////////////////////////////////
1517
1518     SG_LOG(SG_GENERAL, SG_INFO, "  ATC Manager");
1519     globals->set_ATC_mgr(new FGATCMgr);
1520     globals->get_ATC_mgr()->init(); 
1521     
1522     ////////////////////////////////////////////////////////////////////
1523     // Initialise the AI Manager 
1524     ////////////////////////////////////////////////////////////////////
1525
1526     if (fgGetBool("/sim/ai-traffic/enabled")) {
1527         SG_LOG(SG_GENERAL, SG_INFO, "  AI Manager");
1528         globals->set_AI_mgr(new FGAIMgr);
1529         globals->get_AI_mgr()->init();
1530     }
1531
1532 #ifdef ENABLE_AUDIO_SUPPORT
1533     ////////////////////////////////////////////////////////////////////
1534     // Initialize the sound subsystem.
1535     ////////////////////////////////////////////////////////////////////
1536
1537     globals->set_soundmgr(new FGSoundMgr);
1538     globals->get_soundmgr()->init();
1539     globals->get_soundmgr()->bind();
1540
1541
1542     ////////////////////////////////////////////////////////////////////
1543     // Initialize the sound-effects subsystem.
1544     ////////////////////////////////////////////////////////////////////
1545
1546     globals->add_subsystem("fx", new FGFX);
1547     
1548 #endif
1549
1550     globals->add_subsystem("instrumentation", new FGInstrumentMgr);
1551     globals->add_subsystem("systems", new FGSystemMgr);
1552
1553     ////////////////////////////////////////////////////////////////////
1554     // Initialize the radio stack subsystem.
1555     ////////////////////////////////////////////////////////////////////
1556
1557     current_radiostack = new FGRadioStack;
1558     current_radiostack->init();
1559     current_radiostack->bind();
1560
1561
1562     ////////////////////////////////////////////////////////////////////
1563     // Initialize the cockpit subsystem
1564     ////////////////////////////////////////////////////////////////////
1565
1566     if( fgCockpitInit( &current_aircraft )) {
1567         // Cockpit initialized ok.
1568     } else {
1569         SG_LOG( SG_GENERAL, SG_ALERT, "Error in Cockpit initialization!" );
1570         exit(-1);
1571     }
1572
1573
1574     ////////////////////////////////////////////////////////////////////
1575     // Initialize the autopilot subsystem.
1576     ////////////////////////////////////////////////////////////////////
1577
1578     globals->set_autopilot(new FGAutopilot);
1579     globals->get_autopilot()->init();
1580     globals->get_autopilot()->bind();
1581
1582                                 // FIXME: these should go in the
1583                                 // GUI initialization code, not here.
1584     fgAPAdjustInit();
1585     NewTgtAirportInit();
1586     NewHeadingInit();
1587     NewAltitudeInit();
1588
1589     ////////////////////////////////////////////////////////////////////
1590     // Initialize I/O subsystem.
1591     ////////////////////////////////////////////////////////////////////
1592
1593     globals->get_io()->init();
1594     globals->get_io()->bind();
1595
1596     // Initialize the 2D panel.
1597     string panel_path = fgGetString("/sim/panel/path",
1598                                     "Panels/Default/default.xml");
1599     current_panel = fgReadPanel(panel_path);
1600     if (current_panel == 0) {
1601         SG_LOG( SG_INPUT, SG_ALERT, 
1602                 "Error reading new panel from " << panel_path );
1603     } else {
1604         SG_LOG( SG_INPUT, SG_INFO, "Loaded new panel from " << panel_path );
1605         current_panel->init();
1606         current_panel->bind();
1607     }
1608
1609     
1610     ////////////////////////////////////////////////////////////////////
1611     // Initialize the default (kludged) properties.
1612     ////////////////////////////////////////////////////////////////////
1613
1614     fgInitProps();
1615
1616
1617     ////////////////////////////////////////////////////////////////////
1618     // Initialize the controls subsystem.
1619     ////////////////////////////////////////////////////////////////////
1620
1621     globals->get_controls()->init();
1622     globals->get_controls()->bind();
1623
1624
1625     ////////////////////////////////////////////////////////////////////
1626     // Initialize the input subsystem.
1627     ////////////////////////////////////////////////////////////////////
1628
1629     globals->add_subsystem("input", new FGInput);
1630
1631
1632     ////////////////////////////////////////////////////////////////////
1633     // Bind and initialize subsystems.
1634     ////////////////////////////////////////////////////////////////////
1635
1636     globals->get_subsystem_mgr()->bind();
1637     globals->get_subsystem_mgr()->init();
1638
1639
1640 #ifdef FG_MPLAYER_AS
1641     ////////////////////////////////////////////////////////////////////
1642     // Initialize multiplayer subsystem
1643     ////////////////////////////////////////////////////////////////////
1644
1645     globals->set_multiplayer_tx_mgr(new FGMultiplayTxMgr);
1646     globals->get_multiplayer_tx_mgr()->init();
1647
1648     globals->set_multiplayer_rx_mgr(new FGMultiplayRxMgr);
1649     globals->get_multiplayer_rx_mgr()->init();
1650 #endif
1651
1652     ////////////////////////////////////////////////////////////////////////
1653     // End of subsystem initialization.
1654     ////////////////////////////////////////////////////////////////////
1655
1656     SG_LOG( SG_GENERAL, SG_INFO, endl);
1657
1658                                 // Save the initial state for future
1659                                 // reference.
1660     globals->saveInitialState();
1661
1662     return true;
1663 }
1664
1665
1666 void fgReInitSubsystems()
1667 {
1668     static const SGPropertyNode *longitude
1669         = fgGetNode("/sim/presets/longitude-deg");
1670     static const SGPropertyNode *latitude
1671         = fgGetNode("/sim/presets/latitude-deg");
1672     static const SGPropertyNode *altitude
1673         = fgGetNode("/sim/presets/altitude-ft");
1674     static const SGPropertyNode *master_freeze
1675         = fgGetNode("/sim/freeze/master");
1676
1677     SG_LOG( SG_GENERAL, SG_INFO,
1678             "fgReInitSubsystems(): /position/altitude = "
1679             << altitude->getDoubleValue() );
1680
1681     bool freeze = master_freeze->getBoolValue();
1682     if ( !freeze ) {
1683         fgSetBool("/sim/freeze/master", true);
1684     }
1685
1686     // Initialize the FDM
1687     fgInitFDM();
1688     
1689     // allocates structures so must happen before any of the flight
1690     // model or control parameters are set
1691     fgAircraftInit();   // In the future this might not be the case.
1692
1693     // reload offsets from config defaults
1694     globals->get_viewmgr()->reinit();
1695
1696     fgInitView();
1697
1698     globals->get_controls()->reset_all();
1699     globals->get_autopilot()->reset();
1700
1701     fgUpdateSunPos();
1702     fgUpdateMoonPos();
1703     cur_light_params.Update();
1704     fgUpdateLocalTime();
1705
1706     if ( !freeze ) {
1707         fgSetBool("/sim/freeze/master", false);
1708     }
1709 }
1710