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