]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.cxx
httpd: fix ignored port on --httpd=nnnn
[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
54 #include <GUI/gui.h>
55 #include <GUI/MessageBox.hxx>
56
57 #include <Main/locale.hxx>
58 #include "globals.hxx"
59 #include "fg_init.hxx"
60 #include "fg_props.hxx"
61 #include "options.hxx"
62 #include "util.hxx"
63 #include "main.hxx"
64 #include "locale.hxx"
65 #include <Viewer/viewer.hxx>
66 #include <Viewer/viewmgr.hxx>
67 #include <Environment/presets.hxx>
68 #include <Network/http/httpd.hxx>
69 #include "AircraftDirVisitorBase.hxx"
70
71 #include <osg/Version>
72
73 #if defined( HAVE_VERSION_H ) && HAVE_VERSION_H
74 #  include <Include/version.h>
75 #  include <simgear/version.h>
76 #else
77 #  include <Include/no_version.h>
78 #endif
79
80 using std::string;
81 using std::sort;
82 using std::cout;
83 using std::cerr;
84 using std::endl;
85 using std::vector;
86 using std::cin;
87
88 using namespace flightgear;
89
90 #define NEW_DEFAULT_MODEL_HZ 120
91
92 static flightgear::Options* shared_instance = NULL;
93
94 static double
95 atof( const string& str )
96 {
97     return ::atof( str.c_str() );
98 }
99
100 static int
101 atoi( const string& str )
102 {
103     return ::atoi( str.c_str() );
104 }
105
106 static int fgSetupProxy( const char *arg );
107
108 /**
109  * Set a few fail-safe default property values.
110  *
111  * These should all be set in $FG_ROOT/preferences.xml, but just
112  * in case, we provide some initial sane values here. This method
113  * should be invoked *before* reading any init files.
114  */
115 void fgSetDefaults ()
116 {
117
118                                 // Position (deliberately out of range)
119     fgSetDouble("/position/longitude-deg", 9999.0);
120     fgSetDouble("/position/latitude-deg", 9999.0);
121     fgSetDouble("/position/altitude-ft", -9999.0);
122
123                                 // Orientation
124     fgSetDouble("/orientation/heading-deg", 9999.0);
125     fgSetDouble("/orientation/roll-deg", 0.0);
126     fgSetDouble("/orientation/pitch-deg", 0.424);
127
128                                 // Velocities
129     fgSetDouble("/velocities/uBody-fps", 0.0);
130     fgSetDouble("/velocities/vBody-fps", 0.0);
131     fgSetDouble("/velocities/wBody-fps", 0.0);
132     fgSetDouble("/velocities/speed-north-fps", 0.0);
133     fgSetDouble("/velocities/speed-east-fps", 0.0);
134     fgSetDouble("/velocities/speed-down-fps", 0.0);
135     fgSetDouble("/velocities/airspeed-kt", 0.0);
136     fgSetDouble("/velocities/mach", 0.0);
137
138                                 // Presets
139     fgSetDouble("/sim/presets/longitude-deg", 9999.0);
140     fgSetDouble("/sim/presets/latitude-deg", 9999.0);
141     fgSetDouble("/sim/presets/altitude-ft", -9999.0);
142
143     fgSetDouble("/sim/presets/heading-deg", 9999.0);
144     fgSetDouble("/sim/presets/roll-deg", 0.0);
145     fgSetDouble("/sim/presets/pitch-deg", 0.424);
146
147     fgSetString("/sim/presets/speed-set", "knots");
148     fgSetDouble("/sim/presets/airspeed-kt", 0.0);
149     fgSetDouble("/sim/presets/mach", 0.0);
150     fgSetDouble("/sim/presets/uBody-fps", 0.0);
151     fgSetDouble("/sim/presets/vBody-fps", 0.0);
152     fgSetDouble("/sim/presets/wBody-fps", 0.0);
153     fgSetDouble("/sim/presets/speed-north-fps", 0.0);
154     fgSetDouble("/sim/presets/speed-east-fps", 0.0);
155     fgSetDouble("/sim/presets/speed-down-fps", 0.0);
156
157     fgSetBool("/sim/presets/onground", true);
158     fgSetBool("/sim/presets/trim", false);
159
160                                 // Miscellaneous
161     fgSetBool("/sim/startup/splash-screen", true);
162     // we want mouse-pointer to have an undefined value if nothing is
163     // specified so we can do the right thing for voodoo-1/2 cards.
164     // fgSetString("/sim/startup/mouse-pointer", "disabled");
165     fgSetString("/sim/control-mode", "joystick");
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     int port = atoi(arg);
957     if( port > 0 ) {
958         fgSetInt( string(flightgear::http::PROPERTY_ROOT).append("/options/listening-port").c_str(), port );
959     }
960     return FG_OPTIONS_OK;
961 }
962
963 static int
964 fgSetupProxy( const char *arg )
965 {
966     string options = simgear::strutils::strip( arg );
967     string host, port, auth;
968     string::size_type pos;
969
970     // this is NURLP - NURLP is not an url parser
971     if( simgear::strutils::starts_with( options, "http://" ) )
972         options = options.substr( 7 );
973     if( simgear::strutils::ends_with( options, "/" ) )
974         options = options.substr( 0, options.length() - 1 );
975
976     host = port = auth = "";
977     if ((pos = options.find("@")) != string::npos)
978         auth = options.substr(0, pos++);
979     else
980         pos = 0;
981
982     host = options.substr(pos, options.size());
983     if ((pos = host.find(":")) != string::npos) {
984         port = host.substr(++pos, host.size());
985         host.erase(--pos, host.size());
986     }
987
988     fgSetString("/sim/presets/proxy/host", host.c_str());
989     fgSetString("/sim/presets/proxy/port", port.c_str());
990     fgSetString("/sim/presets/proxy/authentication", auth.c_str());
991
992     return FG_OPTIONS_OK;
993 }
994
995 static int
996 fgOptTraceRead( const char *arg )
997 {
998     string name = arg;
999     SG_LOG(SG_GENERAL, SG_INFO, "Tracing reads for property " << name);
1000     fgGetNode(name.c_str(), true)
1001         ->setAttribute(SGPropertyNode::TRACE_READ, true);
1002     return FG_OPTIONS_OK;
1003 }
1004
1005 static int
1006 fgOptLogLevel( const char *arg )
1007 {
1008     fgSetString("/sim/logging/priority", arg);
1009     setLoggingPriority(arg);
1010
1011     return FG_OPTIONS_OK;
1012 }
1013
1014 static int
1015 fgOptLogClasses( const char *arg )
1016 {
1017     fgSetString("/sim/logging/classes", arg);
1018     setLoggingClasses (arg);
1019
1020     return FG_OPTIONS_OK;
1021 }
1022
1023 static int
1024 fgOptTraceWrite( const char *arg )
1025 {
1026     string name = arg;
1027     SG_LOG(SG_GENERAL, SG_INFO, "Tracing writes for property " << name);
1028     fgGetNode(name.c_str(), true)
1029         ->setAttribute(SGPropertyNode::TRACE_WRITE, true);
1030     return FG_OPTIONS_OK;
1031 }
1032
1033 static int
1034 fgOptViewOffset( const char *arg )
1035 {
1036     // $$$ begin - added VS Renganathan, 14 Oct 2K
1037     // for multi-window outside window imagery
1038     string woffset = arg;
1039     double default_view_offset = 0.0;
1040     if ( woffset == "LEFT" ) {
1041             default_view_offset = SGD_PI * 0.25;
1042     } else if ( woffset == "RIGHT" ) {
1043         default_view_offset = SGD_PI * 1.75;
1044     } else if ( woffset == "CENTER" ) {
1045         default_view_offset = 0.00;
1046     } else {
1047         default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
1048     }
1049     /* apparently not used (CLO, 11 Jun 2002)
1050         FGViewer *pilot_view =
1051             (FGViewer *)globals->get_viewmgr()->get_view( 0 ); */
1052     // this will work without calls to the viewer...
1053     fgSetDouble( "/sim/current-view/heading-offset-deg",
1054                     default_view_offset  * SGD_RADIANS_TO_DEGREES );
1055     // $$$ end - added VS Renganathan, 14 Oct 2K
1056     return FG_OPTIONS_OK;
1057 }
1058
1059 static int
1060 fgOptVisibilityMeters( const char *arg )
1061 {
1062     Environment::Presets::VisibilitySingleton::instance()->preset( atof( arg ) );
1063     return FG_OPTIONS_OK;
1064 }
1065
1066 static int
1067 fgOptVisibilityMiles( const char *arg )
1068 {
1069     Environment::Presets::VisibilitySingleton::instance()->preset( atof( arg ) * 5280.0 * SG_FEET_TO_METER );
1070     return FG_OPTIONS_OK;
1071 }
1072
1073 static int
1074 fgOptRandomWind( const char *arg )
1075 {
1076     double min_hdg = sg_random() * 360.0;
1077     double max_hdg = min_hdg + (20 - sqrt(sg_random() * 400));
1078     double speed = sg_random() * sg_random() * 40;
1079     double gust = speed + (10 - sqrt(sg_random() * 100));
1080     Environment::Presets::WindSingleton::instance()->preset(min_hdg, max_hdg, speed, gust);
1081     return FG_OPTIONS_OK;
1082 }
1083
1084 static int
1085 fgOptWind( const char *arg )
1086 {
1087     double min_hdg = 0.0, max_hdg = 0.0, speed = 0.0, gust = 0.0;
1088     if (!parse_wind( arg, &min_hdg, &max_hdg, &speed, &gust)) {
1089         SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << arg );
1090         return FG_OPTIONS_ERROR;
1091     }
1092     Environment::Presets::WindSingleton::instance()->preset(min_hdg, max_hdg, speed, gust);
1093     return FG_OPTIONS_OK;
1094 }
1095
1096 static int
1097 fgOptTurbulence( const char *arg )
1098 {
1099     Environment::Presets::TurbulenceSingleton::instance()->preset( atof(arg) );
1100     return FG_OPTIONS_OK;
1101 }
1102
1103 static int
1104 fgOptCeiling( const char *arg )
1105 {
1106     double elevation, thickness;
1107     string spec = arg;
1108     string::size_type pos = spec.find(':');
1109     if (pos == string::npos) {
1110         elevation = atof(spec.c_str());
1111         thickness = 2000;
1112     } else {
1113         elevation = atof(spec.substr(0, pos).c_str());
1114         thickness = atof(spec.substr(pos + 1).c_str());
1115     }
1116     Environment::Presets::CeilingSingleton::instance()->preset( elevation, thickness );
1117     return FG_OPTIONS_OK;
1118 }
1119
1120 static int
1121 fgOptWp( const char *arg )
1122 {
1123     string_list *waypoints = globals->get_initial_waypoints();
1124     if (!waypoints) {
1125         waypoints = new string_list;
1126         globals->set_initial_waypoints(waypoints);
1127     }
1128     waypoints->push_back(arg);
1129     return FG_OPTIONS_OK;
1130 }
1131
1132 static int
1133 fgOptConfig( const char *arg )
1134 {
1135     string file = arg;
1136     try {
1137         readProperties(file, globals->get_props());
1138     } catch (const sg_exception &e) {
1139         string message = "Error loading config file: ";
1140         message += e.getFormattedMessage() + e.getOrigin();
1141         SG_LOG(SG_INPUT, SG_ALERT, message);
1142         return FG_OPTIONS_ERROR;
1143     }
1144     return FG_OPTIONS_OK;
1145 }
1146
1147 static bool
1148 parse_colon (const string &s, double * val1, double * val2)
1149 {
1150     string::size_type pos = s.find(':');
1151     if (pos == string::npos) {
1152         *val2 = atof(s);
1153         return false;
1154     } else {
1155         *val1 = atof(s.substr(0, pos).c_str());
1156         *val2 = atof(s.substr(pos+1).c_str());
1157         return true;
1158     }
1159 }
1160
1161
1162 static int
1163 fgOptFailure( const char * arg )
1164 {
1165     string a = arg;
1166     if (a == "pitot") {
1167         fgSetBool("/systems/pitot/serviceable", false);
1168     } else if (a == "static") {
1169         fgSetBool("/systems/static/serviceable", false);
1170     } else if (a == "vacuum") {
1171         fgSetBool("/systems/vacuum/serviceable", false);
1172     } else if (a == "electrical") {
1173         fgSetBool("/systems/electrical/serviceable", false);
1174     } else {
1175         SG_LOG(SG_INPUT, SG_ALERT, "Unknown failure mode: " << a);
1176         return FG_OPTIONS_ERROR;
1177     }
1178
1179     return FG_OPTIONS_OK;
1180 }
1181
1182
1183 static int
1184 fgOptNAV1( const char * arg )
1185 {
1186     double radial, freq;
1187     if (parse_colon(arg, &radial, &freq))
1188         fgSetDouble("/instrumentation/nav[0]/radials/selected-deg", radial);
1189     fgSetDouble("/instrumentation/nav[0]/frequencies/selected-mhz", freq);
1190     return FG_OPTIONS_OK;
1191 }
1192
1193 static int
1194 fgOptNAV2( const char * arg )
1195 {
1196     double radial, freq;
1197     if (parse_colon(arg, &radial, &freq))
1198         fgSetDouble("/instrumentation/nav[1]/radials/selected-deg", radial);
1199     fgSetDouble("/instrumentation/nav[1]/frequencies/selected-mhz", freq);
1200     return FG_OPTIONS_OK;
1201 }
1202
1203 static int
1204 fgOptADF1( const char * arg )
1205 {
1206     double rot, freq;
1207     if (parse_colon(arg, &rot, &freq))
1208         fgSetDouble("/instrumentation/adf[0]/rotation-deg", rot);
1209     fgSetDouble("/instrumentation/adf[0]/frequencies/selected-khz", freq);
1210     return FG_OPTIONS_OK;
1211 }
1212
1213 static int
1214 fgOptADF2( const char * arg )
1215 {
1216     double rot, freq;
1217     if (parse_colon(arg, &rot, &freq))
1218         fgSetDouble("/instrumentation/adf[1]/rotation-deg", rot);
1219     fgSetDouble("/instrumentation/adf[1]/frequencies/selected-khz", freq);
1220     return FG_OPTIONS_OK;
1221 }
1222
1223 static int
1224 fgOptDME( const char *arg )
1225 {
1226     string opt = arg;
1227     if (opt == "nav1") {
1228         fgSetInt("/instrumentation/dme/switch-position", 1);
1229         fgSetString("/instrumentation/dme/frequencies/source",
1230                     "/instrumentation/nav[0]/frequencies/selected-mhz");
1231     } else if (opt == "nav2") {
1232         fgSetInt("/instrumentation/dme/switch-position", 3);
1233         fgSetString("/instrumentation/dme/frequencies/source",
1234                     "/instrumentation/nav[1]/frequencies/selected-mhz");
1235     } else {
1236         double frequency = atof(arg);
1237         if (frequency==0.0)
1238         {
1239             SG_LOG(SG_INPUT, SG_ALERT, "Invalid DME frequency: '" << arg << "'.");
1240             return FG_OPTIONS_ERROR;
1241         }
1242         fgSetInt("/instrumentation/dme/switch-position", 2);
1243         fgSetString("/instrumentation/dme/frequencies/source",
1244                     "/instrumentation/dme/frequencies/selected-mhz");
1245         fgSetDouble("/instrumentation/dme/frequencies/selected-mhz", frequency);
1246     }
1247     return FG_OPTIONS_OK;
1248 }
1249
1250 static int
1251 fgOptLivery( const char *arg )
1252 {
1253     string opt = arg;
1254     string livery_path = "livery/" + opt;
1255     fgSetString("/sim/model/texture-path", livery_path.c_str() );
1256     return FG_OPTIONS_OK;
1257 }
1258
1259 static int
1260 fgOptScenario( const char *arg )
1261 {
1262     SGPropertyNode_ptr ai_node = fgGetNode( "/sim/ai", true );
1263     vector<SGPropertyNode_ptr> scenarii = ai_node->getChildren( "scenario" );
1264     int index = -1;
1265     for ( size_t i = 0; i < scenarii.size(); ++i ) {
1266         int ind = scenarii[i]->getIndex();
1267         if ( index < ind ) {
1268             index = ind;
1269         }
1270     }
1271     SGPropertyNode_ptr scenario = ai_node->getNode( "scenario", index + 1, true );
1272     scenario->setStringValue( arg );
1273     return FG_OPTIONS_OK;
1274 }
1275
1276 static int
1277 fgOptRunway( const char *arg )
1278 {
1279     fgSetString("/sim/presets/runway", arg );
1280     fgSetBool("/sim/presets/runway-requested", true );
1281     return FG_OPTIONS_OK;
1282 }
1283
1284 static int
1285 fgOptParking( const char *arg )
1286 {
1287     cerr << "Processing argument " << arg << endl;
1288     fgSetString("/sim/presets/parking", arg );
1289     fgSetBool  ("/sim/presets/parking-requested", true );
1290     return FG_OPTIONS_OK;
1291 }
1292
1293 static int
1294 fgOptVersion( const char *arg )
1295 {
1296     cerr << "FlightGear version: " << FLIGHTGEAR_VERSION << endl;
1297     cerr << "Revision: " << REVISION << endl;
1298     cerr << "Build-Id: " << HUDSON_BUILD_ID << endl;
1299     cerr << "FG_ROOT=" << globals->get_fg_root() << endl;
1300     cerr << "FG_HOME=" << globals->get_fg_home() << endl;
1301     cerr << "FG_SCENERY=";
1302
1303     int didsome = 0;
1304     string_list scn = globals->get_fg_scenery();
1305     for (string_list::const_iterator it = scn.begin(); it != scn.end(); it++)
1306     {
1307         if (didsome) cerr << ":";
1308         didsome++;
1309         cerr << *it;
1310     }
1311     cerr << endl;
1312     cerr << "SimGear version: " << SG_STRINGIZE(SIMGEAR_VERSION) << endl;
1313     cerr << "PLIB version: " << PLIB_VERSION << endl;
1314     return FG_OPTIONS_EXIT;
1315 }
1316
1317 static int
1318 fgOptCallSign(const char * arg)
1319 {
1320     int i;
1321     char callsign[11];
1322     strncpy(callsign,arg,10);
1323     callsign[10]=0;
1324     for (i=0;callsign[i];i++)
1325     {
1326         char c = callsign[i];
1327         if (c >= 'A' && c <= 'Z') continue;
1328         if (c >= 'a' && c <= 'z') continue;
1329         if (c >= '0' && c <= '9') continue;
1330         if (c == '-' || c == '_') continue;
1331         // convert any other illegal characters
1332         callsign[i]='-';
1333     }
1334     fgSetString("sim/multiplay/callsign", callsign );
1335     return FG_OPTIONS_OK;
1336 }
1337
1338 static int
1339 fgOptIgnoreAutosave(const char* arg)
1340 {
1341     fgSetBool("/sim/startup/ignore-autosave", true);
1342     // don't overwrite autosave on exit
1343     fgSetBool("/sim/startup/save-on-exit", false);
1344     return FG_OPTIONS_OK;
1345 }
1346
1347 // Set a property for the --prop: option. Syntax: --prop:[<type>:]<name>=<value>
1348 // <type> can be "double" etc. but also only the first letter "d".
1349 // Examples:  --prop:alpha=1  --prop:bool:beta=true  --prop:d:gamma=0.123
1350 static int
1351 fgOptSetProperty(const char* raw)
1352 {
1353   string arg(raw);
1354   string::size_type pos = arg.find('=');
1355   if (pos == arg.npos || pos == 0 || pos + 1 == arg.size())
1356     return FG_OPTIONS_ERROR;
1357   
1358   string name = arg.substr(0, pos);
1359   string value = arg.substr(pos + 1);
1360   string type;
1361   pos = name.find(':');
1362   
1363   if (pos != name.npos && pos != 0 && pos + 1 != name.size()) {
1364     type = name.substr(0, pos);
1365     name = name.substr(pos + 1);
1366   }
1367   SGPropertyNode *n = fgGetNode(name.c_str(), true);
1368   
1369   bool writable = n->getAttribute(SGPropertyNode::WRITE);
1370   if (!writable)
1371     n->setAttribute(SGPropertyNode::WRITE, true);
1372   
1373   bool ret = false;
1374   if (type.empty())
1375     ret = n->setUnspecifiedValue(value.c_str());
1376   else if (type == "s" || type == "string")
1377     ret = n->setStringValue(value.c_str());
1378   else if (type == "d" || type == "double")
1379     ret = n->setDoubleValue(strtod(value.c_str(), 0));
1380   else if (type == "f" || type == "float")
1381     ret = n->setFloatValue(atof(value.c_str()));
1382   else if (type == "l" || type == "long")
1383     ret =  n->setLongValue(strtol(value.c_str(), 0, 0));
1384   else if (type == "i" || type == "int")
1385     ret =  n->setIntValue(atoi(value.c_str()));
1386   else if (type == "b" || type == "bool")
1387     ret =  n->setBoolValue(value == "true" || atoi(value.c_str()) != 0);
1388   
1389   if (!writable)
1390     n->setAttribute(SGPropertyNode::WRITE, false);
1391   return ret ? FG_OPTIONS_OK : FG_OPTIONS_ERROR;
1392 }
1393
1394
1395
1396 /*
1397    option       has_param type        property         b_param s_param  func
1398
1399 where:
1400  option    : name of the option
1401  has_param : option is --name=value if true or --name if false
1402  type      : OPTION_BOOL    - property is a boolean
1403              OPTION_STRING  - property is a string
1404              OPTION_DOUBLE  - property is a double
1405              OPTION_INT     - property is an integer
1406              OPTION_CHANNEL - name of option is the name of a channel
1407              OPTION_FUNC    - the option trigger a function
1408  b_param   : if type==OPTION_BOOL,
1409              value set to the property (has_param is false for boolean)
1410  s_param   : if type==OPTION_STRING,
1411              value set to the property if has_param is false
1412  func      : function called if type==OPTION_FUNC. if has_param is true,
1413              the value is passed to the function as a string, otherwise,
1414              s_param is passed.
1415
1416     For OPTION_DOUBLE and OPTION_INT, the parameter value is converted into a
1417     double or an integer and set to the property.
1418
1419     For OPTION_CHANNEL, add_channel is called with the parameter value as the
1420     argument.
1421 */
1422
1423 enum OptionType { OPTION_BOOL = 0, OPTION_STRING, OPTION_DOUBLE, OPTION_INT, OPTION_CHANNEL, OPTION_FUNC, OPTION_IGNORE };
1424 const int OPTION_MULTI = 1 << 17;
1425
1426 struct OptionDesc {
1427     const char *option;
1428     bool has_param;
1429     int type;
1430     const char *property;
1431     bool b_param;
1432     const char *s_param;
1433     int (*func)( const char * );
1434     } fgOptionArray[] = {
1435
1436     {"language",                     true,  OPTION_IGNORE, "", false, "", 0 },
1437         {"console",                      false, OPTION_IGNORE,   "", false, "", 0 },
1438     {"disable-rembrandt",            false, OPTION_BOOL,   "/sim/rendering/rembrandt/enabled", false, "", 0 },
1439     {"enable-rembrandt",             false, OPTION_BOOL,   "/sim/rendering/rembrandt/enabled", true, "", 0 },
1440     {"renderer",                     true,  OPTION_STRING, "/sim/rendering/rembrandt/renderer", false, "", 0 },
1441     {"disable-splash-screen",        false, OPTION_BOOL,   "/sim/startup/splash-screen", false, "", 0 },
1442     {"enable-splash-screen",         false, OPTION_BOOL,   "/sim/startup/splash-screen", true, "", 0 },
1443     {"disable-mouse-pointer",        false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "disabled", 0 },
1444     {"enable-mouse-pointer",         false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "enabled", 0 },
1445     {"disable-random-objects",       false, OPTION_BOOL,   "/sim/rendering/random-objects", false, "", 0 },
1446     {"enable-random-objects",        false, OPTION_BOOL,   "/sim/rendering/random-objects", true, "", 0 },
1447     {"disable-random-vegetation",    false, OPTION_BOOL,   "/sim/rendering/random-vegetation", false, "", 0 },
1448     {"enable-random-vegetation",     false, OPTION_BOOL,   "/sim/rendering/random-vegetation", true, "", 0 },
1449     {"disable-random-buildings",     false, OPTION_BOOL,   "/sim/rendering/random-buildings", false, "", 0 },
1450     {"enable-random-buildings",      false, OPTION_BOOL,   "/sim/rendering/random-buildings", true, "", 0 },
1451     {"disable-real-weather-fetch",   false, OPTION_BOOL,   "/environment/realwx/enabled", false, "", 0 },
1452     {"enable-real-weather-fetch",    false, OPTION_BOOL,   "/environment/realwx/enabled", true,  "", 0 },
1453     {"metar",                        true,  OPTION_STRING, "/environment/metar/data", false, "", 0 },
1454     {"disable-ai-models",            false, OPTION_BOOL,   "/sim/ai/enabled", false, "", 0 },
1455     {"enable-ai-models",             false, OPTION_BOOL,   "/sim/ai/enabled", true, "", 0 },
1456     {"disable-ai-traffic",           false, OPTION_BOOL,   "/sim/traffic-manager/enabled", false, "", 0 },
1457     {"enable-ai-traffic",            false, OPTION_BOOL,   "/sim/traffic-manager/enabled", true,  "", 0 },
1458     {"disable-freeze",               false, OPTION_BOOL,   "/sim/freeze/master", false, "", 0 },
1459     {"enable-freeze",                false, OPTION_BOOL,   "/sim/freeze/master", true, "", 0 },
1460     {"disable-fuel-freeze",          false, OPTION_BOOL,   "/sim/freeze/fuel", false, "", 0 },
1461     {"enable-fuel-freeze",           false, OPTION_BOOL,   "/sim/freeze/fuel", true, "", 0 },
1462     {"disable-clock-freeze",         false, OPTION_BOOL,   "/sim/freeze/clock", false, "", 0 },
1463     {"enable-clock-freeze",          false, OPTION_BOOL,   "/sim/freeze/clock", true, "", 0 },
1464     {"disable-hud-3d",               false, OPTION_BOOL,   "/sim/hud/enable3d[1]", false, "", 0 },
1465     {"enable-hud-3d",                false, OPTION_BOOL,   "/sim/hud/enable3d[1]", true, "", 0 },
1466     {"disable-anti-alias-hud",       false, OPTION_BOOL,   "/sim/hud/color/antialiased", false, "", 0 },
1467     {"enable-anti-alias-hud",        false, OPTION_BOOL,   "/sim/hud/color/antialiased", true, "", 0 },
1468     {"control",                      true,  OPTION_STRING, "/sim/control-mode", false, "", 0 },
1469     {"disable-auto-coordination",    false, OPTION_BOOL,   "/controls/flight/auto-coordination", false, "", 0 },
1470     {"enable-auto-coordination",     false, OPTION_BOOL,   "/controls/flight/auto-coordination", true, "", 0 },
1471     {"browser-app",                  true,  OPTION_STRING, "/sim/startup/browser-app", false, "", 0 },
1472     {"disable-hud",                  false, OPTION_BOOL,   "/sim/hud/visibility[1]", false, "", 0 },
1473     {"enable-hud",                   false, OPTION_BOOL,   "/sim/hud/visibility[1]", true, "", 0 },
1474     {"disable-panel",                false, OPTION_BOOL,   "/sim/panel/visibility", false, "", 0 },
1475     {"enable-panel",                 false, OPTION_BOOL,   "/sim/panel/visibility", true, "", 0 },
1476     {"disable-sound",                false, OPTION_BOOL,   "/sim/sound/working", false, "", 0 },
1477     {"enable-sound",                 false, OPTION_BOOL,   "/sim/sound/working", true, "", 0 },
1478     {"sound-device",                 true,  OPTION_STRING, "/sim/sound/device-name", false, "", 0 },
1479     {"airport",                      true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1480     {"runway",                       true,  OPTION_FUNC,   "", false, "", fgOptRunway },
1481     {"vor",                          true,  OPTION_FUNC,   "", false, "", fgOptVOR },
1482     {"vor-frequency",                true,  OPTION_DOUBLE, "/sim/presets/vor-freq", false, "", fgOptVOR },
1483     {"ndb",                          true,  OPTION_FUNC,   "", false, "", fgOptNDB },
1484     {"ndb-frequency",                true,  OPTION_DOUBLE, "/sim/presets/ndb-freq", false, "", fgOptVOR },
1485     {"carrier",                      true,  OPTION_FUNC,   "", false, "", fgOptCarrier },
1486     {"parkpos",                      true,  OPTION_FUNC,   "", false, "", fgOptParkpos },
1487     {"fix",                          true,  OPTION_FUNC,   "", false, "", fgOptFIX },
1488     {"offset-distance",              true,  OPTION_DOUBLE, "/sim/presets/offset-distance-nm", false, "", 0 },
1489     {"offset-azimuth",               true,  OPTION_DOUBLE, "/sim/presets/offset-azimuth-deg", false, "", 0 },
1490     {"lon",                          true,  OPTION_FUNC,   "", false, "", fgOptLon },
1491     {"lat",                          true,  OPTION_FUNC,   "", false, "", fgOptLat },
1492     {"altitude",                     true,  OPTION_FUNC,   "", false, "", fgOptAltitude },
1493     {"uBody",                        true,  OPTION_FUNC,   "", false, "", fgOptUBody },
1494     {"vBody",                        true,  OPTION_FUNC,   "", false, "", fgOptVBody },
1495     {"wBody",                        true,  OPTION_FUNC,   "", false, "", fgOptWBody },
1496     {"vNorth",                       true,  OPTION_FUNC,   "", false, "", fgOptVNorth },
1497     {"vEast",                        true,  OPTION_FUNC,   "", false, "", fgOptVEast },
1498     {"vDown",                        true,  OPTION_FUNC,   "", false, "", fgOptVDown },
1499     {"vc",                           true,  OPTION_FUNC,   "", false, "", fgOptVc },
1500     {"mach",                         true,  OPTION_FUNC,   "", false, "", fgOptMach },
1501     {"heading",                      true,  OPTION_DOUBLE, "/sim/presets/heading-deg", false, "", 0 },
1502     {"roll",                         true,  OPTION_DOUBLE, "/sim/presets/roll-deg", false, "", 0 },
1503     {"pitch",                        true,  OPTION_DOUBLE, "/sim/presets/pitch-deg", false, "", 0 },
1504     {"glideslope",                   true,  OPTION_DOUBLE, "/sim/presets/glideslope-deg", false, "", 0 },
1505     {"roc",                          true,  OPTION_FUNC,   "", false, "", fgOptRoc },
1506     {"fg-root",                      true,  OPTION_IGNORE,   "", false, "", 0 },
1507     {"fg-scenery",                   true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptFgScenery },
1508     {"fg-aircraft",                  true,  OPTION_IGNORE | OPTION_MULTI,   "", false, "", 0 },
1509     {"fdm",                          true,  OPTION_STRING, "/sim/flight-model", false, "", 0 },
1510     {"aero",                         true,  OPTION_STRING, "/sim/aero", false, "", 0 },
1511     {"aircraft-dir",                 true,  OPTION_IGNORE,   "", false, "", 0 },
1512     {"model-hz",                     true,  OPTION_INT,    "/sim/model-hz", false, "", 0 },
1513     {"max-fps",                      true,  OPTION_DOUBLE, "/sim/frame-rate-throttle-hz", false, "", 0 },
1514     {"speed",                        true,  OPTION_DOUBLE, "/sim/speed-up", false, "", 0 },
1515     {"trim",                         false, OPTION_BOOL,   "/sim/presets/trim", true, "", 0 },
1516     {"notrim",                       false, OPTION_BOOL,   "/sim/presets/trim", false, "", 0 },
1517     {"on-ground",                    false, OPTION_BOOL,   "/sim/presets/onground", true, "", 0 },
1518     {"in-air",                       false, OPTION_BOOL,   "/sim/presets/onground", false, "", 0 },
1519     {"fog-disable",                  false, OPTION_STRING, "/sim/rendering/fog", false, "disabled", 0 },
1520     {"fog-fastest",                  false, OPTION_STRING, "/sim/rendering/fog", false, "fastest", 0 },
1521     {"fog-nicest",                   false, OPTION_STRING, "/sim/rendering/fog", false, "nicest", 0 },
1522     {"disable-horizon-effect",       false, OPTION_BOOL,   "/sim/rendering/horizon-effect", false, "", 0 },
1523     {"enable-horizon-effect",        false, OPTION_BOOL,   "/sim/rendering/horizon-effect", true, "", 0 },
1524     {"disable-enhanced-lighting",    false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", false, "", 0 },
1525     {"enable-enhanced-lighting",     false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", true, "", 0 },
1526     {"disable-distance-attenuation", false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", false, "", 0 },
1527     {"enable-distance-attenuation",  false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", true, "", 0 },
1528     {"disable-specular-highlight",   false, OPTION_BOOL,   "/sim/rendering/specular-highlight", false, "", 0 },
1529     {"enable-specular-highlight",    false, OPTION_BOOL,   "/sim/rendering/specular-highlight", true, "", 0 },
1530     {"disable-clouds",               false, OPTION_BOOL,   "/environment/clouds/status", false, "", 0 },
1531     {"enable-clouds",                false, OPTION_BOOL,   "/environment/clouds/status", true, "", 0 },
1532     {"disable-clouds3d",             false, OPTION_BOOL,   "/sim/rendering/clouds3d-enable", false, "", 0 },
1533     {"enable-clouds3d",              false, OPTION_BOOL,   "/sim/rendering/clouds3d-enable", true, "", 0 },
1534     {"fov",                          true,  OPTION_FUNC,   "", false, "", fgOptFov },
1535     {"aspect-ratio-multiplier",      true,  OPTION_DOUBLE, "/sim/current-view/aspect-ratio-multiplier", false, "", 0 },
1536     {"disable-fullscreen",           false, OPTION_BOOL,   "/sim/startup/fullscreen", false, "", 0 },
1537     {"enable-fullscreen",            false, OPTION_BOOL,   "/sim/startup/fullscreen", true, "", 0 },
1538     {"disable-save-on-exit",         false, OPTION_BOOL,   "/sim/startup/save-on-exit", false, "", 0 },
1539     {"enable-save-on-exit",          false, OPTION_BOOL,   "/sim/startup/save-on-exit", true, "", 0 },
1540     {"read-only",                    false, OPTION_BOOL,   "/sim/fghome-readonly", true, "", 0 },
1541     {"ignore-autosave",              false, OPTION_FUNC,   "", false, "", fgOptIgnoreAutosave },
1542     {"restore-defaults",             false, OPTION_BOOL,   "/sim/startup/restore-defaults", true, "", 0 },
1543     {"shading-flat",                 false, OPTION_BOOL,   "/sim/rendering/shading", false, "", 0 },
1544     {"shading-smooth",               false, OPTION_BOOL,   "/sim/rendering/shading", true, "", 0 },
1545     {"texture-filtering",            false, OPTION_INT,    "/sim/rendering/filtering", 1, "", 0 },
1546     {"disable-wireframe",            false, OPTION_BOOL,   "/sim/rendering/wireframe", false, "", 0 },
1547     {"enable-wireframe",             false, OPTION_BOOL,   "/sim/rendering/wireframe", true, "", 0 },
1548     {"materials-file",               true,  OPTION_STRING, "/sim/rendering/materials-file", false, "", 0 },
1549     {"disable-terrasync",            false, OPTION_BOOL,   "/sim/terrasync/enabled", false, "", 0 },
1550     {"enable-terrasync",             false, OPTION_BOOL,   "/sim/terrasync/enabled", true, "", 0 },
1551     {"terrasync-dir",                true,  OPTION_STRING, "/sim/terrasync/scenery-dir", false, "", 0 },
1552     {"geometry",                     true,  OPTION_FUNC,   "", false, "", fgOptGeometry },
1553     {"bpp",                          true,  OPTION_FUNC,   "", false, "", fgOptBpp },
1554     {"units-feet",                   false, OPTION_STRING, "/sim/startup/units", false, "feet", 0 },
1555     {"units-meters",                 false, OPTION_STRING, "/sim/startup/units", false, "meters", 0 },
1556     {"timeofday",                    true,  OPTION_STRING, "/sim/startup/time-offset-type", false, "noon", 0 },
1557     {"season",                       true,  OPTION_STRING, "/sim/startup/season", false, "summer", 0 },
1558     {"time-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptTimeOffset },
1559     {"time-match-real",              false, OPTION_STRING, "/sim/startup/time-offset-type", false, "system-offset", 0 },
1560     {"time-match-local",             false, OPTION_STRING, "/sim/startup/time-offset-type", false, "latitude-offset", 0 },
1561     {"start-date-sys",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateSys },
1562     {"start-date-lat",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateLat },
1563     {"start-date-gmt",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateGmt },
1564     {"hud-tris",                     false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
1565     {"hud-culled",                   false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
1566     {"atcsim",                       true,  OPTION_CHANNEL, "", false, "dummy", 0 },
1567     {"atlas",                        true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1568     {"httpd",                        true,  OPTION_FUNC   , "", false, "", fgOptHttpd },
1569     {"jpg-httpd",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1570     {"native",                       true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1571     {"native-ctrls",                 true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1572     {"native-fdm",                   true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1573     {"native-gui",                   true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1574     {"opengc",                       true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1575     {"AV400",                        true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1576     {"AV400Sim",                     true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1577     {"AV400WSimA",                   true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1578     {"AV400WSimB",                   true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1579     {"garmin",                       true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1580     {"igc",                          true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1581     {"nmea",                         true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1582     {"generic",                      true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1583     {"props",                        true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1584     {"telnet",                       true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1585     {"pve",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1586     {"ray",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1587     {"rul",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1588     {"joyclient",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1589     {"jsclient",                     true,  OPTION_CHANNEL, "", false, "", 0 },
1590     {"proxy",                        true,  OPTION_FUNC,    "", false, "", fgSetupProxy },
1591     {"callsign",                     true,  OPTION_FUNC,    "", false, "", fgOptCallSign},
1592     {"multiplay",                    true,  OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 },
1593 #if FG_HAVE_HLA
1594     {"hla",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1595     {"hla-local",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1596 #endif
1597     {"trace-read",                   true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptTraceRead },
1598     {"trace-write",                  true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptTraceWrite },
1599     {"log-level",                    true,  OPTION_FUNC,   "", false, "", fgOptLogLevel },
1600     {"log-class",                    true,  OPTION_FUNC,   "", false, "", fgOptLogClasses },
1601     {"view-offset",                  true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptViewOffset },
1602     {"visibility",                   true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMeters },
1603     {"visibility-miles",             true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMiles },
1604     {"random-wind",                  false, OPTION_FUNC,   "", false, "", fgOptRandomWind },
1605     {"wind",                         true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptWind },
1606     {"turbulence",                   true,  OPTION_FUNC,   "", false, "", fgOptTurbulence },
1607     {"ceiling",                      true,  OPTION_FUNC,   "", false, "", fgOptCeiling },
1608     {"wp",                           true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptWp },
1609     {"flight-plan",                  true,  OPTION_STRING,   "/autopilot/route-manager/file-path", false, "", NULL },
1610     {"config",                       true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptConfig },
1611     {"aircraft",                     true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1612     {"vehicle",                      true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1613     {"failure",                      true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptFailure },
1614 #ifdef ENABLE_IAX
1615     {"enable-fgcom",                 false, OPTION_BOOL,   "/sim/fgcom/enabled", true, "", 0 },
1616     {"disable-fgcom",                false, OPTION_BOOL,   "/sim/fgcom/enabled", false, "", 0 },
1617 #endif
1618     {"com1",                         true,  OPTION_DOUBLE, "/instrumentation/comm[0]/frequencies/selected-mhz", false, "", 0 },
1619     {"com2",                         true,  OPTION_DOUBLE, "/instrumentation/comm[1]/frequencies/selected-mhz", false, "", 0 },
1620     {"nav1",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV1 },
1621     {"nav2",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV2 },
1622     {"adf", /*legacy*/               true,  OPTION_FUNC,   "", false, "", fgOptADF1 },
1623     {"adf1",                         true,  OPTION_FUNC,   "", false, "", fgOptADF1 },
1624     {"adf2",                         true,  OPTION_FUNC,   "", false, "", fgOptADF2 },
1625     {"dme",                          true,  OPTION_FUNC,   "", false, "", fgOptDME },
1626     {"min-status",                   true,  OPTION_STRING,  "/sim/aircraft-min-status", false, "all", 0 },
1627     {"livery",                       true,  OPTION_FUNC,   "", false, "", fgOptLivery },
1628     {"ai-scenario",                  true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptScenario },
1629     {"parking-id",                   true,  OPTION_FUNC,   "", false, "", fgOptParking  },
1630     {"version",                      false, OPTION_FUNC,   "", false, "", fgOptVersion },
1631     {"enable-fpe",                   false, OPTION_IGNORE,   "", false, "", 0},
1632     {"fgviewer",                     false, OPTION_IGNORE,   "", false, "", 0},
1633     {"no-default-config",            false, OPTION_IGNORE, "", false, "", 0},
1634     {"prop",                         true,  OPTION_FUNC | OPTION_MULTI,   "", false, "", fgOptSetProperty},
1635     {0}
1636 };
1637
1638
1639 namespace flightgear
1640 {
1641
1642 /**
1643  * internal storage of a value->option binding
1644  */
1645 class OptionValue 
1646 {
1647 public:
1648   OptionValue(OptionDesc* d, const string& v) :
1649     desc(d), value(v)
1650   {;}
1651   
1652   OptionDesc* desc;
1653   string value;
1654 };
1655
1656 typedef std::vector<OptionValue> OptionValueVec;
1657 typedef std::map<string, OptionDesc*> OptionDescDict;
1658   
1659 class Options::OptionsPrivate
1660 {
1661 public:
1662   
1663   OptionValueVec::const_iterator findValue(const string& key) const
1664   {
1665     OptionValueVec::const_iterator it = values.begin();
1666     for (; it != values.end(); ++it) {
1667       if (!it->desc) {
1668         continue; // ignore markers
1669       }
1670       
1671       if (it->desc->option == key) {
1672         return it;
1673       }
1674     } // of set values iteration
1675     
1676     return it; // not found
1677   }
1678   
1679   OptionDesc* findOption(const string& key) const
1680   {
1681     OptionDescDict::const_iterator it = options.find(key);
1682     if (it == options.end()) {
1683       return NULL;
1684     }
1685     
1686     return it->second;
1687   }
1688   
1689   int processOption(OptionDesc* desc, const string& arg_value)
1690   {
1691     if (!desc) {
1692       return FG_OPTIONS_OK; // tolerate marker options
1693     }
1694     
1695     switch ( desc->type & 0xffff ) {
1696       case OPTION_BOOL:
1697         fgSetBool( desc->property, desc->b_param );
1698         break;
1699       case OPTION_STRING:
1700         if ( desc->has_param && !arg_value.empty() ) {
1701           fgSetString( desc->property, arg_value.c_str() );
1702         } else if ( !desc->has_param && arg_value.empty() ) {
1703           fgSetString( desc->property, desc->s_param );
1704         } else if ( desc->has_param ) {
1705           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1706           return FG_OPTIONS_ERROR;
1707         } else {
1708           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' does not have a parameter" );
1709           return FG_OPTIONS_ERROR;
1710         }
1711         break;
1712       case OPTION_DOUBLE:
1713         if ( !arg_value.empty() ) {
1714           fgSetDouble( desc->property, atof( arg_value ) );
1715         } else {
1716           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1717           return FG_OPTIONS_ERROR;
1718         }
1719         break;
1720       case OPTION_INT:
1721         if ( !arg_value.empty() ) {
1722           fgSetInt( desc->property, atoi( arg_value ) );
1723         } else {
1724           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1725           return FG_OPTIONS_ERROR;
1726         }
1727         break;
1728       case OPTION_CHANNEL:
1729         // XXX return value of add_channel should be checked?
1730         if ( desc->has_param && !arg_value.empty() ) {
1731           add_channel( desc->option, arg_value );
1732         } else if ( !desc->has_param && arg_value.empty() ) {
1733           add_channel( desc->option, desc->s_param );
1734         } else if ( desc->has_param ) {
1735           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1736           return FG_OPTIONS_ERROR;
1737         } else {
1738           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' does not have a parameter" );
1739           return FG_OPTIONS_ERROR;
1740         }
1741         break;
1742       case OPTION_FUNC:
1743         if ( desc->has_param && !arg_value.empty() ) {
1744           return desc->func( arg_value.c_str() );
1745         } else if ( !desc->has_param && arg_value.empty() ) {
1746           return desc->func( desc->s_param );
1747         } else if ( desc->has_param ) {
1748           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' needs a parameter" );
1749           return FG_OPTIONS_ERROR;
1750         } else {
1751           SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << desc->option << "' does not have a parameter" );
1752           return FG_OPTIONS_ERROR;
1753         }
1754         break;
1755         
1756       case OPTION_IGNORE:
1757         break;
1758     }
1759     
1760     return FG_OPTIONS_OK;
1761   }
1762     
1763   /**
1764    * insert a marker value into the values vector. This is necessary
1765    * when processing options, to ensure the correct ordering, where we scan
1766    * for marker values in reverse, and then forwards within each group.
1767    */
1768   void insertGroupMarker()
1769   {
1770     values.push_back(OptionValue(NULL, "-"));
1771   }
1772   
1773   /**
1774    * given a current iterator into the values, find the preceeding group marker,
1775    * or return the beginning of the value vector.
1776    */
1777   OptionValueVec::const_iterator rfindGroup(OptionValueVec::const_iterator pos) const
1778   {
1779     while (--pos != values.begin()) {
1780       if (pos->desc == NULL) {
1781         return pos; // found a marker, we're done
1782       }
1783     }
1784     
1785     return pos;
1786   }
1787   
1788   bool showHelp,
1789     verbose,
1790     showAircraft,
1791     shouldLoadDefaultConfig;
1792     
1793   OptionDescDict options;
1794   OptionValueVec values;
1795   simgear::PathList propertyFiles;
1796 };
1797   
1798 Options* Options::sharedInstance()
1799 {
1800   if (shared_instance == NULL) {
1801     shared_instance = new Options;
1802   }
1803   
1804   return shared_instance;
1805 }
1806   
1807 Options::Options() :
1808   p(new OptionsPrivate())
1809 {
1810   p->showHelp = false;
1811   p->verbose = false;
1812   p->showAircraft = false;
1813   p->shouldLoadDefaultConfig = true;
1814   
1815 // build option map
1816   OptionDesc *desc = &fgOptionArray[ 0 ];
1817   while ( desc->option != 0 ) {
1818     p->options[ desc->option ] = desc;
1819     ++desc;
1820   }
1821 }
1822   
1823 Options::~Options()
1824 {
1825 }
1826   
1827 void Options::init(int argc, char **argv, const SGPath& appDataPath)
1828 {
1829 // first, process the command line
1830   bool inOptions = true;
1831   for (int i=1; i<argc; ++i) {
1832     if (inOptions && (argv[i][0] == '-')) {
1833       if (strcmp(argv[i], "--") == 0) { // end of options delimiter
1834         inOptions = true;
1835         continue;
1836       }
1837       
1838       int result = parseOption(argv[i]);
1839       processArgResult(result);
1840     } else {
1841     // XML properties file
1842       SGPath f(argv[i]);
1843       if (!f.exists()) {
1844         SG_LOG(SG_GENERAL, SG_ALERT, "config file not found:" << f.str());
1845         return;
1846       }
1847       
1848       p->propertyFiles.push_back(f);
1849     }
1850   } // of arguments iteration
1851   p->insertGroupMarker(); // command line is one group
1852   
1853   // establish log-level before anything else - otherwise it is not possible
1854   // to show extra (debug/info/warning) messages for the start-up phase.
1855   fgOptLogLevel(valueForOption("log-level", "alert").c_str());
1856
1857   if (!p->shouldLoadDefaultConfig) {
1858     setupRoot();
1859     return;
1860   }
1861   
1862 // then config files
1863   SGPath config;
1864   std::string homedir;
1865   if (getenv("HOME")) {
1866     homedir = getenv("HOME");
1867   }
1868     
1869   if( !homedir.empty() && !hostname.empty() ) {
1870     // Check for ~/.fgfsrc.hostname
1871     config.set(homedir);
1872     config.append(".fgfsrc");
1873     config.concat( "." );
1874     config.concat( hostname );
1875     readConfig(config);
1876   }
1877   
1878 // Check for ~/.fgfsrc
1879   if( !homedir.empty() ) {
1880     config.set(homedir);
1881     config.append(".fgfsrc");
1882     readConfig(config);
1883   }
1884   
1885 // check for a config file in app data
1886   SGPath appDataConfig(appDataPath);
1887   appDataConfig.append("fgfsrc");
1888   if (appDataConfig.exists()) {
1889     readConfig(appDataConfig);
1890   }
1891   
1892 // setup FG_ROOT
1893   setupRoot();
1894   
1895 // system.fgfsrc handling
1896   if( ! hostname.empty() ) {
1897     config.set(globals->get_fg_root());
1898     config.append( "system.fgfsrc" );
1899     config.concat( "." );
1900     config.concat( hostname );
1901     readConfig(config);
1902   }
1903
1904   config.set(globals->get_fg_root());
1905   config.append( "system.fgfsrc" );
1906   readConfig(config);
1907 }
1908   
1909 void Options::initAircraft()
1910 {
1911   BOOST_FOREACH(const string& paths, valuesForOption("fg-aircraft")) {
1912     globals->append_aircraft_paths(paths);
1913   }
1914   
1915   const char* envp = ::getenv("FG_AIRCRAFT");
1916   if (envp) {
1917     globals->append_aircraft_paths(envp);
1918   }
1919
1920   string aircraft;
1921   if (isOptionSet("aircraft")) {
1922     aircraft = valueForOption("aircraft");
1923   } else if (isOptionSet("vehicle")) {
1924     aircraft = valueForOption("vehicle");
1925   }
1926     
1927   if (!aircraft.empty()) {
1928     SG_LOG(SG_INPUT, SG_INFO, "aircraft = " << aircraft );
1929     fgSetString("/sim/aircraft", aircraft.c_str() );
1930   } else {
1931     SG_LOG(SG_INPUT, SG_INFO, "No user specified aircraft, using default" );
1932   }
1933   
1934 // persist across reset
1935   SGPropertyNode* aircraftProp = fgGetNode("/sim/aircraft", true);
1936   aircraftProp->setAttribute(SGPropertyNode::PRESERVE, true);
1937     
1938   if (p->showAircraft) {
1939     fgOptLogLevel( "alert" );
1940     SGPath path( globals->get_fg_root() );
1941     path.append("Aircraft");
1942     fgShowAircraft(path);
1943     exit(0);
1944   }
1945   
1946   if (isOptionSet("aircraft-dir")) {
1947     // set this now, so it's available in FindAndCacheAircraft
1948     fgSetString("/sim/aircraft-dir", valueForOption("aircraft-dir"));
1949   }
1950 }
1951   
1952 void Options::processArgResult(int result)
1953 {
1954   if ((result == FG_OPTIONS_HELP) || (result == FG_OPTIONS_ERROR))
1955     p->showHelp = true;
1956   else if (result == FG_OPTIONS_VERBOSE_HELP)
1957     p->verbose = true;
1958   else if (result == FG_OPTIONS_SHOW_AIRCRAFT) {
1959     p->showAircraft = true;
1960   } else if (result == FG_OPTIONS_NO_DEFAULT_CONFIG) {
1961     p->shouldLoadDefaultConfig = false;
1962   } else if (result == FG_OPTIONS_SHOW_SOUND_DEVICES) {
1963     SGSoundMgr smgr;
1964     
1965     smgr.init();
1966     string vendor = smgr.get_vendor();
1967     string renderer = smgr.get_renderer();
1968     cout << renderer << " provided by " << vendor << endl;
1969     cout << endl << "No. Device" << endl;
1970     
1971     vector <const char*>devices = smgr.get_available_devices();
1972     for (vector <const char*>::size_type i=0; i<devices.size(); i++) {
1973       cout << i << ".  \"" << devices[i] << "\"" << endl;
1974     }
1975     devices.clear();
1976     smgr.stop();
1977     exit(0);
1978   } else if (result == FG_OPTIONS_EXIT) {
1979     exit(0);
1980   }
1981 }
1982   
1983 void Options::readConfig(const SGPath& path)
1984 {
1985   sg_gzifstream in( path.str() );
1986   if ( !in.is_open() ) {
1987     return;
1988   }
1989   
1990   SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path.str() );
1991   
1992   in >> skipcomment;
1993   while ( ! in.eof() ) {
1994     string line;
1995     getline( in, line, '\n' );
1996     
1997     // catch extraneous (DOS) line ending character
1998     int i;
1999     for (i = line.length(); i > 0; i--)
2000       if (line[i - 1] > 32)
2001         break;
2002     line = line.substr( 0, i );
2003     
2004     if ( parseOption( line ) == FG_OPTIONS_ERROR ) {
2005       cerr << endl << "Config file parse error: " << path.str() << " '"
2006       << line << "'" << endl;
2007             p->showHelp = true;
2008     }
2009     in >> skipcomment;
2010   }
2011
2012   p->insertGroupMarker(); // each config file is a group
2013 }
2014   
2015 int Options::parseOption(const string& s)
2016 {
2017   if ((s == "--help") || (s=="-h")) {
2018     return FG_OPTIONS_HELP;
2019   } else if ( (s == "--verbose") || (s == "-v") ) {
2020     // verbose help/usage request
2021     return FG_OPTIONS_VERBOSE_HELP;
2022   } else if ((s == "--console") || (s == "-c")) {
2023           simgear::requestConsole();
2024           return FG_OPTIONS_OK;
2025   } else if (s.find("-psn") == 0) {
2026     // on Mac, when launched from the GUI, we are passed the ProcessSerialNumber
2027     // as an argument (and no others). Silently ignore the argument here.
2028     return FG_OPTIONS_OK;
2029   } else if ( s.find( "--show-aircraft") == 0) {
2030     return(FG_OPTIONS_SHOW_AIRCRAFT);
2031   } else if ( s.find( "--show-sound-devices") == 0) {
2032     return(FG_OPTIONS_SHOW_SOUND_DEVICES);
2033   } else if ( s.find( "--no-default-config") == 0) {
2034     return FG_OPTIONS_NO_DEFAULT_CONFIG;
2035   } else if ( s.find( "--prop:") == 0) {
2036     // property setting has a slightly different syntax, so fudge things
2037     OptionDesc* desc = p->findOption("prop");
2038     if (s.find("=", 7) == string::npos) { // no equals token
2039       SG_LOG(SG_GENERAL, SG_ALERT, "malformed property option:" << s);
2040       return FG_OPTIONS_ERROR;
2041     }
2042     
2043     p->values.push_back(OptionValue(desc, s.substr(7)));
2044     return FG_OPTIONS_OK;
2045   } else if ( s.find( "--" ) == 0 ) {
2046     size_t eqPos = s.find( '=' );
2047     string key, value;
2048     if (eqPos == string::npos) {
2049       key = s.substr(2);
2050     } else {
2051       key = s.substr( 2, eqPos - 2 );
2052       value = s.substr( eqPos + 1);
2053     }
2054     
2055     return addOption(key, value);
2056   } else {
2057       flightgear::modalMessageBox("Unknown option", "Unknown command-line option: " + s);
2058     return FG_OPTIONS_ERROR;
2059   }
2060 }
2061   
2062 int Options::addOption(const string &key, const string &value)
2063 {
2064   OptionDesc* desc = p->findOption(key);
2065   if (!desc) {
2066     flightgear::modalMessageBox("Unknown option", "Unknown command-line option: " + key);
2067     return FG_OPTIONS_ERROR;
2068   }
2069   
2070   if (!(desc->type & OPTION_MULTI)) {
2071     OptionValueVec::const_iterator it = p->findValue(key);
2072     if (it != p->values.end()) {
2073       SG_LOG(SG_GENERAL, SG_WARN, "multiple values forbidden for option:" << key << ", ignoring:" << value);
2074       return FG_OPTIONS_OK;
2075     }
2076   }
2077   
2078   p->values.push_back(OptionValue(desc, value));
2079   return FG_OPTIONS_OK;
2080 }
2081   
2082 bool Options::isOptionSet(const string &key) const
2083 {
2084   OptionValueVec::const_iterator it = p->findValue(key);
2085   return (it != p->values.end());
2086 }
2087   
2088 string Options::valueForOption(const string& key, const string& defValue) const
2089 {
2090   OptionValueVec::const_iterator it = p->findValue(key);
2091   if (it == p->values.end()) {
2092     return defValue;
2093   }
2094   
2095   return it->value;
2096 }
2097
2098 string_list Options::valuesForOption(const std::string& key) const
2099 {
2100   string_list result;
2101   OptionValueVec::const_iterator it = p->values.begin();
2102   for (; it != p->values.end(); ++it) {
2103     if (!it->desc) {
2104       continue; // ignore marker values
2105     }
2106     
2107     if (it->desc->option == key) {
2108       result.push_back(it->value);
2109     }
2110   }
2111   
2112   return result;
2113 }
2114
2115
2116 static string defaultTerrasyncDir()
2117 {
2118 #if defined(SG_WINDOWS)
2119         SGPath p(SGPath::documents());
2120         p.append("FlightGear");
2121 #else
2122     SGPath p(globals->get_fg_home());
2123 #endif
2124         p.append("TerraSync");
2125         return p.str();
2126 }
2127
2128
2129 OptionResult Options::processOptions()
2130 {
2131   // establish locale before showing help (this selects the default locale,
2132   // when no explicit option was set)
2133   globals->get_locale()->selectLanguage(valueForOption("language").c_str());
2134
2135   // now FG_ROOT is setup, process various command line options that bail us
2136   // out quickly, but rely on aircraft / root settings
2137   if (p->showHelp) {
2138     showUsage();
2139       return FG_OPTIONS_EXIT;
2140   }
2141   
2142   // processing order is complicated. We must process groups LIFO, but the
2143   // values *within* each group in FIFO order, to retain consistency with
2144   // older versions of FG, and existing user configs.
2145   // in practice this means system.fgfsrc must be *processed* before
2146   // .fgfsrc, which must be processed before the command line args, and so on.
2147   OptionValueVec::const_iterator groupEnd = p->values.end();
2148
2149   while (groupEnd != p->values.begin()) {
2150     OptionValueVec::const_iterator groupBegin = p->rfindGroup(groupEnd);
2151   // run over the group in FIFO order
2152     OptionValueVec::const_iterator it;
2153     for (it = groupBegin; it != groupEnd; ++it) {      
2154       int result = p->processOption(it->desc, it->value);
2155       switch(result)
2156       {
2157           case FG_OPTIONS_ERROR:
2158               showUsage();
2159               return FG_OPTIONS_ERROR;
2160               
2161           case FG_OPTIONS_EXIT:
2162               return FG_OPTIONS_EXIT;
2163               
2164           default:
2165               break;
2166       }
2167     }
2168     
2169     groupEnd = groupBegin;
2170   }
2171
2172   BOOST_FOREACH(const SGPath& file, p->propertyFiles) {
2173     if (!file.exists()) {
2174       SG_LOG(SG_GENERAL, SG_ALERT, "config file not found:" << file.str());
2175       continue;
2176     }
2177     
2178     SG_LOG(SG_GENERAL, SG_INFO,
2179            "Reading command-line property file " << file.str());
2180           readProperties(file.str(), globals->get_props());
2181   }
2182
2183 // now options are process, do supplemental fixup
2184   const char *envp = ::getenv( "FG_SCENERY" );
2185   if (envp) {
2186     globals->append_fg_scenery(envp);
2187   }
2188     
2189 // terrasync directory fixup
2190   string terrasyncDir = fgGetString("/sim/terrasync/scenery-dir");
2191   if (terrasyncDir.empty()) {
2192           terrasyncDir = defaultTerrasyncDir();
2193           // auto-save it for next time
2194           
2195           SG_LOG(SG_GENERAL, SG_INFO,
2196                   "Using default TerraSync: " << terrasyncDir);
2197       fgSetString("/sim/terrasync/scenery-dir", terrasyncDir);
2198   }
2199
2200   SGPath p(terrasyncDir);
2201
2202   // following is necessary to ensure NavDataCache sees stable scenery paths from
2203   // terrasync. Ensure the Terrain and Objects subdirs exist immediately, rather
2204   // than waiting for the first tiles to be scheduled.
2205   simgear::Dir terrainDir(SGPath(p, "Terrain")),
2206     objectsDir(SGPath(p, "Objects"));
2207   if (!terrainDir.exists()) {
2208       terrainDir.create(0755);
2209   }
2210   
2211   if (!objectsDir.exists()) {
2212       objectsDir.create(0755);
2213   }
2214   if (fgGetBool("/sim/terrasync/enabled")) {
2215     const string_list& scenery_paths(globals->get_fg_scenery());
2216     if (std::find(scenery_paths.begin(), scenery_paths.end(), terrasyncDir) == scenery_paths.end()) {
2217       // terrasync dir is not in the scenery paths, add it
2218       globals->append_fg_scenery(terrasyncDir);
2219     }
2220   }
2221   
2222   if (globals->get_fg_scenery().empty()) {
2223     // no scenery paths set *at all*, use the data in FG_ROOT
2224     SGPath root(globals->get_fg_root());
2225     root.append("Scenery");
2226     globals->append_fg_scenery(root.str());
2227   }
2228     
2229   return FG_OPTIONS_OK;
2230 }
2231   
2232 void Options::showUsage() const
2233 {
2234   fgOptLogLevel( "alert" );
2235   
2236   FGLocale *locale = globals->get_locale();
2237   SGPropertyNode options_root;
2238   
2239   simgear::requestConsole(); // ensure console is shown on Windows
2240   cout << endl;
2241
2242   try {
2243     fgLoadProps("options.xml", &options_root);
2244   } catch (const sg_exception &) {
2245     cout << "Unable to read the help file." << endl;
2246     cout << "Make sure the file options.xml is located in the FlightGear base directory," << endl;
2247     cout << "and the location of the base directory is specified by setting $FG_ROOT or" << endl;
2248     cout << "by adding --fg-root=path as a program argument." << endl;
2249     
2250     exit(-1);
2251   }
2252
2253   SGPropertyNode *options = options_root.getNode("options");
2254   if (!options) {
2255     SG_LOG( SG_GENERAL, SG_ALERT,
2256            "Error reading options.xml: <options> directive not found." );
2257     exit(-1);
2258   }
2259
2260   if (!locale->loadResource("options"))
2261   {
2262       cout << "Unable to read the language resource." << endl;
2263       exit(-1);
2264   }
2265
2266   const char* usage = locale->getLocalizedString(options->getStringValue("usage"), "options");
2267   if (usage) {
2268     cout << usage << endl;
2269   }
2270   
2271   vector<SGPropertyNode_ptr>section = options->getChildren("section");
2272   for (unsigned int j = 0; j < section.size(); j++) {
2273     string msg = "";
2274     
2275     vector<SGPropertyNode_ptr>option = section[j]->getChildren("option");
2276     for (unsigned int k = 0; k < option.size(); k++) {
2277       
2278       SGPropertyNode *name = option[k]->getNode("name");
2279       SGPropertyNode *short_name = option[k]->getNode("short");
2280       SGPropertyNode *key = option[k]->getNode("key");
2281       SGPropertyNode *arg = option[k]->getNode("arg");
2282       bool brief = option[k]->getNode("brief") != 0;
2283       
2284       if ((brief || p->verbose) && name) {
2285         string tmp = name->getStringValue();
2286         
2287         if (key){
2288           tmp.append(":");
2289           tmp.append(key->getStringValue());
2290         }
2291         if (arg) {
2292           tmp.append("=");
2293           tmp.append(arg->getStringValue());
2294         }
2295         if (short_name) {
2296           tmp.append(", -");
2297           tmp.append(short_name->getStringValue());
2298         }
2299         
2300         if (tmp.size() <= 25) {
2301           msg+= "   --";
2302           msg += tmp;
2303           msg.append( 27-tmp.size(), ' ');
2304         } else {
2305           msg += "\n   --";
2306           msg += tmp + '\n';
2307           msg.append(32, ' ');
2308         }
2309         // There may be more than one <description> tag associated
2310         // with one option
2311         
2312         vector<SGPropertyNode_ptr> desc;
2313         desc = option[k]->getChildren("description");
2314         if (! desc.empty()) {
2315           for ( unsigned int l = 0; l < desc.size(); l++) {
2316             string t = desc[l]->getStringValue();
2317
2318             // There may be more than one translation line.
2319             vector<SGPropertyNode_ptr>trans_desc = locale->getLocalizedStrings(t.c_str(),"options");
2320             for ( unsigned int m = 0; m < trans_desc.size(); m++ ) {
2321               string t_str = trans_desc[m]->getStringValue();
2322               
2323               if ((m > 0) || ((l > 0) && m == 0)) {
2324                 msg.append( 32, ' ');
2325               }
2326               
2327               // If the string is too large to fit on the screen,
2328               // then split it up in several pieces.
2329               
2330               while ( t_str.size() > 47 ) {
2331                 
2332                 string::size_type m = t_str.rfind(' ', 47);
2333                 msg += t_str.substr(0, m) + '\n';
2334                 msg.append( 32, ' ');
2335                 
2336                 t_str.erase(t_str.begin(), t_str.begin() + m + 1);
2337               }
2338               msg += t_str + '\n';
2339             }
2340           }
2341         }
2342       }
2343     }
2344     
2345     const char* name = locale->getLocalizedString(section[j]->getStringValue("name"),"options");
2346     if (!msg.empty() && name) {
2347       cout << endl << name << ":" << endl;
2348       cout << msg;
2349       msg.erase();
2350     }
2351   }
2352   
2353   if ( !p->verbose ) {
2354     const char* verbose_help = locale->getLocalizedString(options->getStringValue("verbose-help"),"options");
2355     if (verbose_help)
2356         cout << endl << verbose_help << endl;
2357   }
2358 #ifdef _MSC_VER
2359   std::cout << "Hit a key to continue..." << std::endl;
2360   std::cin.get();
2361 #endif
2362 }
2363   
2364 #if defined(__CYGWIN__)
2365 string Options::platformDefaultRoot() const
2366 {
2367   return "../data";
2368 }
2369
2370 #elif defined(SG_WINDOWS)
2371 string Options::platformDefaultRoot() const
2372 {
2373   return "..\\data";
2374 }
2375 #elif defined(SG_MAC)
2376 // platformDefaultRoot defined in CocoaHelpers.mm
2377 #else
2378 string Options::platformDefaultRoot() const
2379 {
2380   return PKGLIBDIR;
2381 }
2382 #endif
2383   
2384 void Options::setupRoot()
2385 {
2386   string root;
2387   if (isOptionSet("fg-root")) {
2388     root = valueForOption("fg-root"); // easy!
2389   } else {
2390   // Next check if fg-root is set as an env variable
2391     char *envp = ::getenv( "FG_ROOT" );
2392     if ( envp != NULL ) {
2393       root = envp;
2394     } else {
2395       root = platformDefaultRoot();
2396     }
2397   } 
2398   
2399   SG_LOG(SG_INPUT, SG_INFO, "fg_root = " << root );
2400   globals->set_fg_root(root);
2401   
2402 // validate it
2403   static char required_version[] = FLIGHTGEAR_VERSION;
2404   string base_version = fgBasePackageVersion();
2405     if (base_version.empty()) {
2406         flightgear::fatalMessageBox("Base package not found",
2407                                     "Required data files not found, check your installation.",
2408                                     "Looking for base-package files at: '" + root + "'");
2409
2410         exit(-1);
2411     }
2412     
2413  if (base_version != required_version) {
2414     // tell the operator how to use this application
2415    
2416       flightgear::fatalMessageBox("Base package version mismatch",
2417                                   "Version check failed: please check your installation.",
2418                                   "Found data files for version '" + base_version +
2419                                   "' at '" + globals->get_fg_root() + "', version '"
2420                                   + required_version + "' is required.");
2421
2422     exit(-1);
2423   }
2424 }
2425   
2426 bool Options::shouldLoadDefaultConfig() const
2427 {
2428   return p->shouldLoadDefaultConfig;
2429 }
2430
2431 bool Options::checkForArg(int argc, char* argv[], const char* checkArg)
2432 {
2433     for (int i = 0; i < argc; ++i) {
2434         char* arg = argv[i];
2435         if (!strncmp("--", arg, 2) && !strcmp(arg + 2, checkArg)) {
2436             return true;
2437         }
2438         
2439         if ((arg[0] == '-') && !strcmp(arg + 1, checkArg)) {
2440             return true;
2441         }
2442     }
2443     
2444     return false;
2445 }
2446     
2447 } // of namespace flightgear
2448