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