]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.cxx
Merge branch 'topics/removeab' into next
[flightgear.git] / src / Main / options.cxx
1 // options.cxx -- class to handle command line options
2 //
3 // Written by Curtis Olson, started April 1998.
4 //
5 // Copyright (C) 1998  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <simgear/compiler.h>
29 #include <simgear/structure/exception.hxx>
30 #include <simgear/debug/logstream.hxx>
31
32 #include <math.h>               // rint()
33 #include <stdio.h>
34 #include <stdlib.h>             // atof(), atoi()
35 #include <string.h>             // strcmp()
36 #include <algorithm>
37
38 #include <iostream>
39 #include <string>
40
41 #include <plib/ul.h>
42
43 #include <simgear/math/sg_random.h>
44 #include <simgear/props/props_io.hxx>
45 #include <simgear/misc/sgstream.hxx>
46 #include <simgear/misc/sg_path.hxx>
47 #include <simgear/scene/material/mat.hxx>
48 #include <simgear/sound/soundmgr_openal.hxx>
49
50 // #include <Include/general.hxx>
51 // #include <Airports/simple.hxx>
52 // #include <Cockpit/cockpit.hxx>
53 // #include <FDM/flight.hxx>
54
55 #include <Autopilot/route_mgr.hxx>
56 #include <GUI/gui.h>
57
58 #include "globals.hxx"
59 #include "fg_init.hxx"
60 #include "fg_props.hxx"
61 #include "options.hxx"
62 #include "util.hxx"
63 #include "viewmgr.hxx"
64 #include <Main/viewer.hxx>
65 #include <simgear/version.h>
66
67 using std::string;
68 using std::sort;
69 using std::cout;
70 using std::cerr;
71 using std::endl;
72
73 #ifndef VERSION
74 #define VERSION "CVS "__DATE__
75 #endif
76
77 #define NEW_DEFAULT_MODEL_HZ 120
78
79 enum
80 {
81     FG_OPTIONS_OK = 0,
82     FG_OPTIONS_HELP = 1,
83     FG_OPTIONS_ERROR = 2,
84     FG_OPTIONS_EXIT = 3,
85     FG_OPTIONS_VERBOSE_HELP = 4,
86     FG_OPTIONS_SHOW_AIRCRAFT = 5,
87     FG_OPTIONS_SHOW_SOUND_DEVICES = 6
88 };
89
90 static double
91 atof( const string& str )
92 {
93     return ::atof( str.c_str() );
94 }
95
96 static int
97 atoi( const string& str )
98 {
99     return ::atoi( str.c_str() );
100 }
101
102 /**
103  * Set a few fail-safe default property values.
104  *
105  * These should all be set in $FG_ROOT/preferences.xml, but just
106  * in case, we provide some initial sane values here. This method
107  * should be invoked *before* reading any init files.
108  */
109 void
110 fgSetDefaults ()
111 {
112     // set a possibly independent location for scenery data
113     const char *envp = ::getenv( "FG_SCENERY" );
114
115     if ( envp != NULL ) {
116         // fg_root could be anywhere, so default to environmental
117         // variable $FG_ROOT if it is set.
118         globals->set_fg_scenery(envp);
119     } else {
120         // Otherwise, default to Scenery being in $FG_ROOT/Scenery
121         globals->set_fg_scenery("");
122     }
123                                 // Position (deliberately out of range)
124     fgSetDouble("/position/longitude-deg", 9999.0);
125     fgSetDouble("/position/latitude-deg", 9999.0);
126     fgSetDouble("/position/altitude-ft", -9999.0);
127
128                                 // Orientation
129     fgSetDouble("/orientation/heading-deg", 9999.0);
130     fgSetDouble("/orientation/roll-deg", 0.0);
131     fgSetDouble("/orientation/pitch-deg", 0.424);
132
133                                 // Velocities
134     fgSetDouble("/velocities/uBody-fps", 0.0);
135     fgSetDouble("/velocities/vBody-fps", 0.0);
136     fgSetDouble("/velocities/wBody-fps", 0.0);
137     fgSetDouble("/velocities/speed-north-fps", 0.0);
138     fgSetDouble("/velocities/speed-east-fps", 0.0);
139     fgSetDouble("/velocities/speed-down-fps", 0.0);
140     fgSetDouble("/velocities/airspeed-kt", 0.0);
141     fgSetDouble("/velocities/mach", 0.0);
142
143                                 // Presets
144     fgSetDouble("/sim/presets/longitude-deg", 9999.0);
145     fgSetDouble("/sim/presets/latitude-deg", 9999.0);
146     fgSetDouble("/sim/presets/altitude-ft", -9999.0);
147
148     fgSetDouble("/sim/presets/heading-deg", 9999.0);
149     fgSetDouble("/sim/presets/roll-deg", 0.0);
150     fgSetDouble("/sim/presets/pitch-deg", 0.424);
151
152     fgSetString("/sim/presets/speed-set", "knots");
153     fgSetDouble("/sim/presets/airspeed-kt", 0.0);
154     fgSetDouble("/sim/presets/mach", 0.0);
155     fgSetDouble("/sim/presets/uBody-fps", 0.0);
156     fgSetDouble("/sim/presets/vBody-fps", 0.0);
157     fgSetDouble("/sim/presets/wBody-fps", 0.0);
158     fgSetDouble("/sim/presets/speed-north-fps", 0.0);
159     fgSetDouble("/sim/presets/speed-east-fps", 0.0);
160     fgSetDouble("/sim/presets/speed-down-fps", 0.0);
161
162     fgSetBool("/sim/presets/onground", true);
163     fgSetBool("/sim/presets/trim", false);
164
165                                 // Miscellaneous
166     fgSetBool("/sim/startup/game-mode", false);
167     fgSetBool("/sim/startup/splash-screen", true);
168     fgSetBool("/sim/startup/intro-music", true);
169     // we want mouse-pointer to have an undefined value if nothing is
170     // specified so we can do the right thing for voodoo-1/2 cards.
171     // fgSetString("/sim/startup/mouse-pointer", "disabled");
172     fgSetString("/sim/control-mode", "joystick");
173     fgSetBool("/sim/auto-coordination", false);
174 #if defined(WIN32)
175     fgSetString("/sim/startup/browser-app", "webrun.bat");
176 #elif defined(__APPLE__)
177     fgSetString("/sim/startup/browser-app", "open");
178 #elif defined(sgi)
179     fgSetString("/sim/startup/browser-app", "launchWebJumper");
180 #else
181     envp = ::getenv( "WEBBROWSER" );
182     if (!envp) envp = "netscape";
183     fgSetString("/sim/startup/browser-app", envp);
184 #endif
185     fgSetString("/sim/logging/priority", "alert");
186
187                                 // Features
188     fgSetBool("/sim/hud/color/antialiased", false);
189     fgSetBool("/sim/hud/enable3d", true);
190     fgSetBool("/sim/hud/visibility", false);
191     fgSetBool("/sim/panel/visibility", true);
192     fgSetBool("/sim/sound/enabled", true);
193     fgSetBool("/sim/sound/working", true);
194
195                                 // Flight Model options
196     fgSetString("/sim/flight-model", "jsb");
197     fgSetString("/sim/aero", "c172");
198     fgSetInt("/sim/model-hz", NEW_DEFAULT_MODEL_HZ);
199     fgSetInt("/sim/speed-up", 1);
200
201                                 // Rendering options
202     fgSetString("/sim/rendering/fog", "nicest");
203     fgSetBool("/environment/clouds/status", true);
204     fgSetBool("/sim/startup/fullscreen", false);
205     fgSetBool("/sim/rendering/shading", true);
206     fgSetBool("/sim/rendering/skyblend", true);
207     fgSetBool("/sim/rendering/textures", true);
208     fgTie( "/sim/rendering/filtering", SGGetTextureFilter, SGSetTextureFilter, false);
209     fgSetInt("/sim/rendering/filtering", 1);
210     fgSetBool("/sim/rendering/wireframe", false);
211     fgSetBool("/sim/rendering/horizon-effect", false);
212     fgSetBool("/sim/rendering/enhanced-lighting", false);
213     fgSetBool("/sim/rendering/distance-attenuation", false);
214     fgSetBool("/sim/rendering/specular-highlight", true);
215     fgSetInt("/sim/startup/xsize", 800);
216     fgSetInt("/sim/startup/ysize", 600);
217     fgSetInt("/sim/rendering/bits-per-pixel", 16);
218     fgSetString("/sim/view-mode", "pilot");
219     fgSetDouble("/sim/current-view/heading-offset-deg", 0);
220
221                                 // HUD options
222     fgSetString("/sim/startup/units", "feet");
223     fgSetString("/sim/hud/frame-stat-type", "tris");
224         
225                                 // Time options
226     fgSetInt("/sim/startup/time-offset", 0);
227     fgSetString("/sim/startup/time-offset-type", "system-offset");
228     fgSetLong("/sim/time/cur-time-override", 0);
229
230                                 // Freeze options
231     fgSetBool("/sim/freeze/master", false);
232     fgSetBool("/sim/freeze/position", false);
233     fgSetBool("/sim/freeze/clock", false);
234     fgSetBool("/sim/freeze/fuel", false);
235
236     fgSetString("/sim/multiplay/callsign", "callsign");
237     fgSetString("/sim/multiplay/rxhost", "0");
238     fgSetString("/sim/multiplay/txhost", "0");
239     fgSetInt("/sim/multiplay/rxport", 0);
240     fgSetInt("/sim/multiplay/txport", 0);
241 }
242
243 static bool
244 parse_wind (const string &wind, double * min_hdg, double * max_hdg,
245             double * speed, double * gust)
246 {
247   string::size_type pos = wind.find('@');
248   if (pos == string::npos)
249     return false;
250   string dir = wind.substr(0, pos);
251   string spd = wind.substr(pos+1);
252   pos = dir.find(':');
253   if (pos == string::npos) {
254     *min_hdg = *max_hdg = atof(dir.c_str());
255   } else {
256     *min_hdg = atof(dir.substr(0,pos).c_str());
257     *max_hdg = atof(dir.substr(pos+1).c_str());
258   }
259   pos = spd.find(':');
260   if (pos == string::npos) {
261     *speed = *gust = atof(spd.c_str());
262   } else {
263     *speed = atof(spd.substr(0,pos).c_str());
264     *gust = atof(spd.substr(pos+1).c_str());
265   }
266   return true;
267 }
268
269 // parse a time string ([+/-]%f[:%f[:%f]]) into hours
270 static double
271 parse_time(const string& time_in) {
272     char *time_str, num[256];
273     double hours, minutes, seconds;
274     double result = 0.0;
275     int sign = 1;
276     int i;
277
278     time_str = (char *)time_in.c_str();
279
280     // printf("parse_time(): %s\n", time_str);
281
282     // check for sign
283     if ( strlen(time_str) ) {
284         if ( time_str[0] == '+' ) {
285             sign = 1;
286             time_str++;
287         } else if ( time_str[0] == '-' ) {
288             sign = -1;
289             time_str++;
290         }
291     }
292     // printf("sign = %d\n", sign);
293
294     // get hours
295     if ( strlen(time_str) ) {
296         i = 0;
297         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
298             num[i] = time_str[0];
299             time_str++;
300             i++;
301         }
302         if ( time_str[0] == ':' ) {
303             time_str++;
304         }
305         num[i] = '\0';
306         hours = atof(num);
307         // printf("hours = %.2lf\n", hours);
308
309         result += hours;
310     }
311
312     // get minutes
313     if ( strlen(time_str) ) {
314         i = 0;
315         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
316             num[i] = time_str[0];
317             time_str++;
318             i++;
319         }
320         if ( time_str[0] == ':' ) {
321             time_str++;
322         }
323         num[i] = '\0';
324         minutes = atof(num);
325         // printf("minutes = %.2lf\n", minutes);
326
327         result += minutes / 60.0;
328     }
329
330     // get seconds
331     if ( strlen(time_str) ) {
332         i = 0;
333         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
334             num[i] = time_str[0];
335             time_str++;
336             i++;
337         }
338         num[i] = '\0';
339         seconds = atof(num);
340         // printf("seconds = %.2lf\n", seconds);
341
342         result += seconds / 3600.0;
343     }
344
345     SG_LOG( SG_GENERAL, SG_INFO, " parse_time() = " << sign * result );
346
347     return(sign * result);
348 }
349
350
351 // parse a date string (yyyy:mm:dd:hh:mm:ss) into a time_t (seconds)
352 static long int 
353 parse_date( const string& date)
354 {
355     struct tm gmt;
356     char * date_str, num[256];
357     int i;
358     // initialize to zero
359     gmt.tm_sec = 0;
360     gmt.tm_min = 0;
361     gmt.tm_hour = 0;
362     gmt.tm_mday = 0;
363     gmt.tm_mon = 0;
364     gmt.tm_year = 0;
365     gmt.tm_isdst = 0; // ignore daylight savings time for the moment
366     date_str = (char *)date.c_str();
367     // get year
368     if ( strlen(date_str) ) {
369         i = 0;
370         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
371             num[i] = date_str[0];
372             date_str++;
373             i++;
374         }
375         if ( date_str[0] == ':' ) {
376             date_str++;
377         }
378         num[i] = '\0';
379         gmt.tm_year = atoi(num) - 1900;
380     }
381     // get month
382     if ( strlen(date_str) ) {
383         i = 0;
384         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
385             num[i] = date_str[0];
386             date_str++;
387             i++;
388         }
389         if ( date_str[0] == ':' ) {
390             date_str++;
391         }
392         num[i] = '\0';
393         gmt.tm_mon = atoi(num) -1;
394     }
395     // get day
396     if ( strlen(date_str) ) {
397         i = 0;
398         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
399             num[i] = date_str[0];
400             date_str++;
401             i++;
402         }
403         if ( date_str[0] == ':' ) {
404             date_str++;
405         }
406         num[i] = '\0';
407         gmt.tm_mday = atoi(num);
408     }
409     // get hour
410     if ( strlen(date_str) ) {
411         i = 0;
412         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
413             num[i] = date_str[0];
414             date_str++;
415             i++;
416         }
417         if ( date_str[0] == ':' ) {
418             date_str++;
419         }
420         num[i] = '\0';
421         gmt.tm_hour = atoi(num);
422     }
423     // get minute
424     if ( strlen(date_str) ) {
425         i = 0;
426         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
427             num[i] = date_str[0];
428             date_str++;
429             i++;
430         }
431         if ( date_str[0] == ':' ) {
432             date_str++;
433         }
434         num[i] = '\0';
435         gmt.tm_min = atoi(num);
436     }
437     // get second
438     if ( strlen(date_str) ) {
439         i = 0;
440         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
441             num[i] = date_str[0];
442             date_str++;
443             i++;
444         }
445         if ( date_str[0] == ':' ) {
446             date_str++;
447         }
448         num[i] = '\0';
449         gmt.tm_sec = atoi(num);
450     }
451     time_t theTime = sgTimeGetGMT( gmt.tm_year, gmt.tm_mon, gmt.tm_mday,
452                                    gmt.tm_hour, gmt.tm_min, gmt.tm_sec );
453     //printf ("Date is %s\n", ctime(&theTime));
454     //printf ("in seconds that is %d\n", theTime);
455     //exit(1);
456     return (theTime);
457 }
458
459
460 // parse angle in the form of [+/-]ddd:mm:ss into degrees
461 static double
462 parse_degree( const string& degree_str) {
463     double result = parse_time( degree_str );
464
465     // printf("Degree = %.4f\n", result);
466
467     return(result);
468 }
469
470
471 // parse time offset string into seconds
472 static int
473 parse_time_offset( const string& time_str) {
474     int result;
475
476     // printf("time offset = %s\n", time_str);
477
478 #ifdef HAVE_RINT
479     result = (int)rint(parse_time(time_str) * 3600.0);
480 #else
481     result = (int)(parse_time(time_str) * 3600.0);
482 #endif
483
484     // printf("parse_time_offset(): %d\n", result);
485
486     return( result );
487 }
488
489
490 // Parse --fov=x.xx type option 
491 static double
492 parse_fov( const string& arg ) {
493     double fov = atof(arg);
494
495     if ( fov < FG_FOV_MIN ) { fov = FG_FOV_MIN; }
496     if ( fov > FG_FOV_MAX ) { fov = FG_FOV_MAX; }
497
498     fgSetDouble("/sim/view[0]/config/default-field-of-view-deg", fov);
499
500     // printf("parse_fov(): result = %.4f\n", fov);
501
502     return fov;
503 }
504
505
506 // Parse I/O channel option
507 //
508 // Format is "--protocol=medium,direction,hz,medium_options,..."
509 //
510 //   protocol = { native, nmea, garmin, AV400, AV400Sim, fgfs, rul, pve, etc. }
511 //   medium = { serial, socket, file, etc. }
512 //   direction = { in, out, bi }
513 //   hz = number of times to process channel per second (floating
514 //        point values are ok.
515 //
516 // Serial example "--nmea=serial,dir,hz,device,baud" where
517 // 
518 //  device = OS device name of serial line to be open()'ed
519 //  baud = {300, 1200, 2400, ..., 230400}
520 //
521 // Socket exacmple "--native=socket,dir,hz,machine,port,style" where
522 //
523 //  machine = machine name or ip address if client (leave empty if server)
524 //  port = port, leave empty to let system choose
525 //  style = tcp or udp
526 //
527 // File example "--garmin=file,dir,hz,filename" where
528 //
529 //  filename = file system file name
530
531 static bool
532 add_channel( const string& type, const string& channel_str ) {
533     // This check is neccessary to prevent fgviewer from segfaulting when given
534     // weird options. (It doesn't run the full initailization)
535     if(!globals->get_channel_options_list())
536     {
537         SG_LOG(SG_GENERAL, SG_ALERT, "Option " << type << "=" << channel_str
538                                      << " ignored.");
539         return false;
540     }
541     SG_LOG(SG_GENERAL, SG_INFO, "Channel string = " << channel_str );
542     globals->get_channel_options_list()->push_back( type + "," + channel_str );
543     return true;
544 }
545
546
547 // The parse wp and parse flight-plan options don't work anymore, because
548 // the route manager and the airport subsystems have not yet been initialized
549 // at this stage.
550
551 // Parse --wp=ID[@alt]
552 static void
553 parse_wp( const string& arg ) {
554     string_list *waypoints = globals->get_initial_waypoints();
555     if (!waypoints) {
556         waypoints = new string_list;
557         globals->set_initial_waypoints(waypoints);
558     }
559     waypoints->push_back(arg);
560 }
561
562
563 // Parse --flight-plan=[file]
564 static bool
565 parse_flightplan(const string& arg)
566 {
567     string_list *waypoints = globals->get_initial_waypoints();
568     if (!waypoints) {
569         waypoints = new string_list;
570         globals->set_initial_waypoints(waypoints);
571     }
572
573     sg_gzifstream in(arg.c_str());
574     if ( !in.is_open() )
575         return false;
576
577     while ( true ) {
578         string line;
579         getline( in, line, '\n' );
580
581         // catch extraneous (DOS) line ending character
582         if ( line[line.length() - 1] < 32 )
583             line = line.substr( 0, line.length()-1 );
584
585         if ( in.eof() )
586             break;
587
588         waypoints->push_back(line);
589     }
590     return true;
591 }
592
593
594 static int
595 fgOptLanguage( const char *arg )
596 {
597     globals->set_locale( fgInitLocale( arg ) );
598     return FG_OPTIONS_OK;
599 }
600
601 static void
602 clearLocation ()
603 {
604     fgSetString("/sim/presets/airport-id", "");
605     fgSetString("/sim/presets/vor-id", "");
606     fgSetString("/sim/presets/ndb-id", "");
607     fgSetString("/sim/presets/carrier", "");
608     fgSetString("/sim/presets/parkpos", "");
609     fgSetString("/sim/presets/fix", "");
610 }
611
612 static int
613 fgOptVOR( const char * arg )
614 {
615     clearLocation();
616     fgSetString("/sim/presets/vor-id", arg);
617     return FG_OPTIONS_OK;
618 }
619
620 static int
621 fgOptNDB( const char * arg )
622 {
623     clearLocation();
624     fgSetString("/sim/presets/ndb-id", arg);
625     return FG_OPTIONS_OK;
626 }
627
628 static int
629 fgOptCarrier( const char * arg )
630 {
631     clearLocation();
632     fgSetString("/sim/presets/carrier", arg);
633     return FG_OPTIONS_OK;
634 }
635
636 static int
637 fgOptParkpos( const char * arg )
638 {
639     fgSetString("/sim/presets/parkpos", arg);
640     return FG_OPTIONS_OK;
641 }
642
643 static int
644 fgOptFIX( const char * arg )
645 {
646     clearLocation();
647     fgSetString("/sim/presets/fix", arg);
648     return FG_OPTIONS_OK;
649 }
650
651 static int
652 fgOptLon( const char *arg )
653 {
654     clearLocation();
655     fgSetDouble("/sim/presets/longitude-deg", parse_degree( arg ));
656     fgSetDouble("/position/longitude-deg", parse_degree( arg ));
657     return FG_OPTIONS_OK;
658 }
659
660 static int
661 fgOptLat( const char *arg )
662 {
663     clearLocation();
664     fgSetDouble("/sim/presets/latitude-deg", parse_degree( arg ));
665     fgSetDouble("/position/latitude-deg", parse_degree( arg ));
666     return FG_OPTIONS_OK;
667 }
668
669 static int
670 fgOptAltitude( const char *arg )
671 {
672     fgSetBool("/sim/presets/onground", false);
673     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
674         fgSetDouble("/sim/presets/altitude-ft", atof( arg ));
675     else
676         fgSetDouble("/sim/presets/altitude-ft",
677                     atof( arg ) * SG_METER_TO_FEET);
678     return FG_OPTIONS_OK;
679 }
680
681 static int
682 fgOptUBody( const char *arg )
683 {
684     fgSetString("/sim/presets/speed-set", "UVW");
685     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
686         fgSetDouble("/sim/presets/uBody-fps", atof( arg ));
687     else
688         fgSetDouble("/sim/presets/uBody-fps",
689                     atof( arg ) * SG_METER_TO_FEET);
690     return FG_OPTIONS_OK;
691 }
692
693 static int
694 fgOptVBody( const char *arg )
695 {
696     fgSetString("/sim/presets/speed-set", "UVW");
697     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
698         fgSetDouble("/sim/presets/vBody-fps", atof( arg ));
699     else
700         fgSetDouble("/sim/presets/vBody-fps",
701                             atof( arg ) * SG_METER_TO_FEET);
702     return FG_OPTIONS_OK;
703 }
704
705 static int
706 fgOptWBody( const char *arg )
707 {
708     fgSetString("/sim/presets/speed-set", "UVW");
709     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
710         fgSetDouble("/sim/presets/wBody-fps", atof(arg));
711     else
712         fgSetDouble("/sim/presets/wBody-fps",
713                             atof(arg) * SG_METER_TO_FEET);
714     return FG_OPTIONS_OK;
715 }
716
717 static int
718 fgOptVNorth( const char *arg )
719 {
720     fgSetString("/sim/presets/speed-set", "NED");
721     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
722         fgSetDouble("/sim/presets/speed-north-fps", atof( arg ));
723     else
724         fgSetDouble("/sim/presets/speed-north-fps",
725                             atof( arg ) * SG_METER_TO_FEET);
726     return FG_OPTIONS_OK;
727 }
728
729 static int
730 fgOptVEast( const char *arg )
731 {
732     fgSetString("/sim/presets/speed-set", "NED");
733     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
734         fgSetDouble("/sim/presets/speed-east-fps", atof(arg));
735     else
736         fgSetDouble("/sim/presets/speed-east-fps",
737                     atof(arg) * SG_METER_TO_FEET);
738     return FG_OPTIONS_OK;
739 }
740
741 static int
742 fgOptVDown( const char *arg )
743 {
744     fgSetString("/sim/presets/speed-set", "NED");
745     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
746         fgSetDouble("/sim/presets/speed-down-fps", atof(arg));
747     else
748         fgSetDouble("/sim/presets/speed-down-fps",
749                             atof(arg) * SG_METER_TO_FEET);
750     return FG_OPTIONS_OK;
751 }
752
753 static int
754 fgOptVc( const char *arg )
755 {
756     // fgSetString("/sim/presets/speed-set", "knots");
757     // fgSetDouble("/velocities/airspeed-kt", atof(arg.substr(5)));
758     fgSetString("/sim/presets/speed-set", "knots");
759     fgSetDouble("/sim/presets/airspeed-kt", atof(arg));
760     return FG_OPTIONS_OK;
761 }
762
763 static int
764 fgOptMach( const char *arg )
765 {
766     fgSetString("/sim/presets/speed-set", "mach");
767     fgSetDouble("/sim/presets/mach", atof(arg));
768     return FG_OPTIONS_OK;
769 }
770
771 static int
772 fgOptRoc( const char *arg )
773 {
774     fgSetDouble("/velocities/vertical-speed-fps", atof(arg)/60);
775     return FG_OPTIONS_OK;
776 }
777
778 static int
779 fgOptFgRoot( const char *arg )
780 {
781     globals->set_fg_root(arg);
782     return FG_OPTIONS_OK;
783 }
784
785 static int
786 fgOptFgScenery( const char *arg )
787 {
788     globals->set_fg_scenery(arg);
789     return FG_OPTIONS_OK;
790 }
791
792 static int
793 fgOptFov( const char *arg )
794 {
795     parse_fov( arg );
796     return FG_OPTIONS_OK;
797 }
798
799 static int
800 fgOptGeometry( const char *arg )
801 {
802     bool geometry_ok = true;
803     int xsize = 0, ysize = 0;
804     string geometry = arg;
805     string::size_type i = geometry.find('x');
806
807     if (i != string::npos) {
808         xsize = atoi(geometry.substr(0, i));
809         ysize = atoi(geometry.substr(i+1));
810     } else {
811         geometry_ok = false;
812     }
813
814     if ( xsize <= 0 || ysize <= 0 ) {
815         xsize = 640;
816         ysize = 480;
817         geometry_ok = false;
818     }
819
820     if ( !geometry_ok ) {
821         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown geometry: " << geometry );
822         SG_LOG( SG_GENERAL, SG_ALERT,
823                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
824     } else {
825         SG_LOG( SG_GENERAL, SG_INFO,
826                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
827         fgSetInt("/sim/startup/xsize", xsize);
828         fgSetInt("/sim/startup/ysize", ysize);
829     }
830     return FG_OPTIONS_OK;
831 }
832
833 static int
834 fgOptBpp( const char *arg )
835 {
836     string bits_per_pix = arg;
837     if ( bits_per_pix == "16" ) {
838         fgSetInt("/sim/rendering/bits-per-pixel", 16);
839     } else if ( bits_per_pix == "24" ) {
840         fgSetInt("/sim/rendering/bits-per-pixel", 24);
841     } else if ( bits_per_pix == "32" ) {
842         fgSetInt("/sim/rendering/bits-per-pixel", 32);
843     } else {
844         SG_LOG(SG_GENERAL, SG_ALERT, "Unsupported bpp " << bits_per_pix);
845     }
846     return FG_OPTIONS_OK;
847 }
848
849 static int
850 fgOptTimeOffset( const char *arg )
851 {
852     fgSetInt("/sim/startup/time-offset",
853                 parse_time_offset( arg ));
854     fgSetString("/sim/startup/time-offset-type", "system-offset");
855     return FG_OPTIONS_OK;
856 }
857
858 static int
859 fgOptStartDateSys( const char *arg )
860 {
861     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
862     fgSetString("/sim/startup/time-offset-type", "system");
863     return FG_OPTIONS_OK;
864 }
865
866 static int
867 fgOptStartDateLat( const char *arg )
868 {
869     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
870     fgSetString("/sim/startup/time-offset-type", "latitude");
871     return FG_OPTIONS_OK;
872 }
873
874 static int
875 fgOptStartDateGmt( const char *arg )
876 {
877     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
878     fgSetString("/sim/startup/time-offset-type", "gmt");
879     return FG_OPTIONS_OK;
880 }
881
882 static int
883 fgSetupProxy( const char *arg )
884 {
885     string options = arg;
886     string host, port, auth;
887     string::size_type pos;
888
889     host = port = auth = "";
890     if ((pos = options.find("@")) != string::npos) 
891         auth = options.substr(0, pos++);
892     else
893         pos = 0;
894
895     host = options.substr(pos, options.size());
896     if ((pos = host.find(":")) != string::npos) {
897         port = host.substr(++pos, host.size());
898         host.erase(--pos, host.size());
899     }
900
901     fgSetString("/sim/presets/proxy/host", host.c_str());
902     fgSetString("/sim/presets/proxy/port", port.c_str());
903     fgSetString("/sim/presets/proxy/authentication", auth.c_str());
904
905     return FG_OPTIONS_OK;
906 }
907
908 static int
909 fgOptTraceRead( const char *arg )
910 {
911     string name = arg;
912     SG_LOG(SG_GENERAL, SG_INFO, "Tracing reads for property " << name);
913     fgGetNode(name.c_str(), true)
914         ->setAttribute(SGPropertyNode::TRACE_READ, true);
915     return FG_OPTIONS_OK;
916 }
917
918 static int
919 fgOptLogLevel( const char *arg )
920 {
921     fgSetString("/sim/logging/classes", "all");
922     fgSetString("/sim/logging/priority", arg);
923
924     string priority = arg;
925     logbuf::set_log_classes(SG_ALL);
926     if (priority == "bulk") {
927       logbuf::set_log_priority(SG_BULK);
928     } else if (priority == "debug") {
929       logbuf::set_log_priority(SG_DEBUG);
930     } else if (priority == "info") {
931       logbuf::set_log_priority(SG_INFO);
932     } else if (priority == "warn") {
933       logbuf::set_log_priority(SG_WARN);
934     } else if (priority == "alert") {
935       logbuf::set_log_priority(SG_ALERT);
936     } else {
937       SG_LOG(SG_GENERAL, SG_WARN, "Unknown logging priority " << priority);
938     }
939     SG_LOG(SG_GENERAL, SG_DEBUG, "Logging priority is " << priority);
940
941     return FG_OPTIONS_OK;
942 }
943
944
945 static int
946 fgOptTraceWrite( const char *arg )
947 {
948     string name = arg;
949     SG_LOG(SG_GENERAL, SG_INFO, "Tracing writes for property " << name);
950     fgGetNode(name.c_str(), true)
951         ->setAttribute(SGPropertyNode::TRACE_WRITE, true);
952     return FG_OPTIONS_OK;
953 }
954
955 static int
956 fgOptViewOffset( const char *arg )
957 {
958     // $$$ begin - added VS Renganathan, 14 Oct 2K
959     // for multi-window outside window imagery
960     string woffset = arg;
961     double default_view_offset = 0.0;
962     if ( woffset == "LEFT" ) {
963             default_view_offset = SGD_PI * 0.25;
964     } else if ( woffset == "RIGHT" ) {
965         default_view_offset = SGD_PI * 1.75;
966     } else if ( woffset == "CENTER" ) {
967         default_view_offset = 0.00;
968     } else {
969         default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
970     }
971     /* apparently not used (CLO, 11 Jun 2002) 
972         FGViewer *pilot_view =
973             (FGViewer *)globals->get_viewmgr()->get_view( 0 ); */
974     // this will work without calls to the viewer...
975     fgSetDouble( "/sim/current-view/heading-offset-deg",
976                     default_view_offset  * SGD_RADIANS_TO_DEGREES );
977     // $$$ end - added VS Renganathan, 14 Oct 2K
978     return FG_OPTIONS_OK;
979 }
980
981 static int
982 fgOptVisibilityMeters( const char *arg )
983 {
984     double visibility = atof( arg );
985     fgDefaultWeatherValue("visibility-m", visibility);
986     return FG_OPTIONS_OK;
987 }
988
989 static int
990 fgOptVisibilityMiles( const char *arg )
991 {
992     double visibility = atof( arg ) * 5280.0 * SG_FEET_TO_METER;
993     fgDefaultWeatherValue("visibility-m", visibility);
994     return FG_OPTIONS_OK;
995 }
996
997 static int
998 fgOptRandomWind( const char *arg )
999 {
1000     double min_hdg = sg_random() * 360.0;
1001     double max_hdg = min_hdg + (20 - sqrt(sg_random() * 400));
1002     double speed = sg_random() * sg_random() * 40;
1003     double gust = speed + (10 - sqrt(sg_random() * 100));
1004     fgSetupWind(min_hdg, max_hdg, speed, gust);
1005     return FG_OPTIONS_OK;
1006 }
1007
1008 static int
1009 fgOptWind( const char *arg )
1010 {
1011     double min_hdg = 0.0, max_hdg = 0.0, speed = 0.0, gust = 0.0;
1012     if (!parse_wind( arg, &min_hdg, &max_hdg, &speed, &gust)) {
1013         SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << arg );
1014         return FG_OPTIONS_ERROR;
1015     }
1016     fgSetupWind(min_hdg, max_hdg, speed, gust);
1017     return FG_OPTIONS_OK;
1018 }
1019
1020 static int
1021 fgOptTurbulence( const char *arg )
1022 {
1023     fgDefaultWeatherValue("turbulence/magnitude-norm", atof(arg));
1024     return FG_OPTIONS_OK;
1025 }
1026
1027 static int
1028 fgOptCeiling( const char *arg )
1029 {
1030     double elevation, thickness;
1031     string spec = arg;
1032     string::size_type pos = spec.find(':');
1033     if (pos == string::npos) {
1034         elevation = atof(spec.c_str());
1035         thickness = 2000;
1036     } else {
1037         elevation = atof(spec.substr(0, pos).c_str());
1038         thickness = atof(spec.substr(pos + 1).c_str());
1039     }
1040     fgSetDouble("/environment/clouds/layer[0]/elevation-ft", elevation);
1041     fgSetDouble("/environment/clouds/layer[0]/thickness-ft", thickness);
1042     fgSetString("/environment/clouds/layer[0]/coverage", "overcast");
1043     return FG_OPTIONS_OK;
1044 }
1045
1046 static int
1047 fgOptWp( const char *arg )
1048 {
1049     parse_wp( arg );
1050     return FG_OPTIONS_OK;
1051 }
1052
1053 static int
1054 fgOptFlightPlan( const char *arg )
1055 {
1056     parse_flightplan ( arg );
1057     return FG_OPTIONS_OK;
1058 }
1059
1060 static int
1061 fgOptConfig( const char *arg )
1062 {
1063     string file = arg;
1064     try {
1065         readProperties(file, globals->get_props());
1066     } catch (const sg_exception &e) {
1067         string message = "Error loading config file: ";
1068         message += e.getFormattedMessage() + e.getOrigin();
1069         SG_LOG(SG_INPUT, SG_ALERT, message);
1070         exit(2);
1071     }
1072     return FG_OPTIONS_OK;
1073 }
1074
1075 static bool
1076 parse_colon (const string &s, double * val1, double * val2)
1077 {
1078     string::size_type pos = s.find(':');
1079     if (pos == string::npos) {
1080         *val2 = atof(s);
1081         return false;
1082     } else {
1083         *val1 = atof(s.substr(0, pos).c_str());
1084         *val2 = atof(s.substr(pos+1).c_str());
1085         return true;
1086     }
1087 }
1088
1089
1090 static int
1091 fgOptFailure( const char * arg )
1092 {
1093     string a = arg;
1094     if (a == "pitot") {
1095         fgSetBool("/systems/pitot/serviceable", false);
1096     } else if (a == "static") {
1097         fgSetBool("/systems/static/serviceable", false);
1098     } else if (a == "vacuum") {
1099         fgSetBool("/systems/vacuum/serviceable", false);
1100     } else if (a == "electrical") {
1101         fgSetBool("/systems/electrical/serviceable", false);
1102     } else {
1103         SG_LOG(SG_INPUT, SG_ALERT, "Unknown failure mode: " << a);
1104         return FG_OPTIONS_ERROR;
1105     }
1106
1107     return FG_OPTIONS_OK;
1108 }
1109
1110
1111 static int
1112 fgOptNAV1( const char * arg )
1113 {
1114     double radial, freq;
1115     if (parse_colon(arg, &radial, &freq))
1116         fgSetDouble("/instrumentation/nav[0]/radials/selected-deg", radial);
1117     fgSetDouble("/instrumentation/nav[0]/frequencies/selected-mhz", freq);
1118     return FG_OPTIONS_OK;
1119 }
1120
1121 static int
1122 fgOptNAV2( const char * arg )
1123 {
1124     double radial, freq;
1125     if (parse_colon(arg, &radial, &freq))
1126         fgSetDouble("/instrumentation/nav[1]/radials/selected-deg", radial);
1127     fgSetDouble("/instrumentation/nav[1]/frequencies/selected-mhz", freq);
1128     return FG_OPTIONS_OK;
1129 }
1130
1131 static int
1132 fgOptADF( const char * arg )
1133 {
1134     double rot, freq;
1135     if (parse_colon(arg, &rot, &freq))
1136         fgSetDouble("/instrumentation/adf/rotation-deg", rot);
1137     fgSetDouble("/instrumentation/adf/frequencies/selected-khz", freq);
1138     return FG_OPTIONS_OK;
1139 }
1140
1141 static int
1142 fgOptDME( const char *arg )
1143 {
1144     string opt = arg;
1145     if (opt == "nav1") {
1146         fgSetInt("/instrumentation/dme/switch-position", 1);
1147         fgSetString("/instrumentation/dme/frequencies/source",
1148                     "/instrumentation/nav[0]/frequencies/selected-mhz");
1149     } else if (opt == "nav2") {
1150         fgSetInt("/instrumentation/dme/switch-position", 3);
1151         fgSetString("/instrumentation/dme/frequencies/source",
1152                     "/instrumentation/nav[1]/frequencies/selected-mhz");
1153     } else {
1154         fgSetInt("/instrumentation/dme/switch-position", 2);
1155         fgSetString("/instrumentation/dme/frequencies/source",
1156                     "/instrumentation/dme/frequencies/selected-mhz");
1157         fgSetString("/instrumentation/dme/frequencies/selected-mhz", arg);
1158     }
1159     return FG_OPTIONS_OK;
1160 }
1161
1162 static int
1163 fgOptLivery( const char *arg )
1164 {
1165     string opt = arg;
1166     string livery_path = "livery/" + opt;
1167     fgSetString("/sim/model/texture-path", livery_path.c_str() );
1168     return FG_OPTIONS_OK;
1169 }
1170
1171 static int
1172 fgOptScenario( const char *arg )
1173 {
1174     SGPropertyNode_ptr ai_node = fgGetNode( "/sim/ai", true );
1175     vector<SGPropertyNode_ptr> scenarii = ai_node->getChildren( "scenario" );
1176     int index = -1;
1177     for ( size_t i = 0; i < scenarii.size(); ++i ) {
1178         int ind = scenarii[i]->getIndex();
1179         if ( index < ind ) {
1180             index = ind;
1181         }
1182     }
1183     SGPropertyNode_ptr scenario = ai_node->getNode( "scenario", index + 1, true );
1184     scenario->setStringValue( arg );
1185     ai_node->setBoolValue( "enabled", true );
1186     return FG_OPTIONS_OK;
1187 }
1188
1189 static int
1190 fgOptRunway( const char *arg )
1191 {
1192     fgSetString("/sim/presets/runway", arg );
1193     fgSetBool("/sim/presets/runway-requested", true );
1194     return FG_OPTIONS_OK;
1195 }
1196
1197 static int
1198 fgOptParking( const char *arg )
1199 {
1200     cerr << "Processing argument " << arg << endl;
1201     fgSetString("/sim/presets/parking", arg );
1202     fgSetBool  ("/sim/presets/parking-requested", true );
1203     return FG_OPTIONS_OK;
1204 }
1205
1206 static int
1207 fgOptVersion( const char *arg )
1208 {
1209     cerr << "FlightGear version: " << VERSION << endl;
1210     cerr << "FG_ROOT=" << globals->get_fg_root() << endl;
1211     cerr << "FG_HOME=" << fgGetString("/sim/fg-home") << endl;
1212     cerr << "FG_SCENERY=";
1213
1214     int didsome = 0;
1215     string_list scn = globals->get_fg_scenery();
1216     for (string_list::const_iterator it = scn.begin(); it != scn.end(); it++)
1217     {
1218         if (didsome) cerr << ":";
1219         didsome++;
1220         cerr << *it;
1221     }
1222     cerr << endl;
1223     cerr << "SimGear version: " << SG_STRINGIZE(SIMGEAR_VERSION) << endl;
1224     cerr << "PLIB version: " << PLIB_VERSION << endl;
1225     return FG_OPTIONS_EXIT;
1226 }
1227
1228 static int
1229 fgOptFpe(const char* arg)
1230 {
1231     // Actually handled in bootstrap.cxx
1232     return FG_OPTIONS_OK;
1233 }
1234
1235 static int
1236 fgOptFgviewer(const char* arg)
1237 {
1238     // Actually handled in bootstrap.cxx
1239     return FG_OPTIONS_OK;
1240 }
1241
1242
1243
1244 static map<string,size_t> fgOptionMap;
1245
1246 /*
1247    option       has_param type        property         b_param s_param  func
1248
1249 where:
1250  option    : name of the option
1251  has_param : option is --name=value if true or --name if false
1252  type      : OPTION_BOOL    - property is a boolean
1253              OPTION_STRING  - property is a string
1254              OPTION_DOUBLE  - property is a double
1255              OPTION_INT     - property is an integer
1256              OPTION_CHANNEL - name of option is the name of a channel
1257              OPTION_FUNC    - the option trigger a function
1258  b_param   : if type==OPTION_BOOL,
1259              value set to the property (has_param is false for boolean)
1260  s_param   : if type==OPTION_STRING,
1261              value set to the property if has_param is false
1262  func      : function called if type==OPTION_FUNC. if has_param is true,
1263              the value is passed to the function as a string, otherwise,
1264              s_param is passed.
1265
1266     For OPTION_DOUBLE and OPTION_INT, the parameter value is converted into a
1267     double or an integer and set to the property.
1268
1269     For OPTION_CHANNEL, add_channel is called with the parameter value as the
1270     argument.
1271 */
1272
1273 enum OptionType { OPTION_BOOL, OPTION_STRING, OPTION_DOUBLE, OPTION_INT, OPTION_CHANNEL, OPTION_FUNC };
1274 struct OptionDesc {
1275     const char *option;
1276     bool has_param;
1277     enum OptionType type;
1278     const char *property;
1279     bool b_param;
1280     const char *s_param;
1281     int (*func)( const char * );
1282     } fgOptionArray[] = {
1283        
1284     {"language",                     true,  OPTION_FUNC,   "", false, "", fgOptLanguage },
1285     {"disable-game-mode",            false, OPTION_BOOL,   "/sim/startup/game-mode", false, "", 0 },
1286     {"enable-game-mode",             false, OPTION_BOOL,   "/sim/startup/game-mode", true, "", 0 },
1287     {"disable-splash-screen",        false, OPTION_BOOL,   "/sim/startup/splash-screen", false, "", 0 },
1288     {"enable-splash-screen",         false, OPTION_BOOL,   "/sim/startup/splash-screen", true, "", 0 },
1289     {"disable-intro-music",          false, OPTION_BOOL,   "/sim/startup/intro-music", false, "", 0 },
1290     {"enable-intro-music",           false, OPTION_BOOL,   "/sim/startup/intro-music", true, "", 0 },
1291     {"disable-mouse-pointer",        false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "disabled", 0 },
1292     {"enable-mouse-pointer",         false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "enabled", 0 },
1293     {"disable-random-objects",       false, OPTION_BOOL,   "/sim/rendering/random-objects", false, "", 0 },
1294     {"enable-random-objects",        false, OPTION_BOOL,   "/sim/rendering/random-objects", true, "", 0 },
1295     {"disable-real-weather-fetch",   false, OPTION_BOOL,   "/environment/params/real-world-weather-fetch", false, "", 0 },
1296     {"enable-real-weather-fetch",    false, OPTION_BOOL,   "/environment/params/real-world-weather-fetch", true,  "", 0 },
1297     {"metar",                        true,  OPTION_STRING, "/environment/metar/data", false, "", 0 },
1298     {"disable-ai-models",            false, OPTION_BOOL,   "/sim/ai/enabled", false, "", 0 },
1299     {"enable-ai-models",             false, OPTION_BOOL,   "/sim/ai/enabled", true, "", 0 },
1300     {"disable-freeze",               false, OPTION_BOOL,   "/sim/freeze/master", false, "", 0 },
1301     {"enable-freeze",                false, OPTION_BOOL,   "/sim/freeze/master", true, "", 0 },
1302     {"disable-fuel-freeze",          false, OPTION_BOOL,   "/sim/freeze/fuel", false, "", 0 },
1303     {"enable-fuel-freeze",           false, OPTION_BOOL,   "/sim/freeze/fuel", true, "", 0 },
1304     {"disable-clock-freeze",         false, OPTION_BOOL,   "/sim/freeze/clock", false, "", 0 },
1305     {"enable-clock-freeze",          false, OPTION_BOOL,   "/sim/freeze/clock", true, "", 0 },
1306     {"disable-hud-3d",               false, OPTION_BOOL,   "/sim/hud/enable3d", false, "", 0 },
1307     {"enable-hud-3d",                false, OPTION_BOOL,   "/sim/hud/enable3d", true, "", 0 },
1308     {"disable-anti-alias-hud",       false, OPTION_BOOL,   "/sim/hud/color/antialiased", false, "", 0 },
1309     {"enable-anti-alias-hud",        false, OPTION_BOOL,   "/sim/hud/color/antialiased", true, "", 0 },
1310     {"control",                      true,  OPTION_STRING, "/sim/control-mode", false, "", 0 },
1311     {"disable-auto-coordination",    false, OPTION_BOOL,   "/sim/auto-coordination", false, "", 0 },
1312     {"enable-auto-coordination",     false, OPTION_BOOL,   "/sim/auto-coordination", true, "", 0 },
1313     {"browser-app",                  true,  OPTION_STRING, "/sim/startup/browser-app", false, "", 0 },
1314     {"disable-hud",                  false, OPTION_BOOL,   "/sim/hud/visibility", false, "", 0 },
1315     {"enable-hud",                   false, OPTION_BOOL,   "/sim/hud/visibility", true, "", 0 },
1316     {"disable-panel",                false, OPTION_BOOL,   "/sim/panel/visibility", false, "", 0 },
1317     {"enable-panel",                 false, OPTION_BOOL,   "/sim/panel/visibility", true, "", 0 },
1318     {"disable-sound",                false, OPTION_BOOL,   "/sim/sound/working", false, "", 0 },
1319     {"enable-sound",                 false, OPTION_BOOL,   "/sim/sound/working", true, "", 0 },
1320     {"sound-device",                 true,  OPTION_STRING, "/sim/sound/device-name", false, "", 0 },
1321     {"airport",                      true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1322     {"runway",                       true,  OPTION_FUNC,   "", false, "", fgOptRunway },
1323     {"vor",                          true,  OPTION_FUNC,   "", false, "", fgOptVOR },
1324     {"ndb",                          true,  OPTION_FUNC,   "", false, "", fgOptNDB },
1325     {"carrier",                      true,  OPTION_FUNC,   "", false, "", fgOptCarrier },
1326     {"parkpos",                      true,  OPTION_FUNC,   "", false, "", fgOptParkpos },
1327     {"fix",                          true,  OPTION_FUNC,   "", false, "", fgOptFIX },
1328     {"offset-distance",              true,  OPTION_DOUBLE, "/sim/presets/offset-distance-nm", false, "", 0 },
1329     {"offset-azimuth",               true,  OPTION_DOUBLE, "/sim/presets/offset-azimuth-deg", false, "", 0 },
1330     {"lon",                          true,  OPTION_FUNC,   "", false, "", fgOptLon },
1331     {"lat",                          true,  OPTION_FUNC,   "", false, "", fgOptLat },
1332     {"altitude",                     true,  OPTION_FUNC,   "", false, "", fgOptAltitude },
1333     {"uBody",                        true,  OPTION_FUNC,   "", false, "", fgOptUBody },
1334     {"vBody",                        true,  OPTION_FUNC,   "", false, "", fgOptVBody },
1335     {"wBody",                        true,  OPTION_FUNC,   "", false, "", fgOptWBody },
1336     {"vNorth",                       true,  OPTION_FUNC,   "", false, "", fgOptVNorth },
1337     {"vEast",                        true,  OPTION_FUNC,   "", false, "", fgOptVEast },
1338     {"vDown",                        true,  OPTION_FUNC,   "", false, "", fgOptVDown },
1339     {"vc",                           true,  OPTION_FUNC,   "", false, "", fgOptVc },
1340     {"mach",                         true,  OPTION_FUNC,   "", false, "", fgOptMach },
1341     {"heading",                      true,  OPTION_DOUBLE, "/sim/presets/heading-deg", false, "", 0 },
1342     {"roll",                         true,  OPTION_DOUBLE, "/sim/presets/roll-deg", false, "", 0 },
1343     {"pitch",                        true,  OPTION_DOUBLE, "/sim/presets/pitch-deg", false, "", 0 },
1344     {"glideslope",                   true,  OPTION_DOUBLE, "/sim/presets/glideslope-deg", false, "", 0 },
1345     {"roc",                          true,  OPTION_FUNC,   "", false, "", fgOptRoc },
1346     {"fg-root",                      true,  OPTION_FUNC,   "", false, "", fgOptFgRoot },
1347     {"fg-scenery",                   true,  OPTION_FUNC,   "", false, "", fgOptFgScenery },
1348     {"fdm",                          true,  OPTION_STRING, "/sim/flight-model", false, "", 0 },
1349     {"aero",                         true,  OPTION_STRING, "/sim/aero", false, "", 0 },
1350     {"aircraft-dir",                 true,  OPTION_STRING, "/sim/aircraft-dir", false, "", 0 },
1351     {"model-hz",                     true,  OPTION_INT,    "/sim/model-hz", false, "", 0 },
1352     {"speed",                        true,  OPTION_INT,    "/sim/speed-up", false, "", 0 },
1353     {"trim",                         false, OPTION_BOOL,   "/sim/presets/trim", true, "", 0 },
1354     {"notrim",                       false, OPTION_BOOL,   "/sim/presets/trim", false, "", 0 },
1355     {"on-ground",                    false, OPTION_BOOL,   "/sim/presets/onground", true, "", 0 },
1356     {"in-air",                       false, OPTION_BOOL,   "/sim/presets/onground", false, "", 0 },
1357     {"fog-disable",                  false, OPTION_STRING, "/sim/rendering/fog", false, "disabled", 0 },
1358     {"fog-fastest",                  false, OPTION_STRING, "/sim/rendering/fog", false, "fastest", 0 },
1359     {"fog-nicest",                   false, OPTION_STRING, "/sim/rendering/fog", false, "nicest", 0 },
1360     {"disable-horizon-effect",       false, OPTION_BOOL,   "/sim/rendering/horizon-effect", false, "", 0 },
1361     {"enable-horizon-effect",        false, OPTION_BOOL,   "/sim/rendering/horizon-effect", true, "", 0 },
1362     {"disable-enhanced-lighting",    false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", false, "", 0 },
1363     {"enable-enhanced-lighting",     false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", true, "", 0 },
1364     {"disable-distance-attenuation", false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", false, "", 0 },
1365     {"enable-distance-attenuation",  false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", true, "", 0 },
1366     {"disable-specular-highlight",   false, OPTION_BOOL,   "/sim/rendering/specular-highlight", false, "", 0 },
1367     {"enable-specular-highlight",    false, OPTION_BOOL,   "/sim/rendering/specular-highlight", true, "", 0 },
1368     {"disable-clouds",               false, OPTION_BOOL,   "/environment/clouds/status", false, "", 0 },
1369     {"enable-clouds",                false, OPTION_BOOL,   "/environment/clouds/status", true, "", 0 },
1370     {"disable-clouds3d",             false, OPTION_BOOL,   "/sim/rendering/clouds3d-enable", false, "", 0 },
1371     {"enable-clouds3d",              false, OPTION_BOOL,   "/sim/rendering/clouds3d-enable", true, "", 0 },
1372     {"fov",                          true,  OPTION_FUNC,   "", false, "", fgOptFov },
1373     {"aspect-ratio-multiplier",      true,  OPTION_DOUBLE, "/sim/current-view/aspect-ratio-multiplier", false, "", 0 },
1374     {"disable-fullscreen",           false, OPTION_BOOL,   "/sim/startup/fullscreen", false, "", 0 },
1375     {"enable-fullscreen",            false, OPTION_BOOL,   "/sim/startup/fullscreen", true, "", 0 },
1376     {"disable-save-on-exit",         false, OPTION_BOOL,   "/sim/startup/save-on-exit", false, "", 0 },
1377     {"enable-save-on-exit",          false, OPTION_BOOL,   "/sim/startup/save-on-exit", true, "", 0 },
1378     {"shading-flat",                 false, OPTION_BOOL,   "/sim/rendering/shading", false, "", 0 },
1379     {"shading-smooth",               false, OPTION_BOOL,   "/sim/rendering/shading", true, "", 0 },
1380     {"disable-skyblend",             false, OPTION_BOOL,   "/sim/rendering/skyblend", false, "", 0 },
1381     {"enable-skyblend",              false, OPTION_BOOL,   "/sim/rendering/skyblend", true, "", 0 },
1382     {"disable-textures",             false, OPTION_BOOL,   "/sim/rendering/textures", false, "", 0 },
1383     {"enable-textures",              false, OPTION_BOOL,   "/sim/rendering/textures", true, "", 0 },
1384     {"texture-filtering",            false, OPTION_INT,    "/sim/rendering/filtering", 1, "", 0 },
1385     {"disable-wireframe",            false, OPTION_BOOL,   "/sim/rendering/wireframe", false, "", 0 },
1386     {"enable-wireframe",             false, OPTION_BOOL,   "/sim/rendering/wireframe", true, "", 0 },
1387     {"geometry",                     true,  OPTION_FUNC,   "", false, "", fgOptGeometry },
1388     {"bpp",                          true,  OPTION_FUNC,   "", false, "", fgOptBpp },
1389     {"units-feet",                   false, OPTION_STRING, "/sim/startup/units", false, "feet", 0 },
1390     {"units-meters",                 false, OPTION_STRING, "/sim/startup/units", false, "meters", 0 },
1391     {"timeofday",                    true,  OPTION_STRING, "/sim/startup/time-offset-type", false, "noon", 0 },
1392     {"season",                       true,  OPTION_STRING, "/sim/startup/season", false, "summer", 0 },
1393     {"time-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptTimeOffset },
1394     {"time-match-real",              false, OPTION_STRING, "/sim/startup/time-offset-type", false, "system-offset", 0 },
1395     {"time-match-local",             false, OPTION_STRING, "/sim/startup/time-offset-type", false, "latitude-offset", 0 },
1396     {"start-date-sys",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateSys },
1397     {"start-date-lat",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateLat },
1398     {"start-date-gmt",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateGmt },
1399     {"hud-tris",                     false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
1400     {"hud-culled",                   false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
1401     {"atcsim",                       true,  OPTION_CHANNEL, "", false, "dummy", 0 },
1402     {"atlas",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1403     {"httpd",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1404 #ifdef FG_JPEG_SERVER
1405     {"jpg-httpd",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1406 #endif
1407     {"native",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1408     {"native-ctrls",                 true,  OPTION_CHANNEL, "", false, "", 0 },
1409     {"native-fdm",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1410     {"native-gui",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1411     {"opengc",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1412     {"AV400",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1413     {"AV400Sim",                     true,  OPTION_CHANNEL, "", false, "", 0 },
1414     {"garmin",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1415     {"nmea",                         true,  OPTION_CHANNEL, "", false, "", 0 },
1416     {"generic",                      true,  OPTION_CHANNEL, "", false, "", 0 },
1417     {"props",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1418     {"telnet",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1419     {"pve",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1420     {"ray",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1421     {"rul",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1422     {"joyclient",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1423     {"jsclient",                     true,  OPTION_CHANNEL, "", false, "", 0 },
1424     {"proxy",                        true,  OPTION_FUNC,    "", false, "", fgSetupProxy },
1425     {"callsign",                     true, OPTION_STRING,  "sim/multiplay/callsign", false, "", 0 },
1426     {"multiplay",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1427     {"trace-read",                   true,  OPTION_FUNC,   "", false, "", fgOptTraceRead },
1428     {"trace-write",                  true,  OPTION_FUNC,   "", false, "", fgOptTraceWrite },
1429     {"log-level",                    true,  OPTION_FUNC,   "", false, "", fgOptLogLevel },
1430     {"view-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptViewOffset },
1431     {"visibility",                   true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMeters },
1432     {"visibility-miles",             true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMiles },
1433     {"random-wind",                  false, OPTION_FUNC,   "", false, "", fgOptRandomWind },
1434     {"wind",                         true,  OPTION_FUNC,   "", false, "", fgOptWind },
1435     {"turbulence",                   true,  OPTION_FUNC,   "", false, "", fgOptTurbulence },
1436     {"ceiling",                      true,  OPTION_FUNC,   "", false, "", fgOptCeiling },
1437     {"wp",                           true,  OPTION_FUNC,   "", false, "", fgOptWp },
1438     {"flight-plan",                  true,  OPTION_FUNC,   "", false, "", fgOptFlightPlan },
1439     {"config",                       true,  OPTION_FUNC,   "", false, "", fgOptConfig },
1440     {"aircraft",                     true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1441     {"vehicle",                      true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1442     {"failure",                      true,  OPTION_FUNC,   "", false, "", fgOptFailure },
1443     {"com1",                         true,  OPTION_DOUBLE, "/instrumentation/comm[0]/frequencies/selected-mhz", false, "", 0 },
1444     {"com2",                         true,  OPTION_DOUBLE, "/instrumentation/comm[1]/frequencies/selected-mhz", false, "", 0 },
1445     {"nav1",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV1 },
1446     {"nav2",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV2 },
1447     {"adf",                          true,  OPTION_FUNC,   "", false, "", fgOptADF },
1448     {"dme",                          true,  OPTION_FUNC,   "", false, "", fgOptDME },
1449     {"min-status",                   true,  OPTION_STRING,  "/sim/aircraft-min-status", false, "all", 0 },
1450     {"livery",                       true,  OPTION_FUNC,   "", false, "", fgOptLivery },
1451     {"ai-scenario",                  true,  OPTION_FUNC,   "", false, "", fgOptScenario },
1452     {"parking-id",                   true,  OPTION_FUNC,   "", false, "", fgOptParking  },
1453     {"version",                      false, OPTION_FUNC,   "", false, "", fgOptVersion },
1454     {"enable-fpe",                   false, OPTION_FUNC,   "", false, "", fgOptFpe},
1455     {"fgviewer",                     false, OPTION_FUNC,   "", false, "", fgOptFgviewer},
1456     {0}
1457 };
1458
1459
1460 // Set a property for the --prop: option. Syntax: --prop:[<type>:]<name>=<value>
1461 // <type> can be "double" etc. but also only the first letter "d".
1462 // Examples:  --prop:alpha=1  --prop:bool:beta=true  --prop:d:gamma=0.123
1463 static bool
1464 set_property(const string& arg)
1465 {
1466     string::size_type pos = arg.find('=');
1467     if (pos == arg.npos || pos == 0 || pos + 1 == arg.size())
1468         return false;
1469
1470     string name = arg.substr(0, pos);
1471     string value = arg.substr(pos + 1);
1472     string type;
1473     pos = name.find(':');
1474
1475     if (pos != name.npos && pos != 0 && pos + 1 != name.size()) {
1476         type = name.substr(0, pos);
1477         name = name.substr(pos + 1);
1478     }
1479     SGPropertyNode *n = fgGetNode(name.c_str(), true);
1480
1481     bool writable = n->getAttribute(SGPropertyNode::WRITE);
1482     if (!writable)
1483         n->setAttribute(SGPropertyNode::WRITE, true);
1484
1485     bool ret = false;
1486     if (type.empty())
1487         ret = n->setUnspecifiedValue(value.c_str());
1488     else if (type == "s" || type == "string")
1489         ret = n->setStringValue(value.c_str());
1490     else if (type == "d" || type == "double")
1491         ret = n->setDoubleValue(strtod(value.c_str(), 0));
1492     else if (type == "f" || type == "float")
1493         ret = n->setFloatValue(atof(value.c_str()));
1494     else if (type == "l" || type == "long")
1495         ret =  n->setLongValue(strtol(value.c_str(), 0, 0));
1496     else if (type == "i" || type == "int")
1497         ret =  n->setIntValue(atoi(value.c_str()));
1498     else if (type == "b" || type == "bool")
1499         ret =  n->setBoolValue(value == "true" || atoi(value.c_str()) != 0);
1500
1501     if (!writable)
1502         n->setAttribute(SGPropertyNode::WRITE, false);
1503     return ret;
1504 }
1505
1506
1507 // Parse a single option
1508 static int
1509 parse_option (const string& arg)
1510 {
1511     if ( fgOptionMap.size() == 0 ) {
1512         size_t i = 0;
1513         OptionDesc *pt = &fgOptionArray[ 0 ];
1514         while ( pt->option != 0 ) {
1515             fgOptionMap[ pt->option ] = i;
1516             i += 1;
1517             pt += 1;
1518         }
1519     }
1520
1521     // General Options
1522     if ( (arg == "--help") || (arg == "-h") ) {
1523         // help/usage request
1524         return(FG_OPTIONS_HELP);
1525     } else if ( (arg == "--verbose") || (arg == "-v") ) {
1526         // verbose help/usage request
1527         return(FG_OPTIONS_VERBOSE_HELP);
1528     } else if ( arg.find( "--show-aircraft") == 0) {
1529         return(FG_OPTIONS_SHOW_AIRCRAFT);
1530     } else if ( arg.find( "--show-sound-devices") == 0) {
1531         return(FG_OPTIONS_SHOW_SOUND_DEVICES);
1532     } else if ( arg.find( "--prop:" ) == 0 ) {
1533         if (!set_property(arg.substr(7))) {
1534             SG_LOG( SG_GENERAL, SG_ALERT, "Bad property assignment: " << arg );
1535             return FG_OPTIONS_ERROR;
1536         }
1537     } else if ( arg.find( "--" ) == 0 ) {
1538         size_t pos = arg.find( '=' );
1539         string arg_name, arg_value;
1540         if ( pos == string::npos ) {
1541             arg_name = arg.substr( 2 );
1542         } else {
1543             arg_name = arg.substr( 2, pos - 2 );
1544             arg_value = arg.substr( pos + 1);
1545         }
1546         map<string,size_t>::iterator it = fgOptionMap.find( arg_name );
1547         if ( it != fgOptionMap.end() ) {
1548             OptionDesc *pt = &fgOptionArray[ it->second ];
1549             switch ( pt->type ) {
1550                 case OPTION_BOOL:
1551                     fgSetBool( pt->property, pt->b_param );
1552                     break;
1553                 case OPTION_STRING:
1554                     if ( pt->has_param && !arg_value.empty() ) {
1555                         fgSetString( pt->property, arg_value.c_str() );
1556                     } else if ( !pt->has_param && arg_value.empty() ) {
1557                         fgSetString( pt->property, pt->s_param );
1558                     } else if ( pt->has_param ) {
1559                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1560                         return FG_OPTIONS_ERROR;
1561                     } else {
1562                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1563                         return FG_OPTIONS_ERROR;
1564                     }
1565                     break;
1566                 case OPTION_DOUBLE:
1567                     if ( !arg_value.empty() ) {
1568                         fgSetDouble( pt->property, atof( arg_value ) );
1569                     } else {
1570                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1571                         return FG_OPTIONS_ERROR;
1572                     }
1573                     break;
1574                 case OPTION_INT:
1575                     if ( !arg_value.empty() ) {
1576                         fgSetInt( pt->property, atoi( arg_value ) );
1577                     } else {
1578                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1579                         return FG_OPTIONS_ERROR;
1580                     }
1581                     break;
1582                 case OPTION_CHANNEL:
1583                     // XXX return value of add_channel should be checked?
1584                     if ( pt->has_param && !arg_value.empty() ) {
1585                         add_channel( pt->option, arg_value );
1586                     } else if ( !pt->has_param && arg_value.empty() ) {
1587                         add_channel( pt->option, pt->s_param );
1588                     } else if ( pt->has_param ) {
1589                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1590                         return FG_OPTIONS_ERROR;
1591                     } else {
1592                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1593                         return FG_OPTIONS_ERROR;
1594                     }
1595                     break;
1596                 case OPTION_FUNC:
1597                     if ( pt->has_param && !arg_value.empty() ) {
1598                         return pt->func( arg_value.c_str() );
1599                     } else if ( !pt->has_param && arg_value.empty() ) {
1600                         return pt->func( pt->s_param );
1601                     } else if ( pt->has_param ) {
1602                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1603                         return FG_OPTIONS_ERROR;
1604                     } else {
1605                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1606                         return FG_OPTIONS_ERROR;
1607                     }
1608                     break;
1609             }
1610         } else {
1611             SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1612             return FG_OPTIONS_ERROR;
1613         }
1614     } else {
1615         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1616         return FG_OPTIONS_ERROR;
1617     }
1618
1619     return FG_OPTIONS_OK;
1620 }
1621
1622
1623 // Parse the command line options
1624 void
1625 fgParseArgs (int argc, char **argv)
1626 {
1627     bool in_options = true;
1628     bool verbose = false;
1629     bool help = false;
1630
1631     SG_LOG(SG_GENERAL, SG_INFO, "Processing command line arguments");
1632
1633     for (int i = 1; i < argc; i++) {
1634         string arg = argv[i];
1635
1636         if (in_options && (arg.find('-') == 0)) {
1637           if (arg == "--") {
1638             in_options = false;
1639           } else {
1640             int result = parse_option(arg);
1641             if ((result == FG_OPTIONS_HELP) || (result == FG_OPTIONS_ERROR))
1642               help = true;
1643
1644             else if (result == FG_OPTIONS_VERBOSE_HELP)
1645               verbose = true;
1646
1647             else if (result == FG_OPTIONS_SHOW_AIRCRAFT) {
1648               fgOptLogLevel( "alert" );
1649               SGPath path( globals->get_fg_root() );
1650               path.append("Aircraft");
1651               fgShowAircraft(path, true);
1652               exit(0);
1653
1654             } else if (result == FG_OPTIONS_SHOW_SOUND_DEVICES) {
1655               SGSoundMgr smgr;
1656
1657               smgr.init();
1658               string vendor = smgr.get_vendor();
1659               string renderer = smgr.get_renderer();
1660               cout << renderer << " provided by " << vendor << endl;
1661               cout << endl << "No. Device" << endl;
1662
1663               vector <const char*>devices = smgr.get_available_devices();
1664               for (int i=0; i<devices.size(); i++) {
1665                 cout << i << ".  \"" << devices[i] << "\"" << endl;
1666               }
1667               devices.clear();
1668               exit(0);
1669             }
1670
1671             else if (result == FG_OPTIONS_EXIT)
1672                exit(0);
1673           }
1674         } else {
1675           in_options = false;
1676           SG_LOG(SG_GENERAL, SG_INFO,
1677                  "Reading command-line property file " << arg);
1678           readProperties(arg, globals->get_props());
1679         }
1680     }
1681
1682     if (help) {
1683        fgOptLogLevel( "alert" );
1684        fgUsage(verbose);
1685        exit(0);
1686     }
1687
1688     SG_LOG(SG_GENERAL, SG_INFO, "Finished command line arguments");
1689 }
1690
1691
1692 // Parse config file options
1693 void
1694 fgParseOptions (const string& path) {
1695     sg_gzifstream in( path );
1696     if ( !in.is_open() ) {
1697         return;
1698     }
1699
1700     SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path );
1701
1702     in >> skipcomment;
1703     while ( ! in.eof() ) {
1704         string line;
1705         getline( in, line, '\n' );
1706
1707         // catch extraneous (DOS) line ending character
1708         int i;
1709         for (i = line.length(); i > 0; i--)
1710             if (line[i - 1] > 32)
1711                 break;
1712         line = line.substr( 0, i );
1713
1714         if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
1715             cerr << endl << "Config file parse error: " << path << " '" 
1716                     << line << "'" << endl;
1717             fgUsage();
1718             exit(-1);
1719         }
1720         in >> skipcomment;
1721     }
1722 }
1723
1724
1725 // Print usage message
1726 void 
1727 fgUsage (bool verbose)
1728 {
1729     SGPropertyNode *locale = globals->get_locale();
1730
1731     SGPropertyNode options_root;
1732
1733     SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on Windows
1734     cout << endl;
1735
1736     try {
1737         fgLoadProps("options.xml", &options_root);
1738     } catch (const sg_exception &) {
1739         cout << "Unable to read the help file." << endl;
1740         cout << "Make sure the file options.xml is located in the FlightGear base directory," << endl;
1741         cout << "and the location of the base directory is specified by setting $FG_ROOT or" << endl;
1742         cout << "by adding --fg-root=path as a program argument." << endl;
1743         
1744         exit(-1);
1745     }
1746
1747     SGPropertyNode *options = options_root.getNode("options");
1748     if (!options) {
1749         SG_LOG( SG_GENERAL, SG_ALERT,
1750                 "Error reading options.xml: <options> directive not found." );
1751         exit(-1);
1752     }
1753
1754     SGPropertyNode *usage = locale->getNode(options->getStringValue("usage"));
1755     if (usage) {
1756         cout << "Usage: " << usage->getStringValue() << endl;
1757     }
1758
1759     vector<SGPropertyNode_ptr>section = options->getChildren("section");
1760     for (unsigned int j = 0; j < section.size(); j++) {
1761         string msg = "";
1762
1763         vector<SGPropertyNode_ptr>option = section[j]->getChildren("option");
1764         for (unsigned int k = 0; k < option.size(); k++) {
1765
1766             SGPropertyNode *name = option[k]->getNode("name");
1767             SGPropertyNode *short_name = option[k]->getNode("short");
1768             SGPropertyNode *key = option[k]->getNode("key");
1769             SGPropertyNode *arg = option[k]->getNode("arg");
1770             bool brief = option[k]->getNode("brief") != 0;
1771
1772             if ((brief || verbose) && name) {
1773                 string tmp = name->getStringValue();
1774
1775                 if (key){
1776                     tmp.append(":");
1777                     tmp.append(key->getStringValue());
1778                 }
1779                 if (arg) {
1780                     tmp.append("=");
1781                     tmp.append(arg->getStringValue());
1782                 }
1783                 if (short_name) {
1784                     tmp.append(", -");
1785                     tmp.append(short_name->getStringValue());
1786                 }
1787                                 
1788                 if (tmp.size() <= 25) {
1789                     msg+= "   --";
1790                     msg += tmp;
1791                     msg.append( 27-tmp.size(), ' ');
1792                 } else {
1793                     msg += "\n   --";
1794                     msg += tmp + '\n';
1795                     msg.append(32, ' ');
1796                 }
1797                 // There may be more than one <description> tag assosiated
1798                 // with one option
1799
1800                 vector<SGPropertyNode_ptr> desc;
1801                 desc = option[k]->getChildren("description");
1802                 if (desc.size() > 0) {
1803                    for ( unsigned int l = 0; l < desc.size(); l++) {
1804
1805                       // There may be more than one translation line.
1806
1807                       string t = desc[l]->getStringValue();
1808                       SGPropertyNode *n = locale->getNode("strings");
1809                       vector<SGPropertyNode_ptr>trans_desc =
1810                                n->getChildren(t.substr(8).c_str());
1811
1812                       for ( unsigned int m = 0; m < trans_desc.size(); m++ ) {
1813                          string t_str = trans_desc[m]->getStringValue();
1814
1815                          if ((m > 0) || ((l > 0) && m == 0)) {
1816                             msg.append( 32, ' ');
1817                          }
1818
1819                          // If the string is too large to fit on the screen,
1820                          // then split it up in several pieces.
1821
1822                          while ( t_str.size() > 47 ) {
1823
1824                             unsigned int m = t_str.rfind(' ', 47);
1825                             msg += t_str.substr(0, m) + '\n';
1826                             msg.append( 32, ' ');
1827
1828                             t_str.erase(t_str.begin(), t_str.begin() + m + 1);
1829                         }
1830                         msg += t_str + '\n';
1831                      }
1832                   }
1833                }
1834             }
1835         }
1836
1837         SGPropertyNode *name;
1838         name = locale->getNode(section[j]->getStringValue("name"));
1839
1840         if (!msg.empty() && name) {
1841            cout << endl << name->getStringValue() << ":" << endl;
1842            cout << msg;
1843            msg.erase();
1844         }
1845     }
1846
1847     if ( !verbose ) {
1848         cout << endl;
1849         cout << "For a complete list of options use --help --verbose" << endl;
1850     }
1851 #ifdef _MSC_VER
1852     cout << "Hit a key to continue..." << endl;
1853     cin.get();
1854 #endif
1855 }
1856
1857 // A simple function to return an integer depending on the position
1858 // of the status string within the array in order to determine the hierarchy.
1859 unsigned int getNumMaturity(const char * str) 
1860 {
1861   // changes should also be reflected in $FG_ROOT/data/options.xml & 
1862   // $FG_ROOT/data/Translations/string-default.xml
1863   const char* levels[] = {"alpha","beta","early-production","production"}; 
1864
1865   for (size_t i=0; i<(sizeof(levels)/sizeof(levels[0]));i++) 
1866     if (strcmp(str,levels[i])==0)
1867       return i;
1868
1869   return 0;
1870 };
1871
1872
1873 static void fgSearchAircraft(const SGPath &path, string_list &aircraft,
1874                              bool recursive)
1875 {   
1876    
1877    ulDirEnt* dire;
1878    ulDir *dirp = ulOpenDir(path.str().c_str());
1879    if (dirp == NULL) {
1880       cerr << "Unable to open aircraft directory '" << path.str() << '\'' << endl;
1881       exit(-1);
1882    }
1883
1884    while ((dire = ulReadDir(dirp)) != NULL) {
1885       char *ptr;
1886
1887       if (dire->d_isdir) {
1888           if (recursive && strcmp("CVS", dire->d_name)
1889               && strcmp(".", dire->d_name) && strcmp("..", dire->d_name))
1890           {
1891               SGPath next = path;
1892               next.append(dire->d_name);
1893
1894               fgSearchAircraft(next, aircraft, true);
1895           }
1896       } else if ((ptr = strstr(dire->d_name, "-set.xml")) && (ptr[8] == '\0')) {
1897
1898           SGPath afile = path;
1899           afile.append(dire->d_name);
1900
1901           *ptr = '\0';
1902
1903           SGPropertyNode root;
1904           try {
1905              readProperties(afile.str(), &root);
1906           } catch (...) {
1907              continue;
1908           }
1909
1910           SGPropertyNode *desc = NULL;
1911           SGPropertyNode *status = NULL;
1912           
1913           SGPropertyNode *node = root.getNode("sim");
1914           if (node) {
1915              desc = node->getNode("description");
1916              // if a status tag is found, read it in
1917              if (node->hasValue("status"))
1918                 status = node->getNode("status");
1919           }
1920
1921           //additionally display status information where it is available
1922
1923           string descStr("   ");
1924           descStr += dire->d_name;
1925           if (desc) {
1926               if (descStr.size() <= 27+3) {
1927                 descStr.append(29+3-descStr.size(), ' ');
1928               } else {
1929                 descStr += '\n';
1930                 descStr.append( 32, ' ');
1931               }
1932               descStr += desc->getStringValue();
1933           }
1934   
1935           SGPropertyNode * required_status
1936                              = fgGetNode ("/sim/aircraft-min-status", true);
1937           
1938           // If the node holds the value "all", then there wasn't any status 
1939           // level specified, so we simply go ahead and output ALL aircraft
1940           if (strcmp(required_status->getStringValue(),"all")==0) {        
1941                   aircraft.push_back(descStr);
1942                   }
1943           else
1944           {
1945           // If the node doesn't hold "all" as its value, then we are supposed
1946           // to show only aircraft meeting specific status (development status)
1947           // requirements:
1948  
1949      if (node->hasValue("status"))     {
1950           //Compare (minimally) required status level with actual aircraft status:
1951            if ( getNumMaturity(status->getStringValue() ) >= 
1952                 getNumMaturity(required_status->getStringValue() ) )
1953                                   aircraft.push_back(descStr); }
1954                                                   
1955           }
1956       
1957    
1958    }
1959    }
1960
1961    ulCloseDir(dirp);
1962 }
1963
1964 /*
1965  * Search in the current directory, and in on directory deeper
1966  * for <aircraft>-set.xml configuration files and show the aircaft name
1967  * and the contents of the<description> tag in a sorted manner.
1968  *
1969  * @parampath the directory to search for configuration files
1970  * @param recursive defines whether the directory should be searched recursively
1971  */
1972 void fgShowAircraft(const SGPath &path, bool recursive) {
1973     string_list aircraft;
1974
1975     fgSearchAircraft( path, aircraft, recursive );
1976
1977     sort(aircraft.begin(), aircraft.end());
1978     SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on Windows
1979     cout << "Available aircraft:" << endl;
1980     for ( unsigned int i = 0; i < aircraft.size(); i++ ) {
1981         cout << aircraft[i] << endl;
1982     }
1983 #ifdef _MSC_VER
1984     cout << "Hit a key to continue..." << endl;
1985     cin.get();
1986 #endif
1987 }