]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.cxx
Add a --ceiling=FT_AGL[:THICKNESS_AGL] option to create a default
[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 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                                 // Initialize to a reasonable state
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                                 // Now, add some variety to the layers
555   min_hdg += 10;
556   if (min_hdg > 360)
557       min_hdg -= 360;
558   speed *= 1.2;
559   fgSetDouble("/environment/config/boundary/entry[1]/wind-from-heading-deg",
560               min_hdg);
561   fgSetDouble("/environment/config/boundary/entry[1]/wind-speed-kt",
562               speed);
563
564   min_hdg += 20;
565   if (min_hdg > 360)
566       min_hdg -= 360;
567   speed *= 1.5;
568   fgSetDouble("/environment/config/aloft/entry[0]/wind-from-heading-deg",
569               min_hdg);
570   fgSetDouble("/environment/config/aloft/entry[0]/wind-speed-kt",
571               speed);
572               
573   min_hdg += 10;
574   if (min_hdg > 360)
575       min_hdg -= 360;
576   speed *= 1.2;
577   fgSetDouble("/environment/config/aloft/entry[1]/wind-from-heading-deg",
578               min_hdg);
579   fgSetDouble("/environment/config/aloft/entry[1]/wind-speed-kt",
580               speed);
581               
582   min_hdg += 10;
583   if (min_hdg > 360)
584       min_hdg -= 360;
585   speed *= 1.2;
586   fgSetDouble("/environment/config/aloft/entry[2]/wind-from-heading-deg",
587               min_hdg);
588   fgSetDouble("/environment/config/aloft/entry[2]/wind-speed-kt",
589               speed);
590
591 #ifdef FG_WEATHERCM
592   // convert to fps
593   speed *= SG_NM_TO_METER * SG_METER_TO_FEET * (1.0/3600);
594   while (min_hdg > 360)
595     min_hdg -= 360;
596   while (min_hdg <= 0)
597     min_hdg += 360;
598   min_hdg *= SGD_DEGREES_TO_RADIANS;
599   fgSetDouble("/environment/wind-from-north-fps", speed * cos(dir));
600   fgSetDouble("/environment/wind-from-east-fps", speed * sin(dir));
601 #endif // FG_WEATHERCM
602 }
603
604
605 // Parse --wp=ID[@alt]
606 static bool 
607 parse_wp( const string& arg ) {
608     string id, alt_str;
609     double alt = 0.0;
610
611     string::size_type pos = arg.find( "@" );
612     if ( pos != string::npos ) {
613         id = arg.substr( 0, pos );
614         alt_str = arg.substr( pos + 1 );
615         // cout << "id str = " << id << "  alt str = " << alt_str << endl;
616         alt = atof( alt_str.c_str() );
617         if ( !strcmp(fgGetString("/sim/startup/units"), "feet") ) {
618             alt *= SG_FEET_TO_METER;
619         }
620     } else {
621         id = arg;
622     }
623
624     FGAirport a;
625     if ( fgFindAirportID( id, &a ) ) {
626         SGWayPoint wp( a.longitude, a.latitude, alt, SGWayPoint::WGS84, id );
627         globals->get_route()->add_waypoint( wp );
628
629         return true;
630     } else {
631         return false;
632     }
633 }
634
635
636 // Parse --flight-plan=[file]
637 static bool 
638 parse_flightplan(const string& arg)
639 {
640     sg_gzifstream in(arg.c_str());
641     if ( !in.is_open() ) {
642         return false;
643     }
644     while ( true ) {
645         string line;
646
647 #if defined( macintosh )
648         getline( in, line, '\r' );
649 #else
650         getline( in, line, '\n' );
651 #endif
652
653         // catch extraneous (DOS) line ending character
654         if ( line[line.length() - 1] < 32 ) {
655             line = line.substr( 0, line.length()-1 );
656         }
657
658         if ( in.eof() ) {
659             break;
660         }
661         parse_wp(line);
662     }
663
664     return true;
665 }
666
667 static int
668 fgOptLanguage( const char *arg )
669 {
670     globals->set_locale( fgInitLocale( arg ) );
671     return FG_OPTIONS_OK;
672 }
673
674 static void
675 clearLocation ()
676 {
677     fgSetString("/sim/presets/airport-id", "");
678     fgSetString("/sim/presets/vor-id", "");
679     fgSetString("/sim/presets/ndb-id", "");
680     fgSetString("/sim/presets/fix", "");
681 }
682
683 static int
684 fgOptVOR( const char * arg )
685 {
686     clearLocation();
687     fgSetString("/sim/presets/vor-id", arg);
688     return FG_OPTIONS_OK;
689 }
690
691 static int
692 fgOptNDB( const char * arg )
693 {
694     clearLocation();
695     fgSetString("/sim/presets/ndb-id", arg);
696     return FG_OPTIONS_OK;
697 }
698
699 static int
700 fgOptFIX( const char * arg )
701 {
702     clearLocation();
703     fgSetString("/sim/presets/fix", arg);
704     return FG_OPTIONS_OK;
705 }
706
707 static int
708 fgOptLon( const char *arg )
709 {
710     clearLocation();
711     fgSetDouble("/sim/presets/longitude-deg", parse_degree( arg ));
712     fgSetDouble("/position/longitude-deg", parse_degree( arg ));
713     return FG_OPTIONS_OK;
714 }
715
716 static int
717 fgOptLat( const char *arg )
718 {
719     clearLocation();
720     fgSetDouble("/sim/presets/latitude-deg", parse_degree( arg ));
721     fgSetDouble("/position/latitude-deg", parse_degree( arg ));
722     return FG_OPTIONS_OK;
723 }
724
725 static int
726 fgOptAltitude( const char *arg )
727 {
728     fgSetBool("/sim/presets/onground", false);
729     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
730         fgSetDouble("/sim/presets/altitude-ft", atof( arg ));
731     else
732         fgSetDouble("/sim/presets/altitude-ft",
733                     atof( arg ) * SG_METER_TO_FEET);
734     return FG_OPTIONS_OK;
735 }
736
737 static int
738 fgOptUBody( const char *arg )
739 {
740     fgSetString("/sim/presets/speed-set", "UVW");
741     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
742         fgSetDouble("/sim/presets/uBody-fps", atof( arg ));
743     else
744         fgSetDouble("/sim/presets/uBody-fps",
745                     atof( arg ) * SG_METER_TO_FEET);
746     return FG_OPTIONS_OK;
747 }
748
749 static int
750 fgOptVBody( const char *arg )
751 {
752     fgSetString("/sim/presets/speed-set", "UVW");
753     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
754         fgSetDouble("/sim/presets/vBody-fps", atof( arg ));
755     else
756         fgSetDouble("/sim/presets/vBody-fps",
757                             atof( arg ) * SG_METER_TO_FEET);
758     return FG_OPTIONS_OK;
759 }
760
761 static int
762 fgOptWBody( const char *arg )
763 {
764     fgSetString("/sim/presets/speed-set", "UVW");
765     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
766         fgSetDouble("/sim/presets/wBody-fps", atof(arg));
767     else
768         fgSetDouble("/sim/presets/wBody-fps",
769                             atof(arg) * SG_METER_TO_FEET);
770     return FG_OPTIONS_OK;
771 }
772
773 static int
774 fgOptVNorth( const char *arg )
775 {
776     fgSetString("/sim/presets/speed-set", "NED");
777     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
778         fgSetDouble("/sim/presets/speed-north-fps", atof( arg ));
779     else
780         fgSetDouble("/sim/presets/speed-north-fps",
781                             atof( arg ) * SG_METER_TO_FEET);
782     return FG_OPTIONS_OK;
783 }
784
785 static int
786 fgOptVEast( const char *arg )
787 {
788     fgSetString("/sim/presets/speed-set", "NED");
789     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
790         fgSetDouble("/sim/presets/speed-east-fps", atof(arg));
791     else
792         fgSetDouble("/sim/presets/speed-east-fps",
793                     atof(arg) * SG_METER_TO_FEET);
794     return FG_OPTIONS_OK;
795 }
796
797 static int
798 fgOptVDown( const char *arg )
799 {
800     fgSetString("/sim/presets/speed-set", "NED");
801     if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
802         fgSetDouble("/sim/presets/speed-down-fps", atof(arg));
803     else
804         fgSetDouble("/sim/presets/speed-down-fps",
805                             atof(arg) * SG_METER_TO_FEET);
806     return FG_OPTIONS_OK;
807 }
808
809 static int
810 fgOptVc( const char *arg )
811 {
812     // fgSetString("/sim/presets/speed-set", "knots");
813     // fgSetDouble("/velocities/airspeed-kt", atof(arg.substr(5)));
814     fgSetString("/sim/presets/speed-set", "knots");
815     fgSetDouble("/sim/presets/airspeed-kt", atof(arg));
816     return FG_OPTIONS_OK;
817 }
818
819 static int
820 fgOptMach( const char *arg )
821 {
822     fgSetString("/sim/presets/speed-set", "mach");
823     fgSetDouble("/sim/presets/mach", atof(arg));
824     return FG_OPTIONS_OK;
825 }
826
827 static int
828 fgOptRoc( const char *arg )
829 {
830     fgSetDouble("/velocities/vertical-speed-fps", atof(arg)/60);
831     return FG_OPTIONS_OK;
832 }
833
834 static int
835 fgOptFgRoot( const char *arg )
836 {
837     globals->set_fg_root(arg);
838     return FG_OPTIONS_OK;
839 }
840
841 static int
842 fgOptFgScenery( const char *arg )
843 {
844     globals->set_fg_scenery(arg);
845     return FG_OPTIONS_OK;
846 }
847
848 static int
849 fgOptFov( const char *arg )
850 {
851     parse_fov( arg );
852     return FG_OPTIONS_OK;
853 }
854
855 static int
856 fgOptGeometry( const char *arg )
857 {
858     bool geometry_ok = true;
859     int xsize = 0, ysize = 0;
860     string geometry = arg;
861     string::size_type i = geometry.find('x');
862
863     if (i != string::npos) {
864         xsize = atoi(geometry.substr(0, i));
865         ysize = atoi(geometry.substr(i+1));
866     } else {
867         geometry_ok = false;
868     }
869
870     if ( xsize <= 0 || ysize <= 0 ) {
871         xsize = 640;
872         ysize = 480;
873         geometry_ok = false;
874     }
875
876     if ( !geometry_ok ) {
877         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown geometry: " << geometry );
878         SG_LOG( SG_GENERAL, SG_ALERT,
879                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
880     } else {
881         SG_LOG( SG_GENERAL, SG_INFO,
882                 "Setting geometry to " << xsize << 'x' << ysize << '\n');
883         fgSetInt("/sim/startup/xsize", xsize);
884         fgSetInt("/sim/startup/ysize", ysize);
885     }
886     return FG_OPTIONS_OK;
887 }
888
889 static int
890 fgOptBpp( const char *arg )
891 {
892     string bits_per_pix = arg;
893     if ( bits_per_pix == "16" ) {
894         fgSetInt("/sim/rendering/bits-per-pixel", 16);
895     } else if ( bits_per_pix == "24" ) {
896         fgSetInt("/sim/rendering/bits-per-pixel", 24);
897     } else if ( bits_per_pix == "32" ) {
898         fgSetInt("/sim/rendering/bits-per-pixel", 32);
899     } else {
900         SG_LOG(SG_GENERAL, SG_ALERT, "Unsupported bpp " << bits_per_pix);
901     }
902     return FG_OPTIONS_OK;
903 }
904
905 static int
906 fgOptTimeOffset( const char *arg )
907 {
908     fgSetInt("/sim/startup/time-offset",
909                 parse_time_offset( arg ));
910     fgSetString("/sim/startup/time-offset-type", "system-offset");
911     return FG_OPTIONS_OK;
912 }
913
914 static int
915 fgOptStartDateSys( const char *arg )
916 {
917     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
918     fgSetString("/sim/startup/time-offset-type", "system");
919     return FG_OPTIONS_OK;
920 }
921
922 static int
923 fgOptStartDateLat( const char *arg )
924 {
925     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
926     fgSetString("/sim/startup/time-offset-type", "latitude");
927     return FG_OPTIONS_OK;
928 }
929
930 static int
931 fgOptStartDateGmt( const char *arg )
932 {
933     fgSetInt("/sim/startup/time-offset", parse_date( arg ) );
934     fgSetString("/sim/startup/time-offset-type", "gmt");
935     return FG_OPTIONS_OK;
936 }
937
938 #ifdef FG_NETWORK_OLK
939 static int
940 fgOptNetHud( const char *arg )
941 {
942     fgSetBool("/sim/hud/net-display", true);
943     net_hud_display = 1;        // FIXME
944     return FG_OPTIONS_OK;
945 }
946 #endif
947
948 static int
949 fgOptTraceRead( const char *arg )
950 {
951     string name = arg;
952     SG_LOG(SG_GENERAL, SG_INFO, "Tracing reads for property " << name);
953     fgGetNode(name.c_str(), true)
954         ->setAttribute(SGPropertyNode::TRACE_READ, true);
955     return FG_OPTIONS_OK;
956 }
957
958 static int
959 fgOptTraceWrite( const char *arg )
960 {
961     string name = arg;
962     SG_LOG(SG_GENERAL, SG_INFO, "Tracing writes for property " << name);
963     fgGetNode(name.c_str(), true)
964         ->setAttribute(SGPropertyNode::TRACE_WRITE, true);
965     return FG_OPTIONS_OK;
966 }
967
968 static int
969 fgOptViewOffset( const char *arg )
970 {
971     // $$$ begin - added VS Renganathan, 14 Oct 2K
972     // for multi-window outside window imagery
973     string woffset = arg;
974     double default_view_offset = 0.0;
975     if ( woffset == "LEFT" ) {
976             default_view_offset = SGD_PI * 0.25;
977     } else if ( woffset == "RIGHT" ) {
978         default_view_offset = SGD_PI * 1.75;
979     } else if ( woffset == "CENTER" ) {
980         default_view_offset = 0.00;
981     } else {
982         default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
983     }
984     /* apparently not used (CLO, 11 Jun 2002) 
985         FGViewer *pilot_view =
986             (FGViewer *)globals->get_viewmgr()->get_view( 0 ); */
987     // this will work without calls to the viewer...
988     fgSetDouble( "/sim/current-view/heading-offset-deg",
989                     default_view_offset  * SGD_RADIANS_TO_DEGREES );
990     // $$$ end - added VS Renganathan, 14 Oct 2K
991     return FG_OPTIONS_OK;
992 }
993
994 static int
995 fgOptVisibilityMeters( const char *arg )
996 {
997     double visibility = atof( arg );
998     fgDefaultWeatherValue("visibility-m", visibility);
999     return FG_OPTIONS_OK;
1000 }
1001
1002 static int
1003 fgOptVisibilityMiles( const char *arg )
1004 {
1005     double visibility = atof( arg ) * 5280.0 * SG_FEET_TO_METER;
1006     fgDefaultWeatherValue("visibility-m", visibility);
1007     return FG_OPTIONS_OK;
1008 }
1009
1010 static int
1011 fgOptRandomWind( const char *arg )
1012 {
1013     double min_hdg = sg_random() * 360.0;
1014     double max_hdg = min_hdg + (20 - sqrt(sg_random() * 400));
1015     double speed = 40 - sqrt(sg_random() * 1600.0);
1016     double gust = speed + (10 - sqrt(sg_random() * 100));
1017     setup_wind(min_hdg, max_hdg, speed, gust);
1018     return FG_OPTIONS_OK;
1019 }
1020
1021 static int
1022 fgOptWind( const char *arg )
1023 {
1024     double min_hdg, max_hdg, speed, gust;
1025     if (!parse_wind( arg, &min_hdg, &max_hdg, &speed, &gust)) {
1026         SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << arg );
1027         return FG_OPTIONS_ERROR;
1028     }
1029     setup_wind(min_hdg, max_hdg, speed, gust);
1030     return FG_OPTIONS_OK;
1031 }
1032
1033 static int
1034 fgOptTurbulence( const char *arg )
1035 {
1036     fgDefaultWeatherValue("turbulence/magnitude-norm", atof(arg));
1037     return FG_OPTIONS_OK;
1038 }
1039
1040 static int
1041 fgOptCeiling( const char *arg )
1042 {
1043     double elevation, thickness;
1044     string spec = arg;
1045     string::size_type pos = spec.find(':');
1046     if (pos == string::npos) {
1047         elevation = atof(spec.c_str());
1048         thickness = 2000;
1049     } else {
1050         elevation = atof(spec.substr(0, pos).c_str());
1051         thickness = atof(spec.substr(pos + 1).c_str());
1052     }
1053     fgSetDouble("/environment/clouds/layer[0]/elevation-ft", elevation);
1054     fgSetDouble("/environment/clouds/layer[0]/thickness-ft", thickness);
1055     fgSetString("/environment/clouds/layer[0]/coverage", "overcast");
1056     return FG_OPTIONS_OK;
1057 }
1058
1059 static int
1060 fgOptWp( const char *arg )
1061 {
1062     parse_wp( arg );
1063     return FG_OPTIONS_OK;
1064 }
1065
1066 static int
1067 fgOptFlightPlan( const char *arg )
1068 {
1069     parse_flightplan ( arg );
1070     return FG_OPTIONS_OK;
1071 }
1072
1073 static int
1074 fgOptConfig( const char *arg )
1075 {
1076     string file = arg;
1077     try {
1078         readProperties(file, globals->get_props());
1079     } catch (const sg_exception &e) {
1080         string message = "Error loading config file: ";
1081         message += e.getFormattedMessage();
1082         SG_LOG(SG_INPUT, SG_ALERT, message);
1083         exit(2);
1084     }
1085     return FG_OPTIONS_OK;
1086 }
1087
1088 static bool
1089 parse_colon (const string &s, double * val1, double * val2)
1090 {
1091     string::size_type pos = s.find(':');
1092     if (pos == string::npos) {
1093         *val2 = atof(s);
1094         return false;
1095     } else {
1096         *val1 = atof(s.substr(0, pos).c_str());
1097         *val2 = atof(s.substr(pos+1).c_str());
1098         return true;
1099     }
1100 }
1101
1102
1103 static int
1104 fgOptNAV1( const char * arg )
1105 {
1106     double radial, freq;
1107     if (parse_colon(arg, &radial, &freq))
1108         fgSetDouble("/radios/nav[0]/radials/selected-deg", radial);
1109     fgSetDouble("/radios/nav[0]/frequencies/selected-mhz", freq);
1110     return FG_OPTIONS_OK;
1111 }
1112
1113 static int
1114 fgOptNAV2( const char * arg )
1115 {
1116     double radial, freq;
1117     if (parse_colon(arg, &radial, &freq))
1118         fgSetDouble("/radios/nav[1]/radials/selected-deg", radial);
1119     fgSetDouble("/radios/nav[1]/frequencies/selected-mhz", freq);
1120     return FG_OPTIONS_OK;
1121 }
1122
1123 static int
1124 fgOptADF( const char * arg )
1125 {
1126     double rot, freq;
1127     if (parse_colon(arg, &rot, &freq))
1128         fgSetDouble("/radios/kr-87/inputs/rotation-deg", rot);
1129     fgSetDouble("/radios/kr-87/outputs/selected-khz", freq);
1130     return FG_OPTIONS_OK;
1131 }
1132
1133 static int
1134 fgOptDME( const char *arg )
1135 {
1136     string opt = arg;
1137     if (opt == "nav1") {
1138         fgSetInt("/instrumentation/dme/switch-position", 1);
1139         fgSetString("/instrumentation/dme/frequencies/source",
1140                     "/radios/nav[0]/frequencies/selected-mhz");
1141     } else if (opt == "nav2") {
1142         fgSetInt("/instrumentation/dme/switch-position", 3);
1143         fgSetString("/instrumentation/dme/frequencies/source",
1144                     "/radios/nav[1]/frequencies/selected-mhz");
1145     } else {
1146         fgSetInt("/instrumentation/dme/switch-position", 2);
1147         fgSetString("/instrumentation/dme/frequencies/source",
1148                     "/instrumentation/dme/frequencies/selected-mhz");
1149         fgSetString("/instrumentation/dme/frequencies/selected-mhz", arg);
1150     }
1151     return FG_OPTIONS_OK;
1152 }
1153
1154 static map<string,size_t> fgOptionMap;
1155
1156 /*
1157    option       has_param type        property         b_param s_param  func
1158
1159 where:
1160  option    : name of the option
1161  has_param : option is --name=value if true or --name if false
1162  type      : OPTION_BOOL    - property is a boolean
1163              OPTION_STRING  - property is a string
1164              OPTION_DOUBLE  - property is a double
1165              OPTION_INT     - property is an integer
1166              OPTION_CHANNEL - name of option is the name of a channel
1167              OPTION_FUNC    - the option trigger a function
1168  b_param   : if type==OPTION_BOOL,
1169              value set to the property (has_param is false for boolean)
1170  s_param   : if type==OPTION_STRING,
1171              value set to the property if has_param is false
1172  func      : function called if type==OPTION_FUNC. if has_param is true,
1173              the value is passed to the function as a string, otherwise,
1174              0 is passed. 
1175
1176     For OPTION_DOUBLE and OPTION_INT, the parameter value is converted into a
1177     double or an integer and set to the property.
1178
1179     For OPTION_CHANNEL, add_channel is called with the parameter value as the
1180     argument.
1181 */
1182
1183 enum OptionType { OPTION_BOOL, OPTION_STRING, OPTION_DOUBLE, OPTION_INT, OPTION_CHANNEL, OPTION_FUNC };
1184 struct OptionDesc {
1185     char *option;
1186     bool has_param;
1187     enum OptionType type;
1188     char *property;
1189     bool b_param;
1190     char *s_param;
1191     int (*func)( const char * );
1192     } fgOptionArray[] = {
1193        
1194     {"language",                     true,  OPTION_FUNC,   "", false, "", fgOptLanguage },
1195     {"disable-game-mode",            false, OPTION_BOOL,   "/sim/startup/game-mode", false, "", 0 },
1196     {"enable-game-mode",             false, OPTION_BOOL,   "/sim/startup/game-mode", true, "", 0 },
1197     {"disable-splash-screen",        false, OPTION_BOOL,   "/sim/startup/splash-screen", false, "", 0 },
1198     {"enable-splash-screen",         false, OPTION_BOOL,   "/sim/startup/splash-screen", true, "", 0 },
1199     {"disable-intro-music",          false, OPTION_BOOL,   "/sim/startup/intro-music", false, "", 0 },
1200     {"enable-intro-music",           false, OPTION_BOOL,   "/sim/startup/intro-music", true, "", 0 },
1201     {"disable-mouse-pointer",        false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "disabled", 0 },
1202     {"enable-mouse-pointer",         false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "enabled", 0 },
1203     {"disable-random-objects",       false, OPTION_BOOL,   "/sim/rendering/random-objects", false, "", 0 },
1204     {"enable-random-objects",        false, OPTION_BOOL,   "/sim/rendering/random-objects", true, "", 0 },
1205     {"disable-freeze",               false, OPTION_BOOL,   "/sim/freeze/master", false, "", 0 },
1206     {"enable-freeze",                false, OPTION_BOOL,   "/sim/freeze/master", true, "", 0 },
1207     {"disable-fuel-freeze",          false, OPTION_BOOL,   "/sim/freeze/fuel", false, "", 0 },
1208     {"enable-fuel-freeze",           false, OPTION_BOOL,   "/sim/freeze/fuel", true, "", 0 },
1209     {"disable-clock-freeze",         false, OPTION_BOOL,   "/sim/freeze/clock", false, "", 0 },
1210     {"enable-clock-freeze",          false, OPTION_BOOL,   "/sim/freeze/clock", true, "", 0 },
1211     {"disable-hud-3d",               false, OPTION_BOOL,   "/sim/hud/enable3d", false, "", 0 },
1212     {"enable-hud-3d",                false, OPTION_BOOL,   "/sim/hud/enable3d", true, "", 0 },
1213     {"disable-anti-alias-hud",       false, OPTION_BOOL,   "/sim/hud/antialiased", false, "", 0 },
1214     {"enable-anti-alias-hud",        false, OPTION_BOOL,   "/sim/hud/antialiased", true, "", 0 },
1215     {"control",                      true,  OPTION_STRING, "/sim/control-mode", false, "", 0 },
1216     {"disable-auto-coordination",    false, OPTION_BOOL,   "/sim/auto-coordination", false, "", 0 },
1217     {"enable-auto-coordination",     false, OPTION_BOOL,   "/sim/auto-coordination", true, "", 0 },
1218     {"browser-app",                  true,  OPTION_STRING, "/sim/startup/browser-app", false, "", 0 },
1219     {"disable-hud",                  false, OPTION_BOOL,   "/sim/hud/visibility", false, "", 0 },
1220     {"enable-hud",                   false, OPTION_BOOL,   "/sim/hud/visibility", true, "", 0 },
1221     {"disable-panel",                false, OPTION_BOOL,   "/sim/panel/visibility", false, "", 0 },
1222     {"enable-panel",                 false, OPTION_BOOL,   "/sim/panel/visibility", true, "", 0 },
1223     {"disable-sound",                false, OPTION_BOOL,   "/sim/sound/audible", false, "", 0 },
1224     {"enable-sound",                 false, OPTION_BOOL,   "/sim/sound/audible", true, "", 0 },
1225     {"airport",                      true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1226     {"airport-id",                   true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1227     {"runway",                       true,  OPTION_STRING, "/sim/presets/runway", false, "", 0 },
1228     {"vor",                          true,  OPTION_FUNC,   "", false, "", fgOptVOR },
1229     {"ndb",                          true,  OPTION_FUNC,   "", false, "", fgOptNDB },
1230     {"fix",                          true,  OPTION_FUNC,   "", false, "", fgOptFIX },
1231     {"offset-distance",              true,  OPTION_DOUBLE, "/sim/presets/offset-distance", false, "", 0 },
1232     {"offset-azimuth",               true,  OPTION_DOUBLE, "/sim/presets/offset-azimuth", false, "", 0 },
1233     {"lon",                          true,  OPTION_FUNC,   "", false, "", fgOptLon },
1234     {"lat",                          true,  OPTION_FUNC,   "", false, "", fgOptLat },
1235     {"altitude",                     true,  OPTION_FUNC,   "", false, "", fgOptAltitude },
1236     {"uBody",                        true,  OPTION_FUNC,   "", false, "", fgOptUBody },
1237     {"vBody",                        true,  OPTION_FUNC,   "", false, "", fgOptVBody },
1238     {"wBody",                        true,  OPTION_FUNC,   "", false, "", fgOptWBody },
1239     {"vNorth",                       true,  OPTION_FUNC,   "", false, "", fgOptVNorth },
1240     {"vEast",                        true,  OPTION_FUNC,   "", false, "", fgOptVEast },
1241     {"vDown",                        true,  OPTION_FUNC,   "", false, "", fgOptVDown },
1242     {"vc",                           true,  OPTION_FUNC,   "", false, "", fgOptVc },
1243     {"mach",                         true,  OPTION_FUNC,   "", false, "", fgOptMach },
1244     {"heading",                      true,  OPTION_DOUBLE, "/sim/presets/heading-deg", false, "", 0 },
1245     {"roll",                         true,  OPTION_DOUBLE, "/sim/presets/roll-deg", false, "", 0 },
1246     {"pitch",                        true,  OPTION_DOUBLE, "/sim/presets/pitch-deg", false, "", 0 },
1247     {"glideslope",                   true,  OPTION_DOUBLE, "/sim/presets/glideslope-deg", false, "", 0 },
1248     {"roc",                          true,  OPTION_FUNC,   "", false, "", fgOptRoc },
1249     {"fg-root",                      true,  OPTION_FUNC,   "", false, "", fgOptFgRoot },
1250     {"fg-scenery",                   true,  OPTION_FUNC,   "", false, "", fgOptFgScenery },
1251     {"fdm",                          true,  OPTION_STRING, "/sim/flight-model", false, "", 0 },
1252     {"aero",                         true,  OPTION_STRING, "/sim/aero", false, "", 0 },
1253     {"aircraft-dir",                 true,  OPTION_STRING, "/sim/aircraft-dir", false, "", 0 },
1254     {"model-hz",                     true,  OPTION_INT,    "/sim/model-hz", false, "", 0 },
1255     {"speed",                        true,  OPTION_INT,    "/sim/speed-up", false, "", 0 },
1256     {"trim",                         false, OPTION_BOOL,   "/sim/presets/trim", true, "", 0 },
1257     {"notrim",                       false, OPTION_BOOL,   "/sim/presets/trim", false, "", 0 },
1258     {"on-ground",                    false, OPTION_BOOL,   "/sim/presets/onground", true, "", 0 },
1259     {"in-air",                       false, OPTION_BOOL,   "/sim/presets/onground", false, "", 0 },
1260     {"fog-disable",                  false, OPTION_STRING, "/sim/rendering/fog", false, "disabled", 0 },
1261     {"fog-fastest",                  false, OPTION_STRING, "/sim/rendering/fog", false, "fastest", 0 },
1262     {"fog-nicest",                   false, OPTION_STRING, "/sim/rendering/fog", false, "nicest", 0 },
1263     {"disable-horizon-effect",       false, OPTION_BOOL,   "/sim/rendering/horizon-effect", false, "", 0 },
1264     {"enable-horizon-effect",        false, OPTION_BOOL,   "/sim/rendering/horizon-effect", true, "", 0 },
1265     {"disable-enhanced-lighting",    false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", false, "", 0 },
1266     {"enable-enhanced-lighting",     false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", true, "", 0 },
1267     {"disable-distance-attenuation", false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", false, "", 0 },
1268     {"enable-distance-attenuation",  false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", true, "", 0 },
1269     {"disable-clouds",               false, OPTION_BOOL,   "/environment/clouds/status", false, "", 0 },
1270     {"enable-clouds",                false, OPTION_BOOL,   "/environment/clouds/status", true, "", 0 },
1271 #ifdef FG_USE_CLOUDS_3D
1272     {"disable-clouds3d",             false, OPTION_BOOL,   "/sim/rendering/clouds3d", false, "", 0 },
1273     {"enable-clouds3d",              false, OPTION_BOOL,   "/sim/rendering/clouds3d", true, "", 0 },
1274 #endif
1275     {"fov",                          true,  OPTION_FUNC,   "", false, "", fgOptFov },
1276     {"disable-fullscreen",           false, OPTION_BOOL,   "/sim/startup/fullscreen", false, "", 0 },
1277     {"enable-fullscreen",            false, OPTION_BOOL,   "/sim/startup/fullscreen", true, "", 0 },
1278     {"shading-flat",                 false, OPTION_BOOL,   "/sim/rendering/shading", false, "", 0 },
1279     {"shading-smooth",               false, OPTION_BOOL,   "/sim/rendering/shading", true, "", 0 },
1280     {"disable-skyblend",             false, OPTION_BOOL,   "/sim/rendering/skyblend", false, "", 0 },
1281     {"enable-skyblend",              false, OPTION_BOOL,   "/sim/rendering/skyblend", true, "", 0 },
1282     {"disable-textures",             false, OPTION_BOOL,   "/sim/rendering/textures", false, "", 0 },
1283     {"enable-textures",              false, OPTION_BOOL,   "/sim/rendering/textures", true, "", 0 },
1284     {"disable-wireframe",            false, OPTION_BOOL,   "/sim/rendering/wireframe", false, "", 0 },
1285     {"enable-wireframe",             false, OPTION_BOOL,   "/sim/rendering/wireframe", true, "", 0 },
1286     {"geometry",                     true,  OPTION_FUNC,   "", false, "", fgOptGeometry },
1287     {"bpp",                          true,  OPTION_FUNC,   "", false, "", fgOptBpp },
1288     {"units-feet",                   false, OPTION_STRING, "/sim/startup/units", false, "feet", 0 },
1289     {"units-meters",                 false, OPTION_STRING, "/sim/startup/units", false, "meters", 0 },
1290     {"time-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptTimeOffset },
1291     {"time-match-real",              false, OPTION_STRING, "/sim/startup/time-offset-type", false, "system-offset", 0 },
1292     {"time-match-local",             false, OPTION_STRING, "/sim/startup/time-offset-type", false, "latitude-offset", 0 },
1293     {"start-date-sys",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateSys },
1294     {"start-date-lat",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateLat },
1295     {"start-date-gmt",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateGmt },
1296     {"hud-tris",                     false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
1297     {"hud-culled",                   false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
1298     {"atc610x",                      true,  OPTION_CHANNEL, "", false, "dummy", 0 },
1299     {"atlas",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1300     {"httpd",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1301 #ifdef FG_JPEG_SERVER
1302     {"jpg-httpd",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1303 #endif
1304     {"native",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1305     {"native-ctrls",                 true,  OPTION_CHANNEL, "", false, "", 0 },
1306     {"native-fdm",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1307     {"native-gui",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1308     {"opengc",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1309     {"garmin",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1310     {"nmea",                         true,  OPTION_CHANNEL, "", false, "", 0 },
1311     {"generic",                      true,  OPTION_CHANNEL, "", false, "", 0 },
1312     {"props",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1313     {"telnet",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1314     {"pve",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1315     {"ray",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1316     {"rul",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1317     {"joyclient",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1318 #ifdef FG_NETWORK_OLK
1319     {"disable-network-olk",          false, OPTION_BOOL,   "/sim/networking/olk", false, "", 0 },
1320     {"enable-network-olk",           false, OPTION_BOOL,   "/sim/networking/olk", true, "", 0 },
1321     {"net-hud",                      false, OPTION_FUNC,   "", false, "", fgOptNetHud },
1322     {"net-id",                       true,  OPTION_STRING, "sim/networking/call-sign", false, "", 0 },
1323 #endif
1324 #ifdef FG_MPLAYER_AS
1325     {"callsign",                     true, OPTION_STRING,  "sim/multiplay/callsign", false, "", 0 },
1326     {"multiplay",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1327 #endif
1328     {"trace-read",                   true,  OPTION_FUNC,   "", false, "", fgOptTraceRead },
1329     {"trace-write",                  true,  OPTION_FUNC,   "", false, "", fgOptTraceWrite },
1330     {"log-level",                    true,  OPTION_INT,    "/sim/log-level", false, "", 0 },
1331     {"view-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptViewOffset },
1332     {"visibility",                   true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMeters },
1333     {"visibility-miles",             true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMiles },
1334     {"random-wind",                  false, OPTION_FUNC,   "", false, "", fgOptRandomWind },
1335     {"wind",                         true,  OPTION_FUNC,   "", false, "", fgOptWind },
1336     {"turbulence",                   true,  OPTION_FUNC,   "", false, "", fgOptTurbulence },
1337     {"ceiling",                      true,  OPTION_FUNC,   "", false, "", fgOptCeiling },
1338     {"wp",                           true,  OPTION_FUNC,   "", false, "", fgOptWp },
1339     {"flight-plan",                  true,  OPTION_FUNC,   "", false, "", fgOptFlightPlan },
1340     {"config",                       true,  OPTION_FUNC,   "", false, "", fgOptConfig },
1341     {"aircraft",                     true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1342     {"com1",                         true,  OPTION_DOUBLE, "/radios/comm[0]/frequencies/selected-mhz", false, "", 0 },
1343     {"com2",                         true,  OPTION_DOUBLE, "/radios/comm[1]/frequencies/selected-mhz", false, "", 0 },
1344     {"nav1",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV1 },
1345     {"nav2",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV2 },
1346     {"adf",                          true,  OPTION_FUNC,   "", false, "", fgOptADF },
1347     {"dme",                          true,  OPTION_FUNC,   "", false, "", fgOptDME },
1348     {0}
1349 };
1350
1351
1352 // Parse a single option
1353 static int
1354 parse_option (const string& arg)
1355 {
1356     if ( fgOptionMap.size() == 0 ) {
1357         size_t i = 0;
1358         OptionDesc *pt = &fgOptionArray[ 0 ];
1359         while ( pt->option != 0 ) {
1360             fgOptionMap[ pt->option ] = i;
1361             i += 1;
1362             pt += 1;
1363         }
1364     }
1365
1366     // General Options
1367     if ( (arg == "--help") || (arg == "-h") ) {
1368         // help/usage request
1369         return(FG_OPTIONS_HELP);
1370     } else if ( (arg == "--verbose") || (arg == "-v") ) {
1371         // verbose help/usage request
1372         return(FG_OPTIONS_VERBOSE_HELP);
1373     } else if ( arg.find( "--show-aircraft") == 0) {
1374         return(FG_OPTIONS_SHOW_AIRCRAFT);
1375     } else if ( arg.find( "--prop:" ) == 0 ) {
1376         string assign = arg.substr(7);
1377         string::size_type pos = assign.find('=');
1378         if ( pos == arg.npos || pos == 0 ) {
1379             SG_LOG( SG_GENERAL, SG_ALERT, "Bad property assignment: " << arg );
1380             return FG_OPTIONS_ERROR;
1381         }
1382         string name = assign.substr(0, pos);
1383         string value = assign.substr(pos + 1);
1384         fgSetString(name.c_str(), value.c_str());
1385         // SG_LOG(SG_GENERAL, SG_INFO, "Setting default value of property "
1386         //        << name << " to \"" << value << '"');
1387     } else if ( arg.find( "--" ) == 0 ) {
1388         size_t pos = arg.find( '=' );
1389         string arg_name;
1390         if ( pos == string::npos ) {
1391             arg_name = arg.substr( 2 );
1392         } else {
1393             arg_name = arg.substr( 2, pos - 2 );
1394         }
1395         map<string,size_t>::iterator it = fgOptionMap.find( arg_name );
1396         if ( it != fgOptionMap.end() ) {
1397             OptionDesc *pt = &fgOptionArray[ it->second ];
1398             switch ( pt->type ) {
1399                 case OPTION_BOOL:
1400                     fgSetBool( pt->property, pt->b_param );
1401                     break;
1402                 case OPTION_STRING:
1403                     if ( pt->has_param && pos != string::npos ) {
1404                         fgSetString( pt->property, arg.substr( pos + 1 ).c_str() );
1405                     } else if ( !pt->has_param && pos == string::npos ) {
1406                         fgSetString( pt->property, pt->s_param );
1407                     } else if ( pt->has_param ) {
1408                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1409                         return FG_OPTIONS_ERROR;
1410                     } else {
1411                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1412                         return FG_OPTIONS_ERROR;
1413                     }
1414                     break;
1415                 case OPTION_DOUBLE:
1416                     if ( pos != string::npos ) {
1417                         fgSetDouble( pt->property, atof( arg.substr( pos + 1 ) ) );
1418                     } else {
1419                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1420                         return FG_OPTIONS_ERROR;
1421                     }
1422                     break;
1423                 case OPTION_INT:
1424                     if ( pos != string::npos ) {
1425                         fgSetInt( pt->property, atoi( arg.substr( pos + 1 ) ) );
1426                     } else {
1427                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1428                         return FG_OPTIONS_ERROR;
1429                     }
1430                     break;
1431                 case OPTION_CHANNEL:
1432                     if ( pt->has_param && pos != string::npos ) {
1433                         add_channel( pt->option, arg.substr( pos + 1 ) );
1434                     } else if ( !pt->has_param && pos == string::npos ) {
1435                         add_channel( pt->option, pt->s_param );
1436                     } else if ( pt->has_param ) {
1437                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1438                         return FG_OPTIONS_ERROR;
1439                     } else {
1440                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1441                         return FG_OPTIONS_ERROR;
1442                     }
1443                     break;
1444                 case OPTION_FUNC:
1445                     if ( pt->has_param && pos != string::npos ) {
1446                         return pt->func( arg.substr( pos + 1 ).c_str() );
1447                     } else if ( !pt->has_param && pos == string::npos ) {
1448                         return pt->func( 0 );
1449                     } else if ( pt->has_param ) {
1450                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1451                         return FG_OPTIONS_ERROR;
1452                     } else {
1453                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1454                         return FG_OPTIONS_ERROR;
1455                     }
1456                     break;
1457             }
1458         } else {
1459             SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1460             return FG_OPTIONS_ERROR;
1461         }
1462     } else {
1463         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1464         return FG_OPTIONS_ERROR;
1465     }
1466
1467     return FG_OPTIONS_OK;
1468 }
1469
1470
1471 // Parse the command line options
1472 void
1473 fgParseArgs (int argc, char **argv)
1474 {
1475     bool in_options = true;
1476     bool verbose = false;
1477     bool help = false;
1478
1479     SG_LOG(SG_GENERAL, SG_INFO, "Processing command line arguments");
1480
1481     for (int i = 1; i < argc; i++) {
1482         string arg = argv[i];
1483
1484         if (in_options && (arg.find('-') == 0)) {
1485           if (arg == "--") {
1486             in_options = false;
1487           } else {
1488             int result = parse_option(arg);
1489             if ((result == FG_OPTIONS_HELP) || (result == FG_OPTIONS_ERROR))
1490               help = true;
1491
1492             else if (result == FG_OPTIONS_VERBOSE_HELP)
1493               verbose = true;
1494
1495             else if (result == FG_OPTIONS_SHOW_AIRCRAFT) {
1496                fgShowAircraft();
1497                exit(0);
1498             }
1499           }
1500         } else {
1501           in_options = false;
1502           SG_LOG(SG_GENERAL, SG_INFO,
1503                  "Reading command-line property file " << arg);
1504           readProperties(arg, globals->get_props());
1505         }
1506     }
1507
1508     if (help) {
1509        fgUsage(verbose);
1510        exit(0);
1511     }
1512
1513     SG_LOG(SG_GENERAL, SG_INFO, "Finished command line arguments");
1514 }
1515
1516
1517 // Parse config file options
1518 void
1519 fgParseOptions (const string& path) {
1520     sg_gzifstream in( path );
1521     if ( !in.is_open() ) {
1522         return;
1523     }
1524
1525     SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path );
1526
1527     in >> skipcomment;
1528 #ifndef __MWERKS__
1529     while ( ! in.eof() ) {
1530 #else
1531     char c = '\0';
1532     while ( in.get(c) && c != '\0' ) {
1533         in.putback(c);
1534 #endif
1535         string line;
1536
1537 #if defined( macintosh )
1538         getline( in, line, '\r' );
1539 #else
1540         getline( in, line, '\n' );
1541 #endif
1542
1543         // catch extraneous (DOS) line ending character
1544         if ( line[line.length() - 1] < 32 ) {
1545             line = line.substr( 0, line.length()-1 );
1546         }
1547
1548         if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
1549             cerr << endl << "Config file parse error: " << path << " '" 
1550                     << line << "'" << endl;
1551             fgUsage();
1552             exit(-1);
1553         }
1554         in >> skipcomment;
1555     }
1556 }
1557
1558
1559 // Print usage message
1560 void 
1561 fgUsage (bool verbose)
1562 {
1563     SGPropertyNode *locale = globals->get_locale();
1564
1565     SGPropertyNode options_root;
1566
1567     cout << endl;
1568
1569     try {
1570         fgLoadProps("options.xml", &options_root);
1571     } catch (const sg_exception &ex) {
1572         cout << "Unable to read the help file." << endl;
1573         cout << "Make sure the file options.xml is located in the FlightGear base directory," << endl;
1574         cout << "and the location of the base directory is specified by setting $FG_ROOT or" << endl;
1575         cout << "by adding --fg-root=path as a program argument." << endl;
1576         
1577         exit(-1);
1578     }
1579
1580     SGPropertyNode *options = options_root.getNode("options");
1581     if (!options) {
1582         SG_LOG( SG_GENERAL, SG_ALERT,
1583                 "Error reading options.xml: <options> directive not found." );
1584         exit(-1);
1585     }
1586
1587     SGPropertyNode *usage = locale->getNode(options->getStringValue("usage"));
1588     if (usage) {
1589         cout << "Usage: " << usage->getStringValue() << endl;
1590     }
1591
1592     vector<SGPropertyNode_ptr>section = options->getChildren("section");
1593     for (unsigned int j = 0; j < section.size(); j++) {
1594         string msg = "";
1595
1596         vector<SGPropertyNode_ptr>option = section[j]->getChildren("option");
1597         for (unsigned int k = 0; k < option.size(); k++) {
1598
1599             SGPropertyNode *name = option[k]->getNode("name");
1600             SGPropertyNode *short_name = option[k]->getNode("short");
1601             SGPropertyNode *key = option[k]->getNode("key");
1602             SGPropertyNode *arg = option[k]->getNode("arg");
1603             bool brief = option[k]->getNode("brief");
1604
1605             if ((brief || verbose) && name) {
1606                 string tmp = name->getStringValue();
1607
1608                 if (key){
1609                     tmp.append(":");
1610                     tmp.append(key->getStringValue());
1611                 }
1612                 if (arg) {
1613                     tmp.append("=");
1614                     tmp.append(arg->getStringValue());
1615                 }
1616                 if (short_name) {
1617                     tmp.append(", -");
1618                     tmp.append(short_name->getStringValue());
1619                 }
1620
1621                 char cstr[96];
1622                 if (tmp.size() <= 25) {
1623                     snprintf(cstr, 96, "   --%-27s", tmp.c_str());
1624                 } else {
1625                     snprintf(cstr, 96, "\n   --%s\n%32c", tmp.c_str(), ' ');
1626                 }
1627
1628                 // There may be more than one <description> tag assosiated
1629                 // with one option
1630
1631                 msg += cstr;
1632                 vector<SGPropertyNode_ptr>desc =
1633                                           option[k]->getChildren("description");
1634
1635                 if (desc.size() > 0) {
1636                    for ( unsigned int l = 0; l < desc.size(); l++) {
1637
1638                       // There may be more than one translation line.
1639
1640                       string t = desc[l]->getStringValue();
1641                       SGPropertyNode *n = locale->getNode("strings");
1642                       vector<SGPropertyNode_ptr>trans_desc =
1643                                n->getChildren(t.substr(8).c_str());
1644
1645                       for ( unsigned int m = 0; m < trans_desc.size(); m++ ) {
1646                          string t_str = trans_desc[m]->getStringValue();
1647
1648                          if ((m > 0) || ((l > 0) && m == 0)) {
1649                             snprintf(cstr, 96, "%32c", ' ');
1650                             msg += cstr;
1651
1652                          }
1653
1654                          // If the string is too large to fit on the screen,
1655                          // then split it up in several pieces.
1656
1657                          while ( t_str.size() > 47 ) {
1658
1659                             unsigned int m = t_str.rfind(' ', 47);
1660                             msg += t_str.substr(0, m);
1661                             snprintf(cstr, 96, "\n%32c", ' ');
1662                             msg += cstr;
1663
1664                             t_str.erase(t_str.begin(), t_str.begin() + m + 1);
1665                         }
1666                         msg += t_str + '\n';
1667                      }
1668                   }
1669                }
1670             }
1671         }
1672
1673         SGPropertyNode *name =
1674                             locale->getNode(section[j]->getStringValue("name"));
1675
1676         if (!msg.empty() && name) {
1677            cout << endl << name->getStringValue() << ":" << endl;
1678            cout << msg;
1679            msg.erase();
1680         }
1681     }
1682
1683     if ( !verbose ) {
1684         cout << endl;
1685         cout << "For a complete list of options use --help --verbose" << endl;
1686     }
1687 }
1688
1689 // Show available aircraft types
1690 void fgShowAircraft(void) {
1691    vector<string> aircraft;
1692
1693    SGPath path( globals->get_fg_root() );
1694    path.append("Aircraft");
1695
1696    ulDirEnt* dire;
1697    ulDir *dirp;
1698
1699    dirp = ulOpenDir(path.c_str());
1700    if (dirp == NULL) {
1701       cerr << "Unable to open aircraft directory." << endl;
1702       exit(-1);
1703    }
1704
1705    while ((dire = ulReadDir(dirp)) != NULL) {
1706       char *ptr;
1707
1708       if ((ptr = strstr(dire->d_name, "-set.xml")) && ptr[8] == '\0' ) {
1709           SGPath afile = path;
1710           afile.append(dire->d_name);
1711
1712           *ptr = '\0';
1713
1714           SGPropertyNode root;
1715           try {
1716              readProperties(afile.str(), &root);
1717           } catch (...) {
1718              continue;
1719           }
1720
1721           SGPropertyNode *desc = NULL;
1722           SGPropertyNode *node = root.getNode("sim");
1723           if (node) {
1724              desc = node->getNode("description");
1725           }
1726
1727           char cstr[96];
1728           if (strlen(dire->d_name) <= 27)
1729              snprintf(cstr, 96, "   %-27s  %s", dire->d_name,
1730                       (desc) ? desc->getStringValue() : "" );
1731
1732           else
1733              snprintf(cstr, 96, "   %-27s\n%32c%s", dire->d_name, ' ',
1734                       (desc) ? desc->getStringValue() : "" );
1735
1736           aircraft.push_back(cstr);
1737       }
1738    }
1739
1740    sort(aircraft.begin(), aircraft.end());
1741    cout << "Available aircraft:" << endl;
1742    for ( unsigned int i = 0; i < aircraft.size(); i++ ) {
1743        cout << aircraft[i] << endl;
1744    }
1745
1746    aircraft.clear();
1747    ulCloseDir(dirp);
1748 }