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