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