]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.cxx
9a28333d0fe105c197b0ec3aa78ee8c16465335b
[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  - curt@me.umn.edu
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., 675 Mass Ave, Cambridge, MA 02139, 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/misc/exception.hxx>
30 #include <simgear/debug/logstream.hxx>
31
32 #include <math.h>               // rint()
33 #include <stdio.h>
34 #include <stdlib.h>             // atof(), atoi()
35 #include <string.h>             // strcmp()
36 #include <algorithm>
37
38 #include STL_STRING
39
40 #include <plib/ul.h>
41
42 #include <simgear/math/sg_random.h>
43 #include <simgear/misc/sgstream.hxx>
44 #include <simgear/misc/sg_path.hxx>
45 #include <simgear/route/route.hxx>
46 #include <simgear/route/waypoint.hxx>
47
48 // #include <Include/general.hxx>
49 // #include <Airports/simple.hxx>
50 // #include <Cockpit/cockpit.hxx>
51 // #include <FDM/flight.hxx>
52 // #include <FDM/UIUCModel/uiuc_aircraftdir.h>
53 #ifdef FG_NETWORK_OLK
54 #  include <NetworkOLK/network.h>
55 #endif
56
57 #include <GUI/gui.h>
58
59 #include "globals.hxx"
60 #include "fg_init.hxx"
61 #include "fg_props.hxx"
62 #include "options.hxx"
63 #include "util.hxx"
64 #include "viewmgr.hxx"
65
66
67 SG_USING_STD(string);
68 SG_USING_STD(sort);
69 SG_USING_NAMESPACE(std);
70
71
72 #define NEW_DEFAULT_MODEL_HZ 120
73
74 enum
75 {
76     FG_OPTIONS_OK = 0,
77     FG_OPTIONS_HELP = 1,
78     FG_OPTIONS_ERROR = 2,
79     FG_OPTIONS_VERBOSE_HELP = 3,
80     FG_OPTIONS_SHOW_AIRCRAFT = 4
81 };
82
83 static double
84 atof( const string& str )
85 {
86
87 #ifdef __MWERKS__
88     // -dw- if ::atof is called, then we get an infinite loop
89     return std::atof( str.c_str() );
90 #else
91     return ::atof( str.c_str() );
92 #endif
93 }
94
95 static int
96 atoi( const string& str )
97 {
98 #ifdef __MWERKS__
99     // -dw- if ::atoi is called, then we get an infinite loop
100     return std::atoi( str.c_str() );
101 #else
102     return ::atoi( str.c_str() );
103 #endif
104 }
105
106
107 /**
108  * Set a few fail-safe default property values.
109  *
110  * These should all be set in $FG_ROOT/preferences.xml, but just
111  * in case, we provide some initial sane values here. This method
112  * should be invoked *before* reading any init files.
113  */
114 void
115 fgSetDefaults ()
116 {
117     // set a possibly independent location for scenery data
118     char *envp = ::getenv( "FG_SCENERY" );
119
120     if ( envp != NULL ) {
121         // fg_root could be anywhere, so default to environmental
122         // variable $FG_ROOT if it is set.
123         globals->set_fg_scenery(envp);
124     } else {
125         // Otherwise, default to Scenery being in $FG_ROOT/Scenery
126         globals->set_fg_scenery("");
127     }
128                                 // Position (deliberately out of range)
129     fgSetDouble("/position/longitude-deg", 9999.0);
130     fgSetDouble("/position/latitude-deg", 9999.0);
131     fgSetDouble("/position/altitude-ft", -9999.0);
132
133                                 // Orientation
134     fgSetDouble("/orientation/heading-deg", 270);
135     fgSetDouble("/orientation/roll-deg", 0);
136     fgSetDouble("/orientation/pitch-deg", 0.424);
137
138                                 // Velocities
139     fgSetDouble("/velocities/uBody-fps", 0.0);
140     fgSetDouble("/velocities/vBody-fps", 0.0);
141     fgSetDouble("/velocities/wBody-fps", 0.0);
142     fgSetDouble("/velocities/speed-north-fps", 0.0);
143     fgSetDouble("/velocities/speed-east-fps", 0.0);
144     fgSetDouble("/velocities/speed-down-fps", 0.0);
145     fgSetDouble("/velocities/airspeed-kt", 0.0);
146     fgSetDouble("/velocities/mach", 0.0);
147
148                                 // Presets
149     fgSetDouble("/sim/presets/longitude-deg", 9999.0);
150     fgSetDouble("/sim/presets/latitude-deg", 9999.0);
151     fgSetDouble("/sim/presets/altitude-ft", -9999.0);
152
153     fgSetDouble("/sim/presets/heading-deg", 270);
154     fgSetDouble("/sim/presets/roll-deg", 0);
155     fgSetDouble("/sim/presets/pitch-deg", 0.424);
156
157     fgSetString("/sim/presets/speed-set", "knots");
158     fgSetDouble("/sim/presets/airspeed-kt", 0.0);
159     fgSetDouble("/sim/presets/mach", 0.0);
160     fgSetDouble("/sim/presets/uBody-fps", 0.0);
161     fgSetDouble("/sim/presets/vBody-fps", 0.0);
162     fgSetDouble("/sim/presets/wBody-fps", 0.0);
163     fgSetDouble("/sim/presets/speed-north-fps", 0.0);
164     fgSetDouble("/sim/presets/speed-east-fps", 0.0);
165     fgSetDouble("/sim/presets/speed-down-fps", 0.0);
166
167     fgSetBool("/sim/presets/onground", true);
168     fgSetBool("/sim/presets/trim", false);
169
170                                 // Miscellaneous
171     fgSetBool("/sim/startup/game-mode", false);
172     fgSetBool("/sim/startup/splash-screen", true);
173     fgSetBool("/sim/startup/intro-music", true);
174     // we want mouse-pointer to have an undefined value if nothing is
175     // specified so we can do the right thing for voodoo-1/2 cards.
176     // fgSetString("/sim/startup/mouse-pointer", "disabled");
177     fgSetString("/sim/control-mode", "joystick");
178     fgSetBool("/sim/auto-coordination", false);
179 #if !defined(WIN32)
180     fgSetString("/sim/startup/browser-app", "netscape");
181 #else
182     fgSetString("/sim/startup/browser-app", "webrun.bat");
183 #endif
184     fgSetInt("/sim/log-level", SG_WARN);
185
186                                 // Features
187     fgSetBool("/sim/hud/visibility", false);
188     fgSetBool("/sim/panel/visibility", true);
189     fgSetBool("/sim/sound/audible", true);
190     fgSetBool("/sim/hud/antialiased", false);
191
192                                 // Flight Model options
193     fgSetString("/sim/flight-model", "jsb");
194     fgSetString("/sim/aero", "c172");
195     fgSetInt("/sim/model-hz", NEW_DEFAULT_MODEL_HZ);
196     fgSetInt("/sim/speed-up", 1);
197
198                                 // Rendering options
199     fgSetString("/sim/rendering/fog", "nicest");
200     fgSetBool("/environment/clouds/status", true);
201     fgSetBool("/sim/startup/fullscreen", false);
202     fgSetBool("/sim/rendering/shading", true);
203     fgSetBool("/sim/rendering/skyblend", true);
204     fgSetBool("/sim/rendering/textures", true);
205     fgSetBool("/sim/rendering/wireframe", false);
206     fgSetBool("/sim/rendering/horizon-effect", false);
207     fgSetBool("/sim/rendering/enhanced-lighting", false);
208     fgSetBool("/sim/rendering/distance-attenuation", false);
209     fgSetInt("/sim/startup/xsize", 800);
210     fgSetInt("/sim/startup/ysize", 600);
211     fgSetInt("/sim/rendering/bits-per-pixel", 16);
212     fgSetString("/sim/view-mode", "pilot");
213     fgSetDouble("/sim/current-view/heading-offset-deg", 0);
214
215                                 // HUD options
216     fgSetString("/sim/startup/units", "feet");
217     fgSetString("/sim/hud/frame-stat-type", "tris");
218         
219                                 // Time options
220     fgSetInt("/sim/startup/time-offset", 0);
221     fgSetString("/sim/startup/time-offset-type", "system-offset");
222     fgSetLong("/sim/time/cur-time-override", 0);
223
224     fgSetBool("/sim/networking/network-olk", false);
225     fgSetString("/sim/networking/call-sign", "Johnny");
226
227                                 // Freeze options
228     fgSetBool("/sim/freeze/master", false);
229     fgSetBool("/sim/freeze/position", false);
230     fgSetBool("/sim/freeze/clock", false);
231     fgSetBool("/sim/freeze/fuel", false);
232
233 #ifdef FG_MPLAYER_AS
234     fgSetString("/sim/multiplay/callsign", "callsign");
235     fgSetString("/sim/multiplay/rxhost", "0");
236     fgSetString("/sim/multiplay/txhost", "0");
237     fgSetInt("/sim/multiplay/rxport", 0);
238     fgSetInt("/sim/multiplay/txport", 0);
239 #endif
240
241 }
242
243
244 static bool
245 parse_wind (const string &wind, double * min_hdg, double * max_hdg,
246             double * speed, double * gust)
247 {
248   string::size_type pos = wind.find('@');
249   if (pos == string::npos)
250     return false;
251   string dir = wind.substr(0, pos);
252   string spd = wind.substr(pos+1);
253   pos = dir.find(':');
254   if (pos == string::npos) {
255     *min_hdg = *max_hdg = atof(dir.c_str());
256   } else {
257     *min_hdg = atof(dir.substr(0,pos).c_str());
258     *max_hdg = atof(dir.substr(pos+1).c_str());
259   }
260   pos = spd.find(':');
261   if (pos == string::npos) {
262     *speed = *gust = atof(spd.c_str());
263   } else {
264     *speed = atof(spd.substr(0,pos).c_str());
265     *gust = atof(spd.substr(pos+1).c_str());
266   }
267   return true;
268 }
269
270 // parse a time string ([+/-]%f[:%f[:%f]]) into hours
271 static double
272 parse_time(const string& time_in) {
273     char *time_str, num[256];
274     double hours, minutes, seconds;
275     double result = 0.0;
276     int sign = 1;
277     int i;
278
279     time_str = (char *)time_in.c_str();
280
281     // printf("parse_time(): %s\n", time_str);
282
283     // check for sign
284     if ( strlen(time_str) ) {
285         if ( time_str[0] == '+' ) {
286             sign = 1;
287             time_str++;
288         } else if ( time_str[0] == '-' ) {
289             sign = -1;
290             time_str++;
291         }
292     }
293     // printf("sign = %d\n", sign);
294
295     // get hours
296     if ( strlen(time_str) ) {
297         i = 0;
298         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
299             num[i] = time_str[0];
300             time_str++;
301             i++;
302         }
303         if ( time_str[0] == ':' ) {
304             time_str++;
305         }
306         num[i] = '\0';
307         hours = atof(num);
308         // printf("hours = %.2lf\n", hours);
309
310         result += hours;
311     }
312
313     // get minutes
314     if ( strlen(time_str) ) {
315         i = 0;
316         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
317             num[i] = time_str[0];
318             time_str++;
319             i++;
320         }
321         if ( time_str[0] == ':' ) {
322             time_str++;
323         }
324         num[i] = '\0';
325         minutes = atof(num);
326         // printf("minutes = %.2lf\n", minutes);
327
328         result += minutes / 60.0;
329     }
330
331     // get seconds
332     if ( strlen(time_str) ) {
333         i = 0;
334         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
335             num[i] = time_str[0];
336             time_str++;
337             i++;
338         }
339         num[i] = '\0';
340         seconds = atof(num);
341         // printf("seconds = %.2lf\n", seconds);
342
343         result += seconds / 3600.0;
344     }
345
346     SG_LOG( SG_GENERAL, SG_INFO, " parse_time() = " << sign * result );
347
348     return(sign * result);
349 }
350
351
352 // parse a date string (yyyy:mm:dd:hh:mm:ss) into a time_t (seconds)
353 static long int 
354 parse_date( const string& date)
355 {
356     struct tm gmt;
357     char * date_str, num[256];
358     int i;
359     // initialize to zero
360     gmt.tm_sec = 0;
361     gmt.tm_min = 0;
362     gmt.tm_hour = 0;
363     gmt.tm_mday = 0;
364     gmt.tm_mon = 0;
365     gmt.tm_year = 0;
366     gmt.tm_isdst = 0; // ignore daylight savings time for the moment
367     date_str = (char *)date.c_str();
368     // get year
369     if ( strlen(date_str) ) {
370         i = 0;
371         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
372             num[i] = date_str[0];
373             date_str++;
374             i++;
375         }
376         if ( date_str[0] == ':' ) {
377             date_str++;
378         }
379         num[i] = '\0';
380         gmt.tm_year = atoi(num) - 1900;
381     }
382     // get month
383     if ( strlen(date_str) ) {
384         i = 0;
385         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
386             num[i] = date_str[0];
387             date_str++;
388             i++;
389         }
390         if ( date_str[0] == ':' ) {
391             date_str++;
392         }
393         num[i] = '\0';
394         gmt.tm_mon = atoi(num) -1;
395     }
396     // get day
397     if ( strlen(date_str) ) {
398         i = 0;
399         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
400             num[i] = date_str[0];
401             date_str++;
402             i++;
403         }
404         if ( date_str[0] == ':' ) {
405             date_str++;
406         }
407         num[i] = '\0';
408         gmt.tm_mday = atoi(num);
409     }
410     // get hour
411     if ( strlen(date_str) ) {
412         i = 0;
413         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
414             num[i] = date_str[0];
415             date_str++;
416             i++;
417         }
418         if ( date_str[0] == ':' ) {
419             date_str++;
420         }
421         num[i] = '\0';
422         gmt.tm_hour = atoi(num);
423     }
424     // get minute
425     if ( strlen(date_str) ) {
426         i = 0;
427         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
428             num[i] = date_str[0];
429             date_str++;
430             i++;
431         }
432         if ( date_str[0] == ':' ) {
433             date_str++;
434         }
435         num[i] = '\0';
436         gmt.tm_min = atoi(num);
437     }
438     // get second
439     if ( strlen(date_str) ) {
440         i = 0;
441         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
442             num[i] = date_str[0];
443             date_str++;
444             i++;
445         }
446         if ( date_str[0] == ':' ) {
447             date_str++;
448         }
449         num[i] = '\0';
450         gmt.tm_sec = atoi(num);
451     }
452     time_t theTime = sgTimeGetGMT( gmt.tm_year, gmt.tm_mon, gmt.tm_mday,
453                                    gmt.tm_hour, gmt.tm_min, gmt.tm_sec );
454     //printf ("Date is %s\n", ctime(&theTime));
455     //printf ("in seconds that is %d\n", theTime);
456     //exit(1);
457     return (theTime);
458 }
459
460
461 // parse angle in the form of [+/-]ddd:mm:ss into degrees
462 static double
463 parse_degree( const string& degree_str) {
464     double result = parse_time( degree_str );
465
466     // printf("Degree = %.4f\n", result);
467
468     return(result);
469 }
470
471
472 // parse time offset string into seconds
473 static int
474 parse_time_offset( const string& time_str) {
475     int result;
476
477     // printf("time offset = %s\n", time_str);
478
479 #ifdef HAVE_RINT
480     result = (int)rint(parse_time(time_str) * 3600.0);
481 #else
482     result = (int)(parse_time(time_str) * 3600.0);
483 #endif
484
485     // printf("parse_time_offset(): %d\n", result);
486
487     return( result );
488 }
489
490
491 // Parse --fov=x.xx type option 
492 static double
493 parse_fov( const string& arg ) {
494     double fov = atof(arg);
495
496     if ( fov < FG_FOV_MIN ) { fov = FG_FOV_MIN; }
497     if ( fov > FG_FOV_MAX ) { fov = FG_FOV_MAX; }
498
499     fgSetDouble("/sim/current-view/field-of-view", fov);
500
501     // printf("parse_fov(): result = %.4f\n", fov);
502
503     return fov;
504 }
505
506
507 // Parse I/O channel option
508 //
509 // Format is "--protocol=medium,direction,hz,medium_options,..."
510 //
511 //   protocol = { native, nmea, garmin, fgfs, rul, pve, etc. }
512 //   medium = { serial, socket, file, etc. }
513 //   direction = { in, out, bi }
514 //   hz = number of times to process channel per second (floating
515 //        point values are ok.
516 //
517 // Serial example "--nmea=serial,dir,hz,device,baud" where
518 // 
519 //  device = OS device name of serial line to be open()'ed
520 //  baud = {300, 1200, 2400, ..., 230400}
521 //
522 // Socket exacmple "--native=socket,dir,hz,machine,port,style" where
523 //
524 //  machine = machine name or ip address if client (leave empty if server)
525 //  port = port, leave empty to let system choose
526 //  style = tcp or udp
527 //
528 // File example "--garmin=file,dir,hz,filename" where
529 //
530 //  filename = file system file name
531
532 static bool
533 add_channel( const string& type, const string& channel_str ) {
534     SG_LOG(SG_GENERAL, SG_INFO, "Channel string = " << channel_str );
535
536     globals->get_channel_options_list()->push_back( type + "," + channel_str );
537     
538     // cout << "here" << endl;
539
540     return true;
541 }
542
543
544 static void
545 setup_wind (double min_hdg, double max_hdg, double speed, double gust)
546 {
547   fgDefaultWeatherValue("wind-from-heading-deg", min_hdg);
548   fgDefaultWeatherValue("wind-speed-kt", speed);
549
550   SG_LOG(SG_GENERAL, SG_INFO, "WIND: " << min_hdg << '@' << 
551          speed << " knots" << endl);
552
553 #ifdef FG_WEATHERCM
554   // convert to fps
555   speed *= SG_NM_TO_METER * SG_METER_TO_FEET * (1.0/3600);
556   while (min_hdg > 360)
557     min_hdg -= 360;
558   while (min_hdg <= 0)
559     min_hdg += 360;
560   min_hdg *= SGD_DEGREES_TO_RADIANS;
561   fgSetDouble("/environment/wind-from-north-fps", speed * cos(dir));
562   fgSetDouble("/environment/wind-from-east-fps", speed * sin(dir));
563 #endif // FG_WEATHERCM
564 }
565
566
567 // Parse --wp=ID[@alt]
568 static bool 
569 parse_wp( const string& arg ) {
570     string id, alt_str;
571     double alt = 0.0;
572
573     string::size_type pos = arg.find( "@" );
574     if ( pos != string::npos ) {
575         id = arg.substr( 0, pos );
576         alt_str = arg.substr( pos + 1 );
577         // cout << "id str = " << id << "  alt str = " << alt_str << endl;
578         alt = atof( alt_str.c_str() );
579         if ( !strcmp(fgGetString("/sim/startup/units"), "feet") ) {
580             alt *= SG_FEET_TO_METER;
581         }
582     } else {
583         id = arg;
584     }
585
586     FGAirport a;
587     if ( fgFindAirportID( id, &a ) ) {
588         SGWayPoint wp( a.longitude, a.latitude, alt, SGWayPoint::WGS84, id );
589         globals->get_route()->add_waypoint( wp );
590
591         return true;
592     } else {
593         return false;
594     }
595 }
596
597
598 // Parse --flight-plan=[file]
599 static bool 
600 parse_flightplan(const string& arg)
601 {
602     sg_gzifstream in(arg.c_str());
603     if ( !in.is_open() ) {
604         return false;
605     }
606     while ( true ) {
607         string line;
608
609 #if defined( macintosh )
610         getline( in, line, '\r' );
611 #else
612         getline( in, line, '\n' );
613 #endif
614
615         // catch extraneous (DOS) line ending character
616         if ( line[line.length() - 1] < 32 ) {
617             line = line.substr( 0, line.length()-1 );
618         }
619
620         if ( in.eof() ) {
621             break;
622         }
623         parse_wp(line);
624     }
625
626     return true;
627 }
628
629 static int
630 fgOptLanguage( const char *arg )
631 {
632     globals->set_locale( fgInitLocale( arg ) );
633     return FG_OPTIONS_OK;
634 }
635
636 static void
637 clearLocation ()
638 {
639     fgSetString("/sim/presets/airport-id", "");
640     fgSetString("/sim/presets/vor-id", "");
641     fgSetString("/sim/presets/ndb-id", "");
642     fgSetString("/sim/presets/fix", "");
643 }
644
645 static int
646 fgOptVOR( const char * arg )
647 {
648     clearLocation();
649     fgSetString("/sim/presets/vor-id", arg);
650     return FG_OPTIONS_OK;
651 }
652
653 static int
654 fgOptNDB( const char * arg )
655 {
656     clearLocation();
657     fgSetString("/sim/presets/ndb-id", arg);
658     return FG_OPTIONS_OK;
659 }
660
661 static int
662 fgOptFIX( const char * arg )
663 {
664     clearLocation();
665     fgSetString("/sim/presets/fix", arg);
666     return FG_OPTIONS_OK;
667 }
668
669 static int
670 fgOptLon( const char *arg )
671 {
672     clearLocation();
673     fgSetDouble("/sim/presets/longitude-deg", parse_degree( arg ));
674     fgSetDouble("/position/longitude-deg", parse_degree( arg ));
675     return FG_OPTIONS_OK;
676 }
677
678 static int
679 fgOptLat( const char *arg )
680 {
681     clearLocation();
682     fgSetDouble("/sim/presets/latitude-deg", parse_degree( arg ));
683     fgSetDouble("/position/latitude-deg", parse_degree( arg ));
684     return FG_OPTIONS_OK;
685 }
686
687 static int
688 fgOptAltitude( const char *arg )
689 {
690     fgSetBool("/sim/presets/onground", false);
691     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
692         fgSetDouble("/sim/presets/altitude-ft", atof( arg ));
693     else
694         fgSetDouble("/sim/presets/altitude-ft",
695                     atof( arg ) * SG_METER_TO_FEET);
696     return FG_OPTIONS_OK;
697 }
698
699 static int
700 fgOptUBody( const char *arg )
701 {
702     fgSetString("/sim/presets/speed-set", "UVW");
703     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
704         fgSetDouble("/sim/presets/uBody-fps", atof( arg ));
705     else
706         fgSetDouble("/sim/presets/uBody-fps",
707                     atof( arg ) * SG_METER_TO_FEET);
708     return FG_OPTIONS_OK;
709 }
710
711 static int
712 fgOptVBody( const char *arg )
713 {
714     fgSetString("/sim/presets/speed-set", "UVW");
715     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
716         fgSetDouble("/sim/presets/vBody-fps", atof( arg ));
717     else
718         fgSetDouble("/sim/presets/vBody-fps",
719                             atof( arg ) * SG_METER_TO_FEET);
720     return FG_OPTIONS_OK;
721 }
722
723 static int
724 fgOptWBody( const char *arg )
725 {
726     fgSetString("/sim/presets/speed-set", "UVW");
727     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
728         fgSetDouble("/sim/presets/wBody-fps", atof(arg));
729     else
730         fgSetDouble("/sim/presets/wBody-fps",
731                             atof(arg) * SG_METER_TO_FEET);
732     return FG_OPTIONS_OK;
733 }
734
735 static int
736 fgOptVNorth( const char *arg )
737 {
738     fgSetString("/sim/presets/speed-set", "NED");
739     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
740         fgSetDouble("/sim/presets/speed-north-fps", atof( arg ));
741     else
742         fgSetDouble("/sim/presets/speed-north-fps",
743                             atof( arg ) * SG_METER_TO_FEET);
744     return FG_OPTIONS_OK;
745 }
746
747 static int
748 fgOptVEast( const char *arg )
749 {
750     fgSetString("/sim/presets/speed-set", "NED");
751     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
752         fgSetDouble("/sim/presets/speed-east-fps", atof(arg));
753     else
754         fgSetDouble("/sim/presets/speed-east-fps",
755                     atof(arg) * SG_METER_TO_FEET);
756     return FG_OPTIONS_OK;
757 }
758
759 static int
760 fgOptVDown( const char *arg )
761 {
762     fgSetString("/sim/presets/speed-set", "NED");
763     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
764         fgSetDouble("/sim/presets/speed-down-fps", atof(arg));
765     else
766         fgSetDouble("/sim/presets/speed-down-fps",
767                             atof(arg) * SG_METER_TO_FEET);
768     return FG_OPTIONS_OK;
769 }
770
771 static int
772 fgOptVc( const char *arg )
773 {
774     // fgSetString("/sim/presets/speed-set", "knots");
775     // fgSetDouble("/velocities/airspeed-kt", atof(arg.substr(5)));
776     fgSetString("/sim/presets/speed-set", "knots");
777     fgSetDouble("/sim/presets/airspeed-kt", atof(arg));
778     return FG_OPTIONS_OK;
779 }
780
781 static int
782 fgOptMach( const char *arg )
783 {
784     fgSetString("/sim/presets/speed-set", "mach");
785     fgSetDouble("/sim/presets/mach", atof(arg));
786     return FG_OPTIONS_OK;
787 }
788
789 static int
790 fgOptRoc( const char *arg )
791 {
792     fgSetDouble("/velocities/vertical-speed-fps", atof(arg)/60);
793     return FG_OPTIONS_OK;
794 }
795
796 static int
797 fgOptFgRoot( const char *arg )
798 {
799     globals->set_fg_root(arg);
800     return FG_OPTIONS_OK;
801 }
802
803 static int
804 fgOptFgScenery( const char *arg )
805 {
806     globals->set_fg_scenery(arg);
807     return FG_OPTIONS_OK;
808 }
809
810 static int
811 fgOptFov( const char *arg )
812 {
813     parse_fov( arg );
814     return FG_OPTIONS_OK;
815 }
816
817 static int
818 fgOptGeometry( const char *arg )
819 {
820     bool geometry_ok = true;
821     int xsize = 0, ysize = 0;
822     string geometry = arg;
823     string::size_type i = geometry.find('x');
824
825     if (i != string::npos) {
826         xsize = atoi(geometry.substr(0, i));
827         ysize = atoi(geometry.substr(i+1));
828     } else {
829         geometry_ok = false;
830     }
831
832     if ( xsize <= 0 || ysize <= 0 ) {
833         xsize = 640;
834         ysize = 480;
835         geometry_ok = false;
836     }
837
838     if ( !geometry_ok ) {
839         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown geometry: " << geometry );
840         SG_LOG( SG_GENERAL, SG_ALERT,
841                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
842     } else {
843         SG_LOG( SG_GENERAL, SG_INFO,
844                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
845         fgSetInt("/sim/startup/xsize", xsize);
846         fgSetInt("/sim/startup/ysize", ysize);
847     }
848     return FG_OPTIONS_OK;
849 }
850
851 static int
852 fgOptBpp( const char *arg )
853 {
854     string bits_per_pix = arg;
855     if ( bits_per_pix == "16" ) {
856         fgSetInt("/sim/rendering/bits-per-pixel", 16);
857     } else if ( bits_per_pix == "24" ) {
858         fgSetInt("/sim/rendering/bits-per-pixel", 24);
859     } else if ( bits_per_pix == "32" ) {
860         fgSetInt("/sim/rendering/bits-per-pixel", 32);
861     } else {
862         SG_LOG(SG_GENERAL, SG_ALERT, "Unsupported bpp " << bits_per_pix);
863     }
864     return FG_OPTIONS_OK;
865 }
866
867 static int
868 fgOptTimeOffset( const char *arg )
869 {
870     fgSetInt("/sim/startup/time-offset",
871                 parse_time_offset( arg ));
872     fgSetString("/sim/startup/time-offset-type", "system-offset");
873     return FG_OPTIONS_OK;
874 }
875
876 static int
877 fgOptStartDateSys( const char *arg )
878 {
879     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
880     fgSetString("/sim/startup/time-offset-type", "system");
881     return FG_OPTIONS_OK;
882 }
883
884 static int
885 fgOptStartDateLat( const char *arg )
886 {
887     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
888     fgSetString("/sim/startup/time-offset-type", "latitude");
889     return FG_OPTIONS_OK;
890 }
891
892 static int
893 fgOptStartDateGmt( const char *arg )
894 {
895     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
896     fgSetString("/sim/startup/time-offset-type", "gmt");
897     return FG_OPTIONS_OK;
898 }
899
900 #ifdef FG_NETWORK_OLK
901 static int
902 fgOptNetHud( const char *arg )
903 {
904     fgSetBool("/sim/hud/net-display", true);
905     net_hud_display = 1;        // FIXME
906     return FG_OPTIONS_OK;
907 }
908 #endif
909
910 static int
911 fgOptTraceRead( const char *arg )
912 {
913     string name = arg;
914     SG_LOG(SG_GENERAL, SG_INFO, "Tracing reads for property " << name);
915     fgGetNode(name.c_str(), true)
916         ->setAttribute(SGPropertyNode::TRACE_READ, true);
917     return FG_OPTIONS_OK;
918 }
919
920 static int
921 fgOptTraceWrite( const char *arg )
922 {
923     string name = arg;
924     SG_LOG(SG_GENERAL, SG_INFO, "Tracing writes for property " << name);
925     fgGetNode(name.c_str(), true)
926         ->setAttribute(SGPropertyNode::TRACE_WRITE, true);
927     return FG_OPTIONS_OK;
928 }
929
930 static int
931 fgOptViewOffset( const char *arg )
932 {
933     // $$$ begin - added VS Renganathan, 14 Oct 2K
934     // for multi-window outside window imagery
935     string woffset = arg;
936     double default_view_offset = 0.0;
937     if ( woffset == "LEFT" ) {
938             default_view_offset = SGD_PI * 0.25;
939     } else if ( woffset == "RIGHT" ) {
940         default_view_offset = SGD_PI * 1.75;
941     } else if ( woffset == "CENTER" ) {
942         default_view_offset = 0.00;
943     } else {
944         default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
945     }
946     /* apparently not used (CLO, 11 Jun 2002) 
947         FGViewer *pilot_view =
948             (FGViewer *)globals->get_viewmgr()->get_view( 0 ); */
949     // this will work without calls to the viewer...
950     fgSetDouble( "/sim/current-view/heading-offset-deg",
951                     default_view_offset  * SGD_RADIANS_TO_DEGREES );
952     // $$$ end - added VS Renganathan, 14 Oct 2K
953     return FG_OPTIONS_OK;
954 }
955
956 static int
957 fgOptVisibilityMeters( const char *arg )
958 {
959     double visibility = atof( arg );
960     fgDefaultWeatherValue("visibility-m", visibility);
961     return FG_OPTIONS_OK;
962 }
963
964 static int
965 fgOptVisibilityMiles( const char *arg )
966 {
967     double visibility = atof( arg ) * 5280.0 * SG_FEET_TO_METER;
968     fgDefaultWeatherValue("visibility-m", visibility);
969     return FG_OPTIONS_OK;
970 }
971
972 static int
973 fgOptRandomWind( const char *arg )
974 {
975     double min_hdg = sg_random() * 360.0;
976     double max_hdg = min_hdg + (20 - sqrt(sg_random() * 400));
977     double speed = 40 - sqrt(sg_random() * 1600.0);
978     double gust = speed + (10 - sqrt(sg_random() * 100));
979     setup_wind(min_hdg, max_hdg, speed, gust);
980     return FG_OPTIONS_OK;
981 }
982
983 static int
984 fgOptWind( const char *arg )
985 {
986     double min_hdg, max_hdg, speed, gust;
987     if (!parse_wind( arg, &min_hdg, &max_hdg, &speed, &gust)) {
988         SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << arg );
989         return FG_OPTIONS_ERROR;
990     }
991     setup_wind(min_hdg, max_hdg, speed, gust);
992     return FG_OPTIONS_OK;
993 }
994
995 static int
996 fgOptTurbulence( const char *arg)
997 {
998     fgDefaultWeatherValue("turbulence/magnitude-norm", atof(arg));
999     return FG_OPTIONS_OK;
1000 }
1001
1002 static int
1003 fgOptWp( const char *arg )
1004 {
1005     parse_wp( arg );
1006     return FG_OPTIONS_OK;
1007 }
1008
1009 static int
1010 fgOptFlightPlan( const char *arg )
1011 {
1012     parse_flightplan ( arg );
1013     return FG_OPTIONS_OK;
1014 }
1015
1016 static int
1017 fgOptConfig( const char *arg )
1018 {
1019     string file = arg;
1020     try {
1021         readProperties(file, globals->get_props());
1022     } catch (const sg_exception &e) {
1023         string message = "Error loading config file: ";
1024         message += e.getFormattedMessage();
1025         SG_LOG(SG_INPUT, SG_ALERT, message);
1026         exit(2);
1027     }
1028     return FG_OPTIONS_OK;
1029 }
1030
1031 static map<string,size_t> fgOptionMap;
1032
1033 /*
1034    option       has_param type        property         b_param s_param  func
1035
1036 where:
1037  option    : name of the option
1038  has_param : option is --name=value if true or --name if false
1039  type      : OPTION_BOOL    - property is a boolean
1040              OPTION_STRING  - property is a string
1041              OPTION_DOUBLE  - property is a double
1042              OPTION_INT     - property is an integer
1043              OPTION_CHANNEL - name of option is the name of a channel
1044              OPTION_FUNC    - the option trigger a function
1045  b_param   : if type==OPTION_BOOL,
1046              value set to the property (has_param is false for boolean)
1047  s_param   : if type==OPTION_STRING,
1048              value set to the property if has_param is false
1049  func      : function called if type==OPTION_FUNC. if has_param is true,
1050              the value is passed to the function as a string, otherwise,
1051              0 is passed. 
1052
1053     For OPTION_DOUBLE and OPTION_INT, the parameter value is converted into a
1054     double or an integer and set to the property.
1055
1056     For OPTION_CHANNEL, add_channel is called with the parameter value as the
1057     argument.
1058 */
1059
1060 enum OptionType { OPTION_BOOL, OPTION_STRING, OPTION_DOUBLE, OPTION_INT, OPTION_CHANNEL, OPTION_FUNC };
1061 struct OptionDesc {
1062     char *option;
1063     bool has_param;
1064     enum OptionType type;
1065     char *property;
1066     bool b_param;
1067     char *s_param;
1068     int (*func)( const char * );
1069     } fgOptionArray[] = {
1070        
1071     {"language",                     true,  OPTION_FUNC,   "", false, "", fgOptLanguage },
1072     {"disable-game-mode",            false, OPTION_BOOL,   "/sim/startup/game-mode", false, "", 0 },
1073     {"enable-game-mode",             false, OPTION_BOOL,   "/sim/startup/game-mode", true, "", 0 },
1074     {"disable-splash-screen",        false, OPTION_BOOL,   "/sim/startup/splash-screen", false, "", 0 },
1075     {"enable-splash-screen",         false, OPTION_BOOL,   "/sim/startup/splash-screen", true, "", 0 },
1076     {"disable-intro-music",          false, OPTION_BOOL,   "/sim/startup/intro-music", false, "", 0 },
1077     {"enable-intro-music",           false, OPTION_BOOL,   "/sim/startup/intro-music", true, "", 0 },
1078     {"disable-mouse-pointer",        false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "disabled", 0 },
1079     {"enable-mouse-pointer",         false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "enabled", 0 },
1080     {"disable-random-objects",       false, OPTION_BOOL,   "/sim/rendering/random-objects", false, "", 0 },
1081     {"enable-random-objects",        false, OPTION_BOOL,   "/sim/rendering/random-objects", true, "", 0 },
1082     {"disable-freeze",               false, OPTION_BOOL,   "/sim/freeze/master", false, "", 0 },
1083     {"enable-freeze",                false, OPTION_BOOL,   "/sim/freeze/master", true, "", 0 },
1084     {"disable-fuel-freeze",          false, OPTION_BOOL,   "/sim/freeze/fuel", false, "", 0 },
1085     {"enable-fuel-freeze",           false, OPTION_BOOL,   "/sim/freeze/fuel", true, "", 0 },
1086     {"disable-clock-freeze",         false, OPTION_BOOL,   "/sim/freeze/clock", false, "", 0 },
1087     {"enable-clock-freeze",          false, OPTION_BOOL,   "/sim/freeze/clock", true, "", 0 },
1088     {"disable-anti-alias-hud",       false, OPTION_BOOL,   "/sim/hud/antialiased", false, "", 0 },
1089     {"enable-anti-alias-hud",        false, OPTION_BOOL,   "/sim/hud/antialiased", true, "", 0 },
1090     {"control",                      true,  OPTION_STRING, "/sim/control-mode", false, "", 0 },
1091     {"disable-auto-coordination",    false, OPTION_BOOL,   "/sim/auto-coordination", false, "", 0 },
1092     {"enable-auto-coordination",     false, OPTION_BOOL,   "/sim/auto-coordination", true, "", 0 },
1093     {"browser-app",                  true,  OPTION_STRING, "/sim/startup/browser-app", false, "", 0 },
1094     {"disable-hud",                  false, OPTION_BOOL,   "/sim/hud/visibility", false, "", 0 },
1095     {"enable-hud",                   false, OPTION_BOOL,   "/sim/hud/visibility", true, "", 0 },
1096     {"disable-panel",                false, OPTION_BOOL,   "/sim/panel/visibility", false, "", 0 },
1097     {"enable-panel",                 false, OPTION_BOOL,   "/sim/panel/visibility", true, "", 0 },
1098     {"disable-sound",                false, OPTION_BOOL,   "/sim/sound/audible", false, "", 0 },
1099     {"enable-sound",                 false, OPTION_BOOL,   "/sim/sound/audible", true, "", 0 },
1100     {"airport",                      true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1101     {"airport-id",                   true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1102     {"runway",                       true,  OPTION_STRING, "/sim/presets/runway", false, "", 0 },
1103     {"vor",                          true,  OPTION_FUNC,   "", false, "", fgOptVOR },
1104     {"ndb",                          true,  OPTION_FUNC,   "", false, "", fgOptNDB },
1105     {"fix",                          true,  OPTION_FUNC,   "", false, "", fgOptFIX },
1106     {"offset-distance",              true,  OPTION_DOUBLE, "/sim/presets/offset-distance", false, "", 0 },
1107     {"offset-azimuth",               true,  OPTION_DOUBLE, "/sim/presets/offset-azimuth", false, "", 0 },
1108     {"lon",                          true,  OPTION_FUNC,   "", false, "", fgOptLon },
1109     {"lat",                          true,  OPTION_FUNC,   "", false, "", fgOptLat },
1110     {"altitude",                     true,  OPTION_FUNC,   "", false, "", fgOptAltitude },
1111     {"uBody",                        true,  OPTION_FUNC,   "", false, "", fgOptUBody },
1112     {"vBody",                        true,  OPTION_FUNC,   "", false, "", fgOptVBody },
1113     {"wBody",                        true,  OPTION_FUNC,   "", false, "", fgOptWBody },
1114     {"vNorth",                       true,  OPTION_FUNC,   "", false, "", fgOptVNorth },
1115     {"vEast",                        true,  OPTION_FUNC,   "", false, "", fgOptVEast },
1116     {"vDown",                        true,  OPTION_FUNC,   "", false, "", fgOptVDown },
1117     {"vc",                           true,  OPTION_FUNC,   "", false, "", fgOptVc },
1118     {"mach",                         true,  OPTION_FUNC,   "", false, "", fgOptMach },
1119     {"heading",                      true,  OPTION_DOUBLE, "/sim/presets/heading-deg", false, "", 0 },
1120     {"roll",                         true,  OPTION_DOUBLE, "/sim/presets/roll-deg", false, "", 0 },
1121     {"pitch",                        true,  OPTION_DOUBLE, "/sim/presets/pitch-deg", false, "", 0 },
1122     {"glideslope",                   true,  OPTION_DOUBLE, "/sim/presets/glideslope-deg", false, "", 0 },
1123     {"roc",                          true,  OPTION_FUNC,   "", false, "", fgOptRoc },
1124     {"fg-root",                      true,  OPTION_FUNC,   "", false, "", fgOptFgRoot },
1125     {"fg-scenery",                   true,  OPTION_FUNC,   "", false, "", fgOptFgScenery },
1126     {"fdm",                          true,  OPTION_STRING, "/sim/flight-model", false, "", 0 },
1127     {"aero",                         true,  OPTION_STRING, "/sim/aero", false, "", 0 },
1128     {"aircraft-dir",                 true,  OPTION_STRING, "/sim/aircraft-dir", false, "", 0 },
1129     {"model-hz",                     true,  OPTION_INT,    "/sim/model-hz", false, "", 0 },
1130     {"speed",                        true,  OPTION_INT,    "/sim/speed-up", false, "", 0 },
1131     {"trim",                         false, OPTION_BOOL,   "/sim/presets/trim", true, "", 0 },
1132     {"notrim",                       false, OPTION_BOOL,   "/sim/presets/trim", false, "", 0 },
1133     {"on-ground",                    false, OPTION_BOOL,   "/sim/presets/onground", true, "", 0 },
1134     {"in-air",                       false, OPTION_BOOL,   "/sim/presets/onground", false, "", 0 },
1135     {"fog-disable",                  false, OPTION_STRING, "/sim/rendering/fog", false, "disabled", 0 },
1136     {"fog-fastest",                  false, OPTION_STRING, "/sim/rendering/fog", false, "fastest", 0 },
1137     {"fog-nicest",                   false, OPTION_STRING, "/sim/rendering/fog", false, "nicest", 0 },
1138     {"disable-horizon-effect",       false, OPTION_BOOL,   "/sim/rendering/horizon-effect", false, "", 0 },
1139     {"enable-horizon-effect",        false, OPTION_BOOL,   "/sim/rendering/horizon-effect", true, "", 0 },
1140     {"disable-enhanced-lighting",    false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", false, "", 0 },
1141     {"enable-enhanced-lighting",     false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", true, "", 0 },
1142     {"disable-distance-attenuation", false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", false, "", 0 },
1143     {"enable-distance-attenuation",  false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", true, "", 0 },
1144     {"disable-clouds",               false, OPTION_BOOL,   "/environment/clouds/status", false, "", 0 },
1145     {"enable-clouds",                false, OPTION_BOOL,   "/environment/clouds/status", true, "", 0 },
1146 #ifdef FG_USE_CLOUDS_3D
1147     {"disable-clouds3d",             false, OPTION_BOOL,   "/sim/rendering/clouds3d", false, "", 0 },
1148     {"enable-clouds3d",              false, OPTION_BOOL,   "/sim/rendering/clouds3d", true, "", 0 },
1149 #endif
1150     {"fov",                          true,  OPTION_FUNC,   "", false, "", fgOptFov },
1151     {"disable-fullscreen",           false, OPTION_BOOL,   "/sim/startup/fullscreen", false, "", 0 },
1152     {"enable-fullscreen",            false, OPTION_BOOL,   "/sim/startup/fullscreen", true, "", 0 },
1153     {"shading-flat",                 false, OPTION_BOOL,   "/sim/rendering/shading", false, "", 0 },
1154     {"shading-smooth",               false, OPTION_BOOL,   "/sim/rendering/shading", true, "", 0 },
1155     {"disable-skyblend",             false, OPTION_BOOL,   "/sim/rendering/skyblend", false, "", 0 },
1156     {"enable-skyblend",              false, OPTION_BOOL,   "/sim/rendering/skyblend", true, "", 0 },
1157     {"disable-textures",             false, OPTION_BOOL,   "/sim/rendering/textures", false, "", 0 },
1158     {"enable-textures",              false, OPTION_BOOL,   "/sim/rendering/textures", true, "", 0 },
1159     {"disable-wireframe",            false, OPTION_BOOL,   "/sim/rendering/wireframe", false, "", 0 },
1160     {"enable-wireframe",             false, OPTION_BOOL,   "/sim/rendering/wireframe", true, "", 0 },
1161     {"geometry",                     true,  OPTION_FUNC,   "", false, "", fgOptGeometry },
1162     {"bpp",                          true,  OPTION_FUNC,   "", false, "", fgOptBpp },
1163     {"units-feet",                   false, OPTION_STRING, "/sim/startup/units", false, "feet", 0 },
1164     {"units-meters",                 false, OPTION_STRING, "/sim/startup/units", false, "meters", 0 },
1165     {"time-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptTimeOffset },
1166     {"time-match-real",              false, OPTION_STRING, "/sim/startup/time-offset-type", false, "system-offset", 0 },
1167     {"time-match-local",             false, OPTION_STRING, "/sim/startup/time-offset-type", false, "latitude-offset", 0 },
1168     {"start-date-sys",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateSys },
1169     {"start-date-lat",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateLat },
1170     {"start-date-gmt",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateGmt },
1171     {"hud-tris",                     false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
1172     {"hud-culled",                   false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
1173     {"atc610x",                      true,  OPTION_CHANNEL, "", false, "dummy", 0 },
1174     {"atlas",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1175     {"httpd",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1176 #ifdef FG_JPEG_SERVER
1177     {"jpg-httpd",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1178 #endif
1179     {"native",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1180     {"native-ctrls",                 true,  OPTION_CHANNEL, "", false, "", 0 },
1181     {"native-fdm",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1182     {"native-gui",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1183     {"opengc",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1184     {"garmin",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1185     {"nmea",                         true,  OPTION_CHANNEL, "", false, "", 0 },
1186     {"generic",                      true,  OPTION_CHANNEL, "", false, "", 0 },
1187     {"props",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1188     {"telnet",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1189     {"pve",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1190     {"ray",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1191     {"rul",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1192     {"joyclient",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1193 #ifdef FG_NETWORK_OLK
1194     {"disable-network-olk",          false, OPTION_BOOL,   "/sim/networking/olk", false, "", 0 },
1195     {"enable-network-olk",           false, OPTION_BOOL,   "/sim/networking/olk", true, "", 0 },
1196     {"net-hud",                      false, OPTION_FUNC,   "", false, "", fgOptNetHud },
1197     {"net-id",                       true,  OPTION_STRING, "sim/networking/call-sign", false, "", 0 },
1198 #endif
1199 #ifdef FG_MPLAYER_AS
1200     {"callsign",                     true, OPTION_STRING,  "sim/multiplay/callsign", false, "", 0 },
1201     {"multiplay",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1202 #endif
1203     {"trace-read",                   true,  OPTION_FUNC,   "", false, "", fgOptTraceRead },
1204     {"trace-write",                  true,  OPTION_FUNC,   "", false, "", fgOptTraceWrite },
1205     {"log-level",                    true,  OPTION_INT,    "/sim/log-level", false, "", 0 },
1206     {"view-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptViewOffset },
1207     {"visibility",                   true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMeters },
1208     {"visibility-miles",             true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMiles },
1209     {"random-wind",                  false, OPTION_FUNC,   "", false, "", fgOptRandomWind },
1210     {"wind",                         true,  OPTION_FUNC,   "", false, "", fgOptWind },
1211     {"turbulence",                   true,  OPTION_FUNC,   "", false, "", fgOptTurbulence },
1212     {"wp",                           true,  OPTION_FUNC,   "", false, "", fgOptWp },
1213     {"flight-plan",                  true,  OPTION_FUNC,   "", false, "", fgOptFlightPlan },
1214     {"config",                       true,  OPTION_FUNC,   "", false, "", fgOptConfig },
1215     {"aircraft",                     true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1216     {0}
1217 };
1218
1219
1220 // Parse a single option
1221 static int
1222 parse_option (const string& arg)
1223 {
1224     if ( fgOptionMap.size() == 0 ) {
1225         size_t i = 0;
1226         OptionDesc *pt = &fgOptionArray[ 0 ];
1227         while ( pt->option != 0 ) {
1228             fgOptionMap[ pt->option ] = i;
1229             i += 1;
1230             pt += 1;
1231         }
1232     }
1233
1234     // General Options
1235     if ( (arg == "--help") || (arg == "-h") ) {
1236         // help/usage request
1237         return(FG_OPTIONS_HELP);
1238     } else if ( (arg == "--verbose") || (arg == "-v") ) {
1239         // verbose help/usage request
1240         return(FG_OPTIONS_VERBOSE_HELP);
1241     } else if ( arg.find( "--show-aircraft") == 0) {
1242         return(FG_OPTIONS_SHOW_AIRCRAFT);
1243     } else if ( arg.find( "--prop:" ) == 0 ) {
1244         string assign = arg.substr(7);
1245         string::size_type pos = assign.find('=');
1246         if ( pos == arg.npos || pos == 0 ) {
1247             SG_LOG( SG_GENERAL, SG_ALERT, "Bad property assignment: " << arg );
1248             return FG_OPTIONS_ERROR;
1249         }
1250         string name = assign.substr(0, pos);
1251         string value = assign.substr(pos + 1);
1252         fgSetString(name.c_str(), value.c_str());
1253         // SG_LOG(SG_GENERAL, SG_INFO, "Setting default value of property "
1254         //        << name << " to \"" << value << '"');
1255     } else if ( arg.find( "--" ) == 0 ) {
1256         size_t pos = arg.find( '=' );
1257         string arg_name;
1258         if ( pos == string::npos ) {
1259             arg_name = arg.substr( 2 );
1260         } else {
1261             arg_name = arg.substr( 2, pos - 2 );
1262         }
1263         map<string,size_t>::iterator it = fgOptionMap.find( arg_name );
1264         if ( it != fgOptionMap.end() ) {
1265             OptionDesc *pt = &fgOptionArray[ it->second ];
1266             switch ( pt->type ) {
1267                 case OPTION_BOOL:
1268                     fgSetBool( pt->property, pt->b_param );
1269                     break;
1270                 case OPTION_STRING:
1271                     if ( pt->has_param && pos != string::npos ) {
1272                         fgSetString( pt->property, arg.substr( pos + 1 ).c_str() );
1273                     } else if ( !pt->has_param && pos == string::npos ) {
1274                         fgSetString( pt->property, pt->s_param );
1275                     } else if ( pt->has_param ) {
1276                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1277                         return FG_OPTIONS_ERROR;
1278                     } else {
1279                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1280                         return FG_OPTIONS_ERROR;
1281                     }
1282                     break;
1283                 case OPTION_DOUBLE:
1284                     if ( pos != string::npos ) {
1285                         fgSetDouble( pt->property, atof( arg.substr( pos + 1 ) ) );
1286                     } else {
1287                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1288                         return FG_OPTIONS_ERROR;
1289                     }
1290                     break;
1291                 case OPTION_INT:
1292                     if ( pos != string::npos ) {
1293                         fgSetInt( pt->property, atoi( arg.substr( pos + 1 ) ) );
1294                     } else {
1295                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1296                         return FG_OPTIONS_ERROR;
1297                     }
1298                     break;
1299                 case OPTION_CHANNEL:
1300                     if ( pt->has_param && pos != string::npos ) {
1301                         add_channel( pt->option, arg.substr( pos + 1 ) );
1302                     } else if ( !pt->has_param && pos == string::npos ) {
1303                         add_channel( pt->option, pt->s_param );
1304                     } else if ( pt->has_param ) {
1305                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1306                         return FG_OPTIONS_ERROR;
1307                     } else {
1308                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1309                         return FG_OPTIONS_ERROR;
1310                     }
1311                     break;
1312                 case OPTION_FUNC:
1313                     if ( pt->has_param && pos != string::npos ) {
1314                         return pt->func( arg.substr( pos + 1 ).c_str() );
1315                     } else if ( !pt->has_param && pos == string::npos ) {
1316                         return pt->func( 0 );
1317                     } else if ( pt->has_param ) {
1318                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1319                         return FG_OPTIONS_ERROR;
1320                     } else {
1321                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1322                         return FG_OPTIONS_ERROR;
1323                     }
1324                     break;
1325             }
1326         } else {
1327             SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1328             return FG_OPTIONS_ERROR;
1329         }
1330     } else {
1331         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1332         return FG_OPTIONS_ERROR;
1333     }
1334
1335     return FG_OPTIONS_OK;
1336 }
1337
1338
1339 // Parse the command line options
1340 void
1341 fgParseArgs (int argc, char **argv)
1342 {
1343     bool in_options = true;
1344     bool verbose = false;
1345     bool help = false;
1346
1347     SG_LOG(SG_GENERAL, SG_INFO, "Processing command line arguments");
1348
1349     for (int i = 1; i < argc; i++) {
1350         string arg = argv[i];
1351
1352         if (in_options && (arg.find('-') == 0)) {
1353           if (arg == "--") {
1354             in_options = false;
1355           } else {
1356             int result = parse_option(arg);
1357             if ((result == FG_OPTIONS_HELP) || (result == FG_OPTIONS_ERROR))
1358               help = true;
1359
1360             else if (result == FG_OPTIONS_VERBOSE_HELP)
1361               verbose = true;
1362
1363             else if (result == FG_OPTIONS_SHOW_AIRCRAFT) {
1364                fgShowAircraft();
1365                exit(0);
1366             }
1367           }
1368         } else {
1369           in_options = false;
1370           SG_LOG(SG_GENERAL, SG_INFO,
1371                  "Reading command-line property file " << arg);
1372           readProperties(arg, globals->get_props());
1373         }
1374     }
1375
1376     if (help) {
1377        fgUsage(verbose);
1378        exit(0);
1379     }
1380
1381     SG_LOG(SG_GENERAL, SG_INFO, "Finished command line arguments");
1382 }
1383
1384
1385 // Parse config file options
1386 void
1387 fgParseOptions (const string& path) {
1388     sg_gzifstream in( path );
1389     if ( !in.is_open() ) {
1390         return;
1391     }
1392
1393     SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path );
1394
1395     in >> skipcomment;
1396 #ifndef __MWERKS__
1397     while ( ! in.eof() ) {
1398 #else
1399     char c = '\0';
1400     while ( in.get(c) && c != '\0' ) {
1401         in.putback(c);
1402 #endif
1403         string line;
1404
1405 #if defined( macintosh )
1406         getline( in, line, '\r' );
1407 #else
1408         getline( in, line, '\n' );
1409 #endif
1410
1411         // catch extraneous (DOS) line ending character
1412         if ( line[line.length() - 1] < 32 ) {
1413             line = line.substr( 0, line.length()-1 );
1414         }
1415
1416         if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
1417             cerr << endl << "Config file parse error: " << path << " '" 
1418                     << line << "'" << endl;
1419             fgUsage();
1420             exit(-1);
1421         }
1422         in >> skipcomment;
1423     }
1424 }
1425
1426
1427 // Print usage message
1428 void 
1429 fgUsage (bool verbose)
1430 {
1431     SGPropertyNode *locale = globals->get_locale();
1432
1433     SGPropertyNode options_root;
1434
1435     cout << endl;
1436
1437     try {
1438         fgLoadProps("options.xml", &options_root);
1439     } catch (const sg_exception &ex) {
1440         cout << "Unable to read the help file." << endl;
1441         cout << "Make sure the file options.xml is located in the FlightGear base directory," << endl;
1442         cout << "and the location of the base directory is specified by setting $FG_ROOT or" << endl;
1443         cout << "by adding --fg-root=path as a program argument." << endl;
1444         
1445         exit(-1);
1446     }
1447
1448     SGPropertyNode *options = options_root.getNode("options");
1449     if (!options) {
1450         SG_LOG( SG_GENERAL, SG_ALERT,
1451                 "Error reading options.xml: <options> directive not found." );
1452         exit(-1);
1453     }
1454
1455     SGPropertyNode *usage = locale->getNode(options->getStringValue("usage"));
1456     if (usage) {
1457         cout << "Usage: " << usage->getStringValue() << endl;
1458     }
1459
1460     vector<SGPropertyNode_ptr>section = options->getChildren("section");
1461     for (unsigned int j = 0; j < section.size(); j++) {
1462         string msg = "";
1463
1464         vector<SGPropertyNode_ptr>option = section[j]->getChildren("option");
1465         for (unsigned int k = 0; k < option.size(); k++) {
1466
1467             SGPropertyNode *name = option[k]->getNode("name");
1468             SGPropertyNode *short_name = option[k]->getNode("short");
1469             SGPropertyNode *key = option[k]->getNode("key");
1470             SGPropertyNode *arg = option[k]->getNode("arg");
1471             bool brief = option[k]->getNode("brief");
1472
1473             if ((brief || verbose) && name) {
1474                 string tmp = name->getStringValue();
1475
1476                 if (key){
1477                     tmp.append(":");
1478                     tmp.append(key->getStringValue());
1479                 }
1480                 if (arg) {
1481                     tmp.append("=");
1482                     tmp.append(arg->getStringValue());
1483                 }
1484                 if (short_name) {
1485                     tmp.append(", -");
1486                     tmp.append(short_name->getStringValue());
1487                 }
1488
1489                 char cstr[96];
1490                 if (tmp.size() <= 25) {
1491                     snprintf(cstr, 96, "   --%-27s", tmp.c_str());
1492                 } else {
1493                     snprintf(cstr, 96, "\n   --%s\n%32c", tmp.c_str(), ' ');
1494                 }
1495
1496                 // There may be more than one <description> tag assosiated
1497                 // with one option
1498
1499                 msg += cstr;
1500                 vector<SGPropertyNode_ptr>desc =
1501                                           option[k]->getChildren("description");
1502
1503                 if (desc.size() > 0) {
1504                    for ( unsigned int l = 0; l < desc.size(); l++) {
1505
1506                       // There may be more than one translation line.
1507
1508                       string t = desc[l]->getStringValue();
1509                       SGPropertyNode *n = locale->getNode("strings");
1510                       vector<SGPropertyNode_ptr>trans_desc =
1511                                n->getChildren(t.substr(8).c_str());
1512
1513                       for ( unsigned int m = 0; m < trans_desc.size(); m++ ) {
1514                          string t_str = trans_desc[m]->getStringValue();
1515
1516                          if ((m > 0) || ((l > 0) && m == 0)) {
1517                             snprintf(cstr, 96, "%32c", ' ');
1518                             msg += cstr;
1519
1520                          }
1521
1522                          // If the string is too large to fit on the screen,
1523                          // then split it up in several pieces.
1524
1525                          while ( t_str.size() > 47 ) {
1526
1527                             unsigned int m = t_str.rfind(' ', 47);
1528                             msg += t_str.substr(0, m);
1529                             snprintf(cstr, 96, "\n%32c", ' ');
1530                             msg += cstr;
1531
1532                             t_str.erase(t_str.begin(), t_str.begin() + m + 1);
1533                         }
1534                         msg += t_str + '\n';
1535                      }
1536                   }
1537                }
1538             }
1539         }
1540
1541         SGPropertyNode *name =
1542                             locale->getNode(section[j]->getStringValue("name"));
1543
1544         if (!msg.empty() && name) {
1545            cout << endl << name->getStringValue() << ":" << endl;
1546            cout << msg;
1547            msg.erase();
1548         }
1549     }
1550
1551     if ( !verbose ) {
1552         cout << endl;
1553         cout << "For a complete list of options use --help --verbose" << endl;
1554     }
1555 }
1556
1557 // Show available aircraft types
1558 void fgShowAircraft(void) {
1559    vector<string> aircraft;
1560
1561    SGPath path( globals->get_fg_root() );
1562    path.append("Aircraft");
1563
1564    ulDirEnt* dire;
1565    ulDir *dirp;
1566
1567    dirp = ulOpenDir(path.c_str());
1568    if (dirp == NULL) {
1569       cerr << "Unable to open aircraft directory." << endl;
1570       exit(-1);
1571    }
1572
1573    while ((dire = ulReadDir(dirp)) != NULL) {
1574       char *ptr;
1575
1576       if ((ptr = strstr(dire->d_name, "-set.xml")) && ptr[8] == '\0' ) {
1577           SGPath afile = path;
1578           afile.append(dire->d_name);
1579
1580           *ptr = '\0';
1581
1582           SGPropertyNode root;
1583           try {
1584              readProperties(afile.str(), &root);
1585           } catch (...) {
1586              continue;
1587           }
1588
1589           SGPropertyNode *desc = NULL;
1590           SGPropertyNode *node = root.getNode("sim");
1591           if (node) {
1592              desc = node->getNode("description");
1593           }
1594
1595           char cstr[96];
1596           if (strlen(dire->d_name) <= 27)
1597              snprintf(cstr, 96, "   %-27s  %s", dire->d_name,
1598                       (desc) ? desc->getStringValue() : "" );
1599
1600           else
1601              snprintf(cstr, 96, "   %-27s\n%32c%s", dire->d_name, ' ',
1602                       (desc) ? desc->getStringValue() : "" );
1603
1604           aircraft.push_back(cstr);
1605       }
1606    }
1607
1608    sort(aircraft.begin(), aircraft.end());
1609    cout << "Available aircraft:" << endl;
1610    for ( unsigned int i = 0; i < aircraft.size(); i++ ) {
1611        cout << aircraft[i] << endl;
1612    }
1613
1614    aircraft.clear();
1615    ulCloseDir(dirp);
1616 }