]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.cxx
Remove one dependence on MetaKit.
[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 fgOptWp( const char *arg )
1042 {
1043     parse_wp( arg );
1044     return FG_OPTIONS_OK;
1045 }
1046
1047 static int
1048 fgOptFlightPlan( const char *arg )
1049 {
1050     parse_flightplan ( arg );
1051     return FG_OPTIONS_OK;
1052 }
1053
1054 static int
1055 fgOptConfig( const char *arg )
1056 {
1057     string file = arg;
1058     try {
1059         readProperties(file, globals->get_props());
1060     } catch (const sg_exception &e) {
1061         string message = "Error loading config file: ";
1062         message += e.getFormattedMessage();
1063         SG_LOG(SG_INPUT, SG_ALERT, message);
1064         exit(2);
1065     }
1066     return FG_OPTIONS_OK;
1067 }
1068
1069 static bool
1070 parse_colon (const string &s, double * val1, double * val2)
1071 {
1072     string::size_type pos = s.find(':');
1073     if (pos == string::npos) {
1074         *val2 = atof(s);
1075         return false;
1076     } else {
1077         *val1 = atof(s.substr(0, pos).c_str());
1078         *val2 = atof(s.substr(pos+1).c_str());
1079         return true;
1080     }
1081 }
1082
1083
1084 static int
1085 fgOptNAV1( const char * arg )
1086 {
1087     double radial, freq;
1088     if (parse_colon(arg, &radial, &freq))
1089         fgSetDouble("/radios/nav[0]/radials/selected-deg", radial);
1090     fgSetDouble("/radios/nav[0]/frequencies/selected-mhz", freq);
1091     return FG_OPTIONS_OK;
1092 }
1093
1094 static int
1095 fgOptNAV2( const char * arg )
1096 {
1097     double radial, freq;
1098     if (parse_colon(arg, &radial, &freq))
1099         fgSetDouble("/radios/nav[1]/radials/selected-deg", radial);
1100     fgSetDouble("/radios/nav[1]/frequencies/selected-mhz", freq);
1101     return FG_OPTIONS_OK;
1102 }
1103
1104 static int
1105 fgOptADF( const char * arg )
1106 {
1107     double rot, freq;
1108     if (parse_colon(arg, &rot, &freq))
1109         fgSetDouble("/radios/kr-87/inputs/rotation-deg", rot);
1110     fgSetDouble("/radios/kr-87/outputs/selected-khz", freq);
1111     return FG_OPTIONS_OK;
1112 }
1113
1114 static int
1115 fgOptDME( const char *arg )
1116 {
1117     string opt = arg;
1118     if (opt == "nav1") {
1119         fgSetInt("/instrumentation/dme/switch-position", 1);
1120         fgSetString("/instrumentation/dme/frequencies/source",
1121                     "/radios/nav[0]/frequencies/selected-mhz");
1122     } else if (opt == "nav2") {
1123         fgSetInt("/instrumentation/dme/switch-position", 3);
1124         fgSetString("/instrumentation/dme/frequencies/source",
1125                     "/radios/nav[1]/frequencies/selected-mhz");
1126     } else {
1127         fgSetInt("/instrumentation/dme/switch-position", 2);
1128         fgSetString("/instrumentation/dme/frequencies/source",
1129                     "/instrumentation/dme/frequencies/selected-mhz");
1130         fgSetString("/instrumentation/dme/frequencies/selected-mhz", arg);
1131     }
1132     return FG_OPTIONS_OK;
1133 }
1134
1135 static map<string,size_t> fgOptionMap;
1136
1137 /*
1138    option       has_param type        property         b_param s_param  func
1139
1140 where:
1141  option    : name of the option
1142  has_param : option is --name=value if true or --name if false
1143  type      : OPTION_BOOL    - property is a boolean
1144              OPTION_STRING  - property is a string
1145              OPTION_DOUBLE  - property is a double
1146              OPTION_INT     - property is an integer
1147              OPTION_CHANNEL - name of option is the name of a channel
1148              OPTION_FUNC    - the option trigger a function
1149  b_param   : if type==OPTION_BOOL,
1150              value set to the property (has_param is false for boolean)
1151  s_param   : if type==OPTION_STRING,
1152              value set to the property if has_param is false
1153  func      : function called if type==OPTION_FUNC. if has_param is true,
1154              the value is passed to the function as a string, otherwise,
1155              0 is passed. 
1156
1157     For OPTION_DOUBLE and OPTION_INT, the parameter value is converted into a
1158     double or an integer and set to the property.
1159
1160     For OPTION_CHANNEL, add_channel is called with the parameter value as the
1161     argument.
1162 */
1163
1164 enum OptionType { OPTION_BOOL, OPTION_STRING, OPTION_DOUBLE, OPTION_INT, OPTION_CHANNEL, OPTION_FUNC };
1165 struct OptionDesc {
1166     char *option;
1167     bool has_param;
1168     enum OptionType type;
1169     char *property;
1170     bool b_param;
1171     char *s_param;
1172     int (*func)( const char * );
1173     } fgOptionArray[] = {
1174        
1175     {"language",                     true,  OPTION_FUNC,   "", false, "", fgOptLanguage },
1176     {"disable-game-mode",            false, OPTION_BOOL,   "/sim/startup/game-mode", false, "", 0 },
1177     {"enable-game-mode",             false, OPTION_BOOL,   "/sim/startup/game-mode", true, "", 0 },
1178     {"disable-splash-screen",        false, OPTION_BOOL,   "/sim/startup/splash-screen", false, "", 0 },
1179     {"enable-splash-screen",         false, OPTION_BOOL,   "/sim/startup/splash-screen", true, "", 0 },
1180     {"disable-intro-music",          false, OPTION_BOOL,   "/sim/startup/intro-music", false, "", 0 },
1181     {"enable-intro-music",           false, OPTION_BOOL,   "/sim/startup/intro-music", true, "", 0 },
1182     {"disable-mouse-pointer",        false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "disabled", 0 },
1183     {"enable-mouse-pointer",         false, OPTION_STRING, "/sim/startup/mouse-pointer", false, "enabled", 0 },
1184     {"disable-random-objects",       false, OPTION_BOOL,   "/sim/rendering/random-objects", false, "", 0 },
1185     {"enable-random-objects",        false, OPTION_BOOL,   "/sim/rendering/random-objects", true, "", 0 },
1186     {"disable-freeze",               false, OPTION_BOOL,   "/sim/freeze/master", false, "", 0 },
1187     {"enable-freeze",                false, OPTION_BOOL,   "/sim/freeze/master", true, "", 0 },
1188     {"disable-fuel-freeze",          false, OPTION_BOOL,   "/sim/freeze/fuel", false, "", 0 },
1189     {"enable-fuel-freeze",           false, OPTION_BOOL,   "/sim/freeze/fuel", true, "", 0 },
1190     {"disable-clock-freeze",         false, OPTION_BOOL,   "/sim/freeze/clock", false, "", 0 },
1191     {"enable-clock-freeze",          false, OPTION_BOOL,   "/sim/freeze/clock", true, "", 0 },
1192     {"disable-hud-3d",               false, OPTION_BOOL,   "/sim/hud/enable3d", false, "", 0 },
1193     {"enable-hud-3d",                false, OPTION_BOOL,   "/sim/hud/enable3d", true, "", 0 },
1194     {"disable-anti-alias-hud",       false, OPTION_BOOL,   "/sim/hud/antialiased", false, "", 0 },
1195     {"enable-anti-alias-hud",        false, OPTION_BOOL,   "/sim/hud/antialiased", true, "", 0 },
1196     {"control",                      true,  OPTION_STRING, "/sim/control-mode", false, "", 0 },
1197     {"disable-auto-coordination",    false, OPTION_BOOL,   "/sim/auto-coordination", false, "", 0 },
1198     {"enable-auto-coordination",     false, OPTION_BOOL,   "/sim/auto-coordination", true, "", 0 },
1199     {"browser-app",                  true,  OPTION_STRING, "/sim/startup/browser-app", false, "", 0 },
1200     {"disable-hud",                  false, OPTION_BOOL,   "/sim/hud/visibility", false, "", 0 },
1201     {"enable-hud",                   false, OPTION_BOOL,   "/sim/hud/visibility", true, "", 0 },
1202     {"disable-panel",                false, OPTION_BOOL,   "/sim/panel/visibility", false, "", 0 },
1203     {"enable-panel",                 false, OPTION_BOOL,   "/sim/panel/visibility", true, "", 0 },
1204     {"disable-sound",                false, OPTION_BOOL,   "/sim/sound/audible", false, "", 0 },
1205     {"enable-sound",                 false, OPTION_BOOL,   "/sim/sound/audible", true, "", 0 },
1206     {"airport",                      true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1207     {"airport-id",                   true,  OPTION_STRING, "/sim/presets/airport-id", false, "", 0 },
1208     {"runway",                       true,  OPTION_STRING, "/sim/presets/runway", false, "", 0 },
1209     {"vor",                          true,  OPTION_FUNC,   "", false, "", fgOptVOR },
1210     {"ndb",                          true,  OPTION_FUNC,   "", false, "", fgOptNDB },
1211     {"fix",                          true,  OPTION_FUNC,   "", false, "", fgOptFIX },
1212     {"offset-distance",              true,  OPTION_DOUBLE, "/sim/presets/offset-distance", false, "", 0 },
1213     {"offset-azimuth",               true,  OPTION_DOUBLE, "/sim/presets/offset-azimuth", false, "", 0 },
1214     {"lon",                          true,  OPTION_FUNC,   "", false, "", fgOptLon },
1215     {"lat",                          true,  OPTION_FUNC,   "", false, "", fgOptLat },
1216     {"altitude",                     true,  OPTION_FUNC,   "", false, "", fgOptAltitude },
1217     {"uBody",                        true,  OPTION_FUNC,   "", false, "", fgOptUBody },
1218     {"vBody",                        true,  OPTION_FUNC,   "", false, "", fgOptVBody },
1219     {"wBody",                        true,  OPTION_FUNC,   "", false, "", fgOptWBody },
1220     {"vNorth",                       true,  OPTION_FUNC,   "", false, "", fgOptVNorth },
1221     {"vEast",                        true,  OPTION_FUNC,   "", false, "", fgOptVEast },
1222     {"vDown",                        true,  OPTION_FUNC,   "", false, "", fgOptVDown },
1223     {"vc",                           true,  OPTION_FUNC,   "", false, "", fgOptVc },
1224     {"mach",                         true,  OPTION_FUNC,   "", false, "", fgOptMach },
1225     {"heading",                      true,  OPTION_DOUBLE, "/sim/presets/heading-deg", false, "", 0 },
1226     {"roll",                         true,  OPTION_DOUBLE, "/sim/presets/roll-deg", false, "", 0 },
1227     {"pitch",                        true,  OPTION_DOUBLE, "/sim/presets/pitch-deg", false, "", 0 },
1228     {"glideslope",                   true,  OPTION_DOUBLE, "/sim/presets/glideslope-deg", false, "", 0 },
1229     {"roc",                          true,  OPTION_FUNC,   "", false, "", fgOptRoc },
1230     {"fg-root",                      true,  OPTION_FUNC,   "", false, "", fgOptFgRoot },
1231     {"fg-scenery",                   true,  OPTION_FUNC,   "", false, "", fgOptFgScenery },
1232     {"fdm",                          true,  OPTION_STRING, "/sim/flight-model", false, "", 0 },
1233     {"aero",                         true,  OPTION_STRING, "/sim/aero", false, "", 0 },
1234     {"aircraft-dir",                 true,  OPTION_STRING, "/sim/aircraft-dir", false, "", 0 },
1235     {"model-hz",                     true,  OPTION_INT,    "/sim/model-hz", false, "", 0 },
1236     {"speed",                        true,  OPTION_INT,    "/sim/speed-up", false, "", 0 },
1237     {"trim",                         false, OPTION_BOOL,   "/sim/presets/trim", true, "", 0 },
1238     {"notrim",                       false, OPTION_BOOL,   "/sim/presets/trim", false, "", 0 },
1239     {"on-ground",                    false, OPTION_BOOL,   "/sim/presets/onground", true, "", 0 },
1240     {"in-air",                       false, OPTION_BOOL,   "/sim/presets/onground", false, "", 0 },
1241     {"fog-disable",                  false, OPTION_STRING, "/sim/rendering/fog", false, "disabled", 0 },
1242     {"fog-fastest",                  false, OPTION_STRING, "/sim/rendering/fog", false, "fastest", 0 },
1243     {"fog-nicest",                   false, OPTION_STRING, "/sim/rendering/fog", false, "nicest", 0 },
1244     {"disable-horizon-effect",       false, OPTION_BOOL,   "/sim/rendering/horizon-effect", false, "", 0 },
1245     {"enable-horizon-effect",        false, OPTION_BOOL,   "/sim/rendering/horizon-effect", true, "", 0 },
1246     {"disable-enhanced-lighting",    false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", false, "", 0 },
1247     {"enable-enhanced-lighting",     false, OPTION_BOOL,   "/sim/rendering/enhanced-lighting", true, "", 0 },
1248     {"disable-distance-attenuation", false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", false, "", 0 },
1249     {"enable-distance-attenuation",  false, OPTION_BOOL,   "/sim/rendering/distance-attenuation", true, "", 0 },
1250     {"disable-clouds",               false, OPTION_BOOL,   "/environment/clouds/status", false, "", 0 },
1251     {"enable-clouds",                false, OPTION_BOOL,   "/environment/clouds/status", true, "", 0 },
1252 #ifdef FG_USE_CLOUDS_3D
1253     {"disable-clouds3d",             false, OPTION_BOOL,   "/sim/rendering/clouds3d", false, "", 0 },
1254     {"enable-clouds3d",              false, OPTION_BOOL,   "/sim/rendering/clouds3d", true, "", 0 },
1255 #endif
1256     {"fov",                          true,  OPTION_FUNC,   "", false, "", fgOptFov },
1257     {"disable-fullscreen",           false, OPTION_BOOL,   "/sim/startup/fullscreen", false, "", 0 },
1258     {"enable-fullscreen",            false, OPTION_BOOL,   "/sim/startup/fullscreen", true, "", 0 },
1259     {"shading-flat",                 false, OPTION_BOOL,   "/sim/rendering/shading", false, "", 0 },
1260     {"shading-smooth",               false, OPTION_BOOL,   "/sim/rendering/shading", true, "", 0 },
1261     {"disable-skyblend",             false, OPTION_BOOL,   "/sim/rendering/skyblend", false, "", 0 },
1262     {"enable-skyblend",              false, OPTION_BOOL,   "/sim/rendering/skyblend", true, "", 0 },
1263     {"disable-textures",             false, OPTION_BOOL,   "/sim/rendering/textures", false, "", 0 },
1264     {"enable-textures",              false, OPTION_BOOL,   "/sim/rendering/textures", true, "", 0 },
1265     {"disable-wireframe",            false, OPTION_BOOL,   "/sim/rendering/wireframe", false, "", 0 },
1266     {"enable-wireframe",             false, OPTION_BOOL,   "/sim/rendering/wireframe", true, "", 0 },
1267     {"geometry",                     true,  OPTION_FUNC,   "", false, "", fgOptGeometry },
1268     {"bpp",                          true,  OPTION_FUNC,   "", false, "", fgOptBpp },
1269     {"units-feet",                   false, OPTION_STRING, "/sim/startup/units", false, "feet", 0 },
1270     {"units-meters",                 false, OPTION_STRING, "/sim/startup/units", false, "meters", 0 },
1271     {"time-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptTimeOffset },
1272     {"time-match-real",              false, OPTION_STRING, "/sim/startup/time-offset-type", false, "system-offset", 0 },
1273     {"time-match-local",             false, OPTION_STRING, "/sim/startup/time-offset-type", false, "latitude-offset", 0 },
1274     {"start-date-sys",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateSys },
1275     {"start-date-lat",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateLat },
1276     {"start-date-gmt",               true,  OPTION_FUNC,   "", false, "", fgOptStartDateGmt },
1277     {"hud-tris",                     false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
1278     {"hud-culled",                   false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
1279     {"atc610x",                      true,  OPTION_CHANNEL, "", false, "dummy", 0 },
1280     {"atlas",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1281     {"httpd",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1282 #ifdef FG_JPEG_SERVER
1283     {"jpg-httpd",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1284 #endif
1285     {"native",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1286     {"native-ctrls",                 true,  OPTION_CHANNEL, "", false, "", 0 },
1287     {"native-fdm",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1288     {"native-gui",                   true,  OPTION_CHANNEL, "", false, "", 0 },
1289     {"opengc",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1290     {"garmin",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1291     {"nmea",                         true,  OPTION_CHANNEL, "", false, "", 0 },
1292     {"generic",                      true,  OPTION_CHANNEL, "", false, "", 0 },
1293     {"props",                        true,  OPTION_CHANNEL, "", false, "", 0 },
1294     {"telnet",                       true,  OPTION_CHANNEL, "", false, "", 0 },
1295     {"pve",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1296     {"ray",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1297     {"rul",                          true,  OPTION_CHANNEL, "", false, "", 0 },
1298     {"joyclient",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1299 #ifdef FG_NETWORK_OLK
1300     {"disable-network-olk",          false, OPTION_BOOL,   "/sim/networking/olk", false, "", 0 },
1301     {"enable-network-olk",           false, OPTION_BOOL,   "/sim/networking/olk", true, "", 0 },
1302     {"net-hud",                      false, OPTION_FUNC,   "", false, "", fgOptNetHud },
1303     {"net-id",                       true,  OPTION_STRING, "sim/networking/call-sign", false, "", 0 },
1304 #endif
1305 #ifdef FG_MPLAYER_AS
1306     {"callsign",                     true, OPTION_STRING,  "sim/multiplay/callsign", false, "", 0 },
1307     {"multiplay",                    true,  OPTION_CHANNEL, "", false, "", 0 },
1308 #endif
1309     {"trace-read",                   true,  OPTION_FUNC,   "", false, "", fgOptTraceRead },
1310     {"trace-write",                  true,  OPTION_FUNC,   "", false, "", fgOptTraceWrite },
1311     {"log-level",                    true,  OPTION_INT,    "/sim/log-level", false, "", 0 },
1312     {"view-offset",                  true,  OPTION_FUNC,   "", false, "", fgOptViewOffset },
1313     {"visibility",                   true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMeters },
1314     {"visibility-miles",             true,  OPTION_FUNC,   "", false, "", fgOptVisibilityMiles },
1315     {"random-wind",                  false, OPTION_FUNC,   "", false, "", fgOptRandomWind },
1316     {"wind",                         true,  OPTION_FUNC,   "", false, "", fgOptWind },
1317     {"turbulence",                   true,  OPTION_FUNC,   "", false, "", fgOptTurbulence },
1318     {"wp",                           true,  OPTION_FUNC,   "", false, "", fgOptWp },
1319     {"flight-plan",                  true,  OPTION_FUNC,   "", false, "", fgOptFlightPlan },
1320     {"config",                       true,  OPTION_FUNC,   "", false, "", fgOptConfig },
1321     {"aircraft",                     true,  OPTION_STRING, "/sim/aircraft", false, "", 0 },
1322     {"com1",                         true,  OPTION_DOUBLE, "/radios/comm[0]/frequencies/selected-mhz", false, "", 0 },
1323     {"com2",                         true,  OPTION_DOUBLE, "/radios/comm[1]/frequencies/selected-mhz", false, "", 0 },
1324     {"nav1",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV1 },
1325     {"nav2",                         true,  OPTION_FUNC,   "", false, "", fgOptNAV2 },
1326     {"adf",                          true,  OPTION_FUNC,   "", false, "", fgOptADF },
1327     {"dme",                          true,  OPTION_FUNC,   "", false, "", fgOptDME },
1328     {0}
1329 };
1330
1331
1332 // Parse a single option
1333 static int
1334 parse_option (const string& arg)
1335 {
1336     if ( fgOptionMap.size() == 0 ) {
1337         size_t i = 0;
1338         OptionDesc *pt = &fgOptionArray[ 0 ];
1339         while ( pt->option != 0 ) {
1340             fgOptionMap[ pt->option ] = i;
1341             i += 1;
1342             pt += 1;
1343         }
1344     }
1345
1346     // General Options
1347     if ( (arg == "--help") || (arg == "-h") ) {
1348         // help/usage request
1349         return(FG_OPTIONS_HELP);
1350     } else if ( (arg == "--verbose") || (arg == "-v") ) {
1351         // verbose help/usage request
1352         return(FG_OPTIONS_VERBOSE_HELP);
1353     } else if ( arg.find( "--show-aircraft") == 0) {
1354         return(FG_OPTIONS_SHOW_AIRCRAFT);
1355     } else if ( arg.find( "--prop:" ) == 0 ) {
1356         string assign = arg.substr(7);
1357         string::size_type pos = assign.find('=');
1358         if ( pos == arg.npos || pos == 0 ) {
1359             SG_LOG( SG_GENERAL, SG_ALERT, "Bad property assignment: " << arg );
1360             return FG_OPTIONS_ERROR;
1361         }
1362         string name = assign.substr(0, pos);
1363         string value = assign.substr(pos + 1);
1364         fgSetString(name.c_str(), value.c_str());
1365         // SG_LOG(SG_GENERAL, SG_INFO, "Setting default value of property "
1366         //        << name << " to \"" << value << '"');
1367     } else if ( arg.find( "--" ) == 0 ) {
1368         size_t pos = arg.find( '=' );
1369         string arg_name;
1370         if ( pos == string::npos ) {
1371             arg_name = arg.substr( 2 );
1372         } else {
1373             arg_name = arg.substr( 2, pos - 2 );
1374         }
1375         map<string,size_t>::iterator it = fgOptionMap.find( arg_name );
1376         if ( it != fgOptionMap.end() ) {
1377             OptionDesc *pt = &fgOptionArray[ it->second ];
1378             switch ( pt->type ) {
1379                 case OPTION_BOOL:
1380                     fgSetBool( pt->property, pt->b_param );
1381                     break;
1382                 case OPTION_STRING:
1383                     if ( pt->has_param && pos != string::npos ) {
1384                         fgSetString( pt->property, arg.substr( pos + 1 ).c_str() );
1385                     } else if ( !pt->has_param && pos == string::npos ) {
1386                         fgSetString( pt->property, pt->s_param );
1387                     } else if ( pt->has_param ) {
1388                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1389                         return FG_OPTIONS_ERROR;
1390                     } else {
1391                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1392                         return FG_OPTIONS_ERROR;
1393                     }
1394                     break;
1395                 case OPTION_DOUBLE:
1396                     if ( pos != string::npos ) {
1397                         fgSetDouble( pt->property, atof( arg.substr( pos + 1 ) ) );
1398                     } else {
1399                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1400                         return FG_OPTIONS_ERROR;
1401                     }
1402                     break;
1403                 case OPTION_INT:
1404                     if ( pos != string::npos ) {
1405                         fgSetInt( pt->property, atoi( arg.substr( pos + 1 ) ) );
1406                     } else {
1407                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1408                         return FG_OPTIONS_ERROR;
1409                     }
1410                     break;
1411                 case OPTION_CHANNEL:
1412                     if ( pt->has_param && pos != string::npos ) {
1413                         add_channel( pt->option, arg.substr( pos + 1 ) );
1414                     } else if ( !pt->has_param && pos == string::npos ) {
1415                         add_channel( pt->option, pt->s_param );
1416                     } else if ( pt->has_param ) {
1417                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1418                         return FG_OPTIONS_ERROR;
1419                     } else {
1420                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1421                         return FG_OPTIONS_ERROR;
1422                     }
1423                     break;
1424                 case OPTION_FUNC:
1425                     if ( pt->has_param && pos != string::npos ) {
1426                         return pt->func( arg.substr( pos + 1 ).c_str() );
1427                     } else if ( !pt->has_param && pos == string::npos ) {
1428                         return pt->func( 0 );
1429                     } else if ( pt->has_param ) {
1430                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' needs a parameter" );
1431                         return FG_OPTIONS_ERROR;
1432                     } else {
1433                         SG_LOG( SG_GENERAL, SG_ALERT, "Option '" << arg << "' does not have a parameter" );
1434                         return FG_OPTIONS_ERROR;
1435                     }
1436                     break;
1437             }
1438         } else {
1439             SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1440             return FG_OPTIONS_ERROR;
1441         }
1442     } else {
1443         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
1444         return FG_OPTIONS_ERROR;
1445     }
1446
1447     return FG_OPTIONS_OK;
1448 }
1449
1450
1451 // Parse the command line options
1452 void
1453 fgParseArgs (int argc, char **argv)
1454 {
1455     bool in_options = true;
1456     bool verbose = false;
1457     bool help = false;
1458
1459     SG_LOG(SG_GENERAL, SG_INFO, "Processing command line arguments");
1460
1461     for (int i = 1; i < argc; i++) {
1462         string arg = argv[i];
1463
1464         if (in_options && (arg.find('-') == 0)) {
1465           if (arg == "--") {
1466             in_options = false;
1467           } else {
1468             int result = parse_option(arg);
1469             if ((result == FG_OPTIONS_HELP) || (result == FG_OPTIONS_ERROR))
1470               help = true;
1471
1472             else if (result == FG_OPTIONS_VERBOSE_HELP)
1473               verbose = true;
1474
1475             else if (result == FG_OPTIONS_SHOW_AIRCRAFT) {
1476                fgShowAircraft();
1477                exit(0);
1478             }
1479           }
1480         } else {
1481           in_options = false;
1482           SG_LOG(SG_GENERAL, SG_INFO,
1483                  "Reading command-line property file " << arg);
1484           readProperties(arg, globals->get_props());
1485         }
1486     }
1487
1488     if (help) {
1489        fgUsage(verbose);
1490        exit(0);
1491     }
1492
1493     SG_LOG(SG_GENERAL, SG_INFO, "Finished command line arguments");
1494 }
1495
1496
1497 // Parse config file options
1498 void
1499 fgParseOptions (const string& path) {
1500     sg_gzifstream in( path );
1501     if ( !in.is_open() ) {
1502         return;
1503     }
1504
1505     SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path );
1506
1507     in >> skipcomment;
1508 #ifndef __MWERKS__
1509     while ( ! in.eof() ) {
1510 #else
1511     char c = '\0';
1512     while ( in.get(c) && c != '\0' ) {
1513         in.putback(c);
1514 #endif
1515         string line;
1516
1517 #if defined( macintosh )
1518         getline( in, line, '\r' );
1519 #else
1520         getline( in, line, '\n' );
1521 #endif
1522
1523         // catch extraneous (DOS) line ending character
1524         if ( line[line.length() - 1] < 32 ) {
1525             line = line.substr( 0, line.length()-1 );
1526         }
1527
1528         if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
1529             cerr << endl << "Config file parse error: " << path << " '" 
1530                     << line << "'" << endl;
1531             fgUsage();
1532             exit(-1);
1533         }
1534         in >> skipcomment;
1535     }
1536 }
1537
1538
1539 // Print usage message
1540 void 
1541 fgUsage (bool verbose)
1542 {
1543     SGPropertyNode *locale = globals->get_locale();
1544
1545     SGPropertyNode options_root;
1546
1547     cout << endl;
1548
1549     try {
1550         fgLoadProps("options.xml", &options_root);
1551     } catch (const sg_exception &ex) {
1552         cout << "Unable to read the help file." << endl;
1553         cout << "Make sure the file options.xml is located in the FlightGear base directory," << endl;
1554         cout << "and the location of the base directory is specified by setting $FG_ROOT or" << endl;
1555         cout << "by adding --fg-root=path as a program argument." << endl;
1556         
1557         exit(-1);
1558     }
1559
1560     SGPropertyNode *options = options_root.getNode("options");
1561     if (!options) {
1562         SG_LOG( SG_GENERAL, SG_ALERT,
1563                 "Error reading options.xml: <options> directive not found." );
1564         exit(-1);
1565     }
1566
1567     SGPropertyNode *usage = locale->getNode(options->getStringValue("usage"));
1568     if (usage) {
1569         cout << "Usage: " << usage->getStringValue() << endl;
1570     }
1571
1572     vector<SGPropertyNode_ptr>section = options->getChildren("section");
1573     for (unsigned int j = 0; j < section.size(); j++) {
1574         string msg = "";
1575
1576         vector<SGPropertyNode_ptr>option = section[j]->getChildren("option");
1577         for (unsigned int k = 0; k < option.size(); k++) {
1578
1579             SGPropertyNode *name = option[k]->getNode("name");
1580             SGPropertyNode *short_name = option[k]->getNode("short");
1581             SGPropertyNode *key = option[k]->getNode("key");
1582             SGPropertyNode *arg = option[k]->getNode("arg");
1583             bool brief = option[k]->getNode("brief");
1584
1585             if ((brief || verbose) && name) {
1586                 string tmp = name->getStringValue();
1587
1588                 if (key){
1589                     tmp.append(":");
1590                     tmp.append(key->getStringValue());
1591                 }
1592                 if (arg) {
1593                     tmp.append("=");
1594                     tmp.append(arg->getStringValue());
1595                 }
1596                 if (short_name) {
1597                     tmp.append(", -");
1598                     tmp.append(short_name->getStringValue());
1599                 }
1600
1601                 char cstr[96];
1602                 if (tmp.size() <= 25) {
1603                     snprintf(cstr, 96, "   --%-27s", tmp.c_str());
1604                 } else {
1605                     snprintf(cstr, 96, "\n   --%s\n%32c", tmp.c_str(), ' ');
1606                 }
1607
1608                 // There may be more than one <description> tag assosiated
1609                 // with one option
1610
1611                 msg += cstr;
1612                 vector<SGPropertyNode_ptr>desc =
1613                                           option[k]->getChildren("description");
1614
1615                 if (desc.size() > 0) {
1616                    for ( unsigned int l = 0; l < desc.size(); l++) {
1617
1618                       // There may be more than one translation line.
1619
1620                       string t = desc[l]->getStringValue();
1621                       SGPropertyNode *n = locale->getNode("strings");
1622                       vector<SGPropertyNode_ptr>trans_desc =
1623                                n->getChildren(t.substr(8).c_str());
1624
1625                       for ( unsigned int m = 0; m < trans_desc.size(); m++ ) {
1626                          string t_str = trans_desc[m]->getStringValue();
1627
1628                          if ((m > 0) || ((l > 0) && m == 0)) {
1629                             snprintf(cstr, 96, "%32c", ' ');
1630                             msg += cstr;
1631
1632                          }
1633
1634                          // If the string is too large to fit on the screen,
1635                          // then split it up in several pieces.
1636
1637                          while ( t_str.size() > 47 ) {
1638
1639                             unsigned int m = t_str.rfind(' ', 47);
1640                             msg += t_str.substr(0, m);
1641                             snprintf(cstr, 96, "\n%32c", ' ');
1642                             msg += cstr;
1643
1644                             t_str.erase(t_str.begin(), t_str.begin() + m + 1);
1645                         }
1646                         msg += t_str + '\n';
1647                      }
1648                   }
1649                }
1650             }
1651         }
1652
1653         SGPropertyNode *name =
1654                             locale->getNode(section[j]->getStringValue("name"));
1655
1656         if (!msg.empty() && name) {
1657            cout << endl << name->getStringValue() << ":" << endl;
1658            cout << msg;
1659            msg.erase();
1660         }
1661     }
1662
1663     if ( !verbose ) {
1664         cout << endl;
1665         cout << "For a complete list of options use --help --verbose" << endl;
1666     }
1667 }
1668
1669 // Show available aircraft types
1670 void fgShowAircraft(void) {
1671    vector<string> aircraft;
1672
1673    SGPath path( globals->get_fg_root() );
1674    path.append("Aircraft");
1675
1676    ulDirEnt* dire;
1677    ulDir *dirp;
1678
1679    dirp = ulOpenDir(path.c_str());
1680    if (dirp == NULL) {
1681       cerr << "Unable to open aircraft directory." << endl;
1682       exit(-1);
1683    }
1684
1685    while ((dire = ulReadDir(dirp)) != NULL) {
1686       char *ptr;
1687
1688       if ((ptr = strstr(dire->d_name, "-set.xml")) && ptr[8] == '\0' ) {
1689           SGPath afile = path;
1690           afile.append(dire->d_name);
1691
1692           *ptr = '\0';
1693
1694           SGPropertyNode root;
1695           try {
1696              readProperties(afile.str(), &root);
1697           } catch (...) {
1698              continue;
1699           }
1700
1701           SGPropertyNode *desc = NULL;
1702           SGPropertyNode *node = root.getNode("sim");
1703           if (node) {
1704              desc = node->getNode("description");
1705           }
1706
1707           char cstr[96];
1708           if (strlen(dire->d_name) <= 27)
1709              snprintf(cstr, 96, "   %-27s  %s", dire->d_name,
1710                       (desc) ? desc->getStringValue() : "" );
1711
1712           else
1713              snprintf(cstr, 96, "   %-27s\n%32c%s", dire->d_name, ' ',
1714                       (desc) ? desc->getStringValue() : "" );
1715
1716           aircraft.push_back(cstr);
1717       }
1718    }
1719
1720    sort(aircraft.begin(), aircraft.end());
1721    cout << "Available aircraft:" << endl;
1722    for ( unsigned int i = 0; i < aircraft.size(); i++ ) {
1723        cout << aircraft[i] << endl;
1724    }
1725
1726    aircraft.clear();
1727    ulCloseDir(dirp);
1728 }