X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Foptions.cxx;h=0e19d6ee38f6f7f379c5826334d07d2873150ec1;hb=09d4176e963be04dec40943083e369081b8f7a18;hp=53daa5c80716f8ebd4d4ec04b3b65f4215b3dcae;hpb=980012e1682fdb27c9b9ec27edea0b549d603f9d;p=flightgear.git diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 53daa5c80..0e19d6ee3 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -42,18 +42,14 @@ #include #include #include -#include -#include // #include // #include // #include // #include // #include -#ifdef FG_NETWORK_OLK -# include -#endif +#include #include #include "globals.hxx" @@ -181,7 +177,7 @@ fgSetDefaults () #else fgSetString("/sim/startup/browser-app", "webrun.bat"); #endif - fgSetString("/sim/logging/priority", "warn"); + fgSetString("/sim/logging/priority", "alert"); // Features fgSetBool("/sim/hud/antialiased", false); @@ -223,9 +219,6 @@ fgSetDefaults () fgSetString("/sim/startup/time-offset-type", "system-offset"); fgSetLong("/sim/time/cur-time-override", 0); - fgSetBool("/sim/networking/network-olk", false); - fgSetString("/sim/networking/call-sign", "Johnny"); - // Freeze options fgSetBool("/sim/freeze/master", false); fgSetBool("/sim/freeze/position", false); @@ -541,96 +534,19 @@ add_channel( const string& type, const string& channel_str ) { return true; } - -static void -setup_wind (double min_hdg, double max_hdg, double speed, double gust) -{ - // Initialize to a reasonable state - fgDefaultWeatherValue("wind-from-heading-deg", min_hdg); - fgDefaultWeatherValue("wind-speed-kt", speed); - - SG_LOG(SG_GENERAL, SG_INFO, "WIND: " << min_hdg << '@' << - speed << " knots" << endl); - - // Now, add some variety to the layers - min_hdg += 10; - if (min_hdg > 360) - min_hdg -= 360; - speed *= 1.1; - fgSetDouble("/environment/config/boundary/entry[1]/wind-from-heading-deg", - min_hdg); - fgSetDouble("/environment/config/boundary/entry[1]/wind-speed-kt", - speed); - - min_hdg += 20; - if (min_hdg > 360) - min_hdg -= 360; - speed *= 1.1; - fgSetDouble("/environment/config/aloft/entry[0]/wind-from-heading-deg", - min_hdg); - fgSetDouble("/environment/config/aloft/entry[0]/wind-speed-kt", - speed); - - min_hdg += 10; - if (min_hdg > 360) - min_hdg -= 360; - speed *= 1.1; - fgSetDouble("/environment/config/aloft/entry[1]/wind-from-heading-deg", - min_hdg); - fgSetDouble("/environment/config/aloft/entry[1]/wind-speed-kt", - speed); - - min_hdg += 10; - if (min_hdg > 360) - min_hdg -= 360; - speed *= 1.1; - fgSetDouble("/environment/config/aloft/entry[2]/wind-from-heading-deg", - min_hdg); - fgSetDouble("/environment/config/aloft/entry[2]/wind-speed-kt", - speed); - -#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 -} - +// 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 ) ) { - SGWayPoint wp( a.longitude, a.latitude, alt, SGWayPoint::WGS84, id ); - globals->get_route()->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); } @@ -638,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 @@ -936,15 +855,31 @@ fgOptStartDateGmt( const char *arg ) return FG_OPTIONS_OK; } -#ifdef FG_NETWORK_OLK static int -fgOptNetHud( const char *arg ) +fgSetupProxy( const char *arg ) { - fgSetBool("/sim/hud/net-display", true); - net_hud_display = 1; // FIXME + string options = arg; + string host, port, auth; + unsigned int pos; + + host = port = auth = ""; + if ((pos = options.find("@")) != string::npos) + auth = options.substr(0, pos++); + else + pos = 0; + + host = options.substr(pos, options.size()); + if ((pos = host.find(":")) != string::npos) { + port = host.substr(++pos, host.size()); + host.erase(--pos, host.size()); + } + + fgSetString("/sim/presets/proxy/host", host.c_str()); + fgSetString("/sim/presets/proxy/port", port.c_str()); + fgSetString("/sim/presets/proxy/authentication", auth.c_str()); + return FG_OPTIONS_OK; } -#endif static int fgOptTraceRead( const char *arg ) @@ -968,7 +903,7 @@ fgOptLogLevel( const char *arg ) logbuf::set_log_priority(SG_BULK); } else if (priority == "debug") { logbuf::set_log_priority(SG_DEBUG); - } else if (priority.empty() || priority == "info") { // default + } else if (priority == "info") { logbuf::set_log_priority(SG_INFO); } else if (priority == "warn") { logbuf::set_log_priority(SG_WARN); @@ -977,7 +912,7 @@ fgOptLogLevel( const char *arg ) } else { SG_LOG(SG_GENERAL, SG_WARN, "Unknown logging priority " << priority); } - SG_LOG(SG_GENERAL, SG_INFO, "Logging priority is " << priority); + SG_LOG(SG_GENERAL, SG_DEBUG, "Logging priority is " << priority); return FG_OPTIONS_OK; } @@ -1042,7 +977,7 @@ fgOptRandomWind( const char *arg ) double max_hdg = min_hdg + (20 - sqrt(sg_random() * 400)); double speed = sg_random() * sg_random() * 40; double gust = speed + (10 - sqrt(sg_random() * 100)); - setup_wind(min_hdg, max_hdg, speed, gust); + fgSetupWind(min_hdg, max_hdg, speed, gust); return FG_OPTIONS_OK; } @@ -1054,7 +989,7 @@ fgOptWind( const char *arg ) SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << arg ); return FG_OPTIONS_ERROR; } - setup_wind(min_hdg, max_hdg, speed, gust); + fgSetupWind(min_hdg, max_hdg, speed, gust); return FG_OPTIONS_OK; } @@ -1174,8 +1109,8 @@ fgOptADF( const char * arg ) { double rot, freq; if (parse_colon(arg, &rot, &freq)) - fgSetDouble("/radios/kr-87/inputs/rotation-deg", rot); - fgSetDouble("/radios/kr-87/outputs/selected-khz", freq); + fgSetDouble("/instrumentation/adf/rotation-deg", rot); + fgSetDouble("/instrumentation/adf/frequencies/selected-khz", freq); return FG_OPTIONS_OK; } @@ -1367,12 +1302,8 @@ struct OptionDesc { {"ray", true, OPTION_CHANNEL, "", false, "", 0 }, {"rul", true, OPTION_CHANNEL, "", false, "", 0 }, {"joyclient", true, OPTION_CHANNEL, "", false, "", 0 }, -#ifdef FG_NETWORK_OLK - {"disable-network-olk", false, OPTION_BOOL, "/sim/networking/olk", false, "", 0 }, - {"enable-network-olk", false, OPTION_BOOL, "/sim/networking/olk", true, "", 0 }, - {"net-hud", false, OPTION_FUNC, "", false, "", fgOptNetHud }, - {"net-id", true, OPTION_STRING, "sim/networking/call-sign", false, "", 0 }, -#endif + {"jsclient", true, OPTION_CHANNEL, "", false, "", 0 }, + {"proxy", true, OPTION_FUNC, "", false, "", fgSetupProxy }, #ifdef FG_MPLAYER_AS {"callsign", true, OPTION_STRING, "sim/multiplay/callsign", false, "", 0 }, {"multiplay", true, OPTION_CHANNEL, "", false, "", 0 }, @@ -1621,6 +1552,7 @@ fgUsage (bool verbose) SGPropertyNode options_root; + SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on Windows cout << endl; try { @@ -1741,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, @@ -1817,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 }