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