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