1
0
Fork 0

cosmetics:

- only call globals->set_initial_waypoints() if the waypoints list address
  has actually changed, that is: if it has just been initialized
- remove trailing spaces
- fix indentation
This commit is contained in:
mfranz 2006-04-27 10:35:03 +00:00
parent d452ad97f1
commit 4b856b508a

View file

@ -536,6 +536,7 @@ 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.
@ -546,9 +547,9 @@ parse_wp( const string& arg ) {
string_list *waypoints = globals->get_initial_waypoints();
if (!waypoints) {
waypoints = new string_list;
globals->set_initial_waypoints(waypoints);
}
waypoints->push_back(arg);
globals->set_initial_waypoints(waypoints);
}
@ -557,12 +558,15 @@ static bool
parse_flightplan(const string& arg)
{
string_list *waypoints = globals->get_initial_waypoints();
if (!waypoints)
if (!waypoints) {
waypoints = new string_list;
sg_gzifstream in(arg.c_str());
if ( !in.is_open() ) {
return false;
globals->set_initial_waypoints(waypoints);
}
sg_gzifstream in(arg.c_str());
if ( !in.is_open() )
return false;
while ( true ) {
string line;
@ -571,21 +575,19 @@ parse_flightplan(const string& arg)
#else
getline( in, line, '\n' );
#endif
// catch extraneous (DOS) line ending character
if ( line[line.length() - 1] < 32 ) {
if ( line[line.length() - 1] < 32 )
line = line.substr( 0, line.length()-1 );
}
if ( in.eof() ) {
if ( in.eof() )
break;
}
waypoints->push_back(line);
}
globals->set_initial_waypoints(waypoints);
return true;
}
static int
fgOptLanguage( const char *arg )
{