]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/options.cxx
Added static port system and a new altimeter model connected to it.
[flightgear.git] / src / Main / options.cxx
index 389ccc72aca8f7285fb334cf09b0128d6b84c198..79c2ee290aa044ddbc0ebe5ffdfbc3f3e5632ad2 100644 (file)
@@ -35,6 +35,9 @@
 
 #include STL_STRING
 
+#include <plib/ul.h>
+
+#include <simgear/math/sg_random.h>
 #include <simgear/misc/sgstream.hxx>
 #include <simgear/misc/sg_path.hxx>
 #include <simgear/route/route.hxx>
@@ -67,7 +70,9 @@ enum
 {
     FG_OPTIONS_OK = 0,
     FG_OPTIONS_HELP = 1,
-    FG_OPTIONS_ERROR = 2
+    FG_OPTIONS_ERROR = 2,
+    FG_OPTIONS_VERBOSE_HELP = 3,
+    FG_OPTIONS_SHOW_AIRCRAFT = 4
 };
 
 static double
@@ -167,7 +172,6 @@ fgSetDefaults ()
                                // Rendering options
     fgSetString("/sim/rendering/fog", "nicest");
     fgSetBool("/environment/clouds/status", true);
-    fgSetDouble("/environment/clouds/altitude-ft", 5000);
     fgSetBool("/sim/startup/fullscreen", false);
     fgSetBool("/sim/rendering/shading", true);
     fgSetBool("/sim/rendering/skyblend", true);
@@ -200,6 +204,32 @@ fgSetDefaults ()
 }
 
 
+static bool
+parse_wind (const string &wind, double * min_hdg, double * max_hdg,
+           double * speed, double * gust)
+{
+  string::size_type pos = wind.find('@');
+  if (pos == string::npos)
+    return false;
+  string dir = wind.substr(0, pos);
+  string spd = wind.substr(pos+1);
+  pos = dir.find(':');
+  if (pos == string::npos) {
+    *min_hdg = *max_hdg = atof(dir.c_str());
+  } else {
+    *min_hdg = atof(dir.substr(0,pos).c_str());
+    *max_hdg = atof(dir.substr(pos+1).c_str());
+  }
+  pos = spd.find(':');
+  if (pos == string::npos) {
+    *speed = *gust = atof(spd.c_str());
+  } else {
+    *speed = atof(spd.substr(0,pos).c_str());
+    *gust = atof(spd.substr(pos+1).c_str());
+  }
+  return true;
+}
+
 // parse a time string ([+/-]%f[:%f[:%f]]) into hours
 static double
 parse_time(const string& time_in) {
@@ -470,13 +500,40 @@ add_channel( const string& type, const string& channel_str ) {
 }
 
 
+static void
+setup_wind (double min_hdg, double max_hdg, double speed, double gust)
+{
+  fgSetDouble("/environment/wind-from-heading-deg", min_hdg);
+  fgSetDouble("/environment/params/min-wind-from-heading-deg", min_hdg);
+  fgSetDouble("/environment/params/max-wind-from-heading-deg", max_hdg);
+  fgSetDouble("/environment/wind-speed-kt", speed);
+  fgSetDouble("/environment/params/base-wind-speed-kt", speed);
+  fgSetDouble("/environment/params/gust-wind-speed-kt", gust);
+
+  SG_LOG(SG_GENERAL, SG_INFO, "WIND: " << min_hdg << '@' << 
+        speed << " knots" << endl);
+
+#ifdef FG_WEATHERCM
+  // convert to fps
+  speed *= SG_NM_TO_METER * SG_METER_TO_FEET * (1.0/3600);
+  while (min_hdg > 360)
+    min_hdg -= 360;
+  while (min_hdg <= 0)
+    min_hdg += 360;
+  min_hdg *= SGD_DEGREES_TO_RADIANS;
+  fgSetDouble("/environment/wind-from-north-fps", speed * cos(dir));
+  fgSetDouble("/environment/wind-from-east-fps", speed * sin(dir));
+#endif // FG_WEATHERCM
+}
+
+
 // Parse --wp=ID[@alt]
 static bool 
 parse_wp( const string& arg ) {
     string id, alt_str;
     double alt = 0.0;
 
-    unsigned int pos = arg.find( "@" );
+    string::size_type pos = arg.find( "@" );
     if ( pos != string::npos ) {
        id = arg.substr( 0, pos );
        alt_str = arg.substr( pos + 1 );
@@ -541,6 +598,9 @@ parse_option (const string& arg)
     if ( (arg == "--help") || (arg == "-h") ) {
        // help/usage request
        return(FG_OPTIONS_HELP);
+    } else if ( (arg == "--verbose") || (arg == "-v") ) {
+        // verbose help/usage request
+        return(FG_OPTIONS_VERBOSE_HELP);
     } else if ( arg == "--disable-game-mode") {
        fgSetBool("/sim/startup/game-mode", false);
     } else if ( arg == "--enable-game-mode" ) {
@@ -557,6 +617,10 @@ parse_option (const string& arg)
        fgSetString("/sim/startup/mouse-pointer", "disabled");
     } else if ( arg == "--enable-mouse-pointer" ) {
        fgSetString("/sim/startup/mouse-pointer", "enabled");
+    } else if ( arg == "--disable-random-objects" ) {
+        fgSetBool("/sim/rendering/random-objects", false);
+    } else if ( arg == "--enable-random-objects" ) {
+        fgSetBool("/sim/rendering/random-objects", true);
     } else if ( arg == "--disable-freeze" ) {
         fgSetBool("/sim/freeze/master", false);
     } else if ( arg == "--enable-freeze" ) {
@@ -684,6 +748,8 @@ parse_option (const string& arg)
        fgSetString("/sim/aero", arg.substr(7).c_str());
     } else if ( arg.find( "--aircraft-dir=" ) == 0 ) {
         fgSetString("/sim/aircraft-dir", arg.substr(15).c_str());
+    } else if ( arg.find( "--show-aircraft") == 0) {
+        return(FG_OPTIONS_SHOW_AIRCRAFT);
     } else if ( arg.find( "--model-hz=" ) == 0 ) {
        fgSetInt("/sim/model-hz", atoi(arg.substr(11)));
     } else if ( arg.find( "--speed=" ) == 0 ) {
@@ -706,14 +772,10 @@ parse_option (const string& arg)
         fgSetBool("/environment/clouds/status", false);
     } else if ( arg == "--enable-clouds" ) {
         fgSetBool("/environment/clouds/status", true);
-    } else if ( arg.find( "--clouds-asl=" ) == 0 ) {
-                               // FIXME: check units
-        if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
-         fgSetDouble("/environment/clouds/altitude-ft",
-                               atof(arg.substr(13)));
-       else
-         fgSetDouble("/environment/clouds/altitude-ft",
-                               atof(arg.substr(13)) * SG_METER_TO_FEET);
+    } else if ( arg == "--disable-clouds3d" ) {
+        fgSetBool("/sim/rendering/clouds3d", false);
+    } else if ( arg == "--enable-clouds3d" ) {
+        fgSetBool("/sim/rendering/clouds3d", true);
     } else if ( arg.find( "--fov=" ) == 0 ) {
        parse_fov( arg.substr(6) );
     } else if ( arg == "--disable-fullscreen" ) {
@@ -850,7 +912,7 @@ parse_option (const string& arg)
 #endif
     } else if ( arg.find( "--prop:" ) == 0 ) {
         string assign = arg.substr(7);
-       unsigned int pos = assign.find('=');
+       string::size_type pos = assign.find('=');
        if ( pos == arg.npos || pos == 0 ) {
            SG_LOG( SG_GENERAL, SG_ALERT, "Bad property assignment: " << arg );
            return FG_OPTIONS_ERROR;
@@ -884,10 +946,10 @@ parse_option (const string& arg)
        } else {
            default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
        }
-       FGViewer *pilot_view =
-           (FGViewer *)globals->get_viewmgr()->get_view( 0 );
-       pilot_view->setHeadingOffset_deg( default_view_offset * SGD_RADIANS_TO_DEGREES );
-       pilot_view->setGoalHeadingOffset_deg( default_view_offset * SGD_RADIANS_TO_DEGREES );
+       /* apparently not used (CLO, 11 Jun 2002) 
+           FGViewer *pilot_view =
+             (FGViewer *)globals->get_viewmgr()->get_view( 0 ); */
+        // this will work without calls to the viewer...
        fgSetDouble( "/sim/current-view/heading-offset-deg",
                      default_view_offset  * SGD_RADIANS_TO_DEGREES );
     // $$$ end - added VS Renganathan, 14 Oct 2K
@@ -896,33 +958,19 @@ parse_option (const string& arg)
     } else if ( arg.find( "--visibility-miles=" ) == 0 ) {
         double visibility = atof(arg.substr(19)) * 5280.0 * SG_FEET_TO_METER;
        fgSetDouble("/environment/visibility-m", visibility);
+    } else if ( arg.find( "--random-wind" ) == 0 ) {
+        double min_hdg = sg_random() * 360.0;
+        double max_hdg = min_hdg + (20 - sqrt(sg_random() * 400));
+       double speed = 40 - sqrt(sg_random() * 1600.0);
+       double gust = speed + (10 - sqrt(sg_random() * 100));
+       setup_wind(min_hdg, max_hdg, speed, gust);
     } else if ( arg.find( "--wind=" ) == 0 ) {
-        string val = arg.substr(7);
-       unsigned int pos = val.find('@');
-       if ( pos == string::npos ) {
-         SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << val );
+        double min_hdg, max_hdg, speed, gust;
+        if (!parse_wind(arg.substr(7), &min_hdg, &max_hdg, &speed, &gust)) {
+         SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << arg.substr(7) );
          return FG_OPTIONS_ERROR;
        }
-       double dir = atof(val.substr(0,pos).c_str());
-       double speed = atof(val.substr(pos+1).c_str());
-       SG_LOG(SG_GENERAL, SG_INFO, "WIND: " << dir << '@' << 
-              speed << " knots" << endl);
-       fgSetDouble("/environment/wind-from-heading-deg", dir);
-       fgSetDouble("/environment/wind-speed-kt", speed);
-
-#ifdef FG_WEATHERCM
-        // convert to fps
-       speed *= SG_NM_TO_METER * SG_METER_TO_FEET * (1.0/3600);
-       while (dir > 360)
-         dir -= 360;
-       while (dir <= 0)
-         dir += 360;
-       dir *= SGD_DEGREES_TO_RADIANS;
-       fgSetDouble("/environment/wind-from-north-fps",
-                   speed * cos(dir));
-       fgSetDouble("/environment/wind-from-east-fps",
-                   speed * sin(dir));
-#endif // FG_WEATHERCM
+       setup_wind(min_hdg, max_hdg, speed, gust);
     } else if ( arg.find( "--wp=" ) == 0 ) {
        parse_wp( arg.substr( 5 ) );
     } else if ( arg.find( "--flight-plan=") == 0) {
@@ -1026,6 +1074,8 @@ void
 fgParseArgs (int argc, char **argv)
 {
     bool in_options = true;
+    bool verbose = false;
+    bool help = false;
 
     SG_LOG(SG_GENERAL, SG_INFO, "Processing command line arguments");
 
@@ -1037,11 +1087,16 @@ fgParseArgs (int argc, char **argv)
            in_options = false;
          } else {
            int result = parse_option(arg);
-           if ( (result == FG_OPTIONS_HELP) ||
-                (result == FG_OPTIONS_ERROR) ) {
-             fgUsage();
-             exit(-1);
-           }
+           if ((result == FG_OPTIONS_HELP) || (result == FG_OPTIONS_ERROR))
+              help = true;
+
+            else if (result == FG_OPTIONS_VERBOSE_HELP)
+              verbose = true;
+
+            else if (result == FG_OPTIONS_SHOW_AIRCRAFT) {
+               fgShowAircraft();
+               exit(0);
+            }
          }
        } else {
          in_options = false;
@@ -1051,6 +1106,11 @@ fgParseArgs (int argc, char **argv)
        }
     }
 
+    if (help) {
+       fgUsage(verbose);
+       exit(0);
+    }
+
     SG_LOG(SG_GENERAL, SG_INFO, "Finished command line arguments");
 }
 
@@ -1087,9 +1147,8 @@ fgParseOptions (const string& path) {
         }
 
        if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
-           SG_LOG( SG_GENERAL, SG_ALERT, 
-                   "Config file parse error: " << path << " '" 
-                   << line << "'" );
+            cout << endl << "Config file parse error: " << path << " '" 
+                   << line << "'" << endl;
            fgUsage();
            exit(-1);
        }
@@ -1100,188 +1159,152 @@ fgParseOptions (const string& path) {
 
 // Print usage message
 void 
-fgUsage ()
+fgUsage (bool verbose)
 {
-    cout <<
-"Usage: fgfs [ option ... ]\n\
-\n\
-General Options:\n\
-    --help, -h                    Print usage\n\
-    --fg-root=path                Specify the root data path\n\
-    --fg-scenery=path             Specify the base scenery path\n\
-                                  Defaults to $FG_ROOT/Scenery\n\
-    --disable-game-mode           Disable full-screen game mode\n\
-    --enable-game-mode            Enable full-screen game mode\n\
-    --disable-splash-screen       Disable splash screen\n\
-    --enable-splash-screen        Enable splash screen\n\
-    --disable-intro-music         Disable introduction music\n\
-    --enable-intro-music          Enable introduction music\n\
-    --disable-mouse-pointer       Disable extra mouse pointer\n\
-    --enable-mouse-pointer        Enable extra mouse pointer (i.e. for full-\n\
-                                  screen Voodoo based cards)\n\
-    --disable-freeze              Start in a running state\n\
-    --enable-freeze               Start in a frozen state\n\
-    --disable-fuel-freeze         Fuel is consumed normally\n\
-    --enable-fuel-freeze          Fuel tank quantity forced to remain constant\n\
-    --disable-clock-freeze        Clock advances normally\n\
-    --enable-clock-freeze         Do not advance clock\n\
-    --control=mode                Primary control mode (joystick, keyboard,\n\
-                                  mouse)\n\
-    --enable-auto-coordination    Enable auto coordination\n\
-    --disable-auto-coordination   Disable auto coordination\n\
-    --browser-app=path            Specify path to your web browser\n\
-    --prop:name=value             Set property <name> to <value>\n\
-    --config=path                 Load additional properties from path\n\
-    --units-feet                  Use feet for distances\n\
-    --units-meters                Use meters for distances\n\
-\n\
-Features:\n\
-    --disable-hud                 Disable Heads Up Display (HUD)\n\
-    --enable-hud                  Enable Heads Up Display (HUD)\n\
-    --disable-panel               Disable instrument panel\n\
-    --enable-panel                Enable instrument panel\n\
-    --disable-sound               Disable sound effects\n\
-    --enable-sound                Enable sound effects\n\
-    --disable-anti-alias-hud      Disable anti-aliased HUD\n\
-    --enable-anti-alias-hud       Enable anti-aliased HUD\n\
-\n\
-Aircraft:\n\
-    --aircraft=name               Select an aircraft profile as defined by a\n\
-                                  top level <name>-set.xml\n\
-\n\
-Flight Model:\n\
-    --fdm=name                    Select the core flight dynamics model\n\
-                                  Can be one of jsb, larcsim, yasim, magic,\n\
-                                  balloon, ada, external, or null\n\
-    --aero=name                   Select aircraft aerodynamics model to load\n\
-    --model-hz=n                  Run the FDM this rate (iterations per\n\
-                                  second)\n\
-    --speed=n                     Run the FDM 'n' times faster than real time\n\
-    --notrim                      Do NOT attempt to trim the model (only with\n\
-                                  fdm=jsbsim)\n\
-    --on-ground                   Start at ground level (default)\n\
-    --in-air                      Start in air (implied when using --altitude)\n\
-    --wind=DIR@SPEED              Specify wind coming from DIR (degrees) at\n\
-                                  SPEED (knots)\n\
-\n\
-Aircraft model directory (UIUC FDM ONLY):\n\
-    --aircraft-dir=path           Aircraft directory relative to the path of\n\
-                                  the executable\n\
-\n\
-Initial Position and Orientation:\n\
-    --airport-id=ID               Specify starting position by airport ID\n\
-    --offset-distance=nm          Specify distance to threshold\n\
-    --offset-azimuth=degrees      Specify heading to threshold\n\
-    --lon=degrees                 Starting longitude (west = -)\n\
-    --lat=degrees                 Starting latitude (south = -)\n\
-    --altitude=value              Starting altitude (in feet unless\n\
-                                  --units-meters specified)\n\
-    --heading=degrees             Specify heading (yaw) angle (Psi)\n\
-    --roll=degrees                Specify roll angle (Phi)\n\
-    --pitch=degrees               Specify pitch angle (Theta)\n\
-    --uBody=units_per_sec         Specify velocity along the body X axis\n\
-                                  (in feet unless --units-meters specified)\n\
-    --vBody=units_per_sec         Specify velocity along the body Y axis\n\
-                                  (in feet unless --units-meters specified)\n\
-    --wBody=units_per_sec         Specify velocity along the body Z axis\n\
-                                  (in feet unless --units-meters specified)\n\
-    --vc=knots                    Specify initial airspeed\n\
-    --mach=num                    Specify initial mach number\n\
-    --glideslope=degreees         Specify flight path angle (can be positive)\n\
-    --roc=fpm                     Specify initial climb rate (can be negative)\n\
-\n\
-Rendering Options:\n\
-    --bpp=depth                   Specify the bits per pixel\n\
-    --fog-disable                 Disable fog/haze\n\
-    --fog-fastest                 Enable fastest fog/haze\n\
-    --fog-nicest                  Enable nicest fog/haze\n\
-    --enable-clouds               Enable cloud layers\n\
-    --disable-clouds              Disable cloud layers\n\
-    --clouds-asl=altitude         Specify altitude of cloud layer above sea\n\
-                                  level\n\
-    --fov=degrees                 Specify field of view angle\n\
-    --disable-fullscreen          Disable fullscreen mode\n\
-    --enable-fullscreen           Enable fullscreen mode\n\
-    --shading-flat                Enable flat shading\n\
-    --shading-smooth              Enable smooth shading\n\
-    --disable-skyblend            Disable sky blending\n\
-    --enable-skyblend             Enable sky blending\n\
-    --disable-textures            Disable textures\n\
-    --enable-textures             Enable textures\n\
-    --disable-wireframe           Disable wireframe drawing mode\n\
-    --enable-wireframe            Enable wireframe drawing mode\n\
-    --geometry=WxH                Specify window geometry (640x480, etc)\n\
-    --view-offset=value           Specify the default forward view direction\n\
-                                  as an offset from straight ahead.  Allowable\n\
-                                  values are LEFT, RIGHT, CENTER, or a specific\n\
-                                  number in degrees\n\
-    --visibility=meters           Specify initial visibility\n\
-    --visibility-miles=miles      Specify initial visibility in miles\n\
-\n\
-Hud Options:\n\
-    --hud-tris                    Hud displays number of triangles rendered\n\
-    --hud-culled                  Hud displays percentage of triangles culled\n\
-\n\
-Time Options:\n\
-    --time-offset=[+-]hh:mm:ss    Add this time offset\n\
-    --time-match-real             Synchronize time with real-world time\n\
-    --time-match-local            Synchronize time with local real-world time\n\
-    --start-date-sys=yyyy:mm:dd:hh:mm:ss\n\
-                                  Specify a starting date/time with respect to\n\
-                                  system time\n\
-    --start-date-gmt=yyyy:mm:dd:hh:mm:ss\n\
-                                  Specify a starting date/time with respect to\n\
-                                  Greenwich Mean Time\n\
-    --start-date-lat=yyyy:mm:dd:hh:mm:ss\n\
-                                  Specify a starting date/time with respect to\n\
-                                  Local Aircraft Time\n\
-\n\
-Network Options:\n\
-    --httpd=port                  Enable http server on the specified port\n\
-    --telnet=port                 Enable telnet server on the specified port\n\
-\n"
+    SGPropertyNode options_root;
+    SGPath opath( globals->get_fg_root() );
+    opath.append( "options.xml" );
+
+    cout << "" << endl;
+
+    try {
+        readProperties(opath.c_str(), &options_root);
+    } catch (const sg_exception &ex) {
+        cout << "Unable to read the help file." << endl;
+        cout << "Make sure the file options.xml is located in the FlightGear base directory," << endl;
+        cout << "and the location of the base directory is specified by setting $FG_ROOT or" << endl;
+        cout << "by adding --fg-root=path as a program argument." << endl;
+        
+        exit(-1);
+    }
 
-#ifdef FG_JPEG_SERVER
-"\
-    --jpg-httpd=port              Enable screen shot http server on the\n\
-                                  specified port\n"
-#endif
-#ifdef FG_NETWORK_OLK
-"\
-    --disable-network-olk         Disable Multipilot mode (default)\n\
-    --enable-network-olk          Enable Multipilot mode\n\
-    --net-hud                     Hud displays network info\n\
-    --net-id=name                 Specify your own callsign\n"
-#endif
-"\
-Route/Way Point Options:\n\
-    --wp=ID[@alt]                 Specify a waypoint for the GC autopilot;\n\
-                                  multiple instances can be used to create a\n\
-                                  route\n\
-    --flight-plan=file            Read all waypoints from a file\n\
-\n\
-IO Options:\n\
-    --gamin=params                Open connection using the Garmin GPS protocol\n\
-    --joyclient=params            Open connection to an Agwagon joystick\n\
-    --native-ctrls=params         Open connection using the FG Native Controls\n\
-                                  protocol\n\
-    --native-fdm=params           Open connection using the FG Native FDM\n\
-                                  protocol\n\
-    --native=params               Open connection using the FG Native protocol\n\
-    --nmea=params                 Open connection using the NMEA protocol\n\
-    --opengc=params               Open connection using the OpenGC protocol\n\
-    --props=params                Open connection using the interactive\n\
-                                  property manager\n\
-    --pve=params                  Open connection using the PVE protocol\n\
-    --ray=params                  Open connection using the RayWoodworth\n\
-                                  motion chair protocol\n\
-    --rul=params                  Open connection using the RUL protocol\n\
-\n\
-    --atc610x                     Enable atc610x interface.\n\
-\n\
-Debugging Options:\n\
-    --trace-read=property         Trace the reads for a property; multiple\n\
-                                  instances allowed.\n\
-    --trace-write=property        Trace the writes for a property; multiple\n\
-                                  instances allowed.\n";
+    SGPropertyNode *options = options_root.getNode("options");
+    if (!options) {
+        SG_LOG( SG_GENERAL, SG_ALERT,
+                "Error reading options.xml: <options> directive not found." );
+        exit(-1);
+    }
+
+    SGPropertyNode *usage = options->getNode("usage");
+    if (usage) {
+        cout << "Usage: " << usage->getStringValue() << endl;
+    }
+
+    vector<SGPropertyNode_ptr>section = options->getChildren("section");
+    for (unsigned int j = 0; j < section.size(); j++) {
+        string msg = "";
+
+        vector<SGPropertyNode_ptr>option = section[j]->getChildren("option");
+        for (unsigned int k = 0; k < option.size(); k++) {
+
+            SGPropertyNode *name = option[k]->getNode("name");
+            SGPropertyNode *short_name = option[k]->getNode("short");
+            SGPropertyNode *key = option[k]->getNode("key");
+            SGPropertyNode *arg = option[k]->getNode("arg");
+            bool brief = option[k]->getNode("brief");
+
+            if ((brief || verbose) && name) {
+                string tmp = name->getStringValue();
+
+                if (key){
+                    tmp.append(":");
+                    tmp.append(key->getStringValue());
+                }
+                if (arg) {
+                    tmp.append("=");
+                    tmp.append(arg->getStringValue());
+                }
+                if (short_name) {
+                    tmp.append(", -");
+                    tmp.append(short_name->getStringValue());
+                }
+
+                char cstr[96];
+                if (tmp.size() <= 25) {
+                    snprintf(cstr, 96, "   --%-27s", tmp.c_str());
+                } else {
+                    snprintf(cstr, 96, "\n   --%s\n%32c", tmp.c_str(), ' ');
+                }
+
+                msg += cstr;
+                SGPropertyNode *desc = option[k]->getNode("description");
+                if (desc) {
+                    msg += desc->getStringValue();
+
+                    for ( unsigned int l = 1;
+                          (desc = option[k]->getNode("description", l, false));
+                          l++ )
+                    {
+                        snprintf(cstr, 96, "\n%32c%s", ' ',
+                                 desc->getStringValue());
+                        msg += cstr;
+                    }
+                    msg += '\n';
+                }
+            }
+        }
+
+        SGPropertyNode *name = section[j]->getNode("name");
+        if (!msg.empty() && name) {
+           cout << endl << name->getStringValue() << ":" << endl;
+           cout << msg;
+           msg.erase();
+        }
+    }
+
+    if ( !verbose ) {
+        cout << endl;
+        cout << "For a complete list of options use --help --verbose" << endl;
+    }
+}
+
+// Show available aircraft types
+void fgShowAircraft(void) {
+   SGPath path( globals->get_fg_root() );
+   path.append("Aircraft");
+
+   ulDirEnt* dire;
+   ulDir *dirp;
+
+   dirp = ulOpenDir(path.c_str());
+   if (dirp == NULL) {
+      cout << "Unable to open aircraft directory." << endl;
+      exit(-1);
+   }
+
+   cout << "Available aircraft:" << endl;
+   while ((dire = ulReadDir(dirp)) != NULL) {
+      char *ptr;
+
+      if ((ptr = strstr(dire->d_name, "-set.xml")) && ptr[8] == '\0' ) {
+          SGPath afile = path;
+          afile.append(dire->d_name);
+
+          *ptr = '\0';
+
+          SGPropertyNode root;
+          try {
+             readProperties(afile.str(), &root);
+          } catch (...) {
+             continue;
+          }
+
+          SGPropertyNode *desc, *node = root.getNode("sim");
+          if (node)
+             desc = node->getNode("description");
+
+          char cstr[96];
+          if (strlen(dire->d_name) <= 27)
+             snprintf(cstr, 96, "   %-27s  %s", dire->d_name,
+                      (desc) ? desc->getStringValue() : "" );
+
+          else
+             snprintf(cstr, 96, "   %-27s\n%32c%s", dire->d_name, ' ',
+                      (desc) ? desc->getStringValue() : "" );
+
+          cout << cstr << endl;
+      }
+   }
+
+   ulCloseDir(dirp);
 }