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