1998-04-24 00:49:17 +00:00
|
|
|
// options.cxx -- class to handle command line options
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 1998.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1998 Curtis L. Olson - curt@me.umn.edu
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
1998-04-26 05:01:19 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
2001-07-19 04:53:13 +00:00
|
|
|
#include <simgear/misc/exception.hxx>
|
1999-03-02 01:02:31 +00:00
|
|
|
|
2002-03-20 22:15:22 +00:00
|
|
|
#include <math.h> // rint()
|
1998-04-24 00:49:17 +00:00
|
|
|
#include <stdio.h>
|
2002-03-20 22:15:22 +00:00
|
|
|
#include <stdlib.h> // atof(), atoi()
|
|
|
|
#include <string.h> // strcmp()
|
1999-03-02 01:02:31 +00:00
|
|
|
|
|
|
|
#include STL_STRING
|
1998-04-24 00:49:17 +00:00
|
|
|
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sgstream.hxx>
|
2002-03-16 00:18:38 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
|
|
|
#include <simgear/route/route.hxx>
|
|
|
|
#include <simgear/route/waypoint.hxx>
|
2001-01-13 22:06:39 +00:00
|
|
|
|
|
|
|
// #include <Include/general.hxx>
|
|
|
|
// #include <Airports/simple.hxx>
|
|
|
|
// #include <Cockpit/cockpit.hxx>
|
|
|
|
// #include <FDM/flight.hxx>
|
|
|
|
// #include <FDM/UIUCModel/uiuc_aircraftdir.h>
|
1999-06-30 20:21:04 +00:00
|
|
|
#ifdef FG_NETWORK_OLK
|
2000-01-12 18:09:35 +00:00
|
|
|
# include <NetworkOLK/network.h>
|
1999-06-30 20:21:04 +00:00
|
|
|
#endif
|
1998-04-24 00:49:17 +00:00
|
|
|
|
2001-07-19 04:53:13 +00:00
|
|
|
#include <GUI/gui.h>
|
|
|
|
|
2000-07-07 20:28:51 +00:00
|
|
|
#include "globals.hxx"
|
2001-01-13 22:06:39 +00:00
|
|
|
#include "fg_init.hxx"
|
|
|
|
#include "fg_props.hxx"
|
1999-05-06 22:16:12 +00:00
|
|
|
#include "options.hxx"
|
2001-07-22 19:51:16 +00:00
|
|
|
#include "viewmgr.hxx"
|
1998-11-16 13:59:58 +00:00
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(string);
|
|
|
|
SG_USING_NAMESPACE(std);
|
1999-03-02 01:02:31 +00:00
|
|
|
|
1998-11-16 13:59:58 +00:00
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
#define NEW_DEFAULT_MODEL_HZ 120
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
FG_OPTIONS_OK = 0,
|
|
|
|
FG_OPTIONS_HELP = 1,
|
|
|
|
FG_OPTIONS_ERROR = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
static double
|
1998-08-27 17:01:55 +00:00
|
|
|
atof( const string& str )
|
|
|
|
{
|
1999-04-27 19:27:45 +00:00
|
|
|
|
|
|
|
#ifdef __MWERKS__
|
|
|
|
// -dw- if ::atof is called, then we get an infinite loop
|
|
|
|
return std::atof( str.c_str() );
|
|
|
|
#else
|
1998-08-27 17:01:55 +00:00
|
|
|
return ::atof( str.c_str() );
|
1999-04-27 19:27:45 +00:00
|
|
|
#endif
|
1998-08-27 17:01:55 +00:00
|
|
|
}
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
static int
|
1998-08-27 17:01:55 +00:00
|
|
|
atoi( const string& str )
|
|
|
|
{
|
1999-04-27 19:27:45 +00:00
|
|
|
#ifdef __MWERKS__
|
|
|
|
// -dw- if ::atoi is called, then we get an infinite loop
|
|
|
|
return std::atoi( str.c_str() );
|
|
|
|
#else
|
1998-08-27 17:01:55 +00:00
|
|
|
return ::atoi( str.c_str() );
|
1999-04-27 19:27:45 +00:00
|
|
|
#endif
|
1998-08-27 17:01:55 +00:00
|
|
|
}
|
1998-04-24 00:49:17 +00:00
|
|
|
|
2000-02-29 17:13:02 +00:00
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
/**
|
|
|
|
* Set a few fail-safe default property values.
|
|
|
|
*
|
|
|
|
* These should all be set in $FG_ROOT/preferences.xml, but just
|
|
|
|
* in case, we provide some initial sane values here. This method
|
|
|
|
* should be invoked *before* reading any init files.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
fgSetDefaults ()
|
1998-08-27 17:01:55 +00:00
|
|
|
{
|
2000-07-14 16:57:55 +00:00
|
|
|
// set a possibly independent location for scenery data
|
2001-01-13 22:06:39 +00:00
|
|
|
char *envp = ::getenv( "FG_SCENERY" );
|
2000-07-14 16:57:55 +00:00
|
|
|
|
|
|
|
if ( envp != NULL ) {
|
|
|
|
// fg_root could be anywhere, so default to environmental
|
|
|
|
// variable $FG_ROOT if it is set.
|
2001-01-12 15:37:40 +00:00
|
|
|
globals->set_fg_scenery(envp);
|
2000-07-14 16:57:55 +00:00
|
|
|
} else {
|
|
|
|
// Otherwise, default to Scenery being in $FG_ROOT/Scenery
|
2001-01-12 15:37:40 +00:00
|
|
|
globals->set_fg_scenery("");
|
2000-07-14 16:57:55 +00:00
|
|
|
}
|
2002-05-01 23:13:36 +00:00
|
|
|
// Position (deliberately out of range)
|
|
|
|
fgSetDouble("/position/longitude-deg", 9999.0);
|
|
|
|
fgSetDouble("/position/latitude-deg", 9999.0);
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/position/altitude-ft", -9999.0);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// Orientation
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/orientation/heading-deg", 270);
|
|
|
|
fgSetDouble("/orientation/roll-deg", 0);
|
|
|
|
fgSetDouble("/orientation/pitch-deg", 0.424);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// Velocities
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "knots");
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/uBody-fps", 0.0);
|
|
|
|
fgSetDouble("/velocities/vBody-fps", 0.0);
|
|
|
|
fgSetDouble("/velocities/wBody-fps", 0.0);
|
|
|
|
fgSetDouble("/velocities/speed-north-fps", 0.0);
|
|
|
|
fgSetDouble("/velocities/speed-east-fps", 0.0);
|
|
|
|
fgSetDouble("/velocities/speed-down-fps", 0.0);
|
|
|
|
fgSetDouble("/velocities/airspeed-kt", 0.0);
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetDouble("/velocities/mach", 0.0);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// Miscellaneous
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/game-mode", false);
|
|
|
|
fgSetBool("/sim/startup/splash-screen", true);
|
|
|
|
fgSetBool("/sim/startup/intro-music", true);
|
2001-02-26 13:58:33 +00:00
|
|
|
// we want mouse-pointer to have an undefined value if nothing is
|
|
|
|
// specified so we can do the right thing for voodoo-1/2 cards.
|
|
|
|
// fgSetString("/sim/startup/mouse-pointer", "disabled");
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/control-mode", "joystick");
|
|
|
|
fgSetBool("/sim/auto-coordination", false);
|
2001-07-08 23:30:17 +00:00
|
|
|
#if !defined(WIN32)
|
|
|
|
fgSetString("/sim/startup/browser-app", "netscape");
|
|
|
|
#else
|
|
|
|
fgSetString("/sim/startup/browser-app", "webrun.bat");
|
|
|
|
#endif
|
2001-01-12 15:37:40 +00:00
|
|
|
// Features
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/hud/visibility", false);
|
|
|
|
fgSetBool("/sim/panel/visibility", true);
|
2002-02-27 15:13:58 +00:00
|
|
|
fgSetBool("/sim/sound/audible", true);
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/hud/antialiased", false);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// Flight Model options
|
2001-07-24 01:02:59 +00:00
|
|
|
fgSetString("/sim/flight-model", "jsb");
|
2001-12-06 23:10:50 +00:00
|
|
|
fgSetString("/sim/aero", "c172");
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/model-hz", NEW_DEFAULT_MODEL_HZ);
|
|
|
|
fgSetInt("/sim/speed-up", 1);
|
|
|
|
fgSetBool("/sim/startup/trim", false);
|
2001-01-17 23:30:35 +00:00
|
|
|
fgSetBool("/sim/startup/onground", true);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// Rendering options
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/rendering/fog", "nicest");
|
|
|
|
fgSetBool("/environment/clouds/status", true);
|
|
|
|
fgSetBool("/sim/startup/fullscreen", false);
|
|
|
|
fgSetBool("/sim/rendering/shading", true);
|
|
|
|
fgSetBool("/sim/rendering/skyblend", true);
|
|
|
|
fgSetBool("/sim/rendering/textures", true);
|
|
|
|
fgSetBool("/sim/rendering/wireframe", false);
|
|
|
|
fgSetInt("/sim/startup/xsize", 800);
|
|
|
|
fgSetInt("/sim/startup/ysize", 600);
|
|
|
|
fgSetInt("/sim/rendering/bits-per-pixel", 16);
|
|
|
|
fgSetString("/sim/view-mode", "pilot");
|
2002-04-18 16:51:47 +00:00
|
|
|
fgSetDouble("/sim/current-view/heading-offset-deg", 0);
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/environment/visibility-m", 20000);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// HUD options
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/units", "feet");
|
|
|
|
fgSetString("/sim/hud/frame-stat-type", "tris");
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// Time options
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/startup/time-offset", 0);
|
|
|
|
fgSetString("/sim/startup/time-offset-type", "system-offset");
|
2002-02-10 04:27:56 +00:00
|
|
|
fgSetLong("/sim/time/cur-time-override", 0);
|
1998-11-25 01:33:58 +00:00
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/networking/network-olk", false);
|
|
|
|
fgSetString("/sim/networking/call-sign", "Johnny");
|
2002-01-20 03:52:36 +00:00
|
|
|
|
|
|
|
// Freeze options
|
|
|
|
fgSetBool("/sim/freeze/master", false);
|
|
|
|
fgSetBool("/sim/freeze/position", false);
|
2002-02-13 02:37:44 +00:00
|
|
|
fgSetBool("/sim/freeze/clock", false);
|
2002-01-22 15:39:51 +00:00
|
|
|
fgSetBool("/sim/freeze/fuel", false);
|
1998-05-13 18:29:56 +00:00
|
|
|
}
|
|
|
|
|
2001-03-17 21:06:43 +00:00
|
|
|
|
2002-06-09 21:28:17 +00:00
|
|
|
static bool
|
|
|
|
parse_wind (const string &wind, double * min_hdg, double * max_hdg,
|
|
|
|
double * speed, double * gust)
|
|
|
|
{
|
|
|
|
unsigned int 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;
|
|
|
|
}
|
|
|
|
|
2001-03-17 21:06:43 +00:00
|
|
|
// parse a time string ([+/-]%f[:%f[:%f]]) into hours
|
2001-01-13 22:06:39 +00:00
|
|
|
static double
|
|
|
|
parse_time(const string& time_in) {
|
1998-08-27 17:01:55 +00:00
|
|
|
char *time_str, num[256];
|
1998-04-24 00:49:17 +00:00
|
|
|
double hours, minutes, seconds;
|
|
|
|
double result = 0.0;
|
|
|
|
int sign = 1;
|
|
|
|
int i;
|
|
|
|
|
1998-08-27 17:01:55 +00:00
|
|
|
time_str = (char *)time_in.c_str();
|
|
|
|
|
1998-04-24 00:49:17 +00:00
|
|
|
// printf("parse_time(): %s\n", time_str);
|
|
|
|
|
|
|
|
// check for sign
|
|
|
|
if ( strlen(time_str) ) {
|
|
|
|
if ( time_str[0] == '+' ) {
|
|
|
|
sign = 1;
|
|
|
|
time_str++;
|
|
|
|
} else if ( time_str[0] == '-' ) {
|
|
|
|
sign = -1;
|
|
|
|
time_str++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// printf("sign = %d\n", sign);
|
|
|
|
|
|
|
|
// get hours
|
|
|
|
if ( strlen(time_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
|
|
|
|
num[i] = time_str[0];
|
|
|
|
time_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if ( time_str[0] == ':' ) {
|
|
|
|
time_str++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
hours = atof(num);
|
|
|
|
// printf("hours = %.2lf\n", hours);
|
|
|
|
|
1998-07-30 23:48:24 +00:00
|
|
|
result += hours;
|
1998-04-24 00:49:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// get minutes
|
|
|
|
if ( strlen(time_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
|
|
|
|
num[i] = time_str[0];
|
|
|
|
time_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if ( time_str[0] == ':' ) {
|
|
|
|
time_str++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
minutes = atof(num);
|
|
|
|
// printf("minutes = %.2lf\n", minutes);
|
|
|
|
|
1998-07-30 23:48:24 +00:00
|
|
|
result += minutes / 60.0;
|
1998-04-24 00:49:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// get seconds
|
|
|
|
if ( strlen(time_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
|
|
|
|
num[i] = time_str[0];
|
|
|
|
time_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
seconds = atof(num);
|
|
|
|
// printf("seconds = %.2lf\n", seconds);
|
|
|
|
|
1998-07-30 23:48:24 +00:00
|
|
|
result += seconds / 3600.0;
|
1998-04-24 00:49:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(sign * result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-17 21:06:43 +00:00
|
|
|
// parse a date string (yyyy:mm:dd:hh:mm:ss) into a time_t (seconds)
|
2001-01-13 22:06:39 +00:00
|
|
|
static long int
|
|
|
|
parse_date( const string& date)
|
1999-04-11 13:19:29 +00:00
|
|
|
{
|
1999-05-12 02:07:21 +00:00
|
|
|
struct tm gmt;
|
|
|
|
char * date_str, num[256];
|
|
|
|
int i;
|
|
|
|
// initialize to zero
|
|
|
|
gmt.tm_sec = 0;
|
|
|
|
gmt.tm_min = 0;
|
|
|
|
gmt.tm_hour = 0;
|
|
|
|
gmt.tm_mday = 0;
|
|
|
|
gmt.tm_mon = 0;
|
|
|
|
gmt.tm_year = 0;
|
1999-09-07 23:09:43 +00:00
|
|
|
gmt.tm_isdst = 0; // ignore daylight savings time for the moment
|
1999-05-12 02:07:21 +00:00
|
|
|
date_str = (char *)date.c_str();
|
|
|
|
// get year
|
1999-04-11 13:19:29 +00:00
|
|
|
if ( strlen(date_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
|
|
|
|
num[i] = date_str[0];
|
|
|
|
date_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if ( date_str[0] == ':' ) {
|
|
|
|
date_str++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
gmt.tm_year = atoi(num) - 1900;
|
|
|
|
}
|
1999-05-12 02:07:21 +00:00
|
|
|
// get month
|
1999-04-11 13:19:29 +00:00
|
|
|
if ( strlen(date_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
|
|
|
|
num[i] = date_str[0];
|
|
|
|
date_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if ( date_str[0] == ':' ) {
|
|
|
|
date_str++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
gmt.tm_mon = atoi(num) -1;
|
|
|
|
}
|
|
|
|
// get day
|
|
|
|
if ( strlen(date_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
|
|
|
|
num[i] = date_str[0];
|
|
|
|
date_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if ( date_str[0] == ':' ) {
|
|
|
|
date_str++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
gmt.tm_mday = atoi(num);
|
|
|
|
}
|
|
|
|
// get hour
|
|
|
|
if ( strlen(date_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
|
|
|
|
num[i] = date_str[0];
|
|
|
|
date_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if ( date_str[0] == ':' ) {
|
|
|
|
date_str++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
gmt.tm_hour = atoi(num);
|
|
|
|
}
|
|
|
|
// get minute
|
|
|
|
if ( strlen(date_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
|
|
|
|
num[i] = date_str[0];
|
|
|
|
date_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if ( date_str[0] == ':' ) {
|
|
|
|
date_str++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
gmt.tm_min = atoi(num);
|
|
|
|
}
|
|
|
|
// get second
|
|
|
|
if ( strlen(date_str) ) {
|
|
|
|
i = 0;
|
|
|
|
while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
|
|
|
|
num[i] = date_str[0];
|
|
|
|
date_str++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if ( date_str[0] == ':' ) {
|
|
|
|
date_str++;
|
|
|
|
}
|
|
|
|
num[i] = '\0';
|
|
|
|
gmt.tm_sec = atoi(num);
|
|
|
|
}
|
2000-07-07 23:56:43 +00:00
|
|
|
time_t theTime = sgTimeGetGMT( gmt.tm_year, gmt.tm_mon, gmt.tm_mday,
|
|
|
|
gmt.tm_hour, gmt.tm_min, gmt.tm_sec );
|
1999-04-11 13:19:29 +00:00
|
|
|
//printf ("Date is %s\n", ctime(&theTime));
|
|
|
|
//printf ("in seconds that is %d\n", theTime);
|
|
|
|
//exit(1);
|
|
|
|
return (theTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-17 21:06:43 +00:00
|
|
|
// parse angle in the form of [+/-]ddd:mm:ss into degrees
|
2001-01-13 22:06:39 +00:00
|
|
|
static double
|
|
|
|
parse_degree( const string& degree_str) {
|
1998-08-27 17:01:55 +00:00
|
|
|
double result = parse_time( degree_str );
|
1998-07-30 23:48:24 +00:00
|
|
|
|
|
|
|
// printf("Degree = %.4f\n", result);
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-17 21:06:43 +00:00
|
|
|
// parse time offset string into seconds
|
2001-01-13 22:06:39 +00:00
|
|
|
static int
|
|
|
|
parse_time_offset( const string& time_str) {
|
1998-04-24 00:49:17 +00:00
|
|
|
int result;
|
|
|
|
|
|
|
|
// printf("time offset = %s\n", time_str);
|
|
|
|
|
1998-04-26 05:01:19 +00:00
|
|
|
#ifdef HAVE_RINT
|
1998-07-30 23:48:24 +00:00
|
|
|
result = (int)rint(parse_time(time_str) * 3600.0);
|
1998-04-26 05:01:19 +00:00
|
|
|
#else
|
1998-07-30 23:48:24 +00:00
|
|
|
result = (int)(parse_time(time_str) * 3600.0);
|
1998-04-26 05:01:19 +00:00
|
|
|
#endif
|
1998-04-24 00:49:17 +00:00
|
|
|
|
1998-07-30 23:48:24 +00:00
|
|
|
// printf("parse_time_offset(): %d\n", result);
|
1998-04-24 00:49:17 +00:00
|
|
|
|
|
|
|
return( result );
|
1998-05-06 03:16:23 +00:00
|
|
|
}
|
|
|
|
|
1998-04-24 00:49:17 +00:00
|
|
|
|
1998-05-13 18:29:56 +00:00
|
|
|
// Parse --fov=x.xx type option
|
2001-01-13 22:06:39 +00:00
|
|
|
static double
|
|
|
|
parse_fov( const string& arg ) {
|
1998-08-27 17:01:55 +00:00
|
|
|
double fov = atof(arg);
|
1998-05-13 18:29:56 +00:00
|
|
|
|
|
|
|
if ( fov < FG_FOV_MIN ) { fov = FG_FOV_MIN; }
|
|
|
|
if ( fov > FG_FOV_MAX ) { fov = FG_FOV_MAX; }
|
|
|
|
|
2002-04-18 16:51:47 +00:00
|
|
|
fgSetDouble("/sim/current-view/field-of-view", fov);
|
2000-11-01 23:27:32 +00:00
|
|
|
|
1998-07-30 23:48:24 +00:00
|
|
|
// printf("parse_fov(): result = %.4f\n", fov);
|
1998-05-13 18:29:56 +00:00
|
|
|
|
2000-11-01 23:27:32 +00:00
|
|
|
return fov;
|
1998-05-13 18:29:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-19 02:10:24 +00:00
|
|
|
// Parse I/O channel option
|
1998-11-16 13:59:58 +00:00
|
|
|
//
|
1999-11-19 02:10:24 +00:00
|
|
|
// Format is "--protocol=medium,direction,hz,medium_options,..."
|
|
|
|
//
|
1999-11-23 05:51:14 +00:00
|
|
|
// protocol = { native, nmea, garmin, fgfs, rul, pve, etc. }
|
1999-11-19 02:10:24 +00:00
|
|
|
// medium = { serial, socket, file, etc. }
|
|
|
|
// direction = { in, out, bi }
|
|
|
|
// hz = number of times to process channel per second (floating
|
|
|
|
// point values are ok.
|
|
|
|
//
|
|
|
|
// Serial example "--nmea=serial,dir,hz,device,baud" where
|
1998-11-16 13:59:58 +00:00
|
|
|
//
|
1999-11-19 02:10:24 +00:00
|
|
|
// device = OS device name of serial line to be open()'ed
|
1998-11-16 13:59:58 +00:00
|
|
|
// baud = {300, 1200, 2400, ..., 230400}
|
1999-11-19 02:10:24 +00:00
|
|
|
//
|
2000-07-14 00:50:56 +00:00
|
|
|
// Socket exacmple "--native=socket,dir,hz,machine,port,style" where
|
1999-11-19 02:10:24 +00:00
|
|
|
//
|
1999-11-20 15:40:15 +00:00
|
|
|
// machine = machine name or ip address if client (leave empty if server)
|
1999-11-19 02:10:24 +00:00
|
|
|
// port = port, leave empty to let system choose
|
2000-07-14 00:50:56 +00:00
|
|
|
// style = tcp or udp
|
1999-11-19 02:10:24 +00:00
|
|
|
//
|
|
|
|
// File example "--garmin=file,dir,hz,filename" where
|
|
|
|
//
|
|
|
|
// filename = file system file name
|
1998-11-25 01:33:58 +00:00
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
static bool
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( const string& type, const string& channel_str ) {
|
1999-11-19 02:10:24 +00:00
|
|
|
// cout << "Channel string = " << channel_str << endl;
|
|
|
|
|
2001-01-26 00:21:36 +00:00
|
|
|
globals->get_channel_options_list()->push_back( type + "," + channel_str );
|
1998-11-16 13:59:58 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-17 21:06:43 +00:00
|
|
|
// Parse --wp=ID[@alt]
|
2001-01-13 22:06:39 +00:00
|
|
|
static bool
|
|
|
|
parse_wp( const string& arg ) {
|
2000-10-12 01:08:09 +00:00
|
|
|
string id, alt_str;
|
|
|
|
double alt = 0.0;
|
|
|
|
|
2001-05-18 16:09:39 +00:00
|
|
|
unsigned int pos = arg.find( "@" );
|
2000-10-12 01:08:09 +00:00
|
|
|
if ( pos != string::npos ) {
|
|
|
|
id = arg.substr( 0, pos );
|
|
|
|
alt_str = arg.substr( pos + 1 );
|
|
|
|
// cout << "id str = " << id << " alt str = " << alt_str << endl;
|
|
|
|
alt = atof( alt_str.c_str() );
|
2002-03-26 02:38:11 +00:00
|
|
|
if ( !strcmp(fgGetString("/sim/startup/units"), "feet") ) {
|
2001-03-24 04:56:46 +00:00
|
|
|
alt *= SG_FEET_TO_METER;
|
2000-10-12 01:08:09 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
id = arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
FGAirport a;
|
|
|
|
if ( fgFindAirportID( id, &a ) ) {
|
|
|
|
SGWayPoint wp( a.longitude, a.latitude, alt, SGWayPoint::WGS84, id );
|
|
|
|
globals->get_route()->add_waypoint( wp );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-28 23:38:24 +00:00
|
|
|
// Parse --flight-plan=[file]
|
2001-01-13 22:06:39 +00:00
|
|
|
static bool
|
|
|
|
parse_flightplan(const string& arg)
|
2000-11-28 23:38:24 +00:00
|
|
|
{
|
2001-05-18 16:09:39 +00:00
|
|
|
sg_gzifstream in(arg.c_str());
|
|
|
|
if ( !in.is_open() ) {
|
2000-11-28 23:38:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
while ( true ) {
|
|
|
|
string line;
|
2001-05-18 16:09:39 +00:00
|
|
|
|
|
|
|
#if defined( macintosh )
|
|
|
|
getline( in, line, '\r' );
|
2000-11-28 23:38:24 +00:00
|
|
|
#else
|
2001-05-18 16:09:39 +00:00
|
|
|
getline( in, line, '\n' );
|
2000-11-28 23:38:24 +00:00
|
|
|
#endif
|
2001-05-18 16:09:39 +00:00
|
|
|
|
|
|
|
// catch extraneous (DOS) line ending character
|
|
|
|
if ( line[line.length() - 1] < 32 ) {
|
|
|
|
line = line.substr( 0, line.length()-1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( in.eof() ) {
|
2000-11-28 23:38:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
parse_wp(line);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-05-13 18:29:56 +00:00
|
|
|
// Parse a single option
|
2001-01-13 22:06:39 +00:00
|
|
|
static int
|
|
|
|
parse_option (const string& arg)
|
|
|
|
{
|
1998-05-13 18:29:56 +00:00
|
|
|
// General Options
|
1998-08-27 17:01:55 +00:00
|
|
|
if ( (arg == "--help") || (arg == "-h") ) {
|
1998-05-13 18:29:56 +00:00
|
|
|
// help/usage request
|
|
|
|
return(FG_OPTIONS_HELP);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-game-mode") {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/game-mode", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--enable-game-mode" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/game-mode", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-splash-screen" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/splash-screen", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--enable-splash-screen" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/splash-screen", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-intro-music" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/intro-music", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--enable-intro-music" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/intro-music", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-mouse-pointer" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/mouse-pointer", "disabled");
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--enable-mouse-pointer" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/mouse-pointer", "enabled");
|
2000-07-08 06:29:19 +00:00
|
|
|
} else if ( arg == "--disable-freeze" ) {
|
2002-01-20 03:52:36 +00:00
|
|
|
fgSetBool("/sim/freeze/master", false);
|
2000-07-08 06:29:19 +00:00
|
|
|
} else if ( arg == "--enable-freeze" ) {
|
2002-01-20 03:52:36 +00:00
|
|
|
fgSetBool("/sim/freeze/master", true);
|
2002-01-20 05:59:28 +00:00
|
|
|
} else if ( arg == "--disable-fuel-freeze" ) {
|
|
|
|
fgSetBool("/sim/freeze/fuel", false);
|
|
|
|
} else if ( arg == "--enable-fuel-freeze" ) {
|
|
|
|
fgSetBool("/sim/freeze/fuel", true);
|
2002-02-13 02:37:44 +00:00
|
|
|
} else if ( arg == "--disable-clock-freeze" ) {
|
|
|
|
fgSetBool("/sim/freeze/clock", false);
|
|
|
|
} else if ( arg == "--enable-clock-freeze" ) {
|
|
|
|
fgSetBool("/sim/freeze/clock", true);
|
2000-05-13 00:02:43 +00:00
|
|
|
} else if ( arg == "--disable-anti-alias-hud" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/hud/antialiased", false);
|
2000-05-13 00:02:43 +00:00
|
|
|
} else if ( arg == "--enable-anti-alias-hud" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/hud/antialiased", true);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--control=") == 0 ) {
|
2002-03-19 17:12:13 +00:00
|
|
|
fgSetString("/sim/control-mode", arg.substr(10).c_str());
|
1999-10-06 20:58:57 +00:00
|
|
|
} else if ( arg == "--disable-auto-coordination" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/auto-coordination", false);
|
1999-10-06 20:58:57 +00:00
|
|
|
} else if ( arg == "--enable-auto-coordination" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/auto-coordination", true);
|
2001-07-08 23:30:17 +00:00
|
|
|
} else if ( arg.find( "--browser-app=") == 0 ) {
|
2002-03-19 17:12:13 +00:00
|
|
|
fgSetString("/sim/startup/browser-app", arg.substr(14).c_str());
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-hud" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/hud/visibility", false);
|
2001-01-05 16:45:14 +00:00
|
|
|
} else if ( arg == "--enable-hud" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/hud/visibility", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-panel" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/panel/visibility", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--enable-panel" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/panel/visibility", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-sound" ) {
|
2002-02-27 15:13:58 +00:00
|
|
|
fgSetBool("/sim/sound/audible", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--enable-sound" ) {
|
2002-02-27 15:13:58 +00:00
|
|
|
fgSetBool("/sim/sound/audible", true);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--airport-id=") == 0 ) {
|
2001-01-12 15:37:40 +00:00
|
|
|
// NB: changed property name!!!
|
2002-03-19 17:12:13 +00:00
|
|
|
fgSetString("/sim/startup/airport-id", arg.substr(13).c_str());
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--offset-distance=") == 0 ) {
|
2001-03-02 23:27:22 +00:00
|
|
|
fgSetDouble("/sim/startup/offset-distance", atof(arg.substr(18)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--offset-azimuth=") == 0 ) {
|
2001-03-02 23:27:22 +00:00
|
|
|
fgSetDouble("/sim/startup/offset-azimuth", atof(arg.substr(17)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--lon=" ) == 0 ) {
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/position/longitude-deg",
|
2001-01-12 15:37:40 +00:00
|
|
|
parse_degree(arg.substr(6)));
|
2001-01-22 20:39:25 +00:00
|
|
|
fgSetString("/sim/startup/airport-id", "");
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--lat=" ) == 0 ) {
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/position/latitude-deg",
|
2001-01-12 15:37:40 +00:00
|
|
|
parse_degree(arg.substr(6)));
|
2001-01-22 20:39:25 +00:00
|
|
|
fgSetString("/sim/startup/airport-id", "");
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--altitude=" ) == 0 ) {
|
2001-01-17 23:30:35 +00:00
|
|
|
fgSetBool("/sim/startup/onground", false);
|
2002-03-26 02:38:11 +00:00
|
|
|
if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/position/altitude-ft", atof(arg.substr(11)));
|
2001-01-12 15:37:40 +00:00
|
|
|
else
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/position/altitude-ft",
|
2001-03-24 04:56:46 +00:00
|
|
|
atof(arg.substr(11)) * SG_METER_TO_FEET);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--uBody=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "UVW");
|
2002-03-26 02:38:11 +00:00
|
|
|
if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/uBody-fps", atof(arg.substr(8)));
|
2001-01-12 15:37:40 +00:00
|
|
|
else
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/uBody-fps",
|
2001-03-24 04:56:46 +00:00
|
|
|
atof(arg.substr(8)) * SG_METER_TO_FEET);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--vBody=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "UVW");
|
2002-03-26 02:38:11 +00:00
|
|
|
if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/vBody-fps", atof(arg.substr(8)));
|
2001-01-12 15:37:40 +00:00
|
|
|
else
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/vBody-fps",
|
2001-03-24 04:56:46 +00:00
|
|
|
atof(arg.substr(8)) * SG_METER_TO_FEET);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--wBody=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "UVW");
|
2002-03-26 02:38:11 +00:00
|
|
|
if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/wBody-fps", atof(arg.substr(8)));
|
2001-01-12 15:37:40 +00:00
|
|
|
else
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/wBody-fps",
|
2001-03-24 04:56:46 +00:00
|
|
|
atof(arg.substr(8)) * SG_METER_TO_FEET);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--vNorth=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "NED");
|
2002-03-26 02:38:11 +00:00
|
|
|
if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/speed-north-fps", atof(arg.substr(9)));
|
2001-01-12 15:37:40 +00:00
|
|
|
else
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/speed-north-fps",
|
2001-03-24 04:56:46 +00:00
|
|
|
atof(arg.substr(9)) * SG_METER_TO_FEET);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--vEast=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "NED");
|
2002-03-26 02:38:11 +00:00
|
|
|
if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/speed-east-fps", atof(arg.substr(8)));
|
2001-01-12 15:37:40 +00:00
|
|
|
else
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/speed-east-fps",
|
|
|
|
atof(arg.substr(8)) * SG_METER_TO_FEET);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--vDown=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "NED");
|
2002-03-26 02:38:11 +00:00
|
|
|
if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/speed-down-fps", atof(arg.substr(8)));
|
2001-01-12 15:37:40 +00:00
|
|
|
else
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/speed-down-fps",
|
2001-03-24 04:56:46 +00:00
|
|
|
atof(arg.substr(8)) * SG_METER_TO_FEET);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--vc=" ) == 0) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "knots");
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/velocities/airspeed-kt", atof(arg.substr(5)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--mach=" ) == 0) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/speed-set", "mach");
|
|
|
|
fgSetDouble("/velocities/mach", atof(arg.substr(7)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--heading=" ) == 0 ) {
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/orientation/heading-deg", atof(arg.substr(10)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--roll=" ) == 0 ) {
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/orientation/roll-deg", atof(arg.substr(7)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--pitch=" ) == 0 ) {
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/orientation/pitch-deg", atof(arg.substr(8)));
|
2002-02-18 19:18:51 +00:00
|
|
|
} else if ( arg.find( "--glideslope=" ) == 0 ) {
|
|
|
|
fgSetDouble("/velocities/glideslope", atof(arg.substr(13))
|
|
|
|
*SG_DEGREES_TO_RADIANS);
|
|
|
|
} else if ( arg.find( "--roc=" ) == 0 ) {
|
|
|
|
fgSetDouble("/velocities/vertical-speed-fps", atof(arg.substr(6))/60);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--fg-root=" ) == 0 ) {
|
2001-01-12 15:37:40 +00:00
|
|
|
globals->set_fg_root(arg.substr( 10 ));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--fg-scenery=" ) == 0 ) {
|
2001-01-12 15:37:40 +00:00
|
|
|
globals->set_fg_scenery(arg.substr( 13 ));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--fdm=" ) == 0 ) {
|
2002-03-19 17:12:13 +00:00
|
|
|
fgSetString("/sim/flight-model", arg.substr(6).c_str());
|
2001-12-06 23:10:50 +00:00
|
|
|
} else if ( arg.find( "--aero=" ) == 0 ) {
|
2002-03-19 17:12:13 +00:00
|
|
|
fgSetString("/sim/aero", arg.substr(7).c_str());
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--aircraft-dir=" ) == 0 ) {
|
2002-03-19 17:12:13 +00:00
|
|
|
fgSetString("/sim/aircraft-dir", arg.substr(15).c_str());
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--model-hz=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/model-hz", atoi(arg.substr(11)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--speed=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/speed-up", atoi(arg.substr(8)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--trim") == 0) {
|
2001-01-17 23:30:35 +00:00
|
|
|
fgSetBool("/sim/startup/trim", true);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--notrim") == 0) {
|
2001-01-17 23:30:35 +00:00
|
|
|
fgSetBool("/sim/startup/trim", false);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--on-ground") == 0) {
|
2001-01-17 23:30:35 +00:00
|
|
|
fgSetBool("/sim/startup/onground", true);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--in-air") == 0) {
|
2001-01-17 23:30:35 +00:00
|
|
|
fgSetBool("/sim/startup/onground", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--fog-disable" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/rendering/fog", "disabled");
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--fog-fastest" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/rendering/fog", "fastest");
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--fog-nicest" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/fog", "nicest");
|
1999-10-22 00:27:49 +00:00
|
|
|
} else if ( arg == "--disable-clouds" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/environment/clouds/status", false);
|
1999-10-22 00:27:49 +00:00
|
|
|
} else if ( arg == "--enable-clouds" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/environment/clouds/status", true);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--fov=" ) == 0 ) {
|
2000-11-01 23:27:32 +00:00
|
|
|
parse_fov( arg.substr(6) );
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-fullscreen" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/fullscreen", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg== "--enable-fullscreen") {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/startup/fullscreen", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--shading-flat") {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/rendering/shading", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--shading-smooth") {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/rendering/shading", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-skyblend") {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/rendering/skyblend", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg== "--enable-skyblend" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/rendering/skyblend", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-textures" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/rendering/textures", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--enable-textures" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/rendering/textures", true);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--disable-wireframe" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/rendering/wireframe", false);
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--enable-wireframe" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/rendering/wireframe", true);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--geometry=" ) == 0 ) {
|
1999-08-31 23:22:05 +00:00
|
|
|
bool geometry_ok = true;
|
2001-01-12 15:37:40 +00:00
|
|
|
int xsize = 0, ysize = 0;
|
1998-11-16 13:59:58 +00:00
|
|
|
string geometry = arg.substr( 11 );
|
1999-08-31 23:22:05 +00:00
|
|
|
string::size_type i = geometry.find('x');
|
|
|
|
|
|
|
|
if (i != string::npos) {
|
|
|
|
xsize = atoi(geometry.substr(0, i));
|
|
|
|
ysize = atoi(geometry.substr(i+1));
|
|
|
|
} else {
|
|
|
|
geometry_ok = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( xsize <= 0 || ysize <= 0 ) {
|
1998-11-16 13:59:58 +00:00
|
|
|
xsize = 640;
|
|
|
|
ysize = 480;
|
1999-08-31 23:22:05 +00:00
|
|
|
geometry_ok = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !geometry_ok ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Unknown geometry: " << geometry );
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT,
|
1999-08-31 23:22:05 +00:00
|
|
|
"Setting geometry to " << xsize << 'x' << ysize << '\n');
|
2001-01-12 15:37:40 +00:00
|
|
|
} else {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2001-01-12 15:37:40 +00:00
|
|
|
"Setting geometry to " << xsize << 'x' << ysize << '\n');
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/startup/xsize", xsize);
|
|
|
|
fgSetInt("/sim/startup/ysize", ysize);
|
2001-01-12 15:37:40 +00:00
|
|
|
}
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--bpp=" ) == 0 ) {
|
2000-05-13 00:02:43 +00:00
|
|
|
string bits_per_pix = arg.substr( 6 );
|
|
|
|
if ( bits_per_pix == "16" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/rendering/bits-per-pixel", 16);
|
2000-05-13 00:02:43 +00:00
|
|
|
} else if ( bits_per_pix == "24" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/rendering/bits-per-pixel", 24);
|
2000-05-13 00:02:43 +00:00
|
|
|
} else if ( bits_per_pix == "32" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/rendering/bits-per-pixel", 32);
|
2001-01-12 15:37:40 +00:00
|
|
|
} else {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, "Unsupported bpp " << bits_per_pix);
|
2000-05-13 00:02:43 +00:00
|
|
|
}
|
1998-11-02 23:04:02 +00:00
|
|
|
} else if ( arg == "--units-feet" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/units", "feet");
|
1998-11-02 23:04:02 +00:00
|
|
|
} else if ( arg == "--units-meters" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/units", "meters");
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--time-offset" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetInt("/sim/startup/time-offset",
|
2002-02-13 19:41:05 +00:00
|
|
|
parse_time_offset( (arg.substr(14)) ));
|
|
|
|
fgSetString("/sim/startup/time-offset-type", "system-offset");
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--time-match-real") == 0 ) {
|
2002-02-13 19:41:05 +00:00
|
|
|
fgSetString("/sim/startup/time-offset-type", "system-offset");
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--time-match-local") == 0 ) {
|
2002-02-13 19:41:05 +00:00
|
|
|
fgSetString("/sim/startup/time-offset-type", "latitude-offset");
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--start-date-sys=") == 0 ) {
|
2002-02-13 19:41:05 +00:00
|
|
|
fgSetInt("/sim/startup/time-offset", parse_date((arg.substr(17))));
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/time-offset-type", "system");
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--start-date-lat=") == 0 ) {
|
2002-02-13 19:41:05 +00:00
|
|
|
fgSetInt("/sim/startup/time-offset", parse_date((arg.substr(17))));
|
|
|
|
fgSetString("/sim/startup/time-offset-type", "latitude");
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--start-date-gmt=") == 0 ) {
|
2002-02-13 19:41:05 +00:00
|
|
|
fgSetInt("/sim/startup/time-offset", parse_date((arg.substr(17))));
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/startup/time-offset-type", "gmt");
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--hud-tris" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/hud/frame-stat-type", "tris");
|
1998-08-27 17:01:55 +00:00
|
|
|
} else if ( arg == "--hud-culled" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetString("/sim/hud/frame-stat-type", "culled");
|
2002-02-05 04:42:39 +00:00
|
|
|
} else if ( arg.find( "--atc610x" ) == 0 ) {
|
|
|
|
add_channel( "atc610x", "dummy" );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--atlas=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "atlas", arg.substr(8) );
|
|
|
|
} else if ( arg.find( "--httpd=" ) == 0 ) {
|
|
|
|
add_channel( "httpd", arg.substr(8) );
|
2002-01-16 23:02:52 +00:00
|
|
|
#ifdef FG_JPEG_SERVER
|
|
|
|
} else if ( arg.find( "--jpg-httpd=" ) == 0 ) {
|
|
|
|
add_channel( "jpg-httpd", arg.substr(12) );
|
|
|
|
#endif
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--native=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "native", arg.substr(9) );
|
2001-07-27 14:23:01 +00:00
|
|
|
} else if ( arg.find( "--native-ctrls=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "native_ctrls", arg.substr(15) );
|
2001-09-04 14:38:15 +00:00
|
|
|
} else if ( arg.find( "--native-fdm=" ) == 0 ) {
|
|
|
|
add_channel( "native_fdm", arg.substr(13) );
|
2001-11-30 23:56:28 +00:00
|
|
|
} else if ( arg.find( "--opengc=" ) == 0 ) {
|
|
|
|
// char stop;
|
|
|
|
// cout << "Adding channel for OpenGC Display" << endl; cin >> stop;
|
2001-12-05 04:54:54 +00:00
|
|
|
add_channel( "opengc", arg.substr(9) );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--garmin=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "garmin", arg.substr(9) );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--nmea=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "nmea", arg.substr(7) );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--props=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "props", arg.substr(8) );
|
2002-05-16 06:02:31 +00:00
|
|
|
} else if ( arg.find( "--telnet=" ) == 0 ) {
|
|
|
|
add_channel( "telnet", arg.substr(9) );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--pve=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "pve", arg.substr(6) );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--ray=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "ray", arg.substr(6) );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--rul=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "rul", arg.substr(6) );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--joyclient=" ) == 0 ) {
|
2001-08-21 21:13:55 +00:00
|
|
|
add_channel( "joyclient", arg.substr(12) );
|
1999-06-30 20:21:04 +00:00
|
|
|
#ifdef FG_NETWORK_OLK
|
2000-02-28 04:16:12 +00:00
|
|
|
} else if ( arg == "--disable-network-olk" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/networking/olk", false);
|
2000-02-28 04:16:12 +00:00
|
|
|
} else if ( arg== "--enable-network-olk") {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/networking/olk", true);
|
1999-06-30 20:21:04 +00:00
|
|
|
} else if ( arg == "--net-hud" ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetBool("/sim/hud/net-display", true);
|
2001-01-12 15:37:40 +00:00
|
|
|
net_hud_display = 1; // FIXME
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--net-id=") == 0 ) {
|
2002-03-19 17:12:13 +00:00
|
|
|
fgSetString("sim/networking/call-sign", arg.substr(9).c_str());
|
1999-06-30 20:21:04 +00:00
|
|
|
#endif
|
2000-07-03 20:09:56 +00:00
|
|
|
} else if ( arg.find( "--prop:" ) == 0 ) {
|
|
|
|
string assign = arg.substr(7);
|
2001-05-18 16:09:39 +00:00
|
|
|
unsigned int pos = assign.find('=');
|
|
|
|
if ( pos == arg.npos || pos == 0 ) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Bad property assignment: " << arg );
|
2000-07-03 20:09:56 +00:00
|
|
|
return FG_OPTIONS_ERROR;
|
|
|
|
}
|
|
|
|
string name = assign.substr(0, pos);
|
|
|
|
string value = assign.substr(pos + 1);
|
2002-03-19 17:12:13 +00:00
|
|
|
fgSetString(name.c_str(), value.c_str());
|
2001-03-24 06:03:11 +00:00
|
|
|
// SG_LOG(SG_GENERAL, SG_INFO, "Setting default value of property "
|
2001-01-31 15:59:16 +00:00
|
|
|
// << name << " to \"" << value << '"');
|
2001-12-12 03:49:48 +00:00
|
|
|
} else if ( arg.find("--trace-read=") == 0) {
|
|
|
|
string name = arg.substr(13);
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Tracing reads for property " << name);
|
2002-03-19 17:12:13 +00:00
|
|
|
fgGetNode(name.c_str(), true)
|
|
|
|
->setAttribute(SGPropertyNode::TRACE_READ, true);
|
2001-12-12 03:49:48 +00:00
|
|
|
} else if ( arg.find("--trace-write=") == 0) {
|
|
|
|
string name = arg.substr(14);
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Tracing writes for property " << name);
|
2002-03-19 17:12:13 +00:00
|
|
|
fgGetNode(name.c_str(), true)
|
|
|
|
->setAttribute(SGPropertyNode::TRACE_WRITE, true);
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--view-offset=" ) == 0 ) {
|
2001-12-12 03:49:48 +00:00
|
|
|
// $$$ begin - added VS Renganathan, 14 Oct 2K
|
|
|
|
// for multi-window outside window imagery
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
string woffset = arg.substr( 14 );
|
2001-01-12 15:37:40 +00:00
|
|
|
double default_view_offset = 0.0;
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
if ( woffset == "LEFT" ) {
|
2001-03-24 02:36:45 +00:00
|
|
|
default_view_offset = SGD_PI * 0.25;
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
} else if ( woffset == "RIGHT" ) {
|
2001-03-24 02:36:45 +00:00
|
|
|
default_view_offset = SGD_PI * 1.75;
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
} else if ( woffset == "CENTER" ) {
|
|
|
|
default_view_offset = 0.00;
|
|
|
|
} else {
|
2001-03-24 04:48:44 +00:00
|
|
|
default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
}
|
Major viewer-code overhaul from Jim Wilson:
Description:
This update includes the new viewer interface as proposed by David M. and
a first pass at cleaning up the viewer/view manager code by Jim W.
Note that I have dropped Main/viewer_lookat.?xx and Main/viewer_rph.?xx and
modified the Makefile.am accordingly.
Detail of work:
Overall:
The code reads a little easier. There are still some unnecessary bits in
there and I'd like to supplement the comments in the viewer.hxx with a tiny
bit on each interface group and what the groupings mean (similar but briefer
than what you emailed me the other day). I tried not to mess up the style,
but there is an occasional inconsistency. In general I wouldn't call it done
(especially since there's no tower yet! :)), but I'd like to get this out
there so others can comment, and test.
In Viewer:
The interface as you suggested has been implemented. Basically everything
seems to work as it did visually. There is no difference that I can see in
performance, although some things might be a tiny bit faster.
I've merged the lookat and rph (pilot view) code into the recalc for the
viewer. There is still some redundancy between the two, but a lot has been
removed. In some cases I've taken some code that we'd likely want to inline
anyway and left it in there in duplicate. You'll see that the code for both
looks a little cleaner. I need to take a closer look at the rotations in
particular. I've cleaned up a little there, but I suspect more can be done
to streamline this.
The external declaration to the Quat_mat in mouse.cxx has been removed. IMHO
the quat doesn't serve any intrinsic purpose in mouse.cxx, but I'm not about
to rip it out. It would seem that there more conventional ways to get
spherical data that are just as fast. In any case all the viewer was pulling
from the quat matrix was the pitch value so I modified mouse.cxx to output to
our pitchOffset input and that works fine.
I've changed the native values to degrees from radians where appropriate.
This required a conversion from degrees to radians in a couple modules that
access the interface. Perhaps we should add interface calls that do the
conversion, e.g. a getHeadingOffset_rad() to go along with the
getHeadingOffset_deg().
On the view_offset (now headingOffset) thing there are two entry points
because of the ability to instantly switch views or to scroll to a new view
angle (by hitting the numeric keys for example). This leaves an anomaly in
the interface which should be resolved by adding "goal" settings to the
interface, e.g. a setGoalHeadingOffset_deg(), setGoalPitchOffset_deg(), etc.
Other than these two issues, the next step here will be to look at some
further optimizations, and to write support code for a tower view. That
should be fairly simple at this point. I was considering creating a
"simulated tower view" or "pedestrian view" that defaulted to a position off
to the right of whereever the plane is at the moment you switch to the tower
view. This could be a fall back when we don't have an actual tower location
at hand (as would be the case with rural airports).
ViewManager:
Basically all I did here was neaten things up by ripping out excess crap and
made it compatible as is with the new interface.
The result is that viewmanager is now ready to be developed. The two
preexisting views are still hardcoded into the view manager. The next step
would be to design configuration xml (eg /sim/view[x]/config/blahblah) that
could be used to set up as many views as we want. If we want to take the easy
way out, we might want to insist that view[0] be a pilot-view and have
viewmanager check for that.
2002-03-20 17:43:28 +00:00
|
|
|
FGViewer *pilot_view =
|
|
|
|
(FGViewer *)globals->get_viewmgr()->get_view( 0 );
|
From: "Jim Wilson" <jimw@kelcomaine.com>
This is a new improved patch for the previous tile manager fixes.
Rather than building dependencies between FGlocation or the viewer or fdm with
tilemgr what I ended up doing was linking the pieces together in the Mainloop
in main.cxx. You'll see what I mean...it's been commented fairly well. More
than likely we should move that chunk somewhere...just not sure where yet.
The changes seem clean now. As I get more ideas there could be some further
improvement in organizing the update in tilemgr. You'll note that I left an
override in there for the tilemgr::update() function to preserve earlier
functionality if someone needs it (e.g. usage independent of an fdm or
viewer), not to mention there are a few places in flightgear that call it
directly that have not been changed to the new interface (and may not need to be).
The code has been optimized to avoid duplicate traversals and seems to run
generally quite well. Note that there can be a short delay reloading tiles
that have been dropped from static views. We could call the tile scheduler on
a view switch, but it's not a big deal and at the moment I'd like to get this
in so people can try it and comment on it as it is.
Everything has been resycned with CVS tonight and I've included the
description submitted earlier (below).
Best,
Jim
Changes synced with CVS approx 20:30EDT 2002-05-09 (after this evenings updates).
Files:
http://www.spiderbark.com/fgfs/viewer-update-20020516.tar.gz
or
http://www.spiderbark.com/fgfs/viewer-update-20020516.diffs.gz
Description:
In a nutshell, these patches begin to take what was one value for ground
elevation and calculate ground elevation values seperately for the FDM and the
viewer (eye position). Several outstanding view related bugs have been fixed.
With the introduction of the new viewer code a lot of that Flight Gear code
broke related to use of a global variable called "scenery.cur_elev".
Therefore the ground_elevation and other associated items (like the current
tile bucket) is maintained per FDM instance and per View. Each of these has a
"point" or location that can be identified. See changes to FGLocation class
and main.cxx.
Most of the problems related to the new viewer in terms of sky, ground and
runway lights, and tower views are fixed.
There are four minor problems remaining. 1) The sun/moon spins when you pan
the "lookat" tower view only (view #3). 2) Under stress (esp. magic carpet
full speed with max visibility), there is a memory leak in the tile caching
that was not introduced with these changes. 3) I have not tested these
changes or made corrections to the ADA or External FDM interfaces. 4) The
change view function doesn't call the time/light update (not a problem unless
a tower is very far away).
Details:
FDM/flight.cxx, flight.hxx - FGInterface ties to FGAircraftModel so that it's
location data can be accessed for runway (ground elevation under aircraft)
elevation.
FDM/larsim.cxx, larcsim.hxx - gets runway elevation from FGInterface now.
Commented out function that is causing a namespace conflict, hasn't been
called with recent code anyway.
FDM/JSBSim/JSBSim.cxx, YASim/YASim.cxx - gets runway elevation from
FGInterface now.
Scenery/newcache.cxx, newcache.hxx - changed caching scheme to time based
(oldest tiles discard).
Scenery/tileentry.cxx, tileentry.hxx - added place to record time, changed
rendering to reference viewer altitude in order to fix a problem with ground
and runway lights.
Scenery/tilemgr.cxx, tilemgr.hxx - Modified update() to accept values for
multiple locations. Refresh function added in order to periodically make
the tiles current for a non-moving view (like a tower).
Main/fg_init.cxx - register event for making tiles current in a non-moving
view (like a tower).
Main/location.hxx - added support for current ground elevation data.
Main/main.cxx - added second tilemgr call for fdm, fixed places where viewer
position data was required for correct sky rendering.
Main/options.cxx - fixed segfault reported by Curtis when using --view-offset
command line parameter.
Main/viewer.cxx, viewer.hxx - removed fudging of view position. Fixed numerous
bugs that were causing eye and target values to get mixed up.
2002-05-17 17:25:28 +00:00
|
|
|
// this will work without calls to the viewer...
|
2002-04-18 16:51:47 +00:00
|
|
|
fgSetDouble( "/sim/current-view/heading-offset-deg",
|
|
|
|
default_view_offset * SGD_RADIANS_TO_DEGREES );
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
// $$$ end - added VS Renganathan, 14 Oct 2K
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--visibility=" ) == 0 ) {
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/environment/visibility-m", atof(arg.substr(13)));
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--visibility-miles=" ) == 0 ) {
|
2001-03-24 04:56:46 +00:00
|
|
|
double visibility = atof(arg.substr(19)) * 5280.0 * SG_FEET_TO_METER;
|
2001-07-02 22:27:24 +00:00
|
|
|
fgSetDouble("/environment/visibility-m", visibility);
|
2001-01-08 17:59:54 +00:00
|
|
|
} else if ( arg.find( "--wind=" ) == 0 ) {
|
2002-06-09 21:28:17 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
string val = arg.substr(7);
|
2001-05-18 16:09:39 +00:00
|
|
|
unsigned int pos = val.find('@');
|
|
|
|
if ( pos == string::npos ) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << val );
|
2001-01-08 17:59:54 +00:00
|
|
|
return FG_OPTIONS_ERROR;
|
|
|
|
}
|
2002-06-09 21:28:17 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "WIND: " << min_hdg << '@' <<
|
2001-01-08 17:59:54 +00:00
|
|
|
speed << " knots" << endl);
|
2001-11-07 17:55:28 +00:00
|
|
|
|
2002-05-12 00:12:19 +00:00
|
|
|
#ifdef FG_WEATHERCM
|
2001-11-07 17:55:28 +00:00
|
|
|
// convert to fps
|
2001-03-24 04:56:46 +00:00
|
|
|
speed *= SG_NM_TO_METER * SG_METER_TO_FEET * (1.0/3600);
|
2002-06-09 21:28:17 +00:00
|
|
|
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));
|
2002-05-12 00:12:19 +00:00
|
|
|
#endif // FG_WEATHERCM
|
2002-06-09 21:28:17 +00:00
|
|
|
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--wp=" ) == 0 ) {
|
2000-10-12 01:08:09 +00:00
|
|
|
parse_wp( arg.substr( 5 ) );
|
2001-03-06 19:11:28 +00:00
|
|
|
} else if ( arg.find( "--flight-plan=") == 0) {
|
2000-11-28 23:38:24 +00:00
|
|
|
parse_flightplan ( arg.substr (14) );
|
2001-03-09 02:41:04 +00:00
|
|
|
} else if ( arg.find( "--config=" ) == 0 ) {
|
|
|
|
string file = arg.substr(9);
|
2001-07-19 04:53:13 +00:00
|
|
|
try {
|
|
|
|
readProperties(file, globals->get_props());
|
2001-07-24 23:51:36 +00:00
|
|
|
} catch (const sg_exception &e) {
|
2001-07-19 04:53:13 +00:00
|
|
|
string message = "Error loading config file: ";
|
2001-07-24 23:51:36 +00:00
|
|
|
message += e.getFormattedMessage();
|
2001-07-19 04:53:13 +00:00
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, message);
|
|
|
|
exit(2);
|
2001-03-06 19:11:28 +00:00
|
|
|
}
|
2001-12-07 17:37:15 +00:00
|
|
|
} else if ( arg.find( "--aircraft=" ) == 0 ) {
|
2001-12-10 16:29:20 +00:00
|
|
|
// read in the top level aircraft definition file
|
|
|
|
SGPath apath( globals->get_fg_root() );
|
|
|
|
apath.append( "Aircraft" );
|
|
|
|
apath.append( arg.substr(11) );
|
|
|
|
apath.concat( "-set.xml" );
|
2002-03-03 00:38:56 +00:00
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Reading aircraft: " << arg.substr(11)
|
|
|
|
<< " from " << apath.str());
|
2002-04-04 17:51:40 +00:00
|
|
|
readProperties( apath.str(), globals->get_props() );
|
1998-05-13 18:29:56 +00:00
|
|
|
} else {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
|
1998-11-06 21:17:31 +00:00
|
|
|
return FG_OPTIONS_ERROR;
|
1998-05-13 18:29:56 +00:00
|
|
|
}
|
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
return FG_OPTIONS_OK;
|
1998-04-24 00:49:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-04 22:52:34 +00:00
|
|
|
// Scan the command line options for an fg_root definition and set
|
|
|
|
// just that.
|
2001-01-13 22:06:39 +00:00
|
|
|
string
|
|
|
|
fgScanForRoot (int argc, char **argv)
|
|
|
|
{
|
2000-10-04 22:52:34 +00:00
|
|
|
int i = 1;
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Scanning for root: command line");
|
2000-10-04 22:52:34 +00:00
|
|
|
|
|
|
|
while ( i < argc ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_DEBUG, "argv[" << i << "] = " << argv[i] );
|
2000-10-04 22:52:34 +00:00
|
|
|
|
|
|
|
string arg = argv[i];
|
2001-03-06 19:11:28 +00:00
|
|
|
if ( arg.find( "--fg-root=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
return arg.substr( 10 );
|
2000-10-04 22:52:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
2001-01-13 22:06:39 +00:00
|
|
|
|
|
|
|
return "";
|
2000-10-04 22:52:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Scan the config file for an fg_root definition and set just that.
|
2001-01-13 22:06:39 +00:00
|
|
|
string
|
|
|
|
fgScanForRoot (const string& path)
|
|
|
|
{
|
2001-03-25 14:20:12 +00:00
|
|
|
sg_gzifstream in( path );
|
2000-10-04 22:52:34 +00:00
|
|
|
if ( !in.is_open() )
|
2001-01-13 22:06:39 +00:00
|
|
|
return "";
|
2000-10-04 22:52:34 +00:00
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, "Scanning for root: " << path );
|
2000-10-04 22:52:34 +00:00
|
|
|
|
|
|
|
in >> skipcomment;
|
|
|
|
#ifndef __MWERKS__
|
|
|
|
while ( ! in.eof() ) {
|
|
|
|
#else
|
|
|
|
char c = '\0';
|
|
|
|
while ( in.get(c) && c != '\0' ) {
|
|
|
|
in.putback(c);
|
|
|
|
#endif
|
|
|
|
string line;
|
|
|
|
|
2001-05-18 16:09:39 +00:00
|
|
|
#if defined( macintosh )
|
|
|
|
getline( in, line, '\r' );
|
2000-10-04 22:52:34 +00:00
|
|
|
#else
|
2001-05-18 16:09:39 +00:00
|
|
|
getline( in, line, '\n' );
|
2000-10-04 22:52:34 +00:00
|
|
|
#endif
|
|
|
|
|
2001-05-18 16:09:39 +00:00
|
|
|
// catch extraneous (DOS) line ending character
|
|
|
|
if ( line[line.length() - 1] < 32 ) {
|
|
|
|
line = line.substr( 0, line.length()-1 );
|
|
|
|
}
|
|
|
|
|
2001-03-06 19:11:28 +00:00
|
|
|
if ( line.find( "--fg-root=" ) == 0 ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
return line.substr( 10 );
|
2000-10-04 22:52:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
in >> skipcomment;
|
|
|
|
}
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
return "";
|
2000-10-04 22:52:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-04-24 00:49:17 +00:00
|
|
|
// Parse the command line options
|
2001-01-13 22:06:39 +00:00
|
|
|
void
|
2002-01-04 20:58:48 +00:00
|
|
|
fgParseArgs (int argc, char **argv)
|
|
|
|
{
|
|
|
|
bool in_options = true;
|
1998-04-24 00:49:17 +00:00
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Processing command line arguments");
|
1998-04-24 00:49:17 +00:00
|
|
|
|
2002-01-04 20:58:48 +00:00
|
|
|
for (int i = 1; i < argc; i++) {
|
|
|
|
string arg = argv[i];
|
|
|
|
|
|
|
|
if (in_options && (arg.find('-') == 0)) {
|
|
|
|
if (arg == "--") {
|
|
|
|
in_options = false;
|
|
|
|
} else {
|
|
|
|
int result = parse_option(arg);
|
|
|
|
if ( (result == FG_OPTIONS_HELP) ||
|
|
|
|
(result == FG_OPTIONS_ERROR) ) {
|
|
|
|
fgUsage();
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
in_options = false;
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO,
|
|
|
|
"Reading command-line property file " << arg);
|
|
|
|
readProperties(arg, globals->get_props());
|
1998-04-24 00:49:17 +00:00
|
|
|
}
|
|
|
|
}
|
2002-01-04 20:58:48 +00:00
|
|
|
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Finished command line arguments");
|
1998-04-24 00:49:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-08-27 17:01:55 +00:00
|
|
|
// Parse config file options
|
2001-01-13 22:06:39 +00:00
|
|
|
void
|
|
|
|
fgParseOptions (const string& path) {
|
2001-03-25 14:20:12 +00:00
|
|
|
sg_gzifstream in( path );
|
2001-05-18 16:09:39 +00:00
|
|
|
if ( !in.is_open() ) {
|
|
|
|
return;
|
|
|
|
}
|
1998-05-13 18:29:56 +00:00
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path );
|
1998-05-13 18:29:56 +00:00
|
|
|
|
1998-11-06 14:46:59 +00:00
|
|
|
in >> skipcomment;
|
1999-08-07 18:24:23 +00:00
|
|
|
#ifndef __MWERKS__
|
|
|
|
while ( ! in.eof() ) {
|
|
|
|
#else
|
|
|
|
char c = '\0';
|
|
|
|
while ( in.get(c) && c != '\0' ) {
|
|
|
|
in.putback(c);
|
|
|
|
#endif
|
1998-09-15 02:09:24 +00:00
|
|
|
string line;
|
1999-05-06 19:38:28 +00:00
|
|
|
|
2001-05-18 16:09:39 +00:00
|
|
|
#if defined( macintosh )
|
|
|
|
getline( in, line, '\r' );
|
1999-05-06 19:38:28 +00:00
|
|
|
#else
|
2001-05-18 16:09:39 +00:00
|
|
|
getline( in, line, '\n' );
|
1999-05-06 19:38:28 +00:00
|
|
|
#endif
|
1998-07-22 01:27:03 +00:00
|
|
|
|
2001-05-18 16:09:39 +00:00
|
|
|
// catch extraneous (DOS) line ending character
|
|
|
|
if ( line[line.length() - 1] < 32 ) {
|
|
|
|
line = line.substr( 0, line.length()-1 );
|
|
|
|
}
|
|
|
|
|
1998-09-15 02:09:24 +00:00
|
|
|
if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT,
|
1998-11-06 21:17:31 +00:00
|
|
|
"Config file parse error: " << path << " '"
|
|
|
|
<< line << "'" );
|
2001-01-13 22:06:39 +00:00
|
|
|
fgUsage();
|
1998-11-06 21:17:31 +00:00
|
|
|
exit(-1);
|
1998-05-13 18:29:56 +00:00
|
|
|
}
|
1998-11-06 14:46:59 +00:00
|
|
|
in >> skipcomment;
|
1998-05-13 18:29:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-04-24 00:49:17 +00:00
|
|
|
// Print usage message
|
2001-01-13 22:06:39 +00:00
|
|
|
void
|
|
|
|
fgUsage ()
|
|
|
|
{
|
2002-06-10 23:30:23 +00:00
|
|
|
// *** FIXME ***
|
|
|
|
// Began the process of converting output from printf() to
|
|
|
|
// SG_LOG() but this needs to be finished.
|
|
|
|
|
|
|
|
SGPropertyNode options_root;
|
|
|
|
SGPath opath( globals->get_fg_root() );
|
|
|
|
opath.append( "options.xml" );
|
|
|
|
|
|
|
|
try {
|
|
|
|
readProperties(opath.c_str(), &options_root);
|
|
|
|
} catch (const sg_exception &ex) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, endl << "Unable to read the help file." );
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Make sure the file options.xml is located in the FlightGear base directory." );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Usage: " << usage->getStringValue() );
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<SGPropertyNode_ptr>section = options->getChildren("section");
|
|
|
|
for (unsigned int j = 0; j < section.size(); j++) {
|
|
|
|
|
|
|
|
SGPropertyNode *name = section[j]->getNode("name");
|
|
|
|
if (name) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, endl << name->getStringValue()
|
|
|
|
<< ":" );
|
|
|
|
}
|
|
|
|
|
|
|
|
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 *arg = option[k]->getNode("arg");
|
|
|
|
|
|
|
|
if (name) {
|
|
|
|
string str = name->getStringValue();
|
|
|
|
if (short_name) {
|
|
|
|
str.append(", -");
|
|
|
|
str.append(short_name->getStringValue());
|
|
|
|
}
|
|
|
|
if (arg) {
|
|
|
|
str.append("=");
|
|
|
|
str.append(arg->getStringValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (str.size() <= 25) {
|
|
|
|
fprintf(stderr, " --%-27s", str.c_str());
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "\n --%s\n%32c", str.c_str(), ' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
str.erase();
|
|
|
|
SGPropertyNode *desc = option[k]->getNode("description");
|
|
|
|
if (desc) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, desc->getStringValue() );
|
|
|
|
|
|
|
|
for ( int l = 1;
|
|
|
|
(desc = option[k]->getNode("desc", l, false));
|
|
|
|
l++ )
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%32c%s\n", ' ',
|
|
|
|
desc->getStringValue());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1998-04-24 00:49:17 +00:00
|
|
|
}
|