]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.cxx
Nasal: move IOrules check to better place and exit on failure.
[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 #include <simgear/timing/sg_time.hxx>
32 #include <simgear/misc/sg_dir.hxx>
33
34 #include <boost/foreach.hpp>
35
36 #include <math.h>               // rint()
37 #include <stdio.h>
38 #include <stdlib.h>             // atof(), atoi()
39 #include <string.h>             // strcmp()
40 #include <algorithm>
41
42 #include <iostream>
43 #include <string>
44
45 #include <simgear/math/sg_random.h>
46 #include <simgear/props/props_io.hxx>
47 #include <simgear/misc/sgstream.hxx>
48 #include <simgear/misc/sg_path.hxx>
49 #include <simgear/scene/material/mat.hxx>
50 #include <simgear/sound/soundmgr_openal.hxx>
51 #include <simgear/misc/strutils.hxx>
52 #include <Autopilot/route_mgr.hxx>
53 #include <Aircraft/replay.hxx>
54
55 #include <GUI/gui.h>
56 #include <GUI/MessageBox.hxx>
57
58 #include <Main/locale.hxx>
59 #include "globals.hxx"
60 #include "fg_init.hxx"
61 #include "fg_props.hxx"
62 #include "options.hxx"
63 #include "util.hxx"
64 #include "main.hxx"
65 #include "locale.hxx"
66 #include <Viewer/viewer.hxx>
67 #include <Viewer/viewmgr.hxx>
68 #include <Environment/presets.hxx>
69 #include <Network/http/httpd.hxx>
70 #include "AircraftDirVisitorBase.hxx"
71
72 #include <osg/Version>
73
74 #if defined( HAVE_VERSION_H ) && HAVE_VERSION_H
75 #  include <Include/version.h>
76 #  include <simgear/version.h>
77 #else
78 #  include <Include/no_version.h>
79 #endif
80
81 using std::string;
82 using std::sort;
83 using std::cout;
84 using std::cerr;
85 using std::endl;
86 using std::vector;
87 using std::cin;
88
89 using namespace flightgear;
90
91 #define NEW_DEFAULT_MODEL_HZ 120
92
93 static flightgear::Options* shared_instance = NULL;
94
95 static double
96 atof( const string& str )
97 {
98     return ::atof( str.c_str() );
99 }
100
101 static int
102 atoi( const string& str )
103 {
104     return ::atoi( str.c_str() );
105 }
106
107 static int fgSetupProxy( const char *arg );
108
109 /**
110  * Set a few fail-safe default property values.
111  *
112  * These should all be set in $FG_ROOT/preferences.xml, but just
113  * in case, we provide some initial sane values here. This method
114  * should be invoked *before* reading any init files.
115  */
116 void fgSetDefaults ()
117 {
118
119                                 // Position (deliberately out of range)
120     fgSetDouble("/position/longitude-deg", 9999.0);
121     fgSetDouble("/position/latitude-deg", 9999.0);
122     fgSetDouble("/position/altitude-ft", -9999.0);
123
124                                 // Orientation
125     fgSetDouble("/orientation/heading-deg", 9999.0);
126     fgSetDouble("/orientation/roll-deg", 0.0);
127     fgSetDouble("/orientation/pitch-deg", 0.424);
128
129                                 // Velocities
130     fgSetDouble("/velocities/uBody-fps", 0.0);
131     fgSetDouble("/velocities/vBody-fps", 0.0);
132     fgSetDouble("/velocities/wBody-fps", 0.0);
133     fgSetDouble("/velocities/speed-north-fps", 0.0);
134     fgSetDouble("/velocities/speed-east-fps", 0.0);
135     fgSetDouble("/velocities/speed-down-fps", 0.0);
136     fgSetDouble("/velocities/airspeed-kt", 0.0);
137     fgSetDouble("/velocities/mach", 0.0);
138
139                                 // Presets
140     fgSetDouble("/sim/presets/longitude-deg", 9999.0);
141     fgSetDouble("/sim/presets/latitude-deg", 9999.0);
142     fgSetDouble("/sim/presets/altitude-ft", -9999.0);
143
144     fgSetDouble("/sim/presets/heading-deg", 9999.0);
145     fgSetDouble("/sim/presets/roll-deg", 0.0);
146     fgSetDouble("/sim/presets/pitch-deg", 0.424);
147
148     fgSetString("/sim/presets/speed-set", "knots");
149     fgSetDouble("/sim/presets/airspeed-kt", 0.0);
150     fgSetDouble("/sim/presets/mach", 0.0);
151     fgSetDouble("/sim/presets/uBody-fps", 0.0);
152     fgSetDouble("/sim/presets/vBody-fps", 0.0);
153     fgSetDouble("/sim/presets/wBody-fps", 0.0);
154     fgSetDouble("/sim/presets/speed-north-fps", 0.0);
155     fgSetDouble("/sim/presets/speed-east-fps", 0.0);
156     fgSetDouble("/sim/presets/speed-down-fps", 0.0);
157
158     fgSetBool("/sim/presets/onground", true);
159     fgSetBool("/sim/presets/trim", false);
160
161                                 // Miscellaneous
162     fgSetBool("/sim/startup/splash-screen", true);
163     // we want mouse-pointer to have an undefined value if nothing is
164     // specified so we can do the right thing for voodoo-1/2 cards.
165     // fgSetString("/sim/startup/mouse-pointer", "disabled");
166     fgSetBool("/controls/flight/auto-coordination", false);
167     fgSetString("/sim/logging/priority", "alert");
168
169                                 // Features
170     fgSetBool("/sim/hud/color/antialiased", false);
171     fgSetBool("/sim/hud/enable3d[1]", true);
172     fgSetBool("/sim/hud/visibility[1]", false);
173     fgSetBool("/sim/panel/visibility", true);
174     fgSetBool("/sim/sound/enabled", true);
175     fgSetBool("/sim/sound/working", true);
176     fgSetBool("/sim/fgcom/enabled", false);
177
178                                 // Flight Model options
179     fgSetString("/sim/flight-model", "jsb");
180     fgSetString("/sim/aero", "c172");
181     fgSetInt("/sim/model-hz", NEW_DEFAULT_MODEL_HZ);
182     fgSetDouble("/sim/speed-up", 1.0);
183
184                                 // Rendering options
185     fgSetString("/sim/rendering/fog", "nicest");
186     fgSetBool("/environment/clouds/status", true);
187     fgSetBool("/sim/startup/fullscreen", false);
188     fgSetBool("/sim/rendering/shading", true);
189     fgTie( "/sim/rendering/filtering", SGGetTextureFilter, SGSetTextureFilter, false);
190     fgSetInt("/sim/rendering/filtering", 1);
191     fgSetBool("/sim/rendering/wireframe", false);
192     fgSetBool("/sim/rendering/horizon-effect", false);
193     fgSetBool("/sim/rendering/enhanced-lighting", false);
194     fgSetBool("/sim/rendering/distance-attenuation", false);
195     fgSetBool("/sim/rendering/specular-highlight", true);
196     fgSetString("/sim/rendering/materials-file", "materials.xml");
197     fgSetInt("/sim/startup/xsize", 1024);
198     fgSetInt("/sim/startup/ysize", 768);
199     fgSetInt("/sim/rendering/bits-per-pixel", 32);
200     fgSetString("/sim/view-mode", "pilot");
201     fgSetDouble("/sim/current-view/heading-offset-deg", 0);
202
203                                 // HUD options
204     fgSetString("/sim/startup/units", "feet");
205     fgSetString("/sim/hud/frame-stat-type", "tris");
206
207                                 // Time options
208     fgSetInt("/sim/startup/time-offset", 0);
209     fgSetString("/sim/startup/time-offset-type", "system-offset");
210     fgSetLong("/sim/time/cur-time-override", 0);
211
212                                 // Freeze options
213     fgSetBool("/sim/freeze/master", false);
214     fgSetBool("/sim/freeze/position", false);
215     fgSetBool("/sim/freeze/clock", false);
216     fgSetBool("/sim/freeze/fuel", false);
217
218     fgSetString("/sim/multiplay/callsign", "callsign");
219     fgSetString("/sim/multiplay/rxhost", "");
220     fgSetString("/sim/multiplay/txhost", "");
221     fgSetInt("/sim/multiplay/rxport", 0);
222     fgSetInt("/sim/multiplay/txport", 0);
223     
224     SGPropertyNode* v = globals->get_props()->getNode("/sim/version", true);
225     v->setValueReadOnly("flightgear", FLIGHTGEAR_VERSION);
226     v->setValueReadOnly("simgear", SG_STRINGIZE(SIMGEAR_VERSION));
227     v->setValueReadOnly("openscenegraph", osgGetVersion());
228     v->setValueReadOnly("openscenegraph-thread-safe-reference-counting",
229                          osg::Referenced::getThreadSafeReferenceCounting());
230     v->setValueReadOnly("revision", REVISION);
231     v->setValueReadOnly("build-number", HUDSON_BUILD_NUMBER);
232     v->setValueReadOnly("build-id", HUDSON_BUILD_ID);
233     v->setValueReadOnly("hla-support", bool(FG_HAVE_HLA));
234
235     char* envp = ::getenv( "http_proxy" );
236     if( envp != NULL )
237       fgSetupProxy( envp );
238 }
239
240 ///////////////////////////////////////////////////////////////////////////////
241 // helper object to implement the --show-aircraft command.
242 // resides here so we can share the fgFindAircraftInDir template above,
243 // and hence ensure this command lists exectly the same aircraft as the normal
244 // loading path.
245 class ShowAircraft : public AircraftDirVistorBase
246 {
247 public:
248     ShowAircraft()
249     {
250         _minStatus = getNumMaturity(fgGetString("/sim/aircraft-min-status", "all"));
251     }
252     
253     
254     void show(const SGPath& path)
255     {
256         visitDir(path, 0);
257         
258         simgear::requestConsole(); // ensure console is shown on Windows
259         
260         std::sort(_aircraft.begin(), _aircraft.end(), ciLessLibC());
261         cout << "Available aircraft:" << endl;
262         for ( unsigned int i = 0; i < _aircraft.size(); i++ ) {
263             cout << _aircraft[i] << endl;
264         }
265     }
266     
267 private:
268     virtual VisitResult visit(const SGPath& path)
269     {
270         SGPropertyNode root;
271         try {
272             readProperties(path.str(), &root);
273         } catch (sg_exception& ) {
274             return VISIT_CONTINUE;
275         }
276         
277         int maturity = 0;
278         string descStr("   ");
279         descStr += path.file();
280         // trim common suffix from file names
281         int nPos = descStr.rfind("-set.xml");
282         if (nPos == (int)(descStr.size() - 8)) {
283             descStr.resize(nPos);
284         }
285         
286         SGPropertyNode *node = root.getNode("sim");
287         if (node) {
288             SGPropertyNode* desc = node->getNode("description");
289             // if a status tag is found, read it in
290             if (node->hasValue("status")) {
291                 maturity = getNumMaturity(node->getStringValue("status"));
292             }
293             
294             if (desc) {
295                 if (descStr.size() <= 27+3) {
296                     descStr.append(29+3-descStr.size(), ' ');
297                 } else {
298                     descStr += '\n';
299                     descStr.append( 32, ' ');
300                 }
301                 descStr += desc->getStringValue();
302             }
303         } // of have 'sim' node
304         
305         if (maturity >= _minStatus) {
306             _aircraft.push_back(descStr);
307         }
308         
309         return VISIT_CONTINUE;
310     }
311     
312     
313     int getNumMaturity(const char * str)
314     {
315         // changes should also be reflected in $FG_ROOT/data/options.xml &
316         // $FG_ROOT/data/Translations/string-default.xml
317         const char* levels[] = {"alpha","beta","early-production","production"};
318         
319         if (!strcmp(str, "all")) {
320             return 0;
321         }
322         
323         for (size_t i=0; i<(sizeof(levels)/sizeof(levels[0]));i++)
324             if (strcmp(str,levels[i])==0)
325                 return i;
326         
327         return 0;
328     }
329     
330     // recommended in Meyers, Effective STL when internationalization and embedded
331     // NULLs aren't an issue.  Much faster than the STL or Boost lex versions.
332     struct ciLessLibC : public std::binary_function<string, string, bool>
333     {
334         bool operator()(const std::string &lhs, const std::string &rhs) const
335         {
336             return strcasecmp(lhs.c_str(), rhs.c_str()) < 0 ? 1 : 0;
337         }
338     };
339     
340     int _minStatus;
341     string_list _aircraft;
342 };
343
344 /*
345  * Search in the current directory, and in on directory deeper
346  * for <aircraft>-set.xml configuration files and show the aircaft name
347  * and the contents of the<description> tag in a sorted manner.
348  *
349  * @parampath the directory to search for configuration files
350  */
351 void fgShowAircraft(const SGPath &path)
352 {
353     ShowAircraft s;
354     s.show(path);
355     
356 #ifdef _MSC_VER
357     cout << "Hit a key to continue..." << endl;
358     std::cin.get();
359 #endif
360 }
361
362
363 static bool
364 parse_wind (const string &wind, double * min_hdg, double * max_hdg,
365             double * speed, double * gust)
366 {
367   string::size_type pos = wind.find('@');
368   if (pos == string::npos)
369     return false;
370   string dir = wind.substr(0, pos);
371   string spd = wind.substr(pos+1);
372   pos = dir.find(':');
373   if (pos == string::npos) {
374     *min_hdg = *max_hdg = atof(dir.c_str());
375   } else {
376     *min_hdg = atof(dir.substr(0,pos).c_str());
377     *max_hdg = atof(dir.substr(pos+1).c_str());
378   }
379   pos = spd.find(':');
380   if (pos == string::npos) {
381     *speed = *gust = atof(spd.c_str());
382   } else {
383     *speed = atof(spd.substr(0,pos).c_str());
384     *gust = atof(spd.substr(pos+1).c_str());
385   }
386   return true;
387 }
388
389 static bool
390 parseIntValue(char** ppParserPos, int* pValue,int min, int max, const char* field, const char* argument)
391 {
392     if ( !strlen(*ppParserPos) )
393         return true;
394
395     char num[256];
396     int i = 0;
397
398     while ( isdigit((*ppParserPos)[0]) && (i<255) )
399     {
400         num[i] = (*ppParserPos)[0];
401         (*ppParserPos)++;
402         i++;
403     }
404     num[i] = '\0';
405
406     switch ((*ppParserPos)[0])
407     {
408         case 0:
409             break;
410         case ':':
411             (*ppParserPos)++;
412             break;
413         default:
414             SG_LOG(SG_GENERAL, SG_ALERT, "Illegal character in time string for " << field << ": '" <<
415                     (*ppParserPos)[0] << "'.");
416             // invalid field - skip rest of string to avoid further errors
417             while ((*ppParserPos)[0])
418                 (*ppParserPos)++;
419             return false;
420     }
421
422     if (i<=0)
423         return true;
424
425     int value = atoi(num);
426     if ((value < min)||(value > max))
427     {
428         SG_LOG(SG_GENERAL, SG_ALERT, "Invalid " << field << " in '" << argument <<
429                "'. Valid range is " << min << "-" << max << ".");
430         return false;
431     }
432     else
433     {
434         *pValue = value;
435         return true;
436     }
437 }
438
439 // parse a time string ([+/-]%f[:%f[:%f]]) into hours
440 static double
441 parse_time(const string& time_in) {
442     char *time_str, num[256];
443     double hours, minutes, seconds;
444     double result = 0.0;
445     int sign = 1;
446     int i;
447
448     time_str = (char *)time_in.c_str();
449
450     // printf("parse_time(): %s\n", time_str);
451
452     // check for sign
453     if ( strlen(time_str) ) {
454         if ( time_str[0] == '+' ) {
455             sign = 1;
456             time_str++;
457         } else if ( time_str[0] == '-' ) {
458             sign = -1;
459             time_str++;
460         }
461     }
462     // printf("sign = %d\n", sign);
463
464     // get hours
465     if ( strlen(time_str) ) {
466         i = 0;
467         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
468             num[i] = time_str[0];
469             time_str++;
470             i++;
471         }
472         if ( time_str[0] == ':' ) {
473             time_str++;
474         }
475         num[i] = '\0';
476         hours = atof(num);
477         // printf("hours = %.2lf\n", hours);
478
479         result += hours;
480     }
481
482     // get minutes
483     if ( strlen(time_str) ) {
484         i = 0;
485         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
486             num[i] = time_str[0];
487             time_str++;
488             i++;
489         }
490         if ( time_str[0] == ':' ) {
491             time_str++;
492         }
493         num[i] = '\0';
494         minutes = atof(num);
495         // printf("minutes = %.2lf\n", minutes);
496
497         result += minutes / 60.0;
498     }
499
500     // get seconds
501     if ( strlen(time_str) ) {
502         i = 0;
503         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
504             num[i] = time_str[0];
505             time_str++;
506             i++;
507         }
508         num[i] = '\0';
509         seconds = atof(num);
510         // printf("seconds = %.2lf\n", seconds);
511
512         result += seconds / 3600.0;
513     }
514
515     SG_LOG( SG_GENERAL, SG_INFO, " parse_time() = " << sign * result );
516
517     return(sign * result);
518 }
519
520 // parse a date string (yyyy:mm:dd:hh:mm:ss) into a time_t (seconds)
521 static long int
522 parse_date( const string& date, const char* timeType)
523 {
524     struct tm gmt,*pCurrentTime;
525     int year,month,day,hour,minute,second;
526     char *argument, *date_str;
527
528     SGTime CurrentTime;
529     CurrentTime.update(SGGeod(),0,0);
530
531     // FIXME This should obtain system/aircraft/GMT time depending on timeType
532     pCurrentTime = CurrentTime.getGmt();
533
534     // initialize all fields with current time
535     year   = pCurrentTime->tm_year + 1900;
536     month  = pCurrentTime->tm_mon + 1;
537     day    = pCurrentTime->tm_mday;
538     hour   = pCurrentTime->tm_hour;
539     minute = pCurrentTime->tm_min;
540     second = pCurrentTime->tm_sec;
541
542     argument = (char *)date.c_str();
543     date_str = argument;
544
545     // start with parsing year
546     if (!strlen(date_str) ||
547         !parseIntValue(&date_str,&year,0,9999,"year",argument))
548     {
549         return -1;
550     }
551
552     if (year < 1970)
553     {
554         SG_LOG(SG_GENERAL, SG_ALERT, "Invalid year '" << year << "'. Use 1970 or later.");
555         return -1;
556     }
557
558     parseIntValue(&date_str, &month,  1, 12, "month",  argument);
559     parseIntValue(&date_str, &day,    1, 31, "day",    argument);
560     parseIntValue(&date_str, &hour,   0, 23, "hour",   argument);
561     parseIntValue(&date_str, &minute, 0, 59, "minute", argument);
562     parseIntValue(&date_str, &second, 0, 59, "second", argument);
563
564     gmt.tm_sec  = second;
565     gmt.tm_min  = minute;
566     gmt.tm_hour = hour;
567     gmt.tm_mday = day;
568     gmt.tm_mon  = month - 1;
569     gmt.tm_year = year -1900;
570     gmt.tm_isdst = 0; // ignore daylight savings time for the moment
571
572     time_t theTime = sgTimeGetGMT( gmt.tm_year, gmt.tm_mon, gmt.tm_mday,
573                                    gmt.tm_hour, gmt.tm_min, gmt.tm_sec );
574
575     SG_LOG(SG_GENERAL, SG_INFO, "Configuring startup time to " << ctime(&theTime));
576
577     return (theTime);
578 }
579
580
581 // parse angle in the form of [+/-]ddd:mm:ss into degrees
582 static double
583 parse_degree( const string& degree_str) {
584     double result = parse_time( degree_str );
585
586     // printf("Degree = %.4f\n", result);
587
588     return(result);
589 }
590
591
592 // parse time offset string into seconds
593 static long int
594 parse_time_offset( const string& time_str) {
595    long int result;
596
597     // printf("time offset = %s\n", time_str);
598
599 #ifdef HAVE_RINT
600     result = (int)rint(parse_time(time_str) * 3600.0);
601 #else
602     result = (int)(parse_time(time_str) * 3600.0);
603 #endif
604
605     // printf("parse_time_offset(): %d\n", result);
606
607     return( result );
608 }
609
610
611 // Parse --fov=x.xx type option
612 static double
613 parse_fov( const string& arg ) {
614     double fov = atof(arg);
615
616     if ( fov < FG_FOV_MIN ) { fov = FG_FOV_MIN; }
617     if ( fov > FG_FOV_MAX ) { fov = FG_FOV_MAX; }
618
619     fgSetDouble("/sim/view[0]/config/default-field-of-view-deg", fov);
620
621     // printf("parse_fov(): result = %.4f\n", fov);
622
623     return fov;
624 }
625
626
627 // Parse I/O channel option
628 //
629 // Format is "--protocol=medium,direction,hz,medium_options,..."
630 //
631 //   protocol = { native, nmea, garmin, AV400, AV400Sim, fgfs, rul, pve, etc. }
632 //   medium = { serial, socket, file, etc. }
633 //   direction = { in, out, bi }
634 //   hz = number of times to process channel per second (floating
635 //        point values are ok.
636 //
637 // Serial example "--nmea=serial,dir,hz,device,baud" where
638 //
639 //  device = OS device name of serial line to be open()'ed
640 //  baud = {300, 1200, 2400, ..., 230400}
641 //
642 // Socket exacmple "--native=socket,dir,hz,machine,port,style" where
643 //
644 //  machine = machine name or ip address if client (leave empty if server)
645 //  port = port, leave empty to let system choose
646 //  style = tcp or udp
647 //
648 // File example "--garmin=file,dir,hz,filename" where
649 //
650 //  filename = file system file name
651
652 static bool
653 add_channel( const string& type, const string& channel_str ) {
654     // This check is neccessary to prevent fgviewer from segfaulting when given
655     // weird options. (It doesn't run the full initailization)
656     if(!globals->get_channel_options_list())
657     {
658         SG_LOG(SG_GENERAL, SG_ALERT, "Option " << type << "=" << channel_str
659                                      << " ignored.");
660         return false;
661     }
662     SG_LOG(SG_GENERAL, SG_INFO, "Channel string = " << channel_str );
663     globals->get_channel_options_list()->push_back( type + "," + channel_str );
664     return true;
665 }
666
667 static void
668 clearLocation ()
669 {
670     fgSetString("/sim/presets/airport-id", "");
671     fgSetString("/sim/presets/vor-id", "");
672     fgSetString("/sim/presets/ndb-id", "");
673     fgSetString("/sim/presets/carrier", "");
674     fgSetString("/sim/presets/parkpos", "");
675     fgSetString("/sim/presets/fix", "");
676 }
677
678 static int
679 fgOptVOR( const char * arg )
680 {
681     clearLocation();
682     fgSetString("/sim/presets/vor-id", arg);
683     return FG_OPTIONS_OK;
684 }
685
686 static int
687 fgOptNDB( const char * arg )
688 {
689     clearLocation();
690     fgSetString("/sim/presets/ndb-id", arg);
691     return FG_OPTIONS_OK;
692 }
693
694 static int
695 fgOptCarrier( const char * arg )
696 {
697     clearLocation();
698     fgSetString("/sim/presets/carrier", arg);
699     return FG_OPTIONS_OK;
700 }
701
702 static int
703 fgOptParkpos( const char * arg )
704 {
705     fgSetString("/sim/presets/parkpos", arg);
706     return FG_OPTIONS_OK;
707 }
708
709 static int
710 fgOptFIX( const char * arg )
711 {
712     clearLocation();
713     fgSetString("/sim/presets/fix", arg);
714     return FG_OPTIONS_OK;
715 }
716
717 static int
718 fgOptLon( const char *arg )
719 {
720     clearLocation();
721     fgSetDouble("/sim/presets/longitude-deg", parse_degree( arg ));
722     fgSetDouble("/position/longitude-deg", parse_degree( arg ));
723     return FG_OPTIONS_OK;
724 }
725
726 static int
727 fgOptLat( const char *arg )
728 {
729     clearLocation();
730     fgSetDouble("/sim/presets/latitude-deg", parse_degree( arg ));
731     fgSetDouble("/position/latitude-deg", parse_degree( arg ));
732     return FG_OPTIONS_OK;
733 }
734
735 static int
736 fgOptAltitude( const char *arg )
737 {
738     fgSetBool("/sim/presets/onground", false);
739     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
740         fgSetDouble("/sim/presets/altitude-ft", atof( arg ));
741     else
742         fgSetDouble("/sim/presets/altitude-ft",
743                     atof( arg ) * SG_METER_TO_FEET);
744     return FG_OPTIONS_OK;
745 }
746
747 static int
748 fgOptUBody( const char *arg )
749 {
750     fgSetString("/sim/presets/speed-set", "UVW");
751     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
752         fgSetDouble("/sim/presets/uBody-fps", atof( arg ));
753     else
754         fgSetDouble("/sim/presets/uBody-fps",
755                     atof( arg ) * SG_METER_TO_FEET);
756     return FG_OPTIONS_OK;
757 }
758
759 static int
760 fgOptVBody( const char *arg )
761 {
762     fgSetString("/sim/presets/speed-set", "UVW");
763     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
764         fgSetDouble("/sim/presets/vBody-fps", atof( arg ));
765     else
766         fgSetDouble("/sim/presets/vBody-fps",
767                             atof( arg ) * SG_METER_TO_FEET);
768     return FG_OPTIONS_OK;
769 }
770
771 static int
772 fgOptWBody( const char *arg )
773 {
774     fgSetString("/sim/presets/speed-set", "UVW");
775     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
776         fgSetDouble("/sim/presets/wBody-fps", atof(arg));
777     else
778         fgSetDouble("/sim/presets/wBody-fps",
779                             atof(arg) * SG_METER_TO_FEET);
780     return FG_OPTIONS_OK;
781 }
782
783 static int
784 fgOptVNorth( const char *arg )
785 {
786     fgSetString("/sim/presets/speed-set", "NED");
787     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
788         fgSetDouble("/sim/presets/speed-north-fps", atof( arg ));
789     else
790         fgSetDouble("/sim/presets/speed-north-fps",
791                             atof( arg ) * SG_METER_TO_FEET);
792     return FG_OPTIONS_OK;
793 }
794
795 static int
796 fgOptVEast( const char *arg )
797 {
798     fgSetString("/sim/presets/speed-set", "NED");
799     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
800         fgSetDouble("/sim/presets/speed-east-fps", atof(arg));
801     else
802         fgSetDouble("/sim/presets/speed-east-fps",
803                     atof(arg) * SG_METER_TO_FEET);
804     return FG_OPTIONS_OK;
805 }
806
807 static int
808 fgOptVDown( const char *arg )
809 {
810     fgSetString("/sim/presets/speed-set", "NED");
811     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
812         fgSetDouble("/sim/presets/speed-down-fps", atof(arg));
813     else
814         fgSetDouble("/sim/presets/speed-down-fps",
815                             atof(arg) * SG_METER_TO_FEET);
816     return FG_OPTIONS_OK;
817 }
818
819 static int
820 fgOptVc( const char *arg )
821 {
822     // fgSetString("/sim/presets/speed-set", "knots");
823     // fgSetDouble("/velocities/airspeed-kt", atof(arg.substr(5)));
824     fgSetString("/sim/presets/speed-set", "knots");
825     fgSetDouble("/sim/presets/airspeed-kt", atof(arg));
826     return FG_OPTIONS_OK;
827 }
828
829 static int
830 fgOptMach( const char *arg )
831 {
832     fgSetString("/sim/presets/speed-set", "mach");
833     fgSetDouble("/sim/presets/mach", atof(arg));
834     return FG_OPTIONS_OK;
835 }
836
837 static int
838 fgOptRoc( const char *arg )
839 {
840     fgSetDouble("/sim/presets/vertical-speed-fps", atof(arg)/60);
841     return FG_OPTIONS_OK;
842 }
843
844 static int
845 fgOptFgScenery( const char *arg )
846 {
847     globals->append_fg_scenery(arg);
848     return FG_OPTIONS_OK;
849 }
850
851 static int
852 fgOptFov( const char *arg )
853 {
854     parse_fov( arg );
855     return FG_OPTIONS_OK;
856 }
857
858 static int
859 fgOptGeometry( const char *arg )
860 {
861     bool geometry_ok = true;
862     int xsize = 0, ysize = 0;
863     string geometry = arg;
864     string::size_type i = geometry.find('x');
865
866     if (i != string::npos) {
867         xsize = atoi(geometry.substr(0, i));
868         ysize = atoi(geometry.substr(i+1));
869     } else {
870         geometry_ok = false;
871     }
872
873     if ( xsize <= 0 || ysize <= 0 ) {
874         xsize = 640;
875         ysize = 480;
876         geometry_ok = false;
877     }
878
879     if ( !geometry_ok ) {
880         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown geometry: " << geometry );
881         SG_LOG( SG_GENERAL, SG_ALERT,
882                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
883     } else {
884         SG_LOG( SG_GENERAL, SG_INFO,
885                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
886         fgSetInt("/sim/startup/xsize", xsize);
887         fgSetInt("/sim/startup/ysize", ysize);
888     }
889     return FG_OPTIONS_OK;
890 }
891
892 static int
893 fgOptBpp( const char *arg )
894 {
895     string bits_per_pix = arg;
896     if ( bits_per_pix == "16" ) {
897         fgSetInt("/sim/rendering/bits-per-pixel", 16);
898     } else if ( bits_per_pix == "24" ) {
899         fgSetInt("/sim/rendering/bits-per-pixel", 24);
900     } else if ( bits_per_pix == "32" ) {
901         fgSetInt("/sim/rendering/bits-per-pixel", 32);
902     } else {
903         SG_LOG(SG_GENERAL, SG_ALERT, "Unsupported bpp " << bits_per_pix);
904     }
905     return FG_OPTIONS_OK;
906 }
907
908 static int
909 fgOptTimeOffset( const char *arg )
910 {
911     fgSetLong("/sim/startup/time-offset",
912                 parse_time_offset( arg ));
913     fgSetString("/sim/startup/time-offset-type", "system-offset");
914     return FG_OPTIONS_OK;
915 }
916
917 static int
918 fgOptStartDateSys( const char *arg )
919 {
920     long int theTime = parse_date( arg, "system" );
921     if (theTime>=0)
922     {
923         fgSetLong("/sim/startup/time-offset",  theTime);
924         fgSetString("/sim/startup/time-offset-type", "system");
925     }
926     return FG_OPTIONS_OK;
927 }
928
929 static int
930 fgOptStartDateLat( const char *arg )
931 {
932     long int theTime = parse_date( arg, "latitude" );
933     if (theTime>=0)
934     {
935         fgSetLong("/sim/startup/time-offset", theTime);
936         fgSetString("/sim/startup/time-offset-type", "latitude");
937     }
938     return FG_OPTIONS_OK;
939 }
940
941 static int
942 fgOptStartDateGmt( const char *arg )
943 {
944     long int theTime = parse_date( arg, "gmt" );
945     if (theTime>=0)
946     {
947         fgSetLong("/sim/startup/time-offset", theTime);
948         fgSetString("/sim/startup/time-offset-type", "gmt");
949     }
950     return FG_OPTIONS_OK;
951 }
952
953 static int
954 fgOptHttpd( const char * arg )
955 {
956     // port may be any valid address:port notation
957     // like 127.0.0.1:8080
958     // or just the port 8080
959     string port = simgear::strutils::strip(string(arg));
960     if( port.empty() ) return FG_OPTIONS_ERROR;
961     fgSetString( string(flightgear::http::PROPERTY_ROOT).append("/options/listening-port").c_str(), port );
962     return FG_OPTIONS_OK;
963 }
964
965 static int
966 fgSetupProxy( const char *arg )
967 {
968     string options = simgear::strutils::strip( arg );
969     string host, port, auth;
970     string::size_type pos;
971
972     // this is NURLP - NURLP is not an url parser
973     if( simgear::strutils::starts_with( options, "http://" ) )
974         options = options.substr( 7 );
975     if( simgear::strutils::ends_with( options, "/" ) )
976         options = options.substr( 0, options.length() - 1 );
977
978     host = port = auth = "";
979     if ((pos = options.find("@")) != string::npos)
980         auth = options.substr(0, pos++);
981     else
982         pos = 0;
983
984     host = options.substr(pos, options.size());
985     if ((pos = host.find(":")) != string::npos) {
986         port = host.substr(++pos, host.size());
987         host.erase(--pos, host.size());
988     }
989
990     fgSetString("/sim/presets/proxy/host", host.c_str());
991     fgSetString("/sim/presets/proxy/port", port.c_str());
992     fgSetString("/sim/presets/proxy/authentication", auth.c_str());
993
994     return FG_OPTIONS_OK;
995 }
996
997 static int
998 fgOptTraceRead( const char *arg )
999 {
1000     string name = arg;
1001     SG_LOG(SG_GENERAL, SG_INFO, "Tracing reads for property " << name);
1002     fgGetNode(name.c_str(), true)
1003         ->setAttribute(SGPropertyNode::TRACE_READ, true);
1004     return FG_OPTIONS_OK;
1005 }
1006
1007 static int
1008 fgOptLogLevel( const char *arg )
1009 {
1010     fgSetString("/sim/logging/priority", arg);
1011     setLoggingPriority(arg);
1012
1013     return FG_OPTIONS_OK;
1014 }
1015
1016 static int
1017 fgOptLogClasses( const char *arg )
1018 {
1019     fgSetString("/sim/logging/classes", arg);
1020     setLoggingClasses (arg);
1021
1022     return FG_OPTIONS_OK;
1023 }
1024
1025 static int
1026 fgOptTraceWrite( const char *arg )
1027 {
1028     string name = arg;
1029     SG_LOG(SG_GENERAL, SG_INFO, "Tracing writes for property " << name);
1030     fgGetNode(name.c_str(), true)
1031         ->setAttribute(SGPropertyNode::TRACE_WRITE, true);
1032     return FG_OPTIONS_OK;
1033 }
1034
1035 static int
1036 fgOptViewOffset( const char *arg )
1037 {
1038     // $$$ begin - added VS Renganathan, 14 Oct 2K
1039     // for multi-window outside window imagery
1040     string woffset = arg;
1041     double default_view_offset = 0.0;
1042     if ( woffset == "LEFT" ) {
1043             default_view_offset = SGD_PI * 0.25;
1044     } else if ( woffset == "RIGHT" ) {
1045         default_view_offset = SGD_PI * 1.75;
1046     } else if ( woffset == "CENTER" ) {
1047         default_view_offset = 0.00;
1048     } else {
1049         default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
1050     }
1051     /* apparently not used (CLO, 11 Jun 2002)
1052         FGViewer *pilot_view =
1053             (FGViewer *)globals->get_viewmgr()->get_view( 0 ); */
1054     // this will work without calls to the viewer...
1055     fgSetDouble( "/sim/current-view/heading-offset-deg",
1056                     default_view_offset  * SGD_RADIANS_TO_DEGREES );
1057     // $$$ end - added VS Renganathan, 14 Oct 2K
1058     return FG_OPTIONS_OK;
1059 }
1060
1061 static int
1062 fgOptVisibilityMeters( const char *arg )
1063 {
1064     Environment::Presets::VisibilitySingleton::instance()->preset( atof( arg ) );
1065     return FG_OPTIONS_OK;
1066 }
1067
1068 static int
1069 fgOptVisibilityMiles( const char *arg )
1070 {
1071     Environment::Presets::VisibilitySingleton::instance()->preset( atof( arg ) * 5280.0 * SG_FEET_TO_METER );
1072     return FG_OPTIONS_OK;
1073 }
1074
1075 static int
1076 fgOptRandomWind( const char *arg )
1077 {
1078     double min_hdg = sg_random() * 360.0;
1079     double max_hdg = min_hdg + (20 - sqrt(sg_random() * 400));
1080     double speed = sg_random() * sg_random() * 40;
1081     double gust = speed + (10 - sqrt(sg_random() * 100));
1082     Environment::Presets::WindSingleton::instance()->preset(min_hdg, max_hdg, speed, gust);
1083     return FG_OPTIONS_OK;
1084 }
1085
1086 static int
1087 fgOptWind( const char *arg )
1088 {
1089     double min_hdg = 0.0, max_hdg = 0.0, speed = 0.0, gust = 0.0;
1090     if (!parse_wind( arg, &min_hdg, &max_hdg, &speed, &gust)) {
1091         SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << arg );
1092         return FG_OPTIONS_ERROR;
1093     }
1094     Environment::Presets::WindSingleton::instance()->preset(min_hdg, max_hdg, speed, gust);
1095     return FG_OPTIONS_OK;
1096 }
1097
1098 static int
1099 fgOptTurbulence( const char *arg )
1100 {
1101     Environment::Presets::TurbulenceSingleton::instance()->preset( atof(arg) );
1102     return FG_OPTIONS_OK;
1103 }
1104
1105 static int
1106 fgOptCeiling( const char *arg )
1107 {
1108     double elevation, thickness;
1109     string spec = arg;
1110     string::size_type pos = spec.find(':');
1111     if (pos == string::npos) {
1112         elevation = atof(spec.c_str());
1113         thickness = 2000;
1114     } else {
1115         elevation = atof(spec.substr(0, pos).c_str());
1116         thickness = atof(spec.substr(pos + 1).c_str());
1117     }
1118     Environment::Presets::CeilingSingleton::instance()->preset( elevation, thickness );
1119     return FG_OPTIONS_OK;
1120 }
1121
1122 static int
1123 fgOptWp( const char *arg )
1124 {
1125     string_list *waypoints = globals->get_initial_waypoints();
1126     if (!waypoints) {
1127         waypoints = new string_list;
1128         globals->set_initial_waypoints(waypoints);
1129     }
1130     waypoints->push_back(arg);
1131     return FG_OPTIONS_OK;
1132 }
1133
1134 static int
1135 fgOptConfig( const char *arg )
1136 {
1137     string file = arg;
1138     try {
1139         readProperties(file, globals->get_props());
1140     } catch (const sg_exception &e) {
1141         string message = "Error loading config file: ";
1142         message += e.getFormattedMessage() + e.getOrigin();
1143         SG_LOG(SG_INPUT, SG_ALERT, message);
1144         return FG_OPTIONS_ERROR;
1145     }
1146     return FG_OPTIONS_OK;
1147 }
1148
1149 static bool
1150 parse_colon (const string &s, double * val1, double * val2)
1151 {
1152     string::size_type pos = s.find(':');
1153     if (pos == string::npos) {
1154         *val2 = atof(s);
1155         return false;
1156     } else {
1157         *val1 = atof(s.substr(0, pos).c_str());
1158         *val2 = atof(s.substr(pos+1).c_str());
1159         return true;
1160     }
1161 }
1162
1163
1164 static int
1165 fgOptFailure( const char * arg )
1166 {
1167     string a = arg;
1168     if (a == "pitot") {
1169         fgSetBool("/systems/pitot/serviceable", false);
1170     } else if (a == "static") {
1171         fgSetBool("/systems/static/serviceable", false);
1172     } else if (a == "vacuum") {
1173         fgSetBool("/systems/vacuum/serviceable", false);
1174     } else if (a == "electrical") {
1175         fgSetBool("/systems/electrical/serviceable", false);
1176     } else {
1177         SG_LOG(SG_INPUT, SG_ALERT, "Unknown failure mode: " << a);
1178         return FG_OPTIONS_ERROR;
1179     }
1180
1181     return FG_OPTIONS_OK;
1182 }
1183
1184
1185 static int
1186 fgOptNAV1( const char * arg )
1187 {
1188     double radial, freq;
1189     if (parse_colon(arg, &radial, &freq))
1190         fgSetDouble("/instrumentation/nav[0]/radials/selected-deg", radial);
1191     fgSetDouble("/instrumentation/nav[0]/frequencies/selected-mhz", freq);
1192     return FG_OPTIONS_OK;
1193 }
1194
1195 static int
1196 fgOptNAV2( const char * arg )
1197 {
1198     double radial, freq;
1199     if (parse_colon(arg, &radial, &freq))
1200         fgSetDouble("/instrumentation/nav[1]/radials/selected-deg", radial);
1201     fgSetDouble("/instrumentation/nav[1]/frequencies/selected-mhz", freq);
1202     return FG_OPTIONS_OK;
1203 }
1204
1205 static int
1206 fgOptADF1( const char * arg )
1207 {
1208     double rot, freq;
1209     if (parse_colon(arg, &rot, &freq))
1210         fgSetDouble("/instrumentation/adf[0]/rotation-deg", rot);
1211     fgSetDouble("/instrumentation/adf[0]/frequencies/selected-khz", freq);
1212     return FG_OPTIONS_OK;
1213 }
1214
1215 static int
1216 fgOptADF2( const char * arg )
1217 {
1218     double rot, freq;
1219     if (parse_colon(arg, &rot, &freq))
1220         fgSetDouble("/instrumentation/adf[1]/rotation-deg", rot);
1221     fgSetDouble("/instrumentation/adf[1]/frequencies/selected-khz", freq);
1222     return FG_OPTIONS_OK;
1223 }
1224
1225 static int
1226 fgOptDME( const char *arg )
1227 {
1228     string opt = arg;
1229     if (opt == "nav1") {
1230         fgSetInt("/instrumentation/dme/switch-position", 1);
1231         fgSetString("/instrumentation/dme/frequencies/source",
1232                     "/instrumentation/nav[0]/frequencies/selected-mhz");
1233     } else if (opt == "nav2") {
1234         fgSetInt("/instrumentation/dme/switch-position", 3);
1235         fgSetString("/instrumentation/dme/frequencies/source",
1236                     "/instrumentation/nav[1]/frequencies/selected-mhz");
1237     } else {
1238         double frequency = atof(arg);
1239         if (frequency==0.0)
1240         {
1241             SG_LOG(SG_INPUT, SG_ALERT, "Invalid DME frequency: '" << arg << "'.");
1242             return FG_OPTIONS_ERROR;
1243         }
1244         fgSetInt("/instrumentation/dme/switch-position", 2);
1245         fgSetString("/instrumentation/dme/frequencies/source",
1246                     "/instrumentation/dme/frequencies/selected-mhz");
1247         fgSetDouble("/instrumentation/dme/frequencies/selected-mhz", frequency);
1248     }
1249     return FG_OPTIONS_OK;
1250 }
1251
1252 static int
1253 fgOptLivery( const char *arg )
1254 {
1255     string opt = arg;
1256     string livery_path = "livery/" + opt;
1257     fgSetString("/sim/model/texture-path", livery_path.c_str() );
1258     return FG_OPTIONS_OK;
1259 }
1260
1261 static int
1262 fgOptScenario( const char *arg )
1263 {
1264     SGPropertyNode_ptr ai_node = fgGetNode( "/sim/ai", true );
1265     vector<SGPropertyNode_ptr> scenarii = ai_node->getChildren( "scenario" );
1266     int index = -1;
1267     for ( size_t i = 0; i < scenarii.size(); ++i ) {
1268         int ind = scenarii[i]->getIndex();
1269         if ( index < ind ) {
1270             index = ind;
1271         }
1272     }
1273     SGPropertyNode_ptr scenario = ai_node->getNode( "scenario", index + 1, true );
1274     scenario->setStringValue( arg );
1275     return FG_OPTIONS_OK;
1276 }
1277
1278 static int
1279 fgOptRunway( const char *arg )
1280 {
1281     fgSetString("/sim/presets/runway", arg );
1282     fgSetBool("/sim/presets/runway-requested", true );
1283     return FG_OPTIONS_OK;
1284 }
1285
1286 static int
1287 fgOptParking( const char *arg )
1288 {
1289     cerr << "Processing argument " << arg << endl;
1290     fgSetString("/sim/presets/parking", arg );
1291     fgSetBool  ("/sim/presets/parking-requested", true );
1292     return FG_OPTIONS_OK;
1293 }
1294
1295 static int
1296 fgOptVersion( const char *arg )
1297 {
1298     cerr << "FlightGear version: " << FLIGHTGEAR_VERSION << endl;
1299     cerr << "Revision: " << REVISION << endl;
1300     cerr << "Build-Id: " << HUDSON_BUILD_ID << endl;
1301     cerr << "FG_ROOT=" << globals->get_fg_root() << endl;
1302     cerr << "FG_HOME=" << globals->get_fg_home() << endl;
1303     cerr << "FG_SCENERY=";
1304
1305     int didsome = 0;
1306     string_list scn = globals->get_fg_scenery();
1307     for (string_list::const_iterator it = scn.begin(); it != scn.end(); it++)
1308     {
1309         if (didsome) cerr << ":";
1310         didsome++;
1311         cerr << *it;
1312     }
1313     cerr << endl;
1314     cerr << "SimGear version: " << SG_STRINGIZE(SIMGEAR_VERSION) << endl;
1315     cerr << "PLIB version: " << PLIB_VERSION << endl;
1316     return FG_OPTIONS_EXIT;
1317 }
1318
1319 static int
1320 fgOptCallSign(const char * arg)
1321 {
1322     int i;
1323     char callsign[11];
1324     strncpy(callsign,arg,10);
1325     callsign[10]=0;
1326     for (i=0;callsign[i];i++)
1327     {
1328         char c = callsign[i];
1329         if (c >= 'A' && c <= 'Z') continue;
1330         if (c >= 'a' && c <= 'z') continue;
1331         if (c >= '0' && c <= '9') continue;
1332         if (c == '-' || c == '_') continue;
1333         // convert any other illegal characters
1334         callsign[i]='-';
1335     }
1336     fgSetString("sim/multiplay/callsign", callsign );
1337     return FG_OPTIONS_OK;
1338 }
1339
1340 static int
1341 fgOptIgnoreAutosave(const char* arg)
1342 {
1343     fgSetBool("/sim/startup/ignore-autosave", true);
1344     // don't overwrite autosave on exit
1345     fgSetBool("/sim/startup/save-on-exit", false);
1346     return FG_OPTIONS_OK;
1347 }
1348
1349 // Set a property for the --prop: option. Syntax: --prop:[<type>:]<name>=<value>
1350 // <type> can be "double" etc. but also only the first letter "d".
1351 // Examples:  --prop:alpha=1  --prop:bool:beta=true  --prop:d:gamma=0.123
1352 static int
1353 fgOptSetProperty(const char* raw)
1354 {
1355   string arg(raw);
1356   string::size_type pos = arg.find('=');
1357   if (pos == arg.npos || pos == 0 || pos + 1 == arg.size())
1358     return FG_OPTIONS_ERROR;
1359   
1360   string name = arg.substr(0, pos);
1361   string value = arg.substr(pos + 1);
1362   string type;
1363   pos = name.find(':');
1364   
1365   if (pos != name.npos && pos != 0 && pos + 1 != name.size()) {
1366     type = name.substr(0, pos);
1367     name = name.substr(pos + 1);
1368   }
1369   SGPropertyNode *n = fgGetNode(name.c_str(), true);
1370   
1371   bool writable = n->getAttribute(SGPropertyNode::WRITE);
1372   if (!writable)
1373     n->setAttribute(SGPropertyNode::WRITE, true);
1374   
1375   bool ret = false;
1376   if (type.empty())
1377     ret = n->setUnspecifiedValue(value.c_str());
1378   else if (type == "s" || type == "string")
1379     ret = n->setStringValue(value.c_str());
1380   else if (type == "d" || type == "double")
1381     ret = n->setDoubleValue(strtod(value.c_str(), 0));
1382   else if (type == "f" || type == "float")
1383     ret = n->setFloatValue(atof(value.c_str()));
1384   else if (type == "l" || type == "long")
1385     ret =  n->setLongValue(strtol(value.c_str(), 0, 0));
1386   else if (type == "i" || type == "int")
1387     ret =  n->setIntValue(atoi(value.c_str()));
1388   else if (type == "b" || type == "bool")
1389     ret =  n->setBoolValue(value == "true" || atoi(value.c_str()) != 0);
1390   
1391   if (!writable)
1392     n->setAttribute(SGPropertyNode::WRITE, false);
1393   return ret ? FG_OPTIONS_OK : FG_OPTIONS_ERROR;
1394 }
1395
1396 static int
1397 fgOptLoadTape(const char* arg)
1398 {
1399   // load a flight recorder tape but wait until the fdm is initialized
1400   class DelayedTapeLoader : SGPropertyChangeListener {
1401   public:
1402     DelayedTapeLoader( const char * tape ) :
1403       _tape(tape)
1404     {
1405       SGPropertyNode_ptr n = fgGetNode("/sim/signals/fdm-initialized", true);
1406       n->addChangeListener( this );
1407     }
1408
1409     virtual ~ DelayedTapeLoader() {}
1410
1411     virtual void valueChanged(SGPropertyNode * node) 
1412     {
1413       node->removeChangeListener( this );
1414
1415       // tell the replay subsystem to load the tape
1416       FGReplay* replay = (FGReplay*) globals->get_subsystem("replay");
1417       SGPropertyNode_ptr arg = new SGPropertyNode();
1418       arg->setStringValue("tape", _tape );
1419       arg->setBoolValue( "same-aircraft", 0 );
1420       replay->loadTape(arg);
1421
1422       delete this; // commence suicide
1423     }
1424   private:
1425     std::string _tape;
1426
1427   };
1428
1429   new DelayedTapeLoader(arg);
1430   return FG_OPTIONS_OK;
1431 }
1432
1433
1434
1435 /*
1436    option       has_param type        property         b_param s_param  func
1437
1438 where:
1439  option    : name of the option
1440  has_param : option is --name=value if true or --name if false
1441  type      : OPTION_BOOL    - property is a boolean
1442              OPTION_STRING  - property is a string
1443              OPTION_DOUBLE  - property is a double
1444              OPTION_INT     - property is an integer
1445              OPTION_CHANNEL - name of option is the name of a channel
1446              OPTION_FUNC    - the option trigger a function
1447  b_param   : if type==OPTION_BOOL,
1448              value set to the property (has_param is false for boolean)
1449  s_param   : if type==OPTION_STRING,
1450              value set to the property if has_param is false
1451  func      : function called if type==OPTION_FUNC. if has_param is true,
1452              the value is passed to the function as a string, otherwise,
1453              s_param is passed.
1454
1455     For OPTION_DOUBLE and OPTION_INT, the parameter value is converted into a
1456     double or an integer and set to the property.
1457
1458     For OPTION_CHANNEL, add_channel is called with the parameter value as the
1459     argument.
1460 */
1461
1462 enum OptionType { OPTION_BOOL = 0, OPTION_STRING, OPTION_DOUBLE, OPTION_INT, OPTION_CHANNEL, OPTION_FUNC, OPTION_IGNORE };
1463 const int OPTION_MULTI = 1 << 17;
1464
1465 struct OptionDesc {
1466     const char *option;
1467     bool has_param;
1468     int type;
1469     const char *property;
1470     bool b_param;
1471     const char *s_param;
1472     int (*func)( const char * );
1473     } fgOptionArray[] = {
1474
1475     {"language",                     true,  OPTION_IGNORE, "", false, "", 0 },
1476         {"console",                      false, OPTION_IGNORE,   "", false, "", 0 },
1477     {"disable-rembrandt",            false, OPTION_BOOL,   "/sim/rendering/rembrandt/enabled", false, "", 0 },
1478     {"enable-rembrandt",             false, OPTION_BOOL,   "/sim/rendering/rembrandt/enabled", true, "", 0 },
1479     {"renderer",                     true,  OPTION_STRING, "/sim/rendering/rembrandt/renderer", false, "", 0 },
1480     {"disable-splash-screen",        false, OPTION_BOOL,   "/sim/startup/splash-screen", false, "", 0 },
1481     {"enable-splash-screen",         false, OPTION_BOOL,   "/sim/startup/splash-screen", true, "", 0 },
1482     {"disable-mouse-pointer",        false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "disabled", 0 },
1483     {"enable-mouse-pointer",         false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "enabled", 0 },
1484     {"disable-random-objects",       false, OPTION_BOOL,   "/sim/rendering/random-objects", false, "", 0 },
1485     {"enable-random-objects",        false, OPTION_BOOL,   "/sim/rendering/random-objects", true, "", 0 },
1486     {"disable-random-vegetation",    false, OPTION_BOOL,   "/sim/rendering/random-vegetation", false, "", 0 },
1487     {"enable-random-vegetation",     false, OPTION_BOOL,   "/sim/rendering/random-vegetation", true, "", 0 },
1488     {"disable-random-buildings",     false, OPTION_BOOL,   "/sim/rendering/random-buildings", false, "", 0 },
1489     {"enable-random-buildings",      false, OPTION_BOOL,   "/sim/rendering/random-buildings", true, "", 0 },
1490     {"disable-real-weather-fetch",   false, OPTION_BOOL,   "/environment/realwx/enabled", false, "", 0 },
1491     {"enable-real-weather-fetch",    false, OPTION_BOOL,   "/environment/realwx/enabled", true,  "", 0 },
1492     {"metar",                        true,  OPTION_STRING, "/environment/metar/data", false, "", 0 },
1493     {"disable-ai-models",            false, OPTION_BOOL,   "/sim/ai/enabled", false, "", 0 },
1494     {"enable-ai-models",             false, OPTION_BOOL,   "/sim/ai/enabled", true, "", 0 },
1495     {"disable-ai-traffic",           false, OPTION_BOOL,   "/sim/traffic-manager/enabled", false, "", 0 },
1496     {"enable-ai-traffic",            false, OPTION_BOOL,   "/sim/traffic-manager/enabled", true,  "", 0 },
1497     {"disable-freeze",               false, OPTION_BOOL,   "/sim/freeze/master", false, "", 0 },
1498     {"enable-freeze",                false, OPTION_BOOL,   "/sim/freeze/master", true, "", 0 },
1499     {"disable-fuel-freeze",          false, OPTION_BOOL,   "/sim/freeze/fuel", false, "", 0 },
1500     {"enable-fuel-freeze",           false, OPTION_BOOL,   "/sim/freeze/fuel", true, "", 0 },
1501     {"disable-clock-freeze",         false, OPTION_BOOL,   "/sim/freeze/clock", false, "", 0 },
1502     {"enable-clock-freeze",          false, OPTION_BOOL,   "/sim/freeze/clock", true, "", 0 },
1503     {"disable-hud-3d",               false, OPTION_BOOL,   "/sim/hud/enable3d[1]", false, "", 0 },
1504     {"enable-hud-3d",                false, OPTION_BOOL,   "/sim/hud/enable3d[1]", true, "", 0 },
1505     {"disable-anti-alias-hud",       false, OPTION_BOOL,   "/sim/hud/color/antialiased", false, "", 0 },
1506     {"enable-anti-alias-hud",        false, OPTION_BOOL,   "/sim/hud/color/antialiased", true, "", 0 },
1507     {"disable-auto-coordination",    false, OPTION_BOOL,   "/controls/flight/auto-coordination", false, "", 0 },
1508     {"enable-auto-coordination",     false, OPTION_BOOL,   "/controls/flight/auto-coordination", true, "", 0 },
1509     {"browser-app",                  true,  OPTION_STRING, "/sim/startup/browser-app", false, "", 0 },
1510     {"disable-hud",                  false, OPTION_BOOL,   "/sim/hud/visibility[1]", false, "", 0 },
1511     {"enable-hud",                   false, OPTION_BOOL,   "/sim/hud/visibility[1]", true, "", 0 },
1512     {"disable-panel",                false, OPTION_BOOL,   "/sim/panel/visibility", false, "", 0 },
1513     {"enable-panel",                 false, OPTION_BOOL,   "/sim/panel/visibility", true, "", 0 },
1514     {"disable-sound",                false, OPTION_BOOL,   "/sim/sound/working", false, "", 0 },
1515     {"enable-sound",                 false, OPTION_BOOL,   "/sim/sound/working", true, "", 0 },
1516     {"sound-device",                 true,  OPTION_STRING, "/sim/sound/device-name", false, "", 0 },
1517     {"airport",                      true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1518     {"runway",                       true,  OPTION_FUNC,   "", false, "", fgOptRunway },
1519     {"vor",                          true,  OPTION_FUNC,   "", false, "", fgOptVOR },
1520     {"vor-frequency",                true,  OPTION_DOUBLE, "/sim/presets/vor-freq", false, "", fgOptVOR },
1521     {"ndb",                          true,  OPTION_FUNC,   "", false, "", fgOptNDB },
1522     {"ndb-frequency",                true,  OPTION_DOUBLE, "/sim/presets/ndb-freq", false, "", fgOptVOR },
1523     {"carrier",                      true,  OPTION_FUNC,   "", false, "", fgOptCarrier },
1524     {"parkpos",                      true,  OPTION_FUNC,   "", false, "", fgOptParkpos },
1525     {"fix",                          true,  OPTION_FUNC,   "", false, "", fgOptFIX },
1526     {"offset-distance",              true,  OPTION_DOUBLE, "/sim/presets/offset-distance-nm", false, "", 0 },
1527     {"offset-azimuth",               true,  OPTION_DOUBLE, "/sim/presets/offset-azimuth-deg", false, "", 0 },
1528     {"lon",                          true,  OPTION_FUNC,   "", false, "", fgOptLon },
1529     {"lat",                          true,  OPTION_FUNC,   "", false, "", fgOptLat },
1530     {"altitude",                     true,  OPTION_FUNC,   "", false, "", fgOptAltitude },
1531     {"uBody",                        true,  OPTION_FUNC,   "", false, "", fgOptUBody },
1532     {"vBody",                        true,  OPTION_FUNC,   "", false, "", fgOptVBody },
1533     {"wBody",                        true,  OPTION_FUNC,   "", false, "", fgOptWBody },
1534     {"vNorth",                       true,  OPTION_FUNC,   "", false, "", fgOptVNorth },
1535     {"vEast",                        true,  OPTION_FUNC,   "", false, "", fgOptVEast },
1536     {"vDown",                        true,  OPTION_FUNC,   "", false, "", fgOptVDown },
1537     {"vc",                           true,  OPTION_FUNC,   "", false, "", fgOptVc },
1538     {"mach",                         true,  OPTION_FUNC,   "", false, "", fgOptMach },
1539     {"heading",                      true,  OPTION_DOUBLE, "/sim/presets/heading-deg", false, "", 0 },
1540     {"roll",                         true,  OPTION_DOUBLE, "/sim/presets/roll-deg", false, "", 0 },
1541     {"pitch",                        true,  OPTION_DOUBLE, "/sim/presets/pitch-deg", false, "", 0 },
1542     {"glideslope",                   true,  OPTION_DOUBLE, "/sim/presets/glideslope-deg", false, "", 0 },
1543     {"roc",                          true,  OPTION_FUNC,   "", false, "", fgOptRoc },
1544     {"fg-root",                      true,  OPTION_IGNORE,   "", false, "", 0 },
1545     {"fg-scenery",                   true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptFgScenery },
1546     {"fg-aircraft",                  true,  OPTION_IGNORE | OPTION_MULTI,   "", false, "", 0 },
1547     {"fdm",                          true,  OPTION_STRING, "/sim/flight-model", false, "", 0 },
1548     {"aero",                         true,  OPTION_STRING, "/sim/aero", false, "", 0 },
1549     {"aircraft-dir",                 true,  OPTION_IGNORE,   "", false, "", 0 },
1550     {"model-hz",                     true,  OPTION_INT,    "/sim/model-hz", false, "", 0 },
1551     {"max-fps",                      true,  OPTION_DOUBLE, "/sim/frame-rate-throttle-hz", false, "", 0 },
1552     {"speed",                        true,  OPTION_DOUBLE, "/sim/speed-up", false, "", 0 },
1553     {"trim",                         false, OPTION_BOOL,   "/sim/presets/trim", true, "", 0 },
1554     {"notrim",                       false, OPTION_BOOL,   "/sim/presets/trim", false, "", 0 },
1555     {"on-ground",                    false, OPTION_BOOL,   "/sim/presets/onground", true, "", 0 },
1556     {"in-air",                       false, OPTION_BOOL,   "/sim/presets/onground", false, "", 0 },
1557     {"fog-disable",                  false, OPTION_STRING, "/sim/rendering/fog", false, "disabled", 0 },
1558     {"fog-fastest",                  false, OPTION_STRING, "/sim/rendering/fog", false, "fastest", 0 },
1559     {"fog-nicest",                   false, OPTION_STRING, "/sim/rendering/fog", false, "nicest", 0 },
1560     {"disable-horizon-effect",       false, OPTION_BOOL,   "/sim/rendering/horizon-effect", false, "", 0 },
1561     {"enable-horizon-effect",        false, OPTION_BOOL,   "/sim/rendering/horizon-effect", true, "", 0 },
1562     {"disable-enhanced-lighting",    false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", false, "", 0 },
1563     {"enable-enhanced-lighting",     false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", true, "", 0 },
1564     {"disable-distance-attenuation", false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", false, "", 0 },
1565     {"enable-distance-attenuation",  false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", true, "", 0 },
1566     {"disable-specular-highlight",   false, OPTION_BOOL,   "/sim/rendering/specular-highlight", false, "", 0 },
1567     {"enable-specular-highlight",    false, OPTION_BOOL,   "/sim/rendering/specular-highlight", true, "", 0 },
1568     {"disable-clouds",               false, OPTION_BOOL,   "/environment/clouds/status", false, "", 0 },
1569     {"enable-clouds",                false, OPTION_BOOL,   "/environment/clouds/status", true, "", 0 },
1570     {"disable-clouds3d",             false, OPTION_BOOL,   "/sim/rendering/clouds3d-enable", false, "", 0 },
1571     {"enable-clouds3d",              false, OPTION_BOOL,   "/sim/rendering/clouds3d-enable", true, "", 0 },
1572     {"fov",                          true,  OPTION_FUNC,   "", false, "", fgOptFov },
1573     {"aspect-ratio-multiplier",      true,  OPTION_DOUBLE, "/sim/current-view/aspect-ratio-multiplier", false, "", 0 },
1574     {"disable-fullscreen",           false, OPTION_BOOL,   "/sim/startup/fullscreen", false, "", 0 },
1575     {"enable-fullscreen",            false, OPTION_BOOL,   "/sim/startup/fullscreen", true, "", 0 },
1576     {"disable-save-on-exit",         false, OPTION_BOOL,   "/sim/startup/save-on-exit", false, "", 0 },
1577     {"enable-save-on-exit",          false, OPTION_BOOL,   "/sim/startup/save-on-exit", true, "", 0 },
1578     {"read-only",                    false, OPTION_BOOL,   "/sim/fghome-readonly", true, "", 0 },
1579     {"ignore-autosave",              false, OPTION_FUNC,   "", false, "", fgOptIgnoreAutosave },
1580     {"restore-defaults",             false, OPTION_BOOL,   "/sim/startup/restore-defaults", true, "", 0 },
1581     {"shading-flat",                 false, OPTION_BOOL,   "/sim/rendering/shading", false, "", 0 },
1582     {"shading-smooth",               false, OPTION_BOOL,   "/sim/rendering/shading", true, "", 0 },
1583     {"texture-filtering",            false, OPTION_INT,    "/sim/rendering/filtering", 1, "", 0 },
1584     {"disable-wireframe",            false, OPTION_BOOL,   "/sim/rendering/wireframe", false, "", 0 },
1585     {"enable-wireframe",             false, OPTION_BOOL,   "/sim/rendering/wireframe", true, "", 0 },
1586     {"materials-file",               true,  OPTION_STRING, "/sim/rendering/materials-file", false, "", 0 },
1587     {"disable-terrasync",            false, OPTION_BOOL,   "/sim/terrasync/enabled", false, "", 0 },
1588     {"enable-terrasync",             false, OPTION_BOOL,   "/sim/terrasync/enabled", true, "", 0 },
1589     {"terrasync-dir",                true,  OPTION_STRING, "/sim/terrasync/scenery-dir", false, "", 0 },
1590     {"geometry",                     true,  OPTION_FUNC,   "", false, "", fgOptGeometry },
1591     {"bpp",                          true,  OPTION_FUNC,   "", false, "", fgOptBpp },
1592     {"units-feet",                   false, OPTION_STRING, "/sim/startup/units", false, "feet", 0 },
1593     {"units-meters",                 false, OPTION_STRING, "/sim/startup/units", false, "meters", 0 },
1594     {"timeofday",                    true,  OPTION_STRING, "/sim/startup/time-offset-type", false, "noon", 0 },
1595     {"season",                       true,  OPTION_STRING, "/sim/startup/season", false, "summer", 0 },
1596     {"time-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptTimeOffset },
1597     {"time-match-real",              false, OPTION_STRING, "/sim/startup/time-offset-type", false, "system-offset", 0 },
1598     {"time-match-local",             false, OPTION_STRING, "/sim/startup/time-offset-type", false, "latitude-offset", 0 },
1599     {"start-date-sys",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateSys },
1600     {"start-date-lat",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateLat },
1601     {"start-date-gmt",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateGmt },
1602     {"hud-tris",                     false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
1603     {"hud-culled",                   false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
1604     {"atcsim",                       true,  OPTION_CHANNEL, "", false, "dummy", 0 },
1605     {"atlas",                        true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1606     {"httpd",                        true,  OPTION_FUNC   , "", false, "", fgOptHttpd },
1607     {"jpg-httpd",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1608     {"native",                       true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1609     {"native-ctrls",                 true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1610     {"native-fdm",                   true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1611     {"native-gui",                   true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1612     {"opengc",                       true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1613     {"AV400",                        true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1614     {"AV400Sim",                     true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1615     {"AV400WSimA",                   true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1616     {"AV400WSimB",                   true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1617     {"garmin",                       true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1618     {"igc",                          true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1619     {"nmea",                         true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1620     {"generic",                      true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1621     {"props",                        true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1622     {"telnet",                       true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1623     {"pve",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1624     {"ray",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1625     {"rul",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1626     {"joyclient",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1627     {"jsclient",                     true,  OPTION_CHANNEL, "", false, "", 0 },
1628     {"proxy",                        true,  OPTION_FUNC,    "", false, "", fgSetupProxy },
1629     {"callsign",                     true,  OPTION_FUNC,    "", false, "", fgOptCallSign},
1630     {"multiplay",                    true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1631 #if FG_HAVE_HLA
1632     {"hla",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1633     {"hla-local",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1634 #endif
1635     {"trace-read",                   true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptTraceRead },
1636     {"trace-write",                  true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptTraceWrite },
1637     {"log-level",                    true,  OPTION_FUNC,   "", false, "", fgOptLogLevel },
1638     {"log-class",                    true,  OPTION_FUNC,   "", false, "", fgOptLogClasses },
1639     {"view-offset",                  true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptViewOffset },
1640     {"visibility",                   true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMeters },
1641     {"visibility-miles",             true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMiles },
1642     {"random-wind",                  false, OPTION_FUNC,   "", false, "", fgOptRandomWind },
1643     {"wind",                         true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptWind },
1644     {"turbulence",                   true,  OPTION_FUNC,   "", false, "", fgOptTurbulence },
1645     {"ceiling",                      true,  OPTION_FUNC,   "", false, "", fgOptCeiling },
1646     {"wp",                           true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptWp },
1647     {"flight-plan",                  true,  OPTION_STRING,   "/autopilot/route-manager/file-path", false, "", NULL },
1648     {"config",                       true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptConfig },
1649     {"aircraft",                     true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1650     {"vehicle",                      true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1651     {"failure",                      true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptFailure },
1652 #ifdef ENABLE_IAX
1653     {"enable-fgcom",                 false, OPTION_BOOL,   "/sim/fgcom/enabled", true, "", 0 },
1654     {"disable-fgcom",                false, OPTION_BOOL,   "/sim/fgcom/enabled", false, "", 0 },
1655 #endif
1656     {"com1",                         true,  OPTION_DOUBLE, "/instrumentation/comm[0]/frequencies/selected-mhz", false, "", 0 },
1657     {"com2",                         true,  OPTION_DOUBLE, "/instrumentation/comm[1]/frequencies/selected-mhz", false, "", 0 },
1658     {"nav1",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV1 },
1659     {"nav2",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV2 },
1660     {"adf", /*legacy*/               true,  OPTION_FUNC,   "", false, "", fgOptADF1 },
1661     {"adf1",                         true,  OPTION_FUNC,   "", false, "", fgOptADF1 },
1662     {"adf2",                         true,  OPTION_FUNC,   "", false, "", fgOptADF2 },
1663     {"dme",                          true,  OPTION_FUNC,   "", false, "", fgOptDME },
1664     {"min-status",                   true,  OPTION_STRING,  "/sim/aircraft-min-status", false, "all", 0 },
1665     {"livery",                       true,  OPTION_FUNC,   "", false, "", fgOptLivery },
1666     {"ai-scenario",                  true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptScenario },
1667     {"parking-id",                   true,  OPTION_FUNC,   "", false, "", fgOptParking  },
1668     {"version",                      false, OPTION_FUNC,   "", false, "", fgOptVersion },
1669     {"enable-fpe",                   false, OPTION_IGNORE,   "", false, "", 0},
1670     {"fgviewer",                     false, OPTION_IGNORE,   "", false, "", 0},
1671     {"no-default-config",            false, OPTION_IGNORE, "", false, "", 0},
1672     {"prop",                         true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptSetProperty},
1673     {"load-tape",                    true,  OPTION_FUNC,   "", false, "", fgOptLoadTape },
1674     {0}
1675 };
1676
1677
1678 namespace flightgear
1679 {
1680
1681 /**
1682  * internal storage of a value->option binding
1683  */
1684 class OptionValue 
1685 {
1686 public:
1687   OptionValue(OptionDesc* d, const string& v) :
1688     desc(d), value(v)
1689   {;}
1690   
1691   OptionDesc* desc;
1692   string value;
1693 };
1694
1695 typedef std::vector<OptionValue> OptionValueVec;
1696 typedef std::map<string, OptionDesc*> OptionDescDict;
1697   
1698 class Options::OptionsPrivate
1699 {
1700 public:
1701   
1702   OptionValueVec::const_iterator findValue(const string& key) const
1703   {
1704     OptionValueVec::const_iterator it = values.begin();
1705     for (; it != values.end(); ++it) {
1706       if (!it->desc) {
1707         continue; // ignore markers
1708       }
1709       
1710       if (it->desc->option == key) {
1711         return it;
1712       }
1713     } // of set values iteration
1714     
1715     return it; // not found
1716   }
1717   
1718   OptionDesc* findOption(const string& key) const
1719   {
1720     OptionDescDict::const_iterator it = options.find(key);
1721     if (it == options.end()) {
1722       return NULL;
1723     }
1724     
1725     return it->second;
1726   }
1727   
1728   int processOption(OptionDesc* desc, const string& arg_value)
1729   {
1730     if (!desc) {
1731       return FG_OPTIONS_OK; // tolerate marker options
1732     }
1733     
1734     switch ( desc->type & 0xffff ) {
1735       case OPTION_BOOL:
1736         fgSetBool( desc->property, desc->b_param );
1737         break;
1738       case OPTION_STRING:
1739         if ( desc->has_param && !arg_value.empty() ) {
1740           fgSetString( desc->property, arg_value.c_str() );
1741         } else if ( !desc->has_param && arg_value.empty() ) {
1742           fgSetString( desc->property, desc->s_param );
1743         } else if ( desc->has_param ) {
1744           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1745           return FG_OPTIONS_ERROR;
1746         } else {
1747           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' does not have a parameter" );
1748           return FG_OPTIONS_ERROR;
1749         }
1750         break;
1751       case OPTION_DOUBLE:
1752         if ( !arg_value.empty() ) {
1753           fgSetDouble( desc->property, atof( arg_value ) );
1754         } else {
1755           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1756           return FG_OPTIONS_ERROR;
1757         }
1758         break;
1759       case OPTION_INT:
1760         if ( !arg_value.empty() ) {
1761           fgSetInt( desc->property, atoi( arg_value ) );
1762         } else {
1763           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1764           return FG_OPTIONS_ERROR;
1765         }
1766         break;
1767       case OPTION_CHANNEL:
1768         // XXX return value of add_channel should be checked?
1769         if ( desc->has_param && !arg_value.empty() ) {
1770           add_channel( desc->option, arg_value );
1771         } else if ( !desc->has_param && arg_value.empty() ) {
1772           add_channel( desc->option, desc->s_param );
1773         } else if ( desc->has_param ) {
1774           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1775           return FG_OPTIONS_ERROR;
1776         } else {
1777           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' does not have a parameter" );
1778           return FG_OPTIONS_ERROR;
1779         }
1780         break;
1781       case OPTION_FUNC:
1782         if ( desc->has_param && !arg_value.empty() ) {
1783           return desc->func( arg_value.c_str() );
1784         } else if ( !desc->has_param && arg_value.empty() ) {
1785           return desc->func( desc->s_param );
1786         } else if ( desc->has_param ) {
1787           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1788           return FG_OPTIONS_ERROR;
1789         } else {
1790           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' does not have a parameter" );
1791           return FG_OPTIONS_ERROR;
1792         }
1793         break;
1794         
1795       case OPTION_IGNORE:
1796         break;
1797     }
1798     
1799     return FG_OPTIONS_OK;
1800   }
1801     
1802   /**
1803    * insert a marker value into the values vector. This is necessary
1804    * when processing options, to ensure the correct ordering, where we scan
1805    * for marker values in reverse, and then forwards within each group.
1806    */
1807   void insertGroupMarker()
1808   {
1809     values.push_back(OptionValue(NULL, "-"));
1810   }
1811   
1812   /**
1813    * given a current iterator into the values, find the preceeding group marker,
1814    * or return the beginning of the value vector.
1815    */
1816   OptionValueVec::const_iterator rfindGroup(OptionValueVec::const_iterator pos) const
1817   {
1818     while (--pos != values.begin()) {
1819       if (pos->desc == NULL) {
1820         return pos; // found a marker, we're done
1821       }
1822     }
1823     
1824     return pos;
1825   }
1826   
1827   bool showHelp,
1828     verbose,
1829     showAircraft,
1830     shouldLoadDefaultConfig;
1831     
1832   OptionDescDict options;
1833   OptionValueVec values;
1834   simgear::PathList propertyFiles;
1835 };
1836   
1837 Options* Options::sharedInstance()
1838 {
1839   if (shared_instance == NULL) {
1840     shared_instance = new Options;
1841   }
1842   
1843   return shared_instance;
1844 }
1845   
1846 Options::Options() :
1847   p(new OptionsPrivate())
1848 {
1849   p->showHelp = false;
1850   p->verbose = false;
1851   p->showAircraft = false;
1852   p->shouldLoadDefaultConfig = true;
1853   
1854 // build option map
1855   OptionDesc *desc = &fgOptionArray[ 0 ];
1856   while ( desc->option != 0 ) {
1857     p->options[ desc->option ] = desc;
1858     ++desc;
1859   }
1860 }
1861   
1862 Options::~Options()
1863 {
1864 }
1865   
1866 void Options::init(int argc, char **argv, const SGPath& appDataPath)
1867 {
1868 // first, process the command line
1869   bool inOptions = true;
1870   for (int i=1; i<argc; ++i) {
1871     if (inOptions && (argv[i][0] == '-')) {
1872       if (strcmp(argv[i], "--") == 0) { // end of options delimiter
1873         inOptions = true;
1874         continue;
1875       }
1876       
1877       int result = parseOption(argv[i]);
1878       processArgResult(result);
1879     } else {
1880     // XML properties file
1881       SGPath f(argv[i]);
1882       if (!f.exists()) {
1883         SG_LOG(SG_GENERAL, SG_ALERT, "config file not found:" << f.str());
1884       } else {
1885         p->propertyFiles.push_back(f);
1886       }
1887     }
1888   } // of arguments iteration
1889   p->insertGroupMarker(); // command line is one group
1890   
1891   // establish log-level before anything else - otherwise it is not possible
1892   // to show extra (debug/info/warning) messages for the start-up phase.
1893   fgOptLogLevel(valueForOption("log-level", "alert").c_str());
1894
1895   if (!p->shouldLoadDefaultConfig) {
1896     setupRoot();
1897     return;
1898   }
1899   
1900 // then config files
1901   SGPath config;
1902   std::string homedir;
1903   if (getenv("HOME")) {
1904     homedir = getenv("HOME");
1905   }
1906     
1907   if( !homedir.empty() && !hostname.empty() ) {
1908     // Check for ~/.fgfsrc.hostname
1909     config.set(homedir);
1910     config.append(".fgfsrc");
1911     config.concat( "." );
1912     config.concat( hostname );
1913     readConfig(config);
1914   }
1915   
1916 // Check for ~/.fgfsrc
1917   if( !homedir.empty() ) {
1918     config.set(homedir);
1919     config.append(".fgfsrc");
1920     readConfig(config);
1921   }
1922   
1923 // check for a config file in app data
1924   SGPath appDataConfig(appDataPath);
1925   appDataConfig.append("fgfsrc");
1926   if (appDataConfig.exists()) {
1927     readConfig(appDataConfig);
1928   }
1929   
1930 // setup FG_ROOT
1931   setupRoot();
1932   
1933 // system.fgfsrc handling
1934   if( ! hostname.empty() ) {
1935     config.set(globals->get_fg_root());
1936     config.append( "system.fgfsrc" );
1937     config.concat( "." );
1938     config.concat( hostname );
1939     readConfig(config);
1940   }
1941
1942   config.set(globals->get_fg_root());
1943   config.append( "system.fgfsrc" );
1944   readConfig(config);
1945 }
1946   
1947 void Options::initAircraft()
1948 {
1949   BOOST_FOREACH(const string& paths, valuesForOption("fg-aircraft")) {
1950     globals->append_aircraft_paths(paths);
1951   }
1952   
1953   const char* envp = ::getenv("FG_AIRCRAFT");
1954   if (envp) {
1955     globals->append_aircraft_paths(envp);
1956   }
1957
1958   string aircraft;
1959   if (isOptionSet("aircraft")) {
1960     aircraft = valueForOption("aircraft");
1961   } else if (isOptionSet("vehicle")) {
1962     aircraft = valueForOption("vehicle");
1963   }
1964     
1965   if (!aircraft.empty()) {
1966     SG_LOG(SG_INPUT, SG_INFO, "aircraft = " << aircraft );
1967     fgSetString("/sim/aircraft", aircraft.c_str() );
1968   } else {
1969     SG_LOG(SG_INPUT, SG_INFO, "No user specified aircraft, using default" );
1970   }
1971     
1972   if (p->showAircraft) {
1973     fgOptLogLevel( "alert" );
1974     SGPath path( globals->get_fg_root() );
1975     path.append("Aircraft");
1976     fgShowAircraft(path);
1977     exit(0);
1978   }
1979   
1980   if (isOptionSet("aircraft-dir")) {
1981     // set this now, so it's available in FindAndCacheAircraft
1982     fgSetString("/sim/aircraft-dir", valueForOption("aircraft-dir"));
1983   }
1984 }
1985   
1986 void Options::processArgResult(int result)
1987 {
1988   if ((result == FG_OPTIONS_HELP) || (result == FG_OPTIONS_ERROR))
1989     p->showHelp = true;
1990   else if (result == FG_OPTIONS_VERBOSE_HELP)
1991     p->verbose = true;
1992   else if (result == FG_OPTIONS_SHOW_AIRCRAFT) {
1993     p->showAircraft = true;
1994   } else if (result == FG_OPTIONS_NO_DEFAULT_CONFIG) {
1995     p->shouldLoadDefaultConfig = false;
1996   } else if (result == FG_OPTIONS_SHOW_SOUND_DEVICES) {
1997     SGSoundMgr smgr;
1998     
1999     smgr.init();
2000     string vendor = smgr.get_vendor();
2001     string renderer = smgr.get_renderer();
2002     cout << renderer << " provided by " << vendor << endl;
2003     cout << endl << "No. Device" << endl;
2004     
2005     vector <const char*>devices = smgr.get_available_devices();
2006     for (vector <const char*>::size_type i=0; i<devices.size(); i++) {
2007       cout << i << ".  \"" << devices[i] << "\"" << endl;
2008     }
2009     devices.clear();
2010     smgr.stop();
2011     exit(0);
2012   } else if (result == FG_OPTIONS_EXIT) {
2013     exit(0);
2014   }
2015 }
2016   
2017 void Options::readConfig(const SGPath& path)
2018 {
2019   sg_gzifstream in( path.str() );
2020   if ( !in.is_open() ) {
2021     return;
2022   }
2023   
2024   SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path.str() );
2025   
2026   in >> skipcomment;
2027   while ( ! in.eof() ) {
2028     string line;
2029     getline( in, line, '\n' );
2030     
2031     // catch extraneous (DOS) line ending character
2032     int i;
2033     for (i = line.length(); i > 0; i--)
2034       if (line[i - 1] > 32)
2035         break;
2036     line = line.substr( 0, i );
2037     
2038     if ( parseOption( line ) == FG_OPTIONS_ERROR ) {
2039       cerr << endl << "Config file parse error: " << path.str() << " '"
2040       << line << "'" << endl;
2041             p->showHelp = true;
2042     }
2043     in >> skipcomment;
2044   }
2045
2046   p->insertGroupMarker(); // each config file is a group
2047 }
2048   
2049 int Options::parseOption(const string& s)
2050 {
2051   if ((s == "--help") || (s=="-h")) {
2052     return FG_OPTIONS_HELP;
2053   } else if ( (s == "--verbose") || (s == "-v") ) {
2054     // verbose help/usage request
2055     return FG_OPTIONS_VERBOSE_HELP;
2056   } else if ((s == "--console") || (s == "-c")) {
2057           simgear::requestConsole();
2058           return FG_OPTIONS_OK;
2059   } else if (s.find("-psn") == 0) {
2060     // on Mac, when launched from the GUI, we are passed the ProcessSerialNumber
2061     // as an argument (and no others). Silently ignore the argument here.
2062     return FG_OPTIONS_OK;
2063   } else if ( s.find( "--show-aircraft") == 0) {
2064     return(FG_OPTIONS_SHOW_AIRCRAFT);
2065   } else if ( s.find( "--show-sound-devices") == 0) {
2066     return(FG_OPTIONS_SHOW_SOUND_DEVICES);
2067   } else if ( s.find( "--no-default-config") == 0) {
2068     return FG_OPTIONS_NO_DEFAULT_CONFIG;
2069   } else if ( s.find( "--prop:") == 0) {
2070     // property setting has a slightly different syntax, so fudge things
2071     OptionDesc* desc = p->findOption("prop");
2072     if (s.find("=", 7) == string::npos) { // no equals token
2073       SG_LOG(SG_GENERAL, SG_ALERT, "malformed property option:" << s);
2074       return FG_OPTIONS_ERROR;
2075     }
2076     
2077     p->values.push_back(OptionValue(desc, s.substr(7)));
2078     return FG_OPTIONS_OK;
2079   } else if ( s.find( "--" ) == 0 ) {
2080     size_t eqPos = s.find( '=' );
2081     string key, value;
2082     if (eqPos == string::npos) {
2083       key = s.substr(2);
2084     } else {
2085       key = s.substr( 2, eqPos - 2 );
2086       value = s.substr( eqPos + 1);
2087     }
2088     
2089     return addOption(key, value);
2090   } else {
2091       flightgear::modalMessageBox("Unknown option", "Unknown command-line option: " + s);
2092     return FG_OPTIONS_ERROR;
2093   }
2094 }
2095   
2096 int Options::addOption(const string &key, const string &value)
2097 {
2098   OptionDesc* desc = p->findOption(key);
2099   if (!desc) {
2100     flightgear::modalMessageBox("Unknown option", "Unknown command-line option: " + key);
2101     return FG_OPTIONS_ERROR;
2102   }
2103   
2104   if (!(desc->type & OPTION_MULTI)) {
2105     OptionValueVec::const_iterator it = p->findValue(key);
2106     if (it != p->values.end()) {
2107       SG_LOG(SG_GENERAL, SG_WARN, "multiple values forbidden for option:" << key << ", ignoring:" << value);
2108       return FG_OPTIONS_OK;
2109     }
2110   }
2111   
2112   p->values.push_back(OptionValue(desc, value));
2113   return FG_OPTIONS_OK;
2114 }
2115   
2116 bool Options::isOptionSet(const string &key) const
2117 {
2118   OptionValueVec::const_iterator it = p->findValue(key);
2119   return (it != p->values.end());
2120 }
2121   
2122 string Options::valueForOption(const string& key, const string& defValue) const
2123 {
2124   OptionValueVec::const_iterator it = p->findValue(key);
2125   if (it == p->values.end()) {
2126     return defValue;
2127   }
2128   
2129   return it->value;
2130 }
2131
2132 string_list Options::valuesForOption(const std::string& key) const
2133 {
2134   string_list result;
2135   OptionValueVec::const_iterator it = p->values.begin();
2136   for (; it != p->values.end(); ++it) {
2137     if (!it->desc) {
2138       continue; // ignore marker values
2139     }
2140     
2141     if (it->desc->option == key) {
2142       result.push_back(it->value);
2143     }
2144   }
2145   
2146   return result;
2147 }
2148
2149
2150 static string defaultTerrasyncDir()
2151 {
2152 #if defined(SG_WINDOWS)
2153         SGPath p(SGPath::documents());
2154         p.append("FlightGear");
2155 #else
2156     SGPath p(globals->get_fg_home());
2157 #endif
2158         p.append("TerraSync");
2159         return p.str();
2160 }
2161
2162
2163 OptionResult Options::processOptions()
2164 {
2165   // establish locale before showing help (this selects the default locale,
2166   // when no explicit option was set)
2167   globals->get_locale()->selectLanguage(valueForOption("language").c_str());
2168
2169   // now FG_ROOT is setup, process various command line options that bail us
2170   // out quickly, but rely on aircraft / root settings
2171   if (p->showHelp) {
2172     showUsage();
2173       return FG_OPTIONS_EXIT;
2174   }
2175   
2176   // processing order is complicated. We must process groups LIFO, but the
2177   // values *within* each group in FIFO order, to retain consistency with
2178   // older versions of FG, and existing user configs.
2179   // in practice this means system.fgfsrc must be *processed* before
2180   // .fgfsrc, which must be processed before the command line args, and so on.
2181   OptionValueVec::const_iterator groupEnd = p->values.end();
2182
2183   while (groupEnd != p->values.begin()) {
2184     OptionValueVec::const_iterator groupBegin = p->rfindGroup(groupEnd);
2185   // run over the group in FIFO order
2186     OptionValueVec::const_iterator it;
2187     for (it = groupBegin; it != groupEnd; ++it) {      
2188       int result = p->processOption(it->desc, it->value);
2189       switch(result)
2190       {
2191           case FG_OPTIONS_ERROR:
2192               showUsage();
2193               return FG_OPTIONS_ERROR;
2194               
2195           case FG_OPTIONS_EXIT:
2196               return FG_OPTIONS_EXIT;
2197               
2198           default:
2199               break;
2200       }
2201     }
2202     
2203     groupEnd = groupBegin;
2204   }
2205
2206   BOOST_FOREACH(const SGPath& file, p->propertyFiles) {
2207     SG_LOG(SG_GENERAL, SG_INFO,
2208            "Reading command-line property file " << file.str());
2209           readProperties(file.str(), globals->get_props());
2210   }
2211
2212 // now options are process, do supplemental fixup
2213   const char *envp = ::getenv( "FG_SCENERY" );
2214   if (envp) {
2215     globals->append_fg_scenery(envp);
2216   }
2217     
2218 // terrasync directory fixup
2219   string terrasyncDir = fgGetString("/sim/terrasync/scenery-dir");
2220   if (terrasyncDir.empty()) {
2221           terrasyncDir = defaultTerrasyncDir();
2222           // auto-save it for next time
2223           
2224           SG_LOG(SG_GENERAL, SG_INFO,
2225                   "Using default TerraSync: " << terrasyncDir);
2226       fgSetString("/sim/terrasync/scenery-dir", terrasyncDir);
2227   }
2228
2229   SGPath p(terrasyncDir);
2230
2231   // following is necessary to ensure NavDataCache sees stable scenery paths from
2232   // terrasync. Ensure the Terrain and Objects subdirs exist immediately, rather
2233   // than waiting for the first tiles to be scheduled.
2234   simgear::Dir terrainDir(SGPath(p, "Terrain")),
2235     objectsDir(SGPath(p, "Objects"));
2236   if (!terrainDir.exists()) {
2237       terrainDir.create(0755);
2238   }
2239   
2240   if (!objectsDir.exists()) {
2241       objectsDir.create(0755);
2242   }
2243   if (fgGetBool("/sim/terrasync/enabled")) {
2244     const string_list& scenery_paths(globals->get_fg_scenery());
2245     if (std::find(scenery_paths.begin(), scenery_paths.end(), terrasyncDir) == scenery_paths.end()) {
2246       // terrasync dir is not in the scenery paths, add it
2247       globals->append_fg_scenery(terrasyncDir);
2248     }
2249   }
2250   
2251   if (globals->get_fg_scenery().empty()) {
2252     // no scenery paths set *at all*, use the data in FG_ROOT
2253     SGPath root(globals->get_fg_root());
2254     root.append("Scenery");
2255     globals->append_fg_scenery(root.str());
2256   }
2257     
2258   return FG_OPTIONS_OK;
2259 }
2260   
2261 void Options::showUsage() const
2262 {
2263   fgOptLogLevel( "alert" );
2264   
2265   FGLocale *locale = globals->get_locale();
2266   SGPropertyNode options_root;
2267   
2268   simgear::requestConsole(); // ensure console is shown on Windows
2269   cout << endl;
2270
2271   try {
2272     fgLoadProps("options.xml", &options_root);
2273   } catch (const sg_exception &) {
2274     cout << "Unable to read the help file." << endl;
2275     cout << "Make sure the file options.xml is located in the FlightGear base directory," << endl;
2276     cout << "and the location of the base directory is specified by setting $FG_ROOT or" << endl;
2277     cout << "by adding --fg-root=path as a program argument." << endl;
2278     
2279     exit(-1);
2280   }
2281
2282   SGPropertyNode *options = options_root.getNode("options");
2283   if (!options) {
2284     SG_LOG( SG_GENERAL, SG_ALERT,
2285            "Error reading options.xml: <options> directive not found." );
2286     exit(-1);
2287   }
2288
2289   if (!locale->loadResource("options"))
2290   {
2291       cout << "Unable to read the language resource." << endl;
2292       exit(-1);
2293   }
2294
2295   const char* usage = locale->getLocalizedString(options->getStringValue("usage"), "options");
2296   if (usage) {
2297     cout << usage << endl;
2298   }
2299   
2300   vector<SGPropertyNode_ptr>section = options->getChildren("section");
2301   for (unsigned int j = 0; j < section.size(); j++) {
2302     string msg = "";
2303     
2304     vector<SGPropertyNode_ptr>option = section[j]->getChildren("option");
2305     for (unsigned int k = 0; k < option.size(); k++) {
2306       
2307       SGPropertyNode *name = option[k]->getNode("name");
2308       SGPropertyNode *short_name = option[k]->getNode("short");
2309       SGPropertyNode *key = option[k]->getNode("key");
2310       SGPropertyNode *arg = option[k]->getNode("arg");
2311       bool brief = option[k]->getNode("brief") != 0;
2312       
2313       if ((brief || p->verbose) && name) {
2314         string tmp = name->getStringValue();
2315         
2316         if (key){
2317           tmp.append(":");
2318           tmp.append(key->getStringValue());
2319         }
2320         if (arg) {
2321           tmp.append("=");
2322           tmp.append(arg->getStringValue());
2323         }
2324         if (short_name) {
2325           tmp.append(", -");
2326           tmp.append(short_name->getStringValue());
2327         }
2328         
2329         if (tmp.size() <= 25) {
2330           msg+= "   --";
2331           msg += tmp;
2332           msg.append( 27-tmp.size(), ' ');
2333         } else {
2334           msg += "\n   --";
2335           msg += tmp + '\n';
2336           msg.append(32, ' ');
2337         }
2338         // There may be more than one <description> tag associated
2339         // with one option
2340         
2341         vector<SGPropertyNode_ptr> desc;
2342         desc = option[k]->getChildren("description");
2343         if (! desc.empty()) {
2344           for ( unsigned int l = 0; l < desc.size(); l++) {
2345             string t = desc[l]->getStringValue();
2346
2347             // There may be more than one translation line.
2348             vector<SGPropertyNode_ptr>trans_desc = locale->getLocalizedStrings(t.c_str(),"options");
2349             for ( unsigned int m = 0; m < trans_desc.size(); m++ ) {
2350               string t_str = trans_desc[m]->getStringValue();
2351               
2352               if ((m > 0) || ((l > 0) && m == 0)) {
2353                 msg.append( 32, ' ');
2354               }
2355               
2356               // If the string is too large to fit on the screen,
2357               // then split it up in several pieces.
2358               
2359               while ( t_str.size() > 47 ) {
2360                 
2361                 string::size_type m = t_str.rfind(' ', 47);
2362                 msg += t_str.substr(0, m) + '\n';
2363                 msg.append( 32, ' ');
2364                 
2365                 t_str.erase(t_str.begin(), t_str.begin() + m + 1);
2366               }
2367               msg += t_str + '\n';
2368             }
2369           }
2370         }
2371       }
2372     }
2373     
2374     const char* name = locale->getLocalizedString(section[j]->getStringValue("name"),"options");
2375     if (!msg.empty() && name) {
2376       cout << endl << name << ":" << endl;
2377       cout << msg;
2378       msg.erase();
2379     }
2380   }
2381   
2382   if ( !p->verbose ) {
2383     const char* verbose_help = locale->getLocalizedString(options->getStringValue("verbose-help"),"options");
2384     if (verbose_help)
2385         cout << endl << verbose_help << endl;
2386   }
2387 #ifdef _MSC_VER
2388   std::cout << "Hit a key to continue..." << std::endl;
2389   std::cin.get();
2390 #endif
2391 }
2392   
2393 #if defined(__CYGWIN__)
2394 string Options::platformDefaultRoot() const
2395 {
2396   return "../data";
2397 }
2398
2399 #elif defined(SG_WINDOWS)
2400 string Options::platformDefaultRoot() const
2401 {
2402   return "..\\data";
2403 }
2404 #elif defined(SG_MAC)
2405 // platformDefaultRoot defined in CocoaHelpers.mm
2406 #else
2407 string Options::platformDefaultRoot() const
2408 {
2409   return PKGLIBDIR;
2410 }
2411 #endif
2412   
2413 void Options::setupRoot()
2414 {
2415   string root;
2416   if (isOptionSet("fg-root")) {
2417     root = valueForOption("fg-root"); // easy!
2418   } else {
2419   // Next check if fg-root is set as an env variable
2420     char *envp = ::getenv( "FG_ROOT" );
2421     if ( envp != NULL ) {
2422       root = envp;
2423     } else {
2424       root = platformDefaultRoot();
2425     }
2426   } 
2427   
2428   SG_LOG(SG_INPUT, SG_INFO, "fg_root = " << root );
2429   globals->set_fg_root(root);
2430   
2431 // validate it
2432   static char required_version[] = FLIGHTGEAR_VERSION;
2433   string base_version = fgBasePackageVersion();
2434     if (base_version.empty()) {
2435         flightgear::fatalMessageBox("Base package not found",
2436                                     "Required data files not found, check your installation.",
2437                                     "Looking for base-package files at: '" + root + "'");
2438
2439         exit(-1);
2440     }
2441     
2442  if (base_version != required_version) {
2443     // tell the operator how to use this application
2444    
2445       flightgear::fatalMessageBox("Base package version mismatch",
2446                                   "Version check failed: please check your installation.",
2447                                   "Found data files for version '" + base_version +
2448                                   "' at '" + globals->get_fg_root() + "', version '"
2449                                   + required_version + "' is required.");
2450
2451     exit(-1);
2452   }
2453 }
2454   
2455 bool Options::shouldLoadDefaultConfig() const
2456 {
2457   return p->shouldLoadDefaultConfig;
2458 }
2459
2460 bool Options::checkForArg(int argc, char* argv[], const char* checkArg)
2461 {
2462     for (int i = 0; i < argc; ++i) {
2463         char* arg = argv[i];
2464         if (!strncmp("--", arg, 2) && !strcmp(arg + 2, checkArg)) {
2465             return true;
2466         }
2467         
2468         if ((arg[0] == '-') && !strcmp(arg + 1, checkArg)) {
2469             return true;
2470         }
2471     }
2472     
2473     return false;
2474 }
2475     
2476 } // of namespace flightgear
2477