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