]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_init.cxx
23e82f52dcee334c7e44b7b2baaaee4c986038a9
[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 FG_MATH_EXCEPTION_CLASH
31 #  include <math.h>
32 #endif
33
34 #include <GL/glut.h>
35 #include <simgear/xgl/xgl.h>
36
37 #include <stdio.h>
38 #include <stdlib.h>
39
40 // work around a stdc++ lib bug in some versions of linux, but doesn't
41 // seem to hurt to have this here for all versions of Linux.
42 #ifdef linux
43 #  define _G_NO_EXTERN_TEMPLATES
44 #endif
45
46 #include <simgear/compiler.h>
47
48 #include STL_STRING
49
50 #include <simgear/constants.h>
51 #include <simgear/debug/logstream.hxx>
52 #include <simgear/math/point3d.hxx>
53 #include <simgear/math/polar3d.hxx>
54 #include <simgear/math/sg_geodesy.hxx>
55 #include <simgear/misc/fgpath.hxx>
56 #include <simgear/timing/sg_time.hxx>
57
58 #include <Aircraft/aircraft.hxx>
59 #include <Airports/runways.hxx>
60 #include <Airports/simple.hxx>
61 #include <Autopilot/auto_gui.hxx>
62 #include <Autopilot/newauto.hxx>
63 #include <Cockpit/cockpit.hxx>
64 #include <Cockpit/radiostack.hxx>
65 #include <Cockpit/panel.hxx>
66 #include <Cockpit/panel_io.hxx>
67 #include <FDM/ADA.hxx>
68 #include <FDM/Balloon.h>
69 #include <FDM/External.hxx>
70 #include <FDM/JSBSim.hxx>
71 #include <FDM/LaRCsim.hxx>
72 #include <FDM/MagicCarpet.hxx>
73 #include <Include/general.hxx>
74 #include <Joystick/joystick.hxx>
75 #include <Objects/matlib.hxx>
76 #include <Navaids/fixlist.hxx>
77 #include <Navaids/ilslist.hxx>
78 #include <Navaids/navlist.hxx>
79 #include <Scenery/scenery.hxx>
80 #include <Scenery/tilemgr.hxx>
81 #include <Time/event.hxx>
82 #include <Time/light.hxx>
83 #include <Time/sunpos.hxx>
84 #include <Time/moonpos.hxx>
85 #include <Time/tmp.hxx>
86
87 #ifndef FG_OLD_WEATHER
88 #  include <WeatherCM/FGLocalWeatherDatabase.h>
89 #else
90 #  include <Weather/weather.hxx>
91 #endif
92
93 #include "fg_init.hxx"
94 #include "fg_io.hxx"
95 #include "globals.hxx"
96 #include "bfi.hxx"
97
98 #if defined(FX) && defined(XMESA)
99 #include <GL/xmesa.h>
100 #endif
101
102 FG_USING_STD(string);
103
104 extern const char *default_root;
105
106
107 // Read in configuration (file and command line) and just set fg_root
108 bool fgInitFGRoot ( int argc, char **argv ) {
109     // Attempt to locate and parse a config file
110     // First check fg_root
111     FGPath config( globals->get_options()->get_fg_root() );
112     config.append( "system.fgfsrc" );
113     globals->get_options()->scan_config_file_for_root( config.str() );
114
115     // Next check home directory
116     char* envp = ::getenv( "HOME" );
117     if ( envp != NULL ) {
118         config.set( envp );
119         config.append( ".fgfsrc" );
120         globals->get_options()->scan_config_file_for_root( config.str() );
121     }
122
123     // Parse remaining command line options
124     // These will override anything specified in a config file
125     globals->get_options()->scan_command_line_for_root(argc, argv);
126
127     return true;
128 }
129
130
131 // Read in configuration (file and command line)
132 bool fgInitConfig ( int argc, char **argv ) {
133     // Attempt to locate and parse a config file
134     // First check fg_root
135     FGPath config( globals->get_options()->get_fg_root() );
136     config.append( "system.fgfsrc" );
137     globals->get_options()->parse_config_file( config.str() );
138
139     // Next check home directory
140     char* envp = ::getenv( "HOME" );
141     if ( envp != NULL ) {
142         config.set( envp );
143         config.append( ".fgfsrc" );
144         globals->get_options()->parse_config_file( config.str() );
145     }
146
147     // Parse remaining command line options
148     // These will override anything specified in a config file
149     if ( globals->get_options()->parse_command_line(argc, argv) !=
150          FGOptions::FG_OPTIONS_OK )
151     {
152         // Something must have gone horribly wrong with the command
153         // line parsing or maybe the user just requested help ... :-)
154         globals->get_options()->usage();
155         FG_LOG( FG_GENERAL, FG_ALERT, "\nExiting ...");
156         return false;
157     }
158
159     return true;
160 }
161
162
163 // find basic airport location info from airport database
164 bool fgFindAirportID( const string& id, FGAirport *a ) {
165     if ( id.length() ) {
166         FGPath path( globals->get_options()->get_fg_root() );
167         path.append( "Airports" );
168         path.append( "simple.mk4" );
169         FGAirports airports( path.c_str() );
170
171         FG_LOG( FG_GENERAL, FG_INFO, "Searching for airport code = " << id );
172
173         if ( ! airports.search( id, a ) ) {
174             FG_LOG( FG_GENERAL, FG_ALERT,
175                     "Failed to find " << id << " in " << path.str() );
176             return false;
177         }
178     } else {
179         return false;
180     }
181
182     FG_LOG( FG_GENERAL, FG_INFO,
183             "Position for " << id << " is ("
184             << a->longitude << ", "
185             << a->latitude << ")" );
186
187     return true;
188 }
189
190
191 // Set current_options lon/lat given an airport id
192 bool fgSetPosFromAirportID( const string& id ) {
193     FGAirport a;
194     // double lon, lat;
195
196     FG_LOG( FG_GENERAL, FG_INFO,
197             "Attempting to set starting position from airport code " << id );
198
199     if ( fgFindAirportID( id, &a ) ) {
200         globals->get_options()->set_lon( a.longitude );
201         globals->get_options()->set_lat( a.latitude );
202         current_properties.setDoubleValue("/position/longitude",
203                                           a.longitude);
204         current_properties.setDoubleValue("/position/latitude",
205                                           a.latitude);
206
207         FG_LOG( FG_GENERAL, FG_INFO,
208                 "Position for " << id << " is ("
209                 << a.longitude << ", "
210                 << a.latitude << ")" );
211
212         return true;
213     } else {
214         return false;
215     }
216
217 }
218
219
220 // Set current_options lon/lat given an airport id and heading (degrees)
221 bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
222     FGRunway r;
223     FGRunway found_r;
224     double found_dir;
225
226     if ( id.length() ) {
227         // set initial position from runway and heading
228
229         FGPath path( globals->get_options()->get_fg_root() );
230         path.append( "Airports" );
231         path.append( "runways.mk4" );
232         FGRunways runways( path.c_str() );
233
234         FG_LOG( FG_GENERAL, FG_INFO,
235                 "Attempting to set starting position from runway code "
236                 << id << " heading " << tgt_hdg );
237
238         // FGPath inpath( globals->get_options()->get_fg_root() );
239         // inpath.append( "Airports" );
240         // inpath.append( "apt_simple" );
241         // airports.load( inpath.c_str() );
242
243         // FGPath outpath( globals->get_options()->get_fg_root() );
244         // outpath.append( "Airports" );
245         // outpath.append( "simple.gdbm" );
246         // airports.dump_gdbm( outpath.c_str() );
247
248         if ( ! runways.search( id, &r ) ) {
249             FG_LOG( FG_GENERAL, FG_ALERT,
250                     "Failed to find " << id << " in database." );
251             return false;
252         }
253
254         double diff;
255         double min_diff = 360.0;
256
257         while ( r.id == id ) {
258             // forward direction
259             diff = tgt_hdg - r.heading;
260             while ( diff < -180.0 ) { diff += 360.0; }
261             while ( diff >  180.0 ) { diff -= 360.0; }
262             diff = fabs(diff);
263             FG_LOG( FG_GENERAL, FG_INFO,
264                     "Runway " << r.rwy_no << " heading = " << r.heading <<
265                     " diff = " << diff );
266             if ( diff < min_diff ) {
267                 min_diff = diff;
268                 found_r = r;
269                 found_dir = 0;
270             }
271
272             // reverse direction
273             diff = tgt_hdg - r.heading - 180.0;
274             while ( diff < -180.0 ) { diff += 360.0; }
275             while ( diff >  180.0 ) { diff -= 360.0; }
276             diff = fabs(diff);
277             FG_LOG( FG_GENERAL, FG_INFO,
278                     "Runway -" << r.rwy_no << " heading = " <<
279                     r.heading + 180.0 <<
280                     " diff = " << diff );
281             if ( diff < min_diff ) {
282                 min_diff = diff;
283                 found_r = r;
284                 found_dir = 180.0;
285             }
286
287             runways.next( &r );
288         }
289
290         FG_LOG( FG_GENERAL, FG_INFO, "closest runway = " << found_r.rwy_no
291                 << " + " << found_dir );
292
293     } else {
294         return false;
295     }
296
297     double heading = found_r.heading + found_dir;
298     while ( heading >= 360.0 ) { heading -= 360.0; }
299
300     double lat2, lon2, az2;
301     double azimuth = found_r.heading + found_dir + 180.0;
302     while ( azimuth >= 360.0 ) { azimuth -= 360.0; }
303
304     FG_LOG( FG_GENERAL, FG_INFO,
305             "runway =  " << found_r.lon << ", " << found_r.lat
306             << " length = " << found_r.length * FEET_TO_METER * 0.5 
307             << " heading = " << azimuth );
308     geo_direct_wgs_84 ( 0, found_r.lat, found_r.lon, 
309                         azimuth, found_r.length * FEET_TO_METER * 0.5 - 5.0,
310                         &lat2, &lon2, &az2 );
311     globals->get_options()->set_lon( lon2 );
312     globals->get_options()->set_lat( lat2 );
313     globals->get_options()->set_heading( heading );
314     current_properties.setDoubleValue("/position/longitude", lon2);
315     current_properties.setDoubleValue("/position/latitude", lat2);
316     current_properties.setDoubleValue("/orientation/heading", heading);
317
318     FG_LOG( FG_GENERAL, FG_INFO,
319             "Position for " << id << " is ("
320             << lon2 << ", "
321             << lat2 << ") new heading is "
322             << heading );
323
324     return true;
325 }
326
327
328 // Set initial position and orientation
329 bool fgInitPosition( void ) {
330     FGInterface *f = current_aircraft.fdm_state;
331     string id = globals->get_options()->get_airport_id();
332
333     // set initial position from default or command line coordinates
334     f->set_Longitude( globals->get_options()->get_lon() * DEG_TO_RAD );
335     f->set_Latitude( globals->get_options()->get_lat() * DEG_TO_RAD );
336
337     if ( scenery.cur_elev > globals->get_options()->get_altitude() - 1) {
338         globals->get_options()->set_altitude( scenery.cur_elev + 1 );
339     }
340
341     FG_LOG( FG_GENERAL, FG_INFO,
342             "starting altitude is = " << globals->get_options()->get_altitude() );
343
344     f->set_Altitude( globals->get_options()->get_altitude() * METER_TO_FEET );
345     // fgFDMSetGroundElevation( globals->get_options()->get_flight_model(),
346     //                          f->get_Altitude() * FEET_TO_METER );
347
348 #if 0
349     current_properties.setDoubleValue("/position/longitude",
350                                       f->get_Longitude() * RAD_TO_DEG);
351     current_properties.setDoubleValue("/position/latitude",
352                                       f->get_Latitude() * RAD_TO_DEG);
353     current_properties.setDoubleValue("/position/altitude",
354                                       f->get_Altitude() * RAD_TO_DEG);
355 #endif
356
357     FG_LOG( FG_GENERAL, FG_INFO,
358             "Initial position is: ("
359             << (f->get_Longitude() * RAD_TO_DEG) << ", "
360             << (f->get_Latitude() * RAD_TO_DEG) << ", "
361             << (f->get_Altitude() * FEET_TO_METER) << ")" );
362
363     return true;
364 }
365
366
367 // General house keeping initializations
368 bool fgInitGeneral( void ) {
369     string root;
370
371 #if defined(FX) && defined(XMESA)
372     char *mesa_win_state;
373 #endif
374
375     FG_LOG( FG_GENERAL, FG_INFO, "General Initialization" );
376     FG_LOG( FG_GENERAL, FG_INFO, "======= ==============" );
377
378     root = globals->get_options()->get_fg_root();
379     if ( ! root.length() ) {
380         // No root path set? Then bail ...
381         FG_LOG( FG_GENERAL, FG_ALERT,
382                 "Cannot continue without environment variable FG_ROOT"
383                 << "being defined." );
384         exit(-1);
385     }
386     FG_LOG( FG_GENERAL, FG_INFO, "FG_ROOT = " << '"' << root << '"' << endl );
387
388 #if defined(FX) && defined(XMESA)
389     // initialize full screen flag
390     global_fullscreen = false;
391     if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
392         // Test for the MESA_GLX_FX env variable
393         if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
394             // test if we are fullscreen mesa/glide
395             if ( (mesa_win_state[0] == 'f') ||
396                  (mesa_win_state[0] == 'F') ) {
397                 global_fullscreen = true;
398             }
399         }
400     }
401 #endif
402
403     return true;
404 }
405
406
407 // set initial aircraft speed
408 bool fgVelocityInit( void ) {
409   switch(globals->get_options()->get_speedset()) {
410     case 1: //FG_VC
411       current_aircraft.fdm_state->set_V_calibrated_kts( 
412                                     globals->get_options()->get_vc() );
413       break;
414     case 2: //FG_MACH
415       current_aircraft.fdm_state->set_Mach_number(
416                                     globals->get_options()->get_mach() );
417       break;
418     case 3: //FG_VTUVW
419       current_aircraft.fdm_state->set_Velocities_Wind_Body(
420                                     globals->get_options()->get_uBody(),
421                                     globals->get_options()->get_vBody(),
422                                     globals->get_options()->get_wBody() );
423       break;
424     case 4: //FG_VTNED
425       current_aircraft.fdm_state->set_Velocities_Local(
426                                     globals->get_options()->get_vNorth(),
427                                     globals->get_options()->get_vEast(),
428                                     globals->get_options()->get_vDown() );
429       break;
430     default:
431       current_aircraft.fdm_state->set_V_calibrated_kts( 0.0 );
432     }
433     return true;  
434 }             
435
436         
437 // This is the top level init routine which calls all the other
438 // initialization routines.  If you are adding a subsystem to flight
439 // gear, its initialization call should located in this routine.
440 // Returns non-zero if a problem encountered.
441 bool fgInitSubsystems( void ) {
442     fgLIGHT *l = &cur_light_params;
443
444     FG_LOG( FG_GENERAL, FG_INFO, "Initialize Subsystems");
445     FG_LOG( FG_GENERAL, FG_INFO, "========== ==========");
446
447     // Initialize the material property lib
448     FGPath mpath( globals->get_options()->get_fg_root() );
449     mpath.append( "materials" );
450     if ( material_lib.load( mpath.str() ) ) {
451     } else {
452         FG_LOG( FG_GENERAL, FG_ALERT, "Error loading material lib!" );
453         exit(-1);
454     }
455
456     // Initialize the Scenery Management subsystem
457     if ( fgSceneryInit() ) {
458         // Material lib initialized ok.
459     } else {
460         FG_LOG( FG_GENERAL, FG_ALERT, "Error in Scenery initialization!" );
461         exit(-1);
462     }
463
464     if ( global_tile_mgr.init() ) {
465         // Load the local scenery data
466         global_tile_mgr.update( globals->get_options()->get_lon(),
467                                 globals->get_options()->get_lat() );
468     } else {
469         FG_LOG( FG_GENERAL, FG_ALERT, "Error in Tile Manager initialization!" );
470         exit(-1);
471     }
472
473     FG_LOG( FG_GENERAL, FG_DEBUG,
474             "Current terrain elevation after tile mgr init " <<
475             scenery.cur_elev );
476
477     if ( globals->get_options()->get_flight_model() == FGInterface::FG_LARCSIM ) {
478         cur_fdm_state = new FGLaRCsim;
479     } else if ( globals->get_options()->get_flight_model() == FGInterface::FG_JSBSIM ) {
480         cur_fdm_state = new FGJSBsim;
481     } else if ( globals->get_options()->get_flight_model() == FGInterface::FG_ADA ) {
482         cur_fdm_state = new FGADA;
483     } else if ( globals->get_options()->get_flight_model() == 
484                 FGInterface::FG_BALLOONSIM ) {
485         cur_fdm_state = new FGBalloonSim;
486     } else if ( globals->get_options()->get_flight_model() == 
487                 FGInterface::FG_MAGICCARPET ) {
488         cur_fdm_state = new FGMagicCarpet;
489     } else if ( globals->get_options()->get_flight_model() == 
490                 FGInterface::FG_EXTERNAL ) {
491         cur_fdm_state = new FGExternal;
492     } else {
493         FG_LOG( FG_GENERAL, FG_ALERT,
494                 "No flight model, can't init aircraft" );
495         exit(-1);
496     }
497
498     // allocates structures so must happen before any of the flight
499     // model or control parameters are set
500     fgAircraftInit();   // In the future this might not be the case.
501
502     fgFDMSetGroundElevation( globals->get_options()->get_flight_model(),
503                              scenery.cur_elev );
504     
505     // set the initial position
506     fgInitPosition();
507
508     // Calculate ground elevation at starting point (we didn't have
509     // tmp_abs_view_pos calculated when fgTileMgrUpdate() was called above
510     //
511     // calculalate a cartesian point somewhere along the line between
512     // the center of the earth and our view position.  Doesn't have to
513     // be the exact elevation (this is good because we don't know it
514     // yet :-)
515
516     // now handled inside of the fgTileMgrUpdate()
517
518     // Reset our altitude if we are below ground
519     FG_LOG( FG_GENERAL, FG_DEBUG, "Current altitude = "
520             << cur_fdm_state->get_Altitude() );
521     FG_LOG( FG_GENERAL, FG_DEBUG, "Current runway altitude = " <<
522             cur_fdm_state->get_Runway_altitude() );
523
524     if ( cur_fdm_state->get_Altitude() < cur_fdm_state->get_Runway_altitude() +
525          3.758099) {
526         cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() +
527                                      3.758099 );
528     }
529
530     FG_LOG( FG_GENERAL, FG_INFO,
531             "Updated position (after elevation adj): ("
532             << (cur_fdm_state->get_Latitude() * RAD_TO_DEG) << ", "
533             << (cur_fdm_state->get_Longitude() * RAD_TO_DEG) << ", "
534             << (cur_fdm_state->get_Altitude() * FEET_TO_METER) << ")" );
535
536     // We need to calculate a few sea_level_radius here so we can pass
537     // the correct value to the view class
538     double sea_level_radius_meters;
539     double lat_geoc;
540     sgGeodToGeoc( cur_fdm_state->get_Latitude(),
541                   cur_fdm_state->get_Altitude(),
542                   &sea_level_radius_meters, &lat_geoc);
543     cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters *
544                                          METER_TO_FEET );
545
546     // The following section sets up the flight model EOM parameters
547     // and should really be read in from one or more files.
548
549     // Initial Velocity
550     fgVelocityInit();
551
552     // Initial Orientation
553     cur_fdm_state->
554         set_Euler_Angles( globals->get_options()->get_roll() * DEG_TO_RAD,
555                           globals->get_options()->get_pitch() * DEG_TO_RAD,
556                           globals->get_options()->get_heading() * DEG_TO_RAD );
557
558     // Initialize the event manager
559     global_events.Init();
560
561     // Output event stats every 60 seconds
562     global_events.Register( "fgEVENT_MGR::PrintStats()",
563                             fgMethodCallback<fgEVENT_MGR>( &global_events,
564                                                    &fgEVENT_MGR::PrintStats),
565                             fgEVENT::FG_EVENT_READY, 60000 );
566
567     // Initialize win ratio parameters
568     globals->get_options()->set_win_ratio( globals->get_options()->get_xsize() /
569                                            globals->get_options()->get_ysize()
570                                            );
571
572     // Initialize pilot view
573     FGViewerRPH *pilot_view =
574         (FGViewerRPH *)globals->get_viewmgr()->get_view( 0 );
575
576     pilot_view->set_geod_view_pos( cur_fdm_state->get_Longitude(), 
577                                    cur_fdm_state->get_Lat_geocentric(), 
578                                    cur_fdm_state->get_Altitude() *
579                                    FEET_TO_METER );
580     pilot_view->set_sea_level_radius( cur_fdm_state->get_Sea_level_radius() *
581                                       FEET_TO_METER ); 
582     pilot_view->set_rph( cur_fdm_state->get_Phi(),
583                          cur_fdm_state->get_Theta(),
584                          cur_fdm_state->get_Psi() );
585
586     // set current view to 0 (first) which is our main pilot view
587     globals->set_current_view( pilot_view );
588
589     FG_LOG( FG_GENERAL, FG_DEBUG, "  abs_view_pos = "
590             << globals->get_current_view()->get_abs_view_pos());
591
592     // fgUpdateSunPos() needs a few position and view parameters set
593     // so it can calculate local relative sun angle and a few other
594     // things for correctly orienting the sky.
595     fgUpdateSunPos();
596     fgUpdateMoonPos();
597     global_events.Register( "fgUpdateSunPos()", fgUpdateSunPos,
598                             fgEVENT::FG_EVENT_READY, 60000);
599     global_events.Register( "fgUpdateMoonPos()", fgUpdateMoonPos,
600                             fgEVENT::FG_EVENT_READY, 60000);
601
602     // Initialize Lighting interpolation tables
603     l->Init();
604
605     // update the lighting parameters (based on sun angle)
606     global_events.Register( "fgLight::Update()",
607                             fgMethodCallback<fgLIGHT>( &cur_light_params,
608                                                        &fgLIGHT::Update),
609                             fgEVENT::FG_EVENT_READY, 30000 );
610     // update the current timezone each 30 minutes
611     global_events.Register( "fgUpdateLocalTime()", fgUpdateLocalTime,
612                             fgEVENT::FG_EVENT_READY, 1800000);
613
614     // Initialize the weather modeling subsystem
615 #ifndef FG_OLD_WEATHER
616     // Initialize the WeatherDatabase
617     FG_LOG(FG_GENERAL, FG_INFO, "Creating LocalWeatherDatabase");
618     sgVec3 position;
619     sgSetVec3( position, current_aircraft.fdm_state->get_Latitude(),
620                current_aircraft.fdm_state->get_Longitude(),
621                current_aircraft.fdm_state->get_Altitude() * FEET_TO_METER );
622     FGLocalWeatherDatabase::theFGLocalWeatherDatabase = 
623         new FGLocalWeatherDatabase( position, globals->get_options()->get_fg_root() );
624     // cout << theFGLocalWeatherDatabase << endl;
625     // cout << "visibility = " 
626     //      << theFGLocalWeatherDatabase->getWeatherVisibility() << endl;
627
628     WeatherDatabase = FGLocalWeatherDatabase::theFGLocalWeatherDatabase;
629      
630     // register the periodic update of the weather
631     global_events.Register( "weather update", fgUpdateWeatherDatabase,
632                             fgEVENT::FG_EVENT_READY, 30000);
633 #else
634     current_weather.Init();
635 #endif
636
637     // Initialize vor/ndb/ils/fix list management and query systems
638     FG_LOG(FG_GENERAL, FG_INFO, "Loading Navaids");
639
640     FG_LOG(FG_GENERAL, FG_INFO, "  VOR/NDB");
641     current_navlist = new FGNavList;
642     FGPath p_nav( globals->get_options()->get_fg_root() );
643     p_nav.append( "Navaids/default.nav" );
644     current_navlist->init( p_nav );
645
646     FG_LOG(FG_GENERAL, FG_INFO, "  ILS");
647     current_ilslist = new FGILSList;
648     FGPath p_ils( globals->get_options()->get_fg_root() );
649     p_ils.append( "Navaids/default.ils" );
650     current_ilslist->init( p_ils );
651
652     FG_LOG(FG_GENERAL, FG_INFO, "  Fixes");
653     current_fixlist = new FGFixList;
654     FGPath p_fix( globals->get_options()->get_fg_root() );
655     p_fix.append( "Navaids/default.fix" );
656     current_fixlist->init( p_fix );
657
658     // Initialize the underlying radio stack model
659     current_radiostack = new FGRadioStack;
660
661     current_radiostack->search( cur_fdm_state->get_Longitude(),
662                                 cur_fdm_state->get_Latitude(),
663                                 cur_fdm_state->get_Altitude() * FEET_TO_METER );
664
665     current_radiostack->update( cur_fdm_state->get_Longitude(),
666                                 cur_fdm_state->get_Latitude(),
667                                 cur_fdm_state->get_Altitude() * FEET_TO_METER );
668
669     // Search radio database once per second
670     global_events.Register( "fgRadioSearch()", fgRadioSearch,
671                             fgEVENT::FG_EVENT_READY, 1000);
672
673
674     // Initialize the Cockpit subsystem
675     if( fgCockpitInit( &current_aircraft )) {
676         // Cockpit initialized ok.
677     } else {
678         FG_LOG( FG_GENERAL, FG_ALERT, "Error in Cockpit initialization!" );
679         exit(-1);
680     }
681
682     // Initialize the flight model subsystem data structures base on
683     // above values
684
685     if ( cur_fdm_state->init( 1.0 / globals->get_options()->get_model_hz() ) ) {
686         // fdm init successful
687     } else {
688         FG_LOG( FG_GENERAL, FG_ALERT, "FDM init() failed!  Cannot continue." );
689         exit(-1);
690     }
691
692     // *ABCD* I'm just sticking this here for now, it should probably
693     // move eventually
694     scenery.cur_elev = cur_fdm_state->get_Runway_altitude() * FEET_TO_METER;
695
696     if ( cur_fdm_state->get_Altitude() <
697          cur_fdm_state->get_Runway_altitude() + 3.758099)
698     {
699         cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() +
700                                      3.758099 );
701     }
702
703     FG_LOG( FG_GENERAL, FG_INFO,
704             "Updated position (after elevation adj): ("
705             << (cur_fdm_state->get_Latitude() * RAD_TO_DEG) << ", "
706             << (cur_fdm_state->get_Longitude() * RAD_TO_DEG) << ", "
707             << (cur_fdm_state->get_Altitude() * FEET_TO_METER) << ")" );
708     // *ABCD* end of thing that I just stuck in that I should probably
709     // move
710
711     // Joystick support
712     if ( ! fgJoystickInit() ) {
713         FG_LOG( FG_GENERAL, FG_ALERT, "Error in Joystick initialization!" );
714     }
715
716     // Autopilot init
717     current_autopilot = new FGAutopilot;
718     current_autopilot->init();
719
720     // initialize the gui parts of the autopilot
721     NewTgtAirportInit();
722     fgAPAdjustInit() ;
723     NewHeadingInit();
724     NewAltitudeInit();
725
726     // Initialize I/O channels
727 #if ! defined( macintosh )
728     fgIOInit();
729 #endif
730
731     // Initialize the 2D panel.
732     string panel_path =
733         current_properties.getStringValue("/sim/panel/path",
734                                           "Panels/Default/default.xml");
735     current_panel = fgReadPanel(panel_path);
736     if (current_panel == 0) {
737         FG_LOG( FG_INPUT, FG_ALERT, 
738                 "Error reading new panel from " << panel_path );
739     } else {
740         FG_LOG( FG_INPUT, FG_INFO, "Loaded new panel from " << panel_path );
741     }
742
743     // Initialize the BFI
744     FGBFI::init();
745
746     FG_LOG( FG_GENERAL, FG_INFO, endl);
747
748     return true;
749 }
750
751
752 void fgReInitSubsystems( void )
753 {
754     bool freeze = globals->get_freeze();
755     if( !freeze )
756         globals->set_freeze( true );
757     
758     if( global_tile_mgr.init() ) {
759         // Load the local scenery data
760         global_tile_mgr.update( globals->get_options()->get_lon(),
761                                 globals->get_options()->get_lat() );
762     } else {
763         FG_LOG( FG_GENERAL, FG_ALERT, "Error in Tile Manager initialization!" );
764                 exit(-1);
765     }
766
767     // cout << "current scenery elev = " << scenery.cur_elev << endl;
768
769     fgInitPosition();
770     fgFDMSetGroundElevation( globals->get_options()->get_flight_model(), 
771                              scenery.cur_elev );
772
773     // Reset our altitude if we are below ground
774     FG_LOG( FG_GENERAL, FG_DEBUG, "Current altitude = "
775             << cur_fdm_state->get_Altitude() );
776     FG_LOG( FG_GENERAL, FG_DEBUG, "Current runway altitude = "
777             << cur_fdm_state->get_Runway_altitude() );
778
779     if ( cur_fdm_state->get_Altitude() <
780          cur_fdm_state->get_Runway_altitude() + 3.758099)
781     {
782         cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() +
783                                      3.758099 );
784     }
785     double sea_level_radius_meters;
786     double lat_geoc;
787     sgGeodToGeoc( cur_fdm_state->get_Latitude(), cur_fdm_state->get_Altitude(), 
788                   &sea_level_radius_meters, &lat_geoc);
789     cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters *
790                                          METER_TO_FEET );
791         
792     // The following section sets up the flight model EOM parameters
793     // and should really be read in from one or more files.
794
795     // Initial Velocity
796     fgVelocityInit();
797
798     // Initial Orientation
799     cur_fdm_state->
800         set_Euler_Angles( globals->get_options()->get_roll() * DEG_TO_RAD,
801                           globals->get_options()->get_pitch() * DEG_TO_RAD,
802                           globals->get_options()->get_heading() * DEG_TO_RAD );
803
804     // Initialize view parameters
805     FGViewerRPH *pilot_view =
806         (FGViewerRPH *)globals->get_viewmgr()->get_view( 0 );
807
808     pilot_view->set_view_offset( 0.0 );
809     pilot_view->set_goal_view_offset( 0.0 );
810
811     pilot_view->set_geod_view_pos( cur_fdm_state->get_Longitude(), 
812                                    cur_fdm_state->get_Lat_geocentric(), 
813                                    cur_fdm_state->get_Altitude() *
814                                    FEET_TO_METER );
815     pilot_view->set_sea_level_radius( cur_fdm_state->get_Sea_level_radius() *
816                                       FEET_TO_METER ); 
817     pilot_view->set_rph( cur_fdm_state->get_Phi(),
818                          cur_fdm_state->get_Theta(),
819                          cur_fdm_state->get_Psi() );
820
821     // set current view to 0 (first) which is our main pilot view
822     globals->set_current_view( pilot_view );
823
824     FG_LOG( FG_GENERAL, FG_DEBUG, "  abs_view_pos = "
825             << globals->get_current_view()->get_abs_view_pos());
826
827     cur_fdm_state->init( 1.0 / globals->get_options()->get_model_hz() );
828
829     scenery.cur_elev = cur_fdm_state->get_Runway_altitude() * FEET_TO_METER;
830
831     if ( cur_fdm_state->get_Altitude() <
832          cur_fdm_state->get_Runway_altitude() + 3.758099)
833     {
834         cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() +
835                                      3.758099 );
836     }
837
838     controls.reset_all();
839     current_autopilot->reset();
840
841     if( !freeze )
842         globals->set_freeze( false );
843 }