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