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