]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_init.cxx
Tweaks to base version check code.
[flightgear.git] / src / Main / fg_init.cxx
index 44117baa2feed4505bffb6aa6b8d1c22cc6e0b19..699765c32d3dabf6a282d014514260b63121dfa1 100644 (file)
 #  include <math.h>
 #endif
 
+#ifdef HAVE_WINDOWS_H
+#  include <windows.h>
+#endif
+
 #include <GL/glut.h>
-#include <simgear/xgl/xgl.h>
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -57,7 +60,7 @@
 #include <simgear/math/point3d.hxx>
 #include <simgear/math/polar3d.hxx>
 #include <simgear/math/sg_geodesy.hxx>
-#include <simgear/misc/fgpath.hxx>
+#include <simgear/misc/sg_path.hxx>
 #include <simgear/timing/sg_time.hxx>
 
 #include <Aircraft/aircraft.hxx>
@@ -77,7 +80,8 @@
 #include <FDM/LaRCsim.hxx>
 #include <FDM/MagicCarpet.hxx>
 #include <Include/general.hxx>
-#include <Joystick/joystick.hxx>
+#include <Input/input.hxx>
+// #include <Joystick/joystick.hxx>
 #include <Objects/matlib.hxx>
 #include <Navaids/fixlist.hxx>
 #include <Navaids/ilslist.hxx>
 
 #include "fg_init.hxx"
 #include "fg_io.hxx"
+#include "fg_commands.hxx"
+#include "fg_props.hxx"
 #include "options.hxx"
 #include "globals.hxx"
-#include "bfi.hxx"
 
 #if defined(FX) && defined(XMESA)
 #include <GL/xmesa.h>
@@ -126,7 +131,7 @@ bool fgInitFGRoot ( int argc, char **argv ) {
     if ( root == "" ) {
        envp = ::getenv( "HOME" );
        if ( envp != NULL ) {
-           FGPath config( envp );
+           SGPath config( envp );
            config.append( ".fgfsrc" );
            char name[256];
            gethostname( name, 256 );
@@ -141,7 +146,7 @@ bool fgInitFGRoot ( int argc, char **argv ) {
     if ( root == "" ) {
        envp = ::getenv( "HOME" );
        if ( envp != NULL ) {
-           FGPath config( envp );
+           SGPath config( envp );
            config.append( ".fgfsrc" );
            root = fgScanForRoot(config.str());
        }
@@ -158,7 +163,9 @@ bool fgInitFGRoot ( int argc, char **argv ) {
     // Otherwise, default to a random compiled-in location if we can't
     // find fg-root any other way.
     if ( root == "" ) {
-#if defined( WIN32 )
+#if defined( __CYGWIN__ )
+        root = "/FlightGear";
+#elif defined( WIN32 )
        root = "\\FlightGear";
 #elif defined( macintosh )
        root = "";
@@ -167,13 +174,37 @@ bool fgInitFGRoot ( int argc, char **argv ) {
 #endif
     }
 
-    FG_LOG(FG_INPUT, FG_INFO, "fg_root = " << root );
+    SG_LOG(SG_INPUT, SG_INFO, "fg_root = " << root );
     globals->set_fg_root(root);
 
     return true;
 }
 
 
+// Return the current base package version
+string fgBasePackageVersion() {
+    SGPath base_path( globals->get_fg_root() );
+    base_path.append("version");
+
+    sg_gzifstream in( base_path.str() );
+    if ( !in.is_open() ) {
+       SGPath old_path( globals->get_fg_root() );
+       old_path.append( "Thanks" );
+       sg_gzifstream old( old_path.str() );
+       if ( !old.is_open() ) {
+           return "[none]";
+       } else {
+           return "[old version]";
+       }
+    }
+
+    string version;
+    in >> version;
+
+    return version;
+}
+
+
 // Read in configuration (file and command line)
 bool fgInitConfig ( int argc, char **argv ) {
 
@@ -181,21 +212,21 @@ bool fgInitConfig ( int argc, char **argv ) {
     fgSetDefaults();
 
     // Read global preferences from $FG_ROOT/preferences.xml
-    FGPath props_path(globals->get_fg_root());
+    SGPath props_path(globals->get_fg_root());
     props_path.append("preferences.xml");
-    FG_LOG(FG_INPUT, FG_INFO, "Reading global preferences");
+    SG_LOG(SG_INPUT, SG_INFO, "Reading global preferences");
     if (!readProperties(props_path.str(), globals->get_props())) {
-      FG_LOG(FG_INPUT, FG_ALERT, "Failed to read global preferences from "
+      SG_LOG(SG_INPUT, SG_ALERT, "Failed to read global preferences from "
             << props_path.str());
     } else {
-      FG_LOG(FG_INPUT, FG_INFO, "Finished Reading global preferences");
+      SG_LOG(SG_INPUT, SG_INFO, "Finished Reading global preferences");
     }
 
     // Attempt to locate and parse the various config files in order
     // from least precidence to greatest precidence
 
     // Check for $fg_root/system.fgfsrc
-    FGPath config( globals->get_fg_root() );
+    SGPath config( globals->get_fg_root() );
     config.append( "system.fgfsrc" );
     fgParseOptions(config.str());
 
@@ -235,15 +266,15 @@ bool fgInitConfig ( int argc, char **argv ) {
 // find basic airport location info from airport database
 bool fgFindAirportID( const string& id, FGAirport *a ) {
     if ( id.length() ) {
-       FGPath path( globals->get_fg_root() );
+       SGPath path( globals->get_fg_root() );
        path.append( "Airports" );
        path.append( "simple.mk4" );
        FGAirports airports( path.c_str() );
 
-       FG_LOG( FG_GENERAL, FG_INFO, "Searching for airport code = " << id );
+       SG_LOG( SG_GENERAL, SG_INFO, "Searching for airport code = " << id );
 
        if ( ! airports.search( id, a ) ) {
-           FG_LOG( FG_GENERAL, FG_ALERT,
+           SG_LOG( SG_GENERAL, SG_ALERT,
                    "Failed to find " << id << " in " << path.str() );
            return false;
        }
@@ -251,7 +282,7 @@ bool fgFindAirportID( const string& id, FGAirport *a ) {
        return false;
     }
 
-    FG_LOG( FG_GENERAL, FG_INFO,
+    SG_LOG( SG_GENERAL, SG_INFO,
            "Position for " << id << " is ("
            << a->longitude << ", "
            << a->latitude << ")" );
@@ -265,13 +296,13 @@ bool fgSetPosFromAirportID( const string& id ) {
     FGAirport a;
     // double lon, lat;
 
-    FG_LOG( FG_GENERAL, FG_INFO,
+    SG_LOG( SG_GENERAL, SG_INFO,
            "Attempting to set starting position from airport code " << id );
 
     if ( fgFindAirportID( id, &a ) ) {
-       fgSetDouble("/position/longitude",  a.longitude );
-       fgSetDouble("/position/latitude",  a.latitude );
-       FG_LOG( FG_GENERAL, FG_INFO,
+       fgSetDouble("/position/longitude-deg",  a.longitude );
+       fgSetDouble("/position/latitude-deg",  a.latitude );
+       SG_LOG( SG_GENERAL, SG_INFO,
                "Position for " << id << " is ("
                << a.longitude << ", "
                << a.latitude << ")" );
@@ -293,27 +324,27 @@ bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
     if ( id.length() ) {
        // set initial position from runway and heading
 
-       FGPath path( globals->get_fg_root() );
+       SGPath path( globals->get_fg_root() );
        path.append( "Airports" );
        path.append( "runways.mk4" );
        FGRunways runways( path.c_str() );
 
-       FG_LOG( FG_GENERAL, FG_INFO,
+       SG_LOG( SG_GENERAL, SG_INFO,
                "Attempting to set starting position from runway code "
                << id << " heading " << tgt_hdg );
 
-       // FGPath inpath( globals->get_fg_root() );
+       // SGPath inpath( globals->get_fg_root() );
        // inpath.append( "Airports" );
        // inpath.append( "apt_simple" );
        // airports.load( inpath.c_str() );
 
-       // FGPath outpath( globals->get_fg_root() );
+       // SGPath outpath( globals->get_fg_root() );
        // outpath.append( "Airports" );
        // outpath.append( "simple.gdbm" );
        // airports.dump_gdbm( outpath.c_str() );
 
        if ( ! runways.search( id, &r ) ) {
-           FG_LOG( FG_GENERAL, FG_ALERT,
+           SG_LOG( SG_GENERAL, SG_ALERT,
                    "Failed to find " << id << " in database." );
            return false;
        }
@@ -327,7 +358,7 @@ bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
            while ( diff < -180.0 ) { diff += 360.0; }
            while ( diff >  180.0 ) { diff -= 360.0; }
            diff = fabs(diff);
-           FG_LOG( FG_GENERAL, FG_INFO,
+           SG_LOG( SG_GENERAL, SG_INFO,
                    "Runway " << r.rwy_no << " heading = " << r.heading <<
                    " diff = " << diff );
            if ( diff < min_diff ) {
@@ -341,7 +372,7 @@ bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
            while ( diff < -180.0 ) { diff += 360.0; }
            while ( diff >  180.0 ) { diff -= 360.0; }
            diff = fabs(diff);
-           FG_LOG( FG_GENERAL, FG_INFO,
+           SG_LOG( SG_GENERAL, SG_INFO,
                    "Runway -" << r.rwy_no << " heading = " <<
                    r.heading + 180.0 <<
                    " diff = " << diff );
@@ -354,7 +385,7 @@ bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
            runways.next( &r );
        }
 
-       FG_LOG( FG_GENERAL, FG_INFO, "closest runway = " << found_r.rwy_no
+       SG_LOG( SG_GENERAL, SG_INFO, "closest runway = " << found_r.rwy_no
                << " + " << found_dir );
 
     } else {
@@ -368,19 +399,19 @@ bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
     double azimuth = found_r.heading + found_dir + 180.0;
     while ( azimuth >= 360.0 ) { azimuth -= 360.0; }
 
-    FG_LOG( FG_GENERAL, FG_INFO,
+    SG_LOG( SG_GENERAL, SG_INFO,
            "runway =  " << found_r.lon << ", " << found_r.lat
-           << " length = " << found_r.length * FEET_TO_METER * 0.5 
+           << " length = " << found_r.length * SG_FEET_TO_METER * 0.5 
            << " heading = " << azimuth );
     
     geo_direct_wgs_84 ( 0, found_r.lat, found_r.lon, 
-                       azimuth, found_r.length * FEET_TO_METER * 0.5 - 5.0,
+                       azimuth, found_r.length * SG_FEET_TO_METER * 0.5 - 5.0,
                        &lat2, &lon2, &az2 );
 
     if ( fabs( fgGetDouble("/sim/startup/offset-distance") ) > SG_EPSILON ) {
        double olat, olon;
        double odist = fgGetDouble("/sim/startup/offset-distance");
-       odist *= NM_TO_METER;
+       odist *= SG_NM_TO_METER;
        double oaz = azimuth;
        if ( fabs(fgGetDouble("/sim/startup/offset-azimuth")) > SG_EPSILON ) {
            oaz = fgGetDouble("/sim/startup/offset-azimuth") + 180;
@@ -390,11 +421,11 @@ bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
        lat2=olat;
        lon2=olon;
     }
-    fgSetDouble("/position/longitude",  lon2 );
-    fgSetDouble("/position/latitude",  lat2 );
-    fgSetDouble("/orientation/heading", heading );
+    fgSetDouble("/position/longitude-deg",  lon2 );
+    fgSetDouble("/position/latitude-deg",  lat2 );
+    fgSetDouble("/orientation/heading-deg", heading );
 
-    FG_LOG( FG_GENERAL, FG_INFO,
+    SG_LOG( SG_GENERAL, SG_INFO,
            "Position for " << id << " is ("
            << lon2 << ", "
            << lat2 << ") new heading is "
@@ -404,48 +435,6 @@ bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
 }
 
 
-// Set initial position and orientation
-bool fgInitPosition( void ) {
-    FGInterface *f = current_aircraft.fdm_state;
-    string id = fgGetString("/sim/startup/airport-id");
-
-    // set initial position from default or command line coordinates
-    f->set_Longitude( fgGetDouble("/position/longitude") * SGD_DEGREES_TO_RADIANS );
-    f->set_Latitude( fgGetDouble("/position/latitude") * SGD_DEGREES_TO_RADIANS );
-
-    FG_LOG( FG_GENERAL, FG_INFO,
-           "scenery.cur_elev = " << scenery.cur_elev );
-    FG_LOG( FG_GENERAL, FG_INFO,
-           "/position/altitude = " << fgGetDouble("/position/altitude") );
-
-    // if we requested on ground startups
-    if ( fgGetBool( "/sim/startup/onground" ) ) {
-        fgSetDouble( "/position/altitude", (scenery.cur_elev + 1)
-                    * METERS_TO_FEET );
-    }
-
-    // if requested altitude is below ground level
-    if ( scenery.cur_elev >
-        fgGetDouble("/position/altitude") * METERS_TO_FEET - 1) {
-       fgSetDouble("/position/altitude",
-                   (scenery.cur_elev + 1) * METERS_TO_FEET );
-    }
-
-    FG_LOG( FG_GENERAL, FG_INFO,
-           "starting altitude is = " <<
-           fgGetDouble("/position/altitude") );
-
-    f->set_Altitude( fgGetDouble("/position/altitude") );
-    FG_LOG( FG_GENERAL, FG_INFO,
-           "Initial position is: ("
-           << (f->get_Longitude() * SGD_RADIANS_TO_DEGREES) << ", "
-           << (f->get_Latitude() * SGD_RADIANS_TO_DEGREES) << ", "
-           << (f->get_Altitude() * FEET_TO_METER) << ")" );
-
-    return true;
-}
-
-
 // General house keeping initializations
 bool fgInitGeneral( void ) {
     string root;
@@ -454,18 +443,18 @@ bool fgInitGeneral( void ) {
     char *mesa_win_state;
 #endif
 
-    FG_LOG( FG_GENERAL, FG_INFO, "General Initialization" );
-    FG_LOG( FG_GENERAL, FG_INFO, "======= ==============" );
+    SG_LOG( SG_GENERAL, SG_INFO, "General Initialization" );
+    SG_LOG( SG_GENERAL, SG_INFO, "======= ==============" );
 
     root = globals->get_fg_root();
     if ( ! root.length() ) {
        // No root path set? Then bail ...
-       FG_LOG( FG_GENERAL, FG_ALERT,
+       SG_LOG( SG_GENERAL, SG_ALERT,
                "Cannot continue without environment variable FG_ROOT"
                << "being defined." );
        exit(-1);
     }
-    FG_LOG( FG_GENERAL, FG_INFO, "FG_ROOT = " << '"' << root << '"' << endl );
+    SG_LOG( SG_GENERAL, SG_INFO, "FG_ROOT = " << '"' << root << '"' << endl );
 
 #if defined(FX) && defined(XMESA)
     // initialize full screen flag
@@ -486,40 +475,6 @@ bool fgInitGeneral( void ) {
 }
 
 
-// set initial aircraft speed
-void
-fgVelocityInit( void ) 
-{
-  if (!fgHasValue("/sim/startup/speed-set")) {
-    current_aircraft.fdm_state->set_V_calibrated_kts(0.0);
-    return;
-  }
-
-  const string speedset = fgGetString("/sim/startup/speed-set");
-  if (speedset == "knots" || speedset == "KNOTS") {
-    current_aircraft.fdm_state
-      ->set_V_calibrated_kts(fgGetDouble("/velocities/airspeed"));
-  } else if (speedset == "mach" || speedset == "MACH") {
-    current_aircraft.fdm_state
-      ->set_Mach_number(fgGetDouble("/velocities/mach"));
-  } else if (speedset == "UVW" || speedset == "uvw") {
-    current_aircraft.fdm_state
-      ->set_Velocities_Wind_Body(fgGetDouble("/velocities/uBody"),
-                                fgGetDouble("/velocities/vBody"),
-                                fgGetDouble("/velocities/wBody"));
-  } else if (speedset == "NED" || speedset == "ned") {
-    current_aircraft.fdm_state
-      ->set_Velocities_Local(fgGetDouble("/velocities/speed-north"),
-                            fgGetDouble("/velocities/speed-east"),
-                            fgGetDouble("/velocities/speed-down"));
-  } else {
-    FG_LOG(FG_GENERAL, FG_ALERT,
-          "Unrecognized value for /sim/startup/speed-set: " << speedset);
-    current_aircraft.fdm_state->set_V_calibrated_kts(0.0);
-  }
-}             
-
-        
 // This is the top level init routine which calls all the other
 // initialization routines.  If you are adding a subsystem to flight
 // gear, its initialization call should located in this routine.
@@ -527,126 +482,93 @@ fgVelocityInit( void )
 bool fgInitSubsystems( void ) {
     fgLIGHT *l = &cur_light_params;
 
-    FG_LOG( FG_GENERAL, FG_INFO, "Initialize Subsystems");
-    FG_LOG( FG_GENERAL, FG_INFO, "========== ==========");
+    SG_LOG( SG_GENERAL, SG_INFO, "Initialize Subsystems");
+    SG_LOG( SG_GENERAL, SG_INFO, "========== ==========");
+
 
-    // Initialize the material property lib
-    FGPath mpath( globals->get_fg_root() );
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the material property subsystem.
+    ////////////////////////////////////////////////////////////////////
+
+    SGPath mpath( globals->get_fg_root() );
     mpath.append( "materials" );
     if ( material_lib.load( mpath.str() ) ) {
     } else {
-       FG_LOG( FG_GENERAL, FG_ALERT, "Error loading material lib!" );
+       SG_LOG( SG_GENERAL, SG_ALERT, "Error loading material lib!" );
        exit(-1);
     }
 
-    // Initialize the Scenery Management subsystem
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the scenery management subsystem.
+    ////////////////////////////////////////////////////////////////////
+
     if ( fgSceneryInit() ) {
        // Material lib initialized ok.
     } else {
-       FG_LOG( FG_GENERAL, FG_ALERT, "Error in Scenery initialization!" );
+       SG_LOG( SG_GENERAL, SG_ALERT, "Error in Scenery initialization!" );
        exit(-1);
     }
 
     if ( global_tile_mgr.init() ) {
        // Load the local scenery data
-       global_tile_mgr.update( fgGetDouble("/position/longitude"),
-                               fgGetDouble("/position/latitude") );
+       global_tile_mgr.update( fgGetDouble("/position/longitude-deg"),
+                               fgGetDouble("/position/latitude-deg") );
     } else {
-       FG_LOG( FG_GENERAL, FG_ALERT, "Error in Tile Manager initialization!" );
+       SG_LOG( SG_GENERAL, SG_ALERT, "Error in Tile Manager initialization!" );
        exit(-1);
     }
 
-    FG_LOG( FG_GENERAL, FG_DEBUG,
+    SG_LOG( SG_GENERAL, SG_DEBUG,
            "Current terrain elevation after tile mgr init " <<
            scenery.cur_elev );
 
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the flight model subsystem.
+    ////////////////////////////////////////////////////////////////////
+
     double dt = 1.0 / fgGetInt("/sim/model-hz");
     // cout << "dt = " << dt << endl;
 
     aircraft_dir = fgGetString("/sim/aircraft-dir");
     const string &model = fgGetString("/sim/flight-model");
-    if (model == "larcsim") {
-       cur_fdm_state = new FGLaRCsim( dt );
-    } else if (model == "jsb") {
-       cur_fdm_state = new FGJSBsim( dt );
-    } else if (model == "ada") {
-       cur_fdm_state = new FGADA( dt );
-    } else if (model == "balloon") {
-       cur_fdm_state = new FGBalloonSim( dt );
-    } else if (model == "magic") {
-       cur_fdm_state = new FGMagicCarpet( dt );
-    } else if (model == "external") {
-       cur_fdm_state = new FGExternal( dt );
-    } else {
-       FG_LOG(FG_GENERAL, FG_ALERT,
-              "Unrecognized flight model '" << model
-              << ", can't init aircraft");
+    try {
+       if (model == "larcsim") {
+           cur_fdm_state = new FGLaRCsim( dt );
+       } else if (model == "jsb") {
+           cur_fdm_state = new FGJSBsim( dt );
+       } else if (model == "ada") {
+           cur_fdm_state = new FGADA( dt );
+       } else if (model == "balloon") {
+           cur_fdm_state = new FGBalloonSim( dt );
+       } else if (model == "magic") {
+           cur_fdm_state = new FGMagicCarpet( dt );
+       } else if (model == "external") {
+           cur_fdm_state = new FGExternal( dt );
+       } else {
+           SG_LOG(SG_GENERAL, SG_ALERT,
+                  "Unrecognized flight model '" << model
+                  << ", can't init aircraft");
+           exit(-1);
+       }
+    } catch ( ... ) {
+       SG_LOG(SG_GENERAL, SG_ALERT, "FlightGear aborting\n\n");
        exit(-1);
     }
-    cur_fdm_state->stamp();
-    cur_fdm_state->set_remainder( 0 );
 
+    cur_fdm_state->init();
+    cur_fdm_state->bind();
+    
     // allocates structures so must happen before any of the flight
     // model or control parameters are set
     fgAircraftInit();   // In the future this might not be the case.
 
-    fgFDMSetGroundElevation( fgGetString("/sim/flight-model"),
-                            scenery.cur_elev );
-    
-    // set the initial position
-    fgInitPosition();
-
-    // Calculate ground elevation at starting point (we didn't have
-    // tmp_abs_view_pos calculated when fgTileMgrUpdate() was called above
-    //
-    // calculalate a cartesian point somewhere along the line between
-    // the center of the earth and our view position.  Doesn't have to
-    // be the exact elevation (this is good because we don't know it
-    // yet :-)
-
-    // now handled inside of the fgTileMgrUpdate()
-
-    // Reset our altitude if we are below ground
-    FG_LOG( FG_GENERAL, FG_DEBUG, "Current altitude = "
-           << cur_fdm_state->get_Altitude() );
-    FG_LOG( FG_GENERAL, FG_DEBUG, "Current runway altitude = " <<
-           cur_fdm_state->get_Runway_altitude() );
-
-    if ( cur_fdm_state->get_Altitude() < cur_fdm_state->get_Runway_altitude() +
-        3.758099) {
-       cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() +
-                                    3.758099 );
-    }
 
-    FG_LOG( FG_GENERAL, FG_INFO,
-           "Updated position (after elevation adj): ("
-           << (cur_fdm_state->get_Latitude() * SGD_RADIANS_TO_DEGREES) << ", "
-           << (cur_fdm_state->get_Longitude() * SGD_RADIANS_TO_DEGREES) << ", "
-           << (cur_fdm_state->get_Altitude() * FEET_TO_METER) << ")" );
-
-    // We need to calculate a few sea_level_radius here so we can pass
-    // the correct value to the view class
-    double sea_level_radius_meters;
-    double lat_geoc;
-    sgGeodToGeoc( cur_fdm_state->get_Latitude(),
-                 cur_fdm_state->get_Altitude(),
-                 &sea_level_radius_meters, &lat_geoc);
-    cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters *
-                                        METER_TO_FEET );
-
-    // The following section sets up the flight model EOM parameters
-    // and should really be read in from one or more files.
-
-    // Initial Velocity
-    fgVelocityInit();
-
-    // Initial Orientation
-//     cur_fdm_state->
-//     set_Euler_Angles( fgGetDouble("/orientation/roll") * SGD_DEGREES_TO_RADIANS,
-//                       fgGetDouble("/orientation/pitch") * SGD_DEGREES_TO_RADIANS,
-//                       fgGetDouble("/orientation/heading") * SGD_DEGREES_TO_RADIANS );
-
-    // Initialize the event manager
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the event manager subsystem.
+    ////////////////////////////////////////////////////////////////////
+
     global_events.Init();
 
     // Output event stats every 60 seconds
@@ -655,6 +577,11 @@ bool fgInitSubsystems( void ) {
                                                   &fgEVENT_MGR::PrintStats),
                            fgEVENT::FG_EVENT_READY, 60000 );
 
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the view manager subsystem.
+    ////////////////////////////////////////////////////////////////////
+
     // Initialize win_ratio parameters
     for ( int i = 0; i < globals->get_viewmgr()->size(); ++i ) {
        globals->get_viewmgr()->get_view(i)->
@@ -669,9 +596,9 @@ bool fgInitSubsystems( void ) {
     pilot_view->set_geod_view_pos( cur_fdm_state->get_Longitude(), 
                                   cur_fdm_state->get_Lat_geocentric(), 
                                   cur_fdm_state->get_Altitude() *
-                                  FEET_TO_METER );
+                                  SG_FEET_TO_METER );
     pilot_view->set_sea_level_radius( cur_fdm_state->get_Sea_level_radius() *
-                                     FEET_TO_METER ); 
+                                     SG_FEET_TO_METER ); 
     pilot_view->set_rph( cur_fdm_state->get_Phi(),
                         cur_fdm_state->get_Theta(),
                         cur_fdm_state->get_Psi() );
@@ -679,9 +606,14 @@ bool fgInitSubsystems( void ) {
     // set current view to 0 (first) which is our main pilot view
     globals->set_current_view( pilot_view );
 
-    FG_LOG( FG_GENERAL, FG_DEBUG, "  abs_view_pos = "
+    SG_LOG( SG_GENERAL, SG_DEBUG, "  abs_view_pos = "
            << globals->get_current_view()->get_abs_view_pos());
 
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the lighting subsystem.
+    ////////////////////////////////////////////////////////////////////
+
     // fgUpdateSunPos() needs a few position and view parameters set
     // so it can calculate local relative sun angle and a few other
     // things for correctly orienting the sky.
@@ -700,18 +632,29 @@ bool fgInitSubsystems( void ) {
                            fgMethodCallback<fgLIGHT>( &cur_light_params,
                                                       &fgLIGHT::Update),
                            fgEVENT::FG_EVENT_READY, 30000 );
+
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the local time subsystem.
+    ////////////////////////////////////////////////////////////////////
+
     // update the current timezone each 30 minutes
     global_events.Register( "fgUpdateLocalTime()", fgUpdateLocalTime,
                            fgEVENT::FG_EVENT_READY, 1800000);
 
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the weather subsystem.
+    ////////////////////////////////////////////////////////////////////
+
     // Initialize the weather modeling subsystem
 #ifndef FG_OLD_WEATHER
     // Initialize the WeatherDatabase
-    FG_LOG(FG_GENERAL, FG_INFO, "Creating LocalWeatherDatabase");
+    SG_LOG(SG_GENERAL, SG_INFO, "Creating LocalWeatherDatabase");
     sgVec3 position;
     sgSetVec3( position, current_aircraft.fdm_state->get_Latitude(),
               current_aircraft.fdm_state->get_Longitude(),
-              current_aircraft.fdm_state->get_Altitude() * FEET_TO_METER );
+              current_aircraft.fdm_state->get_Altitude() * SG_FEET_TO_METER );
     FGLocalWeatherDatabase::theFGLocalWeatherDatabase = 
        new FGLocalWeatherDatabase( position,
                                    globals->get_fg_root() );
@@ -721,7 +664,7 @@ bool fgInitSubsystems( void ) {
 
     WeatherDatabase = FGLocalWeatherDatabase::theFGLocalWeatherDatabase;
     
-    double init_vis = fgGetDouble("/environment/visibility");
+    double init_vis = fgGetDouble("/environment/visibility-m");
     if ( init_vis > 0 ) {
        WeatherDatabase->setWeatherVisibility( init_vis );
     }
@@ -733,79 +676,75 @@ bool fgInitSubsystems( void ) {
     current_weather.Init();
 #endif
 
+    ////////////////////////////////////////////////////////////////////
     // Initialize vor/ndb/ils/fix list management and query systems
-    FG_LOG(FG_GENERAL, FG_INFO, "Loading Navaids");
+    ////////////////////////////////////////////////////////////////////
 
-    FG_LOG(FG_GENERAL, FG_INFO, "  VOR/NDB");
+    SG_LOG(SG_GENERAL, SG_INFO, "Loading Navaids");
+
+    SG_LOG(SG_GENERAL, SG_INFO, "  VOR/NDB");
     current_navlist = new FGNavList;
-    FGPath p_nav( globals->get_fg_root() );
+    SGPath p_nav( globals->get_fg_root() );
     p_nav.append( "Navaids/default.nav" );
     current_navlist->init( p_nav );
 
-    FG_LOG(FG_GENERAL, FG_INFO, "  ILS and Marker Beacons");
+    SG_LOG(SG_GENERAL, SG_INFO, "  ILS and Marker Beacons");
     current_beacons = new FGMarkerBeacons;
     current_beacons->init();
     current_ilslist = new FGILSList;
-    FGPath p_ils( globals->get_fg_root() );
+    SGPath p_ils( globals->get_fg_root() );
     p_ils.append( "Navaids/default.ils" );
     current_ilslist->init( p_ils );
 
-    FG_LOG(FG_GENERAL, FG_INFO, "  Fixes");
+    SG_LOG(SG_GENERAL, SG_INFO, "  Fixes");
     current_fixlist = new FGFixList;
-    FGPath p_fix( globals->get_fg_root() );
+    SGPath p_fix( globals->get_fg_root() );
     p_fix.append( "Navaids/default.fix" );
     current_fixlist->init( p_fix );
 
-    // Radio stack subsystem.
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the built-in commands.
+    ////////////////////////////////////////////////////////////////////
+    fgInitCommands();
+
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the radio stack subsystem.
+    ////////////////////////////////////////////////////////////////////
+
+                               // A textbook example of how FGSubsystem
+                               // should work...
     current_radiostack = new FGRadioStack;
     current_radiostack->init();
     current_radiostack->bind();
 
-    // Initialize the Cockpit subsystem
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the cockpit subsystem
+    ////////////////////////////////////////////////////////////////////
+
     if( fgCockpitInit( &current_aircraft )) {
        // Cockpit initialized ok.
     } else {
-       FG_LOG( FG_GENERAL, FG_ALERT, "Error in Cockpit initialization!" );
+       SG_LOG( SG_GENERAL, SG_ALERT, "Error in Cockpit initialization!" );
        exit(-1);
     }
 
-    // Initialize the flight model subsystem data structures base on
-    // above values
 
-    cur_fdm_state->init();
-    cur_fdm_state->bind();
-//     if ( cur_fdm_state->init( 1.0 / fgGetInt("/sim/model-hz") ) ) {
-//     // fdm init successful
-//     } else {
-//     FG_LOG( FG_GENERAL, FG_ALERT, "FDM init() failed!  Cannot continue." );
-//     exit(-1);
-//     }
-
-    // *ABCD* I'm just sticking this here for now, it should probably
-    // move eventually
-    scenery.cur_elev = cur_fdm_state->get_Runway_altitude() * FEET_TO_METER;
-
-    if ( cur_fdm_state->get_Altitude() <
-        cur_fdm_state->get_Runway_altitude() + 3.758099)
-    {
-       cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() +
-                                    3.758099 );
-    }
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the joystick subsystem.
+    ////////////////////////////////////////////////////////////////////
 
-    FG_LOG( FG_GENERAL, FG_INFO,
-           "Updated position (after elevation adj): ("
-           << (cur_fdm_state->get_Latitude() * SGD_RADIANS_TO_DEGREES) << ", "
-           << (cur_fdm_state->get_Longitude() * SGD_RADIANS_TO_DEGREES) << ", "
-           << (cur_fdm_state->get_Altitude() * FEET_TO_METER) << ")" );
-    // *ABCD* end of thing that I just stuck in that I should probably
-    // move
-
-    // Joystick support
-    if ( ! fgJoystickInit() ) {
-       FG_LOG( FG_GENERAL, FG_ALERT, "Error in Joystick initialization!" );
-    }
+    // if ( ! fgJoystickInit() ) {
+    //   SG_LOG( SG_GENERAL, SG_ALERT, "Error in Joystick initialization!" );
+    // }
+
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the autopilot subsystem.
+    ////////////////////////////////////////////////////////////////////
 
-    // Autopilot init
     current_autopilot = new FGAutopilot;
     current_autopilot->init();
 
@@ -815,7 +754,11 @@ bool fgInitSubsystems( void ) {
     NewHeadingInit();
     NewAltitudeInit();
 
-    // Initialize I/O channels
+    
+    ////////////////////////////////////////////////////////////////////
+    // Initialize I/O subsystem.
+    ////////////////////////////////////////////////////////////////////
+
 #if ! defined( macintosh )
     fgIOInit();
 #endif
@@ -825,21 +768,43 @@ bool fgInitSubsystems( void ) {
                                    "Panels/Default/default.xml");
     current_panel = fgReadPanel(panel_path);
     if (current_panel == 0) {
-       FG_LOG( FG_INPUT, FG_ALERT, 
+       SG_LOG( SG_INPUT, SG_ALERT, 
                "Error reading new panel from " << panel_path );
     } else {
-       FG_LOG( FG_INPUT, FG_INFO, "Loaded new panel from " << panel_path );
+       SG_LOG( SG_INPUT, SG_INFO, "Loaded new panel from " << panel_path );
        current_panel->init();
        current_panel->bind();
     }
 
-    // Initialize the BFI
-    FGBFI::init();
+    
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the default (kludged) properties.
+    ////////////////////////////////////////////////////////////////////
+
+    fgInitProps();
+
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the controls subsystem.
+    ////////////////////////////////////////////////////////////////////
 
     controls.init();
     controls.bind();
 
-    FG_LOG( FG_GENERAL, FG_INFO, endl);
+
+    ////////////////////////////////////////////////////////////////////
+    // Initialize the input subsystem.
+    ////////////////////////////////////////////////////////////////////
+
+    current_input.init();
+    current_input.bind();
+
+
+    ////////////////////////////////////////////////////////////////////////
+    // End of subsystem initialization.
+    ////////////////////////////////////////////////////////////////////
+
+    SG_LOG( SG_GENERAL, SG_INFO, endl);
 
                                // Save the initial state for future
                                // reference.
@@ -851,8 +816,8 @@ bool fgInitSubsystems( void ) {
 
 void fgReInitSubsystems( void )
 {
-    FG_LOG( FG_GENERAL, FG_INFO,
-           "/position/altitude = " << fgGetDouble("/position/altitude") );
+    SG_LOG( SG_GENERAL, SG_INFO,
+           "/position/altitude = " << fgGetDouble("/position/altitude-ft") );
 
     bool freeze = globals->get_freeze();
     if( !freeze )
@@ -860,56 +825,19 @@ void fgReInitSubsystems( void )
     
     // Initialize the Scenery Management subsystem
     if ( ! fgSceneryInit() ) {
-       FG_LOG( FG_GENERAL, FG_ALERT, "Error in Scenery initialization!" );
+       SG_LOG( SG_GENERAL, SG_ALERT, "Error in Scenery initialization!" );
        exit(-1);
     }
 
     if( global_tile_mgr.init() ) {
        // Load the local scenery data
-       global_tile_mgr.update( fgGetDouble("/position/longitude"),
-                               fgGetDouble("/position/latitude") );
+       global_tile_mgr.update( fgGetDouble("/position/longitude-deg"),
+                               fgGetDouble("/position/latitude-deg") );
     } else {
-       FG_LOG( FG_GENERAL, FG_ALERT, "Error in Tile Manager initialization!" );
+       SG_LOG( SG_GENERAL, SG_ALERT, "Error in Tile Manager initialization!" );
                exit(-1);
     }
 
-    // cout << "current scenery elev = " << scenery.cur_elev << endl;
-
-    fgFDMSetGroundElevation( fgGetString("/sim/flight-model"), 
-                            scenery.cur_elev );
-    fgInitPosition();
-
-    // Reset our altitude if we are below ground
-    FG_LOG( FG_GENERAL, FG_DEBUG, "Current altitude = "
-           << cur_fdm_state->get_Altitude() );
-    FG_LOG( FG_GENERAL, FG_DEBUG, "Current runway altitude = "
-           << cur_fdm_state->get_Runway_altitude() );
-
-    if ( cur_fdm_state->get_Altitude() <
-        cur_fdm_state->get_Runway_altitude() + 3.758099)
-    {
-       cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() +
-                                    3.758099 );
-    }
-    double sea_level_radius_meters;
-    double lat_geoc;
-    sgGeodToGeoc( cur_fdm_state->get_Latitude(), cur_fdm_state->get_Altitude(), 
-                 &sea_level_radius_meters, &lat_geoc);
-    cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters *
-                                        METER_TO_FEET );
-       
-    // The following section sets up the flight model EOM parameters
-    // and should really be read in from one or more files.
-
-    // Initial Velocity
-    fgVelocityInit();
-
-    // Initial Orientation
-//     cur_fdm_state->
-//     set_Euler_Angles( fgGetDouble("/orientation/roll") * SGD_DEGREES_TO_RADIANS,
-//                       fgGetDouble("/orientation/pitch") * SGD_DEGREES_TO_RADIANS,
-//                       fgGetDouble("/orientation/heading") * SGD_DEGREES_TO_RADIANS );
-
     // Initialize view parameters
     FGViewerRPH *pilot_view =
        (FGViewerRPH *)globals->get_viewmgr()->get_view( 0 );
@@ -920,9 +848,9 @@ void fgReInitSubsystems( void )
     pilot_view->set_geod_view_pos( cur_fdm_state->get_Longitude(), 
                                   cur_fdm_state->get_Lat_geocentric(), 
                                   cur_fdm_state->get_Altitude() *
-                                  FEET_TO_METER );
+                                  SG_FEET_TO_METER );
     pilot_view->set_sea_level_radius( cur_fdm_state->get_Sea_level_radius() *
-                                     FEET_TO_METER ); 
+                                     SG_FEET_TO_METER ); 
     pilot_view->set_rph( cur_fdm_state->get_Phi(),
                         cur_fdm_state->get_Theta(),
                         cur_fdm_state->get_Psi() );
@@ -930,25 +858,19 @@ void fgReInitSubsystems( void )
     // set current view to 0 (first) which is our main pilot view
     globals->set_current_view( pilot_view );
 
-    FG_LOG( FG_GENERAL, FG_DEBUG, "  abs_view_pos = "
+    SG_LOG( SG_GENERAL, SG_DEBUG, "  abs_view_pos = "
            << globals->get_current_view()->get_abs_view_pos());
 
     cur_fdm_state->init();
-//     cur_fdm_state->bind();
-//     cur_fdm_state->init( 1.0 / fgGetInt("/sim/model-hz") );
-
-    scenery.cur_elev = cur_fdm_state->get_Runway_altitude() * FEET_TO_METER;
-
-    if ( cur_fdm_state->get_Altitude() <
-        cur_fdm_state->get_Runway_altitude() + 3.758099)
-    {
-       cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() +
-                                    3.758099 );
-    }
 
     controls.reset_all();
     current_autopilot->reset();
 
+    fgUpdateSunPos();
+    fgUpdateMoonPos();
+    cur_light_params.Update();
+    fgUpdateLocalTime();
+
     if( !freeze )
         globals->set_freeze( false );
 }