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