X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Foptions.cxx;h=0e19d6ee38f6f7f379c5826334d07d2873150ec1;hb=09d4176e963be04dec40943083e369081b8f7a18;hp=df0513a4916f52f763ba76d4e8183956369e4cf0;hpb=dad0c2de100ad2dccf96ec1c7ad18e0106cf38fa;p=flightgear.git diff --git a/src/Main/options.cxx b/src/Main/options.cxx index df0513a49..0e19d6ee3 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -534,36 +534,19 @@ add_channel( const string& type, const string& channel_str ) { return true; } +// The parse wp and parse flight-plan options don't work anymore, because +// the route manager and the airport subsystems have not yet been initialized +// at this stage. // Parse --wp=ID[@alt] -static bool +static void parse_wp( const string& arg ) { - string id, alt_str; - double alt = 0.0; - - string::size_type pos = arg.find( "@" ); - 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() ); - if ( !strcmp(fgGetString("/sim/startup/units"), "feet") ) { - alt *= SG_FEET_TO_METER; - } - } else { - id = arg; - } - - FGAirport a; - if ( fgFindAirportID( id, &a ) ) { - FGRouteMgr *rm = (FGRouteMgr *)globals->get_subsystem("route-manager"); - SGWayPoint wp( a.longitude, a.latitude, alt, SGWayPoint::WGS84, id ); - rm->add_waypoint( wp ); - - return true; - } else { - return false; + string_list *waypoints = globals->get_initial_waypoints(); + if (!waypoints) { + waypoints = new string_list; } + waypoints->push_back(arg); + globals->set_initial_waypoints(waypoints); } @@ -571,31 +554,34 @@ parse_wp( const string& arg ) { static bool parse_flightplan(const string& arg) { - sg_gzifstream in(arg.c_str()); - if ( !in.is_open() ) { - return false; - } - while ( true ) { - string line; - + string_list *waypoints = globals->get_initial_waypoints(); + if (!waypoints) + waypoints = new string_list; + sg_gzifstream in(arg.c_str()); + if ( !in.is_open() ) { + return false; + } + while ( true ) { + string line; + #if defined( macintosh ) - getline( in, line, '\r' ); + getline( in, line, '\r' ); #else - getline( in, line, '\n' ); + getline( in, line, '\n' ); #endif - - // catch extraneous (DOS) line ending character - if ( line[line.length() - 1] < 32 ) { - line = line.substr( 0, line.length()-1 ); - } - - if ( in.eof() ) { - break; - } - parse_wp(line); + + // catch extraneous (DOS) line ending character + if ( line[line.length() - 1] < 32 ) { + line = line.substr( 0, line.length()-1 ); } - - return true; + + if ( in.eof() ) { + break; + } + waypoints->push_back(line); + } + globals->set_initial_waypoints(waypoints); + return true; } static int @@ -874,7 +860,7 @@ fgSetupProxy( const char *arg ) { string options = arg; string host, port, auth; - int pos; + unsigned int pos; host = port = auth = ""; if ((pos = options.find("@")) != string::npos) @@ -1566,6 +1552,7 @@ fgUsage (bool verbose) SGPropertyNode options_root; + SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on Windows cout << endl; try { @@ -1686,6 +1673,10 @@ fgUsage (bool verbose) cout << endl; cout << "For a complete list of options use --help --verbose" << endl; } +#ifdef _MSC_VER + cout << "Hit a key to continue..." << endl; + cin.get(); +#endif } static void fgSearchAircraft(const SGPath &path, string_list &aircraft, @@ -1762,8 +1753,13 @@ void fgShowAircraft(const SGPath &path, bool recursive) { fgSearchAircraft( path, aircraft, recursive ); sort(aircraft.begin(), aircraft.end()); + SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on Windows cout << "Available aircraft:" << endl; for ( unsigned int i = 0; i < aircraft.size(); i++ ) { cout << aircraft[i] << endl; } +#ifdef _MSC_VER + cout << "Hit a key to continue..." << endl; + cin.get(); +#endif }