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