]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.cxx
remove redundant --airport-id option (OK'ed by Curt, no longer used by fgrun)
[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 STL_STRING
39
40 #include <plib/ul.h>
41
42 #include <simgear/math/sg_random.h>
43 #include <simgear/misc/sgstream.hxx>
44 #include <simgear/misc/sg_path.hxx>
45 #include <simgear/scene/material/mat.hxx>
46
47 // #include <Include/general.hxx>
48 // #include <Airports/simple.hxx>
49 // #include <Cockpit/cockpit.hxx>
50 // #include <FDM/flight.hxx>
51
52 #include <Autopilot/route_mgr.hxx>
53 #include <GUI/gui.h>
54
55 #include "globals.hxx"
56 #include "fg_init.hxx"
57 #include "fg_props.hxx"
58 #include "options.hxx"
59 #include "util.hxx"
60 #include "viewmgr.hxx"
61
62
63 SG_USING_STD(string);
64 SG_USING_STD(sort);
65 SG_USING_NAMESPACE(std);
66
67
68 #define NEW_DEFAULT_MODEL_HZ 120
69
70 enum
71 {
72     FG_OPTIONS_OK = 0,
73     FG_OPTIONS_HELP = 1,
74     FG_OPTIONS_ERROR = 2,
75     FG_OPTIONS_VERBOSE_HELP = 3,
76     FG_OPTIONS_SHOW_AIRCRAFT = 4
77 };
78
79 static double
80 atof( const string& str )
81 {
82
83 #ifdef __MWERKS__
84     // -dw- if ::atof is called, then we get an infinite loop
85     return std::atof( str.c_str() );
86 #else
87     return ::atof( str.c_str() );
88 #endif
89 }
90
91 static int
92 atoi( const string& str )
93 {
94 #ifdef __MWERKS__
95     // -dw- if ::atoi is called, then we get an infinite loop
96     return std::atoi( str.c_str() );
97 #else
98     return ::atoi( str.c_str() );
99 #endif
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     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/pause", false);
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, 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
571 #if defined( macintosh )
572         getline( in, line, '\r' );
573 #else
574         getline( in, line, '\n' );
575 #endif
576         // catch extraneous (DOS) line ending character
577         if ( line[line.length() - 1] < 32 )
578             line = line.substr( 0, line.length()-1 );
579
580         if ( in.eof() )
581             break;
582
583         waypoints->push_back(line);
584     }
585     return true;
586 }
587
588
589 static int
590 fgOptLanguage( const char *arg )
591 {
592     globals->set_locale( fgInitLocale( arg ) );
593     return FG_OPTIONS_OK;
594 }
595
596 static void
597 clearLocation ()
598 {
599     fgSetString("/sim/presets/airport-id", "");
600     fgSetString("/sim/presets/vor-id", "");
601     fgSetString("/sim/presets/ndb-id", "");
602     fgSetString("/sim/presets/carrier", "");
603     fgSetString("/sim/presets/parkpos", "");
604     fgSetString("/sim/presets/fix", "");
605 }
606
607 static int
608 fgOptVOR( const char * arg )
609 {
610     clearLocation();
611     fgSetString("/sim/presets/vor-id", arg);
612     return FG_OPTIONS_OK;
613 }
614
615 static int
616 fgOptNDB( const char * arg )
617 {
618     clearLocation();
619     fgSetString("/sim/presets/ndb-id", arg);
620     return FG_OPTIONS_OK;
621 }
622
623 static int
624 fgOptCarrier( const char * arg )
625 {
626     clearLocation();
627     fgSetString("/sim/presets/carrier", arg);
628     return FG_OPTIONS_OK;
629 }
630
631 static int
632 fgOptParkpos( const char * arg )
633 {
634     fgSetString("/sim/presets/parkpos", arg);
635     return FG_OPTIONS_OK;
636 }
637
638 static int
639 fgOptFIX( const char * arg )
640 {
641     clearLocation();
642     fgSetString("/sim/presets/fix", arg);
643     return FG_OPTIONS_OK;
644 }
645
646 static int
647 fgOptLon( const char *arg )
648 {
649     clearLocation();
650     fgSetDouble("/sim/presets/longitude-deg", parse_degree( arg ));
651     fgSetDouble("/position/longitude-deg", parse_degree( arg ));
652     return FG_OPTIONS_OK;
653 }
654
655 static int
656 fgOptLat( const char *arg )
657 {
658     clearLocation();
659     fgSetDouble("/sim/presets/latitude-deg", parse_degree( arg ));
660     fgSetDouble("/position/latitude-deg", parse_degree( arg ));
661     return FG_OPTIONS_OK;
662 }
663
664 static int
665 fgOptAltitude( const char *arg )
666 {
667     fgSetBool("/sim/presets/onground", false);
668     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
669         fgSetDouble("/sim/presets/altitude-ft", atof( arg ));
670     else
671         fgSetDouble("/sim/presets/altitude-ft",
672                     atof( arg ) * SG_METER_TO_FEET);
673     return FG_OPTIONS_OK;
674 }
675
676 static int
677 fgOptUBody( const char *arg )
678 {
679     fgSetString("/sim/presets/speed-set", "UVW");
680     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
681         fgSetDouble("/sim/presets/uBody-fps", atof( arg ));
682     else
683         fgSetDouble("/sim/presets/uBody-fps",
684                     atof( arg ) * SG_METER_TO_FEET);
685     return FG_OPTIONS_OK;
686 }
687
688 static int
689 fgOptVBody( const char *arg )
690 {
691     fgSetString("/sim/presets/speed-set", "UVW");
692     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
693         fgSetDouble("/sim/presets/vBody-fps", atof( arg ));
694     else
695         fgSetDouble("/sim/presets/vBody-fps",
696                             atof( arg ) * SG_METER_TO_FEET);
697     return FG_OPTIONS_OK;
698 }
699
700 static int
701 fgOptWBody( const char *arg )
702 {
703     fgSetString("/sim/presets/speed-set", "UVW");
704     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
705         fgSetDouble("/sim/presets/wBody-fps", atof(arg));
706     else
707         fgSetDouble("/sim/presets/wBody-fps",
708                             atof(arg) * SG_METER_TO_FEET);
709     return FG_OPTIONS_OK;
710 }
711
712 static int
713 fgOptVNorth( const char *arg )
714 {
715     fgSetString("/sim/presets/speed-set", "NED");
716     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
717         fgSetDouble("/sim/presets/speed-north-fps", atof( arg ));
718     else
719         fgSetDouble("/sim/presets/speed-north-fps",
720                             atof( arg ) * SG_METER_TO_FEET);
721     return FG_OPTIONS_OK;
722 }
723
724 static int
725 fgOptVEast( const char *arg )
726 {
727     fgSetString("/sim/presets/speed-set", "NED");
728     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
729         fgSetDouble("/sim/presets/speed-east-fps", atof(arg));
730     else
731         fgSetDouble("/sim/presets/speed-east-fps",
732                     atof(arg) * SG_METER_TO_FEET);
733     return FG_OPTIONS_OK;
734 }
735
736 static int
737 fgOptVDown( const char *arg )
738 {
739     fgSetString("/sim/presets/speed-set", "NED");
740     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
741         fgSetDouble("/sim/presets/speed-down-fps", atof(arg));
742     else
743         fgSetDouble("/sim/presets/speed-down-fps",
744                             atof(arg) * SG_METER_TO_FEET);
745     return FG_OPTIONS_OK;
746 }
747
748 static int
749 fgOptVc( const char *arg )
750 {
751     // fgSetString("/sim/presets/speed-set", "knots");
752     // fgSetDouble("/velocities/airspeed-kt", atof(arg.substr(5)));
753     fgSetString("/sim/presets/speed-set", "knots");
754     fgSetDouble("/sim/presets/airspeed-kt", atof(arg));
755     return FG_OPTIONS_OK;
756 }
757
758 static int
759 fgOptMach( const char *arg )
760 {
761     fgSetString("/sim/presets/speed-set", "mach");
762     fgSetDouble("/sim/presets/mach", atof(arg));
763     return FG_OPTIONS_OK;
764 }
765
766 static int
767 fgOptRoc( const char *arg )
768 {
769     fgSetDouble("/velocities/vertical-speed-fps", atof(arg)/60);
770     return FG_OPTIONS_OK;
771 }
772
773 static int
774 fgOptFgRoot( const char *arg )
775 {
776     globals->set_fg_root(arg);
777     return FG_OPTIONS_OK;
778 }
779
780 static int
781 fgOptFgScenery( const char *arg )
782 {
783     globals->set_fg_scenery(arg);
784     return FG_OPTIONS_OK;
785 }
786
787 static int
788 fgOptFov( const char *arg )
789 {
790     parse_fov( arg );
791     return FG_OPTIONS_OK;
792 }
793
794 static int
795 fgOptGeometry( const char *arg )
796 {
797     bool geometry_ok = true;
798     int xsize = 0, ysize = 0;
799     string geometry = arg;
800     string::size_type i = geometry.find('x');
801
802     if (i != string::npos) {
803         xsize = atoi(geometry.substr(0, i));
804         ysize = atoi(geometry.substr(i+1));
805     } else {
806         geometry_ok = false;
807     }
808
809     if ( xsize <= 0 || ysize <= 0 ) {
810         xsize = 640;
811         ysize = 480;
812         geometry_ok = false;
813     }
814
815     if ( !geometry_ok ) {
816         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown geometry: " << geometry );
817         SG_LOG( SG_GENERAL, SG_ALERT,
818                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
819     } else {
820         SG_LOG( SG_GENERAL, SG_INFO,
821                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
822         fgSetInt("/sim/startup/xsize", xsize);
823         fgSetInt("/sim/startup/ysize", ysize);
824     }
825     return FG_OPTIONS_OK;
826 }
827
828 static int
829 fgOptBpp( const char *arg )
830 {
831     string bits_per_pix = arg;
832     if ( bits_per_pix == "16" ) {
833         fgSetInt("/sim/rendering/bits-per-pixel", 16);
834     } else if ( bits_per_pix == "24" ) {
835         fgSetInt("/sim/rendering/bits-per-pixel", 24);
836     } else if ( bits_per_pix == "32" ) {
837         fgSetInt("/sim/rendering/bits-per-pixel", 32);
838     } else {
839         SG_LOG(SG_GENERAL, SG_ALERT, "Unsupported bpp " << bits_per_pix);
840     }
841     return FG_OPTIONS_OK;
842 }
843
844 static int
845 fgOptTimeOffset( const char *arg )
846 {
847     fgSetInt("/sim/startup/time-offset",
848                 parse_time_offset( arg ));
849     fgSetString("/sim/startup/time-offset-type", "system-offset");
850     return FG_OPTIONS_OK;
851 }
852
853 static int
854 fgOptStartDateSys( const char *arg )
855 {
856     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
857     fgSetString("/sim/startup/time-offset-type", "system");
858     return FG_OPTIONS_OK;
859 }
860
861 static int
862 fgOptStartDateLat( const char *arg )
863 {
864     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
865     fgSetString("/sim/startup/time-offset-type", "latitude");
866     return FG_OPTIONS_OK;
867 }
868
869 static int
870 fgOptStartDateGmt( const char *arg )
871 {
872     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
873     fgSetString("/sim/startup/time-offset-type", "gmt");
874     return FG_OPTIONS_OK;
875 }
876
877 static int
878 fgSetupProxy( const char *arg )
879 {
880     string options = arg;
881     string host, port, auth;
882     string::size_type pos;
883
884     host = port = auth = "";
885     if ((pos = options.find("@")) != string::npos) 
886         auth = options.substr(0, pos++);
887     else
888         pos = 0;
889
890     host = options.substr(pos, options.size());
891     if ((pos = host.find(":")) != string::npos) {
892         port = host.substr(++pos, host.size());
893         host.erase(--pos, host.size());
894     }
895
896     fgSetString("/sim/presets/proxy/host", host.c_str());
897     fgSetString("/sim/presets/proxy/port", port.c_str());
898     fgSetString("/sim/presets/proxy/authentication", auth.c_str());
899
900     return FG_OPTIONS_OK;
901 }
902
903 static int
904 fgOptTraceRead( const char *arg )
905 {
906     string name = arg;
907     SG_LOG(SG_GENERAL, SG_INFO, "Tracing reads for property " << name);
908     fgGetNode(name.c_str(), true)
909         ->setAttribute(SGPropertyNode::TRACE_READ, true);
910     return FG_OPTIONS_OK;
911 }
912
913 static int
914 fgOptLogLevel( const char *arg )
915 {
916     fgSetString("/sim/logging/classes", "all");
917     fgSetString("/sim/logging/priority", arg);
918
919     string priority = arg;
920     logbuf::set_log_classes(SG_ALL);
921     if (priority == "bulk") {
922       logbuf::set_log_priority(SG_BULK);
923     } else if (priority == "debug") {
924       logbuf::set_log_priority(SG_DEBUG);
925     } else if (priority == "info") {
926       logbuf::set_log_priority(SG_INFO);
927     } else if (priority == "warn") {
928       logbuf::set_log_priority(SG_WARN);
929     } else if (priority == "alert") {
930       logbuf::set_log_priority(SG_ALERT);
931     } else {
932       SG_LOG(SG_GENERAL, SG_WARN, "Unknown logging priority " << priority);
933     }
934     SG_LOG(SG_GENERAL, SG_DEBUG, "Logging priority is " << priority);
935
936     return FG_OPTIONS_OK;
937 }
938
939
940 static int
941 fgOptTraceWrite( const char *arg )
942 {
943     string name = arg;
944     SG_LOG(SG_GENERAL, SG_INFO, "Tracing writes for property " << name);
945     fgGetNode(name.c_str(), true)
946         ->setAttribute(SGPropertyNode::TRACE_WRITE, true);
947     return FG_OPTIONS_OK;
948 }
949
950 static int
951 fgOptViewOffset( const char *arg )
952 {
953     // $$$ begin - added VS Renganathan, 14 Oct 2K
954     // for multi-window outside window imagery
955     string woffset = arg;
956     double default_view_offset = 0.0;
957     if ( woffset == "LEFT" ) {
958             default_view_offset = SGD_PI * 0.25;
959     } else if ( woffset == "RIGHT" ) {
960         default_view_offset = SGD_PI * 1.75;
961     } else if ( woffset == "CENTER" ) {
962         default_view_offset = 0.00;
963     } else {
964         default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
965     }
966     /* apparently not used (CLO, 11 Jun 2002) 
967         FGViewer *pilot_view =
968             (FGViewer *)globals->get_viewmgr()->get_view( 0 ); */
969     // this will work without calls to the viewer...
970     fgSetDouble( "/sim/current-view/heading-offset-deg",
971                     default_view_offset  * SGD_RADIANS_TO_DEGREES );
972     // $$$ end - added VS Renganathan, 14 Oct 2K
973     return FG_OPTIONS_OK;
974 }
975
976 static int
977 fgOptVisibilityMeters( const char *arg )
978 {
979     double visibility = atof( arg );
980     fgDefaultWeatherValue("visibility-m", visibility);
981     return FG_OPTIONS_OK;
982 }
983
984 static int
985 fgOptVisibilityMiles( const char *arg )
986 {
987     double visibility = atof( arg ) * 5280.0 * SG_FEET_TO_METER;
988     fgDefaultWeatherValue("visibility-m", visibility);
989     return FG_OPTIONS_OK;
990 }
991
992 static int
993 fgOptRandomWind( const char *arg )
994 {
995     double min_hdg = sg_random() * 360.0;
996     double max_hdg = min_hdg + (20 - sqrt(sg_random() * 400));
997     double speed = sg_random() * sg_random() * 40;
998     double gust = speed + (10 - sqrt(sg_random() * 100));
999     fgSetupWind(min_hdg, max_hdg, speed, gust);
1000     return FG_OPTIONS_OK;
1001 }
1002
1003 static int
1004 fgOptWind( const char *arg )
1005 {
1006     double min_hdg, max_hdg, speed, gust;
1007     if (!parse_wind( arg, &min_hdg, &max_hdg, &speed, &gust)) {
1008         SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << arg );
1009         return FG_OPTIONS_ERROR;
1010     }
1011     fgSetupWind(min_hdg, max_hdg, speed, gust);
1012     return FG_OPTIONS_OK;
1013 }
1014
1015 static int
1016 fgOptTurbulence( const char *arg )
1017 {
1018     fgDefaultWeatherValue("turbulence/magnitude-norm", atof(arg));
1019     return FG_OPTIONS_OK;
1020 }
1021
1022 static int
1023 fgOptCeiling( const char *arg )
1024 {
1025     double elevation, thickness;
1026     string spec = arg;
1027     string::size_type pos = spec.find(':');
1028     if (pos == string::npos) {
1029         elevation = atof(spec.c_str());
1030         thickness = 2000;
1031     } else {
1032         elevation = atof(spec.substr(0, pos).c_str());
1033         thickness = atof(spec.substr(pos + 1).c_str());
1034     }
1035     fgSetDouble("/environment/clouds/layer[0]/elevation-ft", elevation);
1036     fgSetDouble("/environment/clouds/layer[0]/thickness-ft", thickness);
1037     fgSetString("/environment/clouds/layer[0]/coverage", "overcast");
1038     return FG_OPTIONS_OK;
1039 }
1040
1041 static int
1042 fgOptWp( const char *arg )
1043 {
1044     parse_wp( arg );
1045     return FG_OPTIONS_OK;
1046 }
1047
1048 static int
1049 fgOptFlightPlan( const char *arg )
1050 {
1051     parse_flightplan ( arg );
1052     return FG_OPTIONS_OK;
1053 }
1054
1055 static int
1056 fgOptConfig( const char *arg )
1057 {
1058     string file = arg;
1059     try {
1060         readProperties(file, globals->get_props());
1061     } catch (const sg_exception &e) {
1062         string message = "Error loading config file: ";
1063         message += e.getFormattedMessage() + e.getOrigin();
1064         SG_LOG(SG_INPUT, SG_ALERT, message);
1065         exit(2);
1066     }
1067     return FG_OPTIONS_OK;
1068 }
1069
1070 static bool
1071 parse_colon (const string &s, double * val1, double * val2)
1072 {
1073     string::size_type pos = s.find(':');
1074     if (pos == string::npos) {
1075         *val2 = atof(s);
1076         return false;
1077     } else {
1078         *val1 = atof(s.substr(0, pos).c_str());
1079         *val2 = atof(s.substr(pos+1).c_str());
1080         return true;
1081     }
1082 }
1083
1084
1085 static int
1086 fgOptFailure( const char * arg )
1087 {
1088     string a = arg;
1089     if (a == "pitot") {
1090         fgSetBool("/systems/pitot/serviceable", false);
1091     } else if (a == "static") {
1092         fgSetBool("/systems/static/serviceable", false);
1093     } else if (a == "vacuum") {
1094         fgSetBool("/systems/vacuum/serviceable", false);
1095     } else if (a == "electrical") {
1096         fgSetBool("/systems/electrical/serviceable", false);
1097     } else {
1098         SG_LOG(SG_INPUT, SG_ALERT, "Unknown failure mode: " << a);
1099         return FG_OPTIONS_ERROR;
1100     }
1101
1102     return FG_OPTIONS_OK;
1103 }
1104
1105
1106 static int
1107 fgOptNAV1( const char * arg )
1108 {
1109     double radial, freq;
1110     if (parse_colon(arg, &radial, &freq))
1111         fgSetDouble("/instrumentation/nav[0]/radials/selected-deg", radial);
1112     fgSetDouble("/instrumentation/nav[0]/frequencies/selected-mhz", freq);
1113     return FG_OPTIONS_OK;
1114 }
1115
1116 static int
1117 fgOptNAV2( const char * arg )
1118 {
1119     double radial, freq;
1120     if (parse_colon(arg, &radial, &freq))
1121         fgSetDouble("/instrumentation/nav[1]/radials/selected-deg", radial);
1122     fgSetDouble("/instrumentation/nav[1]/frequencies/selected-mhz", freq);
1123     return FG_OPTIONS_OK;
1124 }
1125
1126 static int
1127 fgOptADF( const char * arg )
1128 {
1129     double rot, freq;
1130     if (parse_colon(arg, &rot, &freq))
1131         fgSetDouble("/instrumentation/adf/rotation-deg", rot);
1132     fgSetDouble("/instrumentation/adf/frequencies/selected-khz", freq);
1133     return FG_OPTIONS_OK;
1134 }
1135
1136 static int
1137 fgOptDME( const char *arg )
1138 {
1139     string opt = arg;
1140     if (opt == "nav1") {
1141         fgSetInt("/instrumentation/dme/switch-position", 1);
1142         fgSetString("/instrumentation/dme/frequencies/source",
1143                     "/instrumentation/nav[0]/frequencies/selected-mhz");
1144     } else if (opt == "nav2") {
1145         fgSetInt("/instrumentation/dme/switch-position", 3);
1146         fgSetString("/instrumentation/dme/frequencies/source",
1147                     "/instrumentation/nav[1]/frequencies/selected-mhz");
1148     } else {
1149         fgSetInt("/instrumentation/dme/switch-position", 2);
1150         fgSetString("/instrumentation/dme/frequencies/source",
1151                     "/instrumentation/dme/frequencies/selected-mhz");
1152         fgSetString("/instrumentation/dme/frequencies/selected-mhz", arg);
1153     }
1154     return FG_OPTIONS_OK;
1155 }
1156
1157 static int
1158 fgOptLivery( const char *arg )
1159 {
1160     string opt = arg;
1161     string livery_path = "livery/" + opt;
1162     fgSetString("/sim/model/texture-path", livery_path.c_str() );
1163     return FG_OPTIONS_OK;
1164 }
1165
1166 static int
1167 fgOptScenario( const char *arg )
1168 {
1169     SGPropertyNode_ptr ai_node = fgGetNode( "/sim/ai", true );
1170     vector<SGPropertyNode_ptr> scenarii = ai_node->getChildren( "scenario" );
1171     int index = -1;
1172     for ( size_t i = 0; i < scenarii.size(); ++i ) {
1173         int ind = scenarii[i]->getIndex();
1174         if ( index < ind ) {
1175             index = ind;
1176         }
1177     }
1178     SGPropertyNode_ptr scenario = ai_node->getNode( "scenario", index + 1, true );
1179     scenario->setStringValue( arg );
1180     ai_node->setBoolValue( "enabled", true );
1181     return FG_OPTIONS_OK;
1182 }
1183
1184 static int
1185 fgOptRunway( const char *arg )
1186 {
1187     fgSetString("/sim/presets/runway", arg );
1188     fgSetBool("/sim/presets/runway-requested", true );
1189     return FG_OPTIONS_OK;
1190 }
1191
1192 static int
1193 fgOptParking( const char *arg )
1194 {
1195     cerr << "Processing argument " << arg << endl;
1196     fgSetString("/sim/presets/parking", arg );
1197     fgSetBool  ("/sim/presets/parking-requested", true );
1198     return FG_OPTIONS_OK;
1199 }
1200
1201
1202 static map<string,size_t> fgOptionMap;
1203
1204 /*
1205    option       has_param type        property         b_param s_param  func
1206
1207 where:
1208  option    : name of the option
1209  has_param : option is --name=value if true or --name if false
1210  type      : OPTION_BOOL    - property is a boolean
1211              OPTION_STRING  - property is a string
1212              OPTION_DOUBLE  - property is a double
1213              OPTION_INT     - property is an integer
1214              OPTION_CHANNEL - name of option is the name of a channel
1215              OPTION_FUNC    - the option trigger a function
1216  b_param   : if type==OPTION_BOOL,
1217              value set to the property (has_param is false for boolean)
1218  s_param   : if type==OPTION_STRING,
1219              value set to the property if has_param is false
1220  func      : function called if type==OPTION_FUNC. if has_param is true,
1221              the value is passed to the function as a string, otherwise,
1222              0 is passed. 
1223
1224     For OPTION_DOUBLE and OPTION_INT, the parameter value is converted into a
1225     double or an integer and set to the property.
1226
1227     For OPTION_CHANNEL, add_channel is called with the parameter value as the
1228     argument.
1229 */
1230
1231 enum OptionType { OPTION_BOOL, OPTION_STRING, OPTION_DOUBLE, OPTION_INT, OPTION_CHANNEL, OPTION_FUNC };
1232 struct OptionDesc {
1233     char *option;
1234     bool has_param;
1235     enum OptionType type;
1236     char *property;
1237     bool b_param;
1238     char *s_param;
1239     int (*func)( const char * );
1240     } fgOptionArray[] = {
1241        
1242     {"language",                     true,  OPTION_FUNC,   "", false, "", fgOptLanguage },
1243     {"disable-game-mode",            false, OPTION_BOOL,   "/sim/startup/game-mode", false, "", 0 },
1244     {"enable-game-mode",             false, OPTION_BOOL,   "/sim/startup/game-mode", true, "", 0 },
1245     {"disable-splash-screen",        false, OPTION_BOOL,   "/sim/startup/splash-screen", false, "", 0 },
1246     {"enable-splash-screen",         false, OPTION_BOOL,   "/sim/startup/splash-screen", true, "", 0 },
1247     {"disable-intro-music",          false, OPTION_BOOL,   "/sim/startup/intro-music", false, "", 0 },
1248     {"enable-intro-music",           false, OPTION_BOOL,   "/sim/startup/intro-music", true, "", 0 },
1249     {"disable-mouse-pointer",        false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "disabled", 0 },
1250     {"enable-mouse-pointer",         false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "enabled", 0 },
1251     {"disable-random-objects",       false, OPTION_BOOL,   "/sim/rendering/random-objects", false, "", 0 },
1252     {"enable-random-objects",        false, OPTION_BOOL,   "/sim/rendering/random-objects", true, "", 0 },
1253     {"disable-real-weather-fetch",   false, OPTION_BOOL,   "/environment/params/real-world-weather-fetch", false, "", 0 },
1254     {"enable-real-weather-fetch",    false, OPTION_BOOL,   "/environment/params/real-world-weather-fetch", true, "", 0 },
1255     {"disable-ai-models",            false, OPTION_BOOL,   "/sim/ai/enabled", false, "", 0 },
1256     {"enable-ai-models",             false, OPTION_BOOL,   "/sim/ai/enabled", true, "", 0 },
1257     {"disable-freeze",               false, OPTION_BOOL,   "/sim/freeze/master", false, "", 0 },
1258     {"enable-freeze",                false, OPTION_BOOL,   "/sim/freeze/master", true, "", 0 },
1259     {"disable-fuel-freeze",          false, OPTION_BOOL,   "/sim/freeze/fuel", false, "", 0 },
1260     {"enable-fuel-freeze",           false, OPTION_BOOL,   "/sim/freeze/fuel", true, "", 0 },
1261     {"disable-clock-freeze",         false, OPTION_BOOL,   "/sim/freeze/clock", false, "", 0 },
1262     {"enable-clock-freeze",          false, OPTION_BOOL,   "/sim/freeze/clock", true, "", 0 },
1263     {"disable-hud-3d",               false, OPTION_BOOL,   "/sim/hud/enable3d", false, "", 0 },
1264     {"enable-hud-3d",                false, OPTION_BOOL,   "/sim/hud/enable3d", true, "", 0 },
1265     {"disable-anti-alias-hud",       false, OPTION_BOOL,   "/sim/hud/color/antialiased", false, "", 0 },
1266     {"enable-anti-alias-hud",        false, OPTION_BOOL,   "/sim/hud/color/antialiased", true, "", 0 },
1267     {"control",                      true,  OPTION_STRING, "/sim/control-mode", false, "", 0 },
1268     {"disable-auto-coordination",    false, OPTION_BOOL,   "/sim/auto-coordination", false, "", 0 },
1269     {"enable-auto-coordination",     false, OPTION_BOOL,   "/sim/auto-coordination", true, "", 0 },
1270     {"browser-app",                  true,  OPTION_STRING, "/sim/startup/browser-app", false, "", 0 },
1271     {"disable-hud",                  false, OPTION_BOOL,   "/sim/hud/visibility", false, "", 0 },
1272     {"enable-hud",                   false, OPTION_BOOL,   "/sim/hud/visibility", true, "", 0 },
1273     {"disable-panel",                false, OPTION_BOOL,   "/sim/panel/visibility", false, "", 0 },
1274     {"enable-panel",                 false, OPTION_BOOL,   "/sim/panel/visibility", true, "", 0 },
1275     {"disable-sound",                false, OPTION_BOOL,   "/sim/sound/pause", true, "", 0 },
1276     {"enable-sound",                 false, OPTION_BOOL,   "/sim/sound/pause", false, "", 0 },
1277     {"airport",                      true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1278     {"runway",                       true,  OPTION_FUNC,   "", false, "", fgOptRunway },
1279     {"vor",                          true,  OPTION_FUNC,   "", false, "", fgOptVOR },
1280     {"ndb",                          true,  OPTION_FUNC,   "", false, "", fgOptNDB },
1281     {"carrier",                      true,  OPTION_FUNC,   "", false, "", fgOptCarrier },
1282     {"parkpos",                      true,  OPTION_FUNC,   "", false, "", fgOptParkpos },
1283     {"fix",                          true,  OPTION_FUNC,   "", false, "", fgOptFIX },
1284     {"offset-distance",              true,  OPTION_DOUBLE, "/sim/presets/offset-distance", false, "", 0 },
1285     {"offset-azimuth",               true,  OPTION_DOUBLE, "/sim/presets/offset-azimuth", false, "", 0 },
1286     {"lon",                          true,  OPTION_FUNC,   "", false, "", fgOptLon },
1287     {"lat",                          true,  OPTION_FUNC,   "", false, "", fgOptLat },
1288     {"altitude",                     true,  OPTION_FUNC,   "", false, "", fgOptAltitude },
1289     {"uBody",                        true,  OPTION_FUNC,   "", false, "", fgOptUBody },
1290     {"vBody",                        true,  OPTION_FUNC,   "", false, "", fgOptVBody },
1291     {"wBody",                        true,  OPTION_FUNC,   "", false, "", fgOptWBody },
1292     {"vNorth",                       true,  OPTION_FUNC,   "", false, "", fgOptVNorth },
1293     {"vEast",                        true,  OPTION_FUNC,   "", false, "", fgOptVEast },
1294     {"vDown",                        true,  OPTION_FUNC,   "", false, "", fgOptVDown },
1295     {"vc",                           true,  OPTION_FUNC,   "", false, "", fgOptVc },
1296     {"mach",                         true,  OPTION_FUNC,   "", false, "", fgOptMach },
1297     {"heading",                      true,  OPTION_DOUBLE, "/sim/presets/heading-deg", false, "", 0 },
1298     {"roll",                         true,  OPTION_DOUBLE, "/sim/presets/roll-deg", false, "", 0 },
1299     {"pitch",                        true,  OPTION_DOUBLE, "/sim/presets/pitch-deg", false, "", 0 },
1300     {"glideslope",                   true,  OPTION_DOUBLE, "/sim/presets/glideslope-deg", false, "", 0 },
1301     {"roc",                          true,  OPTION_FUNC,   "", false, "", fgOptRoc },
1302     {"fg-root",                      true,  OPTION_FUNC,   "", false, "", fgOptFgRoot },
1303     {"fg-scenery",                   true,  OPTION_FUNC,   "", false, "", fgOptFgScenery },
1304     {"fdm",                          true,  OPTION_STRING, "/sim/flight-model", false, "", 0 },
1305     {"aero",                         true,  OPTION_STRING, "/sim/aero", false, "", 0 },
1306     {"aircraft-dir",                 true,  OPTION_STRING, "/sim/aircraft-dir", false, "", 0 },
1307     {"model-hz",                     true,  OPTION_INT,    "/sim/model-hz", false, "", 0 },
1308     {"speed",                        true,  OPTION_INT,    "/sim/speed-up", false, "", 0 },
1309     {"trim",                         false, OPTION_BOOL,   "/sim/presets/trim", true, "", 0 },
1310     {"notrim",                       false, OPTION_BOOL,   "/sim/presets/trim", false, "", 0 },
1311     {"on-ground",                    false, OPTION_BOOL,   "/sim/presets/onground", true, "", 0 },
1312     {"in-air",                       false, OPTION_BOOL,   "/sim/presets/onground", false, "", 0 },
1313     {"fog-disable",                  false, OPTION_STRING, "/sim/rendering/fog", false, "disabled", 0 },
1314     {"fog-fastest",                  false, OPTION_STRING, "/sim/rendering/fog", false, "fastest", 0 },
1315     {"fog-nicest",                   false, OPTION_STRING, "/sim/rendering/fog", false, "nicest", 0 },
1316     {"disable-horizon-effect",       false, OPTION_BOOL,   "/sim/rendering/horizon-effect", false, "", 0 },
1317     {"enable-horizon-effect",        false, OPTION_BOOL,   "/sim/rendering/horizon-effect", true, "", 0 },
1318     {"disable-enhanced-lighting",    false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", false, "", 0 },
1319     {"enable-enhanced-lighting",     false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", true, "", 0 },
1320     {"disable-distance-attenuation", false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", false, "", 0 },
1321     {"enable-distance-attenuation",  false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", true, "", 0 },
1322     {"disable-specular-highlight",   false, OPTION_BOOL,   "/sim/rendering/specular-highlight", false, "", 0 },
1323     {"enable-specular-highlight",    false, OPTION_BOOL,   "/sim/rendering/specular-highlight", true, "", 0 },
1324     {"disable-clouds",               false, OPTION_BOOL,   "/environment/clouds/status", false, "", 0 },
1325     {"enable-clouds",                false, OPTION_BOOL,   "/environment/clouds/status", true, "", 0 },
1326     {"disable-clouds3d",             false, OPTION_BOOL,   "/sim/rendering/clouds3d-enable", false, "", 0 },
1327     {"enable-clouds3d",              false, OPTION_BOOL,   "/sim/rendering/clouds3d-enable", true, "", 0 },
1328     {"fov",                          true,  OPTION_FUNC,   "", false, "", fgOptFov },
1329     {"aspect-ratio-multiplier",      true,  OPTION_DOUBLE, "/sim/current-view/aspect-ratio-multiplier", false, "", 0 },
1330     {"disable-fullscreen",           false, OPTION_BOOL,   "/sim/startup/fullscreen", false, "", 0 },
1331     {"enable-fullscreen",            false, OPTION_BOOL,   "/sim/startup/fullscreen", true, "", 0 },
1332     {"disable-save-on-exit",         false, OPTION_BOOL,   "/sim/startup/save-on-exit", false, "", 0 },
1333     {"enable-save-on-exit",          false, OPTION_BOOL,   "/sim/startup/save-on-exit", true, "", 0 },
1334     {"shading-flat",                 false, OPTION_BOOL,   "/sim/rendering/shading", false, "", 0 },
1335     {"shading-smooth",               false, OPTION_BOOL,   "/sim/rendering/shading", true, "", 0 },
1336     {"disable-skyblend",             false, OPTION_BOOL,   "/sim/rendering/skyblend", false, "", 0 },
1337     {"enable-skyblend",              false, OPTION_BOOL,   "/sim/rendering/skyblend", true, "", 0 },
1338     {"disable-textures",             false, OPTION_BOOL,   "/sim/rendering/textures", false, "", 0 },
1339     {"enable-textures",              false, OPTION_BOOL,   "/sim/rendering/textures", true, "", 0 },
1340     {"texture-filtering",            false, OPTION_INT,    "/sim/rendering/filtering", 1, "", 0 },
1341     {"disable-wireframe",            false, OPTION_BOOL,   "/sim/rendering/wireframe", false, "", 0 },
1342     {"enable-wireframe",             false, OPTION_BOOL,   "/sim/rendering/wireframe", true, "", 0 },
1343     {"geometry",                     true,  OPTION_FUNC,   "", false, "", fgOptGeometry },
1344     {"bpp",                          true,  OPTION_FUNC,   "", false, "", fgOptBpp },
1345     {"units-feet",                   false, OPTION_STRING, "/sim/startup/units", false, "feet", 0 },
1346     {"units-meters",                 false, OPTION_STRING, "/sim/startup/units", false, "meters", 0 },
1347     {"timeofday",                    true,  OPTION_STRING, "/sim/startup/time-offset-type", false, "noon", 0 },
1348     {"season",                       true,  OPTION_STRING, "/sim/startup/season", false, "summer", 0 },
1349     {"time-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptTimeOffset },
1350     {"time-match-real",              false, OPTION_STRING, "/sim/startup/time-offset-type", false, "system-offset", 0 },
1351     {"time-match-local",             false, OPTION_STRING, "/sim/startup/time-offset-type", false, "latitude-offset", 0 },
1352     {"start-date-sys",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateSys },
1353     {"start-date-lat",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateLat },
1354     {"start-date-gmt",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateGmt },
1355     {"hud-tris",                     false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
1356     {"hud-culled",                   false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
1357     {"atcsim",                       true,  OPTION_CHANNEL, "", false, "dummy", 0 },
1358     {"atlas",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1359     {"httpd",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1360 #ifdef FG_JPEG_SERVER
1361     {"jpg-httpd",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1362 #endif
1363     {"native",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1364     {"native-ctrls",                 true,  OPTION_CHANNEL, "", false, "", 0 },
1365     {"native-fdm",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1366     {"native-gui",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1367     {"opengc",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1368     {"AV400",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1369     {"garmin",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1370     {"nmea",                         true,  OPTION_CHANNEL, "", false, "", 0 },
1371     {"generic",                      true,  OPTION_CHANNEL, "", false, "", 0 },
1372     {"props",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1373     {"telnet",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1374     {"pve",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1375     {"ray",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1376     {"rul",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1377     {"joyclient",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1378     {"jsclient",                     true,  OPTION_CHANNEL, "", false, "", 0 },
1379     {"proxy",                        true,  OPTION_FUNC,    "", false, "", fgSetupProxy },
1380     {"callsign",                     true, OPTION_STRING,  "sim/multiplay/callsign", false, "", 0 },
1381     {"multiplay",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1382     {"trace-read",                   true,  OPTION_FUNC,   "", false, "", fgOptTraceRead },
1383     {"trace-write",                  true,  OPTION_FUNC,   "", false, "", fgOptTraceWrite },
1384     {"log-level",                    true,  OPTION_FUNC,   "", false, "", fgOptLogLevel },
1385     {"view-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptViewOffset },
1386     {"visibility",                   true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMeters },
1387     {"visibility-miles",             true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMiles },
1388     {"random-wind",                  false, OPTION_FUNC,   "", false, "", fgOptRandomWind },
1389     {"wind",                         true,  OPTION_FUNC,   "", false, "", fgOptWind },
1390     {"turbulence",                   true,  OPTION_FUNC,   "", false, "", fgOptTurbulence },
1391     {"ceiling",                      true,  OPTION_FUNC,   "", false, "", fgOptCeiling },
1392     {"wp",                           true,  OPTION_FUNC,   "", false, "", fgOptWp },
1393     {"flight-plan",                  true,  OPTION_FUNC,   "", false, "", fgOptFlightPlan },
1394     {"config",                       true,  OPTION_FUNC,   "", false, "", fgOptConfig },
1395     {"aircraft",                     true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1396     {"vehicle",                      true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1397     {"failure",                      true,  OPTION_FUNC,   "", false, "", fgOptFailure },
1398     {"com1",                         true,  OPTION_DOUBLE, "/instrumentation/comm[0]/frequencies/selected-mhz", false, "", 0 },
1399     {"com2",                         true,  OPTION_DOUBLE, "/instrumentation/comm[1]/frequencies/selected-mhz", false, "", 0 },
1400     {"nav1",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV1 },
1401     {"nav2",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV2 },
1402     {"adf",                          true,  OPTION_FUNC,   "", false, "", fgOptADF },
1403     {"dme",                          true,  OPTION_FUNC,   "", false, "", fgOptDME },
1404     {"min-status",                   true,  OPTION_STRING,  "/sim/aircraft-min-status", false, "all", 0 },
1405     {"livery",                       true,  OPTION_FUNC,   "", false, "", fgOptLivery },
1406     {"ai-scenario",                  true,  OPTION_FUNC,   "", false, "", fgOptScenario },
1407     {"parking-id",                   true,  OPTION_FUNC,   "", false, "", fgOptParking  },
1408     {0}
1409 };
1410
1411
1412 // Set a property for the --prop: option. Syntax: --prop:[<type>:]<name>=<value>
1413 // <type> can be "double" etc. but also only the first letter "d".
1414 // Examples:  --prop:alpha=1  --prop:bool:beta=true  --prop:d:gamma=0.123
1415 static bool
1416 set_property(const string& arg)
1417 {
1418     string::size_type pos = arg.find('=');
1419     if (pos == arg.npos || pos == 0 || pos + 1 == arg.size())
1420         return false;
1421
1422     string name = arg.substr(0, pos);
1423     string value = arg.substr(pos + 1);
1424     string type;
1425     pos = name.find(':');
1426
1427     if (pos != name.npos && pos != 0 && pos + 1 != name.size()) {
1428         type = name.substr(0, pos);
1429         name = name.substr(pos + 1);
1430     }
1431     SGPropertyNode *n = fgGetNode(name.c_str(), true);
1432
1433     if (type.empty())
1434         return n->setUnspecifiedValue(value.c_str());
1435     else if (type == "s" || type == "string")
1436         return n->setStringValue(value.c_str());
1437     else if (type == "d" || type == "double")
1438         return n->setDoubleValue(strtod(value.c_str(), 0));
1439     else if (type == "f" || type == "float")
1440         return n->setFloatValue(atof(value.c_str()));
1441     else if (type == "l" || type == "long")
1442         return n->setLongValue(strtol(value.c_str(), 0, 0));
1443     else if (type == "i" || type == "int")
1444         return n->setIntValue(atoi(value.c_str()));
1445     else if (type == "b" || type == "bool")
1446         return n->setBoolValue(value == "true" || atoi(value.c_str()) != 0);
1447
1448     return false;
1449 }
1450
1451
1452 // Parse a single option
1453 static int
1454 parse_option (const string& arg)
1455 {
1456     if ( fgOptionMap.size() == 0 ) {
1457         size_t i = 0;
1458         OptionDesc *pt = &fgOptionArray[ 0 ];
1459         while ( pt->option != 0 ) {
1460             fgOptionMap[ pt->option ] = i;
1461             i += 1;
1462             pt += 1;
1463         }
1464     }
1465
1466     // General Options
1467     if ( (arg == "--help") || (arg == "-h") ) {
1468         // help/usage request
1469         return(FG_OPTIONS_HELP);
1470     } else if ( (arg == "--verbose") || (arg == "-v") ) {
1471         // verbose help/usage request
1472         return(FG_OPTIONS_VERBOSE_HELP);
1473     } else if ( arg.find( "--show-aircraft") == 0) {
1474         return(FG_OPTIONS_SHOW_AIRCRAFT);
1475     } else if ( arg.find( "--prop:" ) == 0 ) {
1476         if (!set_property(arg.substr(7))) {
1477             SG_LOG( SG_GENERAL, SG_ALERT, "Bad property assignment: " << arg );
1478             return FG_OPTIONS_ERROR;
1479         }
1480     } else if ( arg.find( "--" ) == 0 ) {
1481         size_t pos = arg.find( '=' );
1482         string arg_name;
1483         if ( pos == string::npos ) {
1484             arg_name = arg.substr( 2 );
1485         } else {
1486             arg_name = arg.substr( 2, pos - 2 );
1487         }
1488         map<string,size_t>::iterator it = fgOptionMap.find( arg_name );
1489         if ( it != fgOptionMap.end() ) {
1490             OptionDesc *pt = &fgOptionArray[ it->second ];
1491             switch ( pt->type ) {
1492                 case OPTION_BOOL:
1493                     fgSetBool( pt->property, pt->b_param );
1494                     break;
1495                 case OPTION_STRING:
1496                     if ( pt->has_param && pos != string::npos && pos + 1 < arg.size() ) {
1497                         fgSetString( pt->property, arg.substr( pos + 1 ).c_str() );
1498                     } else if ( !pt->has_param && pos == string::npos ) {
1499                         fgSetString( pt->property, pt->s_param );
1500                     } else if ( pt->has_param ) {
1501                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1502                         return FG_OPTIONS_ERROR;
1503                     } else {
1504                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1505                         return FG_OPTIONS_ERROR;
1506                     }
1507                     break;
1508                 case OPTION_DOUBLE:
1509                     if ( pos != string::npos && pos + 1 < arg.size() ) {
1510                         fgSetDouble( pt->property, atof( arg.substr( pos + 1 ) ) );
1511                     } else {
1512                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1513                         return FG_OPTIONS_ERROR;
1514                     }
1515                     break;
1516                 case OPTION_INT:
1517                     if ( pos != string::npos && pos + 1 < arg.size() ) {
1518                         fgSetInt( pt->property, atoi( arg.substr( pos + 1 ) ) );
1519                     } else {
1520                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1521                         return FG_OPTIONS_ERROR;
1522                     }
1523                     break;
1524                 case OPTION_CHANNEL:
1525                     if ( pt->has_param && pos != string::npos && pos + 1 < arg.size() ) {
1526                         add_channel( pt->option, arg.substr( pos + 1 ) );
1527                     } else if ( !pt->has_param && pos == string::npos ) {
1528                         add_channel( pt->option, pt->s_param );
1529                     } else if ( pt->has_param ) {
1530                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1531                         return FG_OPTIONS_ERROR;
1532                     } else {
1533                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1534                         return FG_OPTIONS_ERROR;
1535                     }
1536                     break;
1537                 case OPTION_FUNC:
1538                     if ( pt->has_param && pos != string::npos && pos + 1 < arg.size() ) {
1539                         return pt->func( arg.substr( pos + 1 ).c_str() );
1540                     } else if ( !pt->has_param && pos == string::npos ) {
1541                         return pt->func( 0 );
1542                     } else if ( pt->has_param ) {
1543                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1544                         return FG_OPTIONS_ERROR;
1545                     } else {
1546                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1547                         return FG_OPTIONS_ERROR;
1548                     }
1549                     break;
1550             }
1551         } else {
1552             SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1553             return FG_OPTIONS_ERROR;
1554         }
1555     } else {
1556         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1557         return FG_OPTIONS_ERROR;
1558     }
1559
1560     return FG_OPTIONS_OK;
1561 }
1562
1563
1564 // Parse the command line options
1565 void
1566 fgParseArgs (int argc, char **argv)
1567 {
1568     bool in_options = true;
1569     bool verbose = false;
1570     bool help = false;
1571
1572     SG_LOG(SG_GENERAL, SG_INFO, "Processing command line arguments");
1573
1574     for (int i = 1; i < argc; i++) {
1575         string arg = argv[i];
1576
1577         if (in_options && (arg.find('-') == 0)) {
1578           if (arg == "--") {
1579             in_options = false;
1580           } else {
1581             int result = parse_option(arg);
1582             if ((result == FG_OPTIONS_HELP) || (result == FG_OPTIONS_ERROR))
1583               help = true;
1584
1585             else if (result == FG_OPTIONS_VERBOSE_HELP)
1586               verbose = true;
1587
1588             else if (result == FG_OPTIONS_SHOW_AIRCRAFT) {
1589                fgOptLogLevel( "alert" );
1590                SGPath path( globals->get_fg_root() );
1591                path.append("Aircraft");
1592                fgShowAircraft(path, true);
1593                exit(0);
1594             }
1595           }
1596         } else {
1597           in_options = false;
1598           SG_LOG(SG_GENERAL, SG_INFO,
1599                  "Reading command-line property file " << arg);
1600           readProperties(arg, globals->get_props());
1601         }
1602     }
1603
1604     if (help) {
1605        fgOptLogLevel( "alert" );
1606        fgUsage(verbose);
1607        exit(0);
1608     }
1609
1610     SG_LOG(SG_GENERAL, SG_INFO, "Finished command line arguments");
1611 }
1612
1613
1614 // Parse config file options
1615 void
1616 fgParseOptions (const string& path) {
1617     sg_gzifstream in( path );
1618     if ( !in.is_open() ) {
1619         return;
1620     }
1621
1622     SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path );
1623
1624     in >> skipcomment;
1625 #ifndef __MWERKS__
1626     while ( ! in.eof() ) {
1627 #else
1628     char c = '\0';
1629     while ( in.get(c) && c != '\0' ) {
1630         in.putback(c);
1631 #endif
1632         string line;
1633
1634 #if defined( macintosh )
1635         getline( in, line, '\r' );
1636 #else
1637         getline( in, line, '\n' );
1638 #endif
1639
1640         // catch extraneous (DOS) line ending character
1641         int i;
1642         for (i = line.length(); i > 0; i--)
1643             if (line[i - 1] > 32)
1644                 break;
1645         line = line.substr( 0, i );
1646
1647         if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
1648             cerr << endl << "Config file parse error: " << path << " '" 
1649                     << line << "'" << endl;
1650             fgUsage();
1651             exit(-1);
1652         }
1653         in >> skipcomment;
1654     }
1655 }
1656
1657
1658 // Print usage message
1659 void 
1660 fgUsage (bool verbose)
1661 {
1662     SGPropertyNode *locale = globals->get_locale();
1663
1664     SGPropertyNode options_root;
1665
1666     SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on Windows
1667     cout << endl;
1668
1669     try {
1670         fgLoadProps("options.xml", &options_root);
1671     } catch (const sg_exception &) {
1672         cout << "Unable to read the help file." << endl;
1673         cout << "Make sure the file options.xml is located in the FlightGear base directory," << endl;
1674         cout << "and the location of the base directory is specified by setting $FG_ROOT or" << endl;
1675         cout << "by adding --fg-root=path as a program argument." << endl;
1676         
1677         exit(-1);
1678     }
1679
1680     SGPropertyNode *options = options_root.getNode("options");
1681     if (!options) {
1682         SG_LOG( SG_GENERAL, SG_ALERT,
1683                 "Error reading options.xml: <options> directive not found." );
1684         exit(-1);
1685     }
1686
1687     SGPropertyNode *usage = locale->getNode(options->getStringValue("usage"));
1688     if (usage) {
1689         cout << "Usage: " << usage->getStringValue() << endl;
1690     }
1691
1692     vector<SGPropertyNode_ptr>section = options->getChildren("section");
1693     for (unsigned int j = 0; j < section.size(); j++) {
1694         string msg = "";
1695
1696         vector<SGPropertyNode_ptr>option = section[j]->getChildren("option");
1697         for (unsigned int k = 0; k < option.size(); k++) {
1698
1699             SGPropertyNode *name = option[k]->getNode("name");
1700             SGPropertyNode *short_name = option[k]->getNode("short");
1701             SGPropertyNode *key = option[k]->getNode("key");
1702             SGPropertyNode *arg = option[k]->getNode("arg");
1703             bool brief = option[k]->getNode("brief") != 0;
1704
1705             if ((brief || verbose) && name) {
1706                 string tmp = name->getStringValue();
1707
1708                 if (key){
1709                     tmp.append(":");
1710                     tmp.append(key->getStringValue());
1711                 }
1712                 if (arg) {
1713                     tmp.append("=");
1714                     tmp.append(arg->getStringValue());
1715                 }
1716                 if (short_name) {
1717                     tmp.append(", -");
1718                     tmp.append(short_name->getStringValue());
1719                 }
1720                                 
1721                 if (tmp.size() <= 25) {
1722                     msg+= "   --";
1723                     msg += tmp;
1724                     msg.append( 27-tmp.size(), ' ');
1725                 } else {
1726                     msg += "\n   --";
1727                     msg += tmp + '\n';
1728                     msg.append(32, ' ');
1729                 }
1730                 // There may be more than one <description> tag assosiated
1731                 // with one option
1732
1733                 vector<SGPropertyNode_ptr> desc;
1734                 desc = option[k]->getChildren("description");
1735                 if (desc.size() > 0) {
1736                    for ( unsigned int l = 0; l < desc.size(); l++) {
1737
1738                       // There may be more than one translation line.
1739
1740                       string t = desc[l]->getStringValue();
1741                       SGPropertyNode *n = locale->getNode("strings");
1742                       vector<SGPropertyNode_ptr>trans_desc =
1743                                n->getChildren(t.substr(8).c_str());
1744
1745                       for ( unsigned int m = 0; m < trans_desc.size(); m++ ) {
1746                          string t_str = trans_desc[m]->getStringValue();
1747
1748                          if ((m > 0) || ((l > 0) && m == 0)) {
1749                             msg.append( 32, ' ');
1750                          }
1751
1752                          // If the string is too large to fit on the screen,
1753                          // then split it up in several pieces.
1754
1755                          while ( t_str.size() > 47 ) {
1756
1757                             unsigned int m = t_str.rfind(' ', 47);
1758                             msg += t_str.substr(0, m) + '\n';
1759                             msg.append( 32, ' ');
1760
1761                             t_str.erase(t_str.begin(), t_str.begin() + m + 1);
1762                         }
1763                         msg += t_str + '\n';
1764                      }
1765                   }
1766                }
1767             }
1768         }
1769
1770         SGPropertyNode *name;
1771         name = locale->getNode(section[j]->getStringValue("name"));
1772
1773         if (!msg.empty() && name) {
1774            cout << endl << name->getStringValue() << ":" << endl;
1775            cout << msg;
1776            msg.erase();
1777         }
1778     }
1779
1780     if ( !verbose ) {
1781         cout << endl;
1782         cout << "For a complete list of options use --help --verbose" << endl;
1783     }
1784 #ifdef _MSC_VER
1785     cout << "Hit a key to continue..." << endl;
1786     cin.get();
1787 #endif
1788 }
1789
1790 // A simple function to return an integer depending on the position
1791 // of the status string within the array in order to determine the hierarchy.
1792 unsigned int getNumMaturity(const char * str) 
1793 {
1794   // changes should also be reflected in $FG_ROOT/data/options.xml & 
1795   // $FG_ROOT/data/Translations/string-default.xml
1796   const char levels[][20]= {"alpha","beta","early-production","production",0}; 
1797
1798   for (unsigned int i=0; i<(sizeof(levels)/sizeof(levels[0])-1);i++) 
1799     if (strcmp(str,levels[i])==0)
1800       return i;
1801
1802   return 0;
1803 };
1804
1805
1806 static void fgSearchAircraft(const SGPath &path, string_list &aircraft,
1807                              bool recursive)
1808 {   
1809    
1810    ulDirEnt* dire;
1811    ulDir *dirp = ulOpenDir(path.str().c_str());
1812    if (dirp == NULL) {
1813       cerr << "Unable to open aircraft directory '" << path.str() << '\'' << endl;
1814       exit(-1);
1815    }
1816
1817    while ((dire = ulReadDir(dirp)) != NULL) {
1818       char *ptr;
1819
1820       if (dire->d_isdir) {
1821           if (recursive && strcmp("CVS", dire->d_name)
1822               && strcmp(".", dire->d_name) && strcmp("..", dire->d_name))
1823           {
1824               SGPath next = path;
1825               next.append(dire->d_name);
1826
1827               fgSearchAircraft(next, aircraft, true);
1828           }
1829       } else if ((ptr = strstr(dire->d_name, "-set.xml")) && (ptr[8] == '\0')) {
1830
1831           SGPath afile = path;
1832           afile.append(dire->d_name);
1833
1834           *ptr = '\0';
1835
1836           SGPropertyNode root;
1837           try {
1838              readProperties(afile.str(), &root);
1839           } catch (...) {
1840              continue;
1841           }
1842
1843           SGPropertyNode *desc = NULL;
1844           SGPropertyNode *status = NULL;
1845           
1846           SGPropertyNode *node = root.getNode("sim");
1847           if (node) {
1848              desc = node->getNode("description");
1849              // if a status tag is found, read it in
1850              if (node->hasValue("status"))
1851                 status = node->getNode("status");
1852           }
1853
1854           //additionally display status information where it is available
1855
1856           string descStr("   ");
1857           descStr += dire->d_name;
1858           if (desc) {
1859               if (descStr.size() <= 27+3) {
1860                 descStr.append(29+3-descStr.size(), ' ');
1861               } else {
1862                 descStr += '\n';
1863                 descStr.append( 32, ' ');
1864               }
1865               descStr += desc->getStringValue();
1866           }
1867   
1868           SGPropertyNode * required_status
1869                              = fgGetNode ("/sim/aircraft-min-status", true);
1870           
1871           // If the node holds the value "all", then there wasn't any status 
1872           // level specified, so we simply go ahead and output ALL aircraft
1873           if (strcmp(required_status->getStringValue(),"all")==0) {        
1874                   aircraft.push_back(descStr);
1875                   }
1876           else
1877           {
1878           // If the node doesn't hold "all" as its value, then we are supposed
1879           // to show only aircraft meeting specific status (development status)
1880           // requirements:
1881  
1882      if (node->hasValue("status"))     {
1883           //Compare (minimally) required status level with actual aircraft status:
1884            if ( getNumMaturity(status->getStringValue() ) >= 
1885                 getNumMaturity(required_status->getStringValue() ) )
1886                                   aircraft.push_back(descStr); }
1887                                                   
1888           }
1889       
1890    
1891    }
1892    }
1893
1894    ulCloseDir(dirp);
1895 }
1896
1897 /*
1898  * Search in the current directory, and in on directory deeper
1899  * for <aircraft>-set.xml configuration files and show the aircaft name
1900  * and the contents of the<description> tag in a sorted manner.
1901  *
1902  * @parampath the directory to search for configuration files
1903  * @param recursive defines whether the directory should be searched recursively
1904  */
1905 void fgShowAircraft(const SGPath &path, bool recursive) {
1906     string_list aircraft;
1907
1908     fgSearchAircraft( path, aircraft, recursive );
1909
1910     sort(aircraft.begin(), aircraft.end());
1911     SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on Windows
1912     cout << "Available aircraft:" << endl;
1913     for ( unsigned int i = 0; i < aircraft.size(); i++ ) {
1914         cout << aircraft[i] << endl;
1915     }
1916 #ifdef _MSC_VER
1917     cout << "Hit a key to continue..." << endl;
1918     cin.get();
1919 #endif
1920 }