]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.cxx
Restructured the 'freeze' property a bit. We now have
[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
31 #include <math.h>            // rint()
32 #include <stdio.h>
33 #include <stdlib.h>          // atof(), atoi()
34 #include <string.h>
35
36 #include STL_STRING
37
38 #include <simgear/misc/sgstream.hxx>
39
40 // #include <Include/general.hxx>
41 // #include <Airports/simple.hxx>
42 // #include <Cockpit/cockpit.hxx>
43 // #include <FDM/flight.hxx>
44 // #include <FDM/UIUCModel/uiuc_aircraftdir.h>
45 #ifdef FG_NETWORK_OLK
46 #  include <NetworkOLK/network.h>
47 #endif
48
49 #include <GUI/gui.h>
50
51 #include "globals.hxx"
52 #include "fg_init.hxx"
53 #include "fg_props.hxx"
54 #include "options.hxx"
55 #include "viewmgr.hxx"
56
57 SG_USING_STD(string);
58 SG_USING_NAMESPACE(std);
59
60
61 #define NEW_DEFAULT_MODEL_HZ 120
62
63 enum
64 {
65     FG_OPTIONS_OK = 0,
66     FG_OPTIONS_HELP = 1,
67     FG_OPTIONS_ERROR = 2
68 };
69
70 static double
71 atof( const string& str )
72 {
73
74 #ifdef __MWERKS__ 
75     // -dw- if ::atof is called, then we get an infinite loop
76     return std::atof( str.c_str() );
77 #else
78     return ::atof( str.c_str() );
79 #endif
80 }
81
82 static int
83 atoi( const string& str )
84 {
85 #ifdef __MWERKS__ 
86     // -dw- if ::atoi is called, then we get an infinite loop
87     return std::atoi( str.c_str() );
88 #else
89     return ::atoi( str.c_str() );
90 #endif
91 }
92
93
94 /**
95  * Set a few fail-safe default property values.
96  *
97  * These should all be set in $FG_ROOT/preferences.xml, but just
98  * in case, we provide some initial sane values here. This method 
99  * should be invoked *before* reading any init files.
100  */
101 void
102 fgSetDefaults ()
103 {
104     // set a possibly independent location for scenery data
105     char *envp = ::getenv( "FG_SCENERY" );
106
107     if ( envp != NULL ) {
108         // fg_root could be anywhere, so default to environmental
109         // variable $FG_ROOT if it is set.
110         globals->set_fg_scenery(envp);
111     } else {
112         // Otherwise, default to Scenery being in $FG_ROOT/Scenery
113         globals->set_fg_scenery("");
114     }
115                                 // Position (Globe, AZ)
116     fgSetDouble("/position/longitude-deg", -110.6642444);
117     fgSetDouble("/position/latitude-deg", 33.3528917);
118     fgSetDouble("/position/altitude-ft", -9999.0);
119
120                                 // Orientation
121     fgSetDouble("/orientation/heading-deg", 270);
122     fgSetDouble("/orientation/roll-deg", 0);
123     fgSetDouble("/orientation/pitch-deg", 0.424);
124
125                                 // Velocities
126     fgSetString("/sim/startup/speed-set", "knots");
127     fgSetDouble("/velocities/uBody-fps", 0.0);
128     fgSetDouble("/velocities/vBody-fps", 0.0);
129     fgSetDouble("/velocities/wBody-fps", 0.0);
130     fgSetDouble("/velocities/speed-north-fps", 0.0);
131     fgSetDouble("/velocities/speed-east-fps", 0.0);
132     fgSetDouble("/velocities/speed-down-fps", 0.0);
133     fgSetDouble("/velocities/airspeed-kt", 0.0);
134     fgSetDouble("/velocities/mach", 0.0);
135
136                                 // Miscellaneous
137     fgSetBool("/sim/startup/game-mode", false);
138     fgSetBool("/sim/startup/splash-screen", true);
139     fgSetBool("/sim/startup/intro-music", true);
140     // we want mouse-pointer to have an undefined value if nothing is
141     // specified so we can do the right thing for voodoo-1/2 cards.
142     // fgSetString("/sim/startup/mouse-pointer", "disabled");
143     fgSetString("/sim/control-mode", "joystick");
144     fgSetBool("/sim/auto-coordination", false);
145 #if !defined(WIN32)
146     fgSetString("/sim/startup/browser-app", "netscape");
147 #else
148     fgSetString("/sim/startup/browser-app", "webrun.bat");
149 #endif
150                                 // Features
151     fgSetBool("/sim/hud/visibility", false);
152     fgSetBool("/sim/panel/visibility", true);
153     fgSetBool("/sim/sound", true);
154     fgSetBool("/sim/hud/antialiased", false);
155
156                                 // Flight Model options
157     fgSetString("/sim/flight-model", "jsb");
158     fgSetString("/sim/aero", "c172");
159     fgSetInt("/sim/model-hz", NEW_DEFAULT_MODEL_HZ);
160     fgSetInt("/sim/speed-up", 1);
161     fgSetBool("/sim/startup/trim", false);
162     fgSetBool("/sim/startup/onground", true);
163
164                                 // Rendering options
165     fgSetString("/sim/rendering/fog", "nicest");
166     fgSetBool("/environment/clouds/status", true);
167     fgSetDouble("/environment/clouds/altitude-ft", 5000);
168     fgSetBool("/sim/startup/fullscreen", false);
169     fgSetBool("/sim/rendering/shading", true);
170     fgSetBool("/sim/rendering/skyblend", true);
171     fgSetBool("/sim/rendering/textures", true);
172     fgSetBool("/sim/rendering/wireframe", false);
173     fgSetInt("/sim/startup/xsize", 800);
174     fgSetInt("/sim/startup/ysize", 600);
175     fgSetInt("/sim/rendering/bits-per-pixel", 16);
176     fgSetString("/sim/view-mode", "pilot");
177     fgSetDouble("/sim/view/offset-deg", 0);
178     fgSetDouble("/environment/visibility-m", 20000);
179
180                                 // HUD options
181     fgSetString("/sim/startup/units", "feet");
182     fgSetString("/sim/hud/frame-stat-type", "tris");
183         
184                                 // Time options
185     fgSetInt("/sim/startup/time-offset", 0);
186     fgSetString("/sim/startup/time-offset-type", "system-offset");
187
188     fgSetBool("/sim/networking/network-olk", false);
189     fgSetString("/sim/networking/call-sign", "Johnny");
190
191                                 // Freeze options
192     fgSetBool("/sim/freeze/master", false);
193     fgSetBool("/sim/freeze/position", false);
194     fgSetBool("/sim/freeze/fuel", false);
195     fgSetBool("/sim/freeze/time-of-day", false);
196 }
197
198
199 // parse a time string ([+/-]%f[:%f[:%f]]) into hours
200 static double
201 parse_time(const string& time_in) {
202     char *time_str, num[256];
203     double hours, minutes, seconds;
204     double result = 0.0;
205     int sign = 1;
206     int i;
207
208     time_str = (char *)time_in.c_str();
209
210     // printf("parse_time(): %s\n", time_str);
211
212     // check for sign
213     if ( strlen(time_str) ) {
214         if ( time_str[0] == '+' ) {
215             sign = 1;
216             time_str++;
217         } else if ( time_str[0] == '-' ) {
218             sign = -1;
219             time_str++;
220         }
221     }
222     // printf("sign = %d\n", sign);
223
224     // get hours
225     if ( strlen(time_str) ) {
226         i = 0;
227         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
228             num[i] = time_str[0];
229             time_str++;
230             i++;
231         }
232         if ( time_str[0] == ':' ) {
233             time_str++;
234         }
235         num[i] = '\0';
236         hours = atof(num);
237         // printf("hours = %.2lf\n", hours);
238
239         result += hours;
240     }
241
242     // get minutes
243     if ( strlen(time_str) ) {
244         i = 0;
245         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
246             num[i] = time_str[0];
247             time_str++;
248             i++;
249         }
250         if ( time_str[0] == ':' ) {
251             time_str++;
252         }
253         num[i] = '\0';
254         minutes = atof(num);
255         // printf("minutes = %.2lf\n", minutes);
256
257         result += minutes / 60.0;
258     }
259
260     // get seconds
261     if ( strlen(time_str) ) {
262         i = 0;
263         while ( (time_str[0] != ':') && (time_str[0] != '\0') ) {
264             num[i] = time_str[0];
265             time_str++;
266             i++;
267         }
268         num[i] = '\0';
269         seconds = atof(num);
270         // printf("seconds = %.2lf\n", seconds);
271
272         result += seconds / 3600.0;
273     }
274
275     return(sign * result);
276 }
277
278
279 // parse a date string (yyyy:mm:dd:hh:mm:ss) into a time_t (seconds)
280 static long int 
281 parse_date( const string& date)
282 {
283     struct tm gmt;
284     char * date_str, num[256];
285     int i;
286     // initialize to zero
287     gmt.tm_sec = 0;
288     gmt.tm_min = 0;
289     gmt.tm_hour = 0;
290     gmt.tm_mday = 0;
291     gmt.tm_mon = 0;
292     gmt.tm_year = 0;
293     gmt.tm_isdst = 0; // ignore daylight savings time for the moment
294     date_str = (char *)date.c_str();
295     // get year
296     if ( strlen(date_str) ) {
297         i = 0;
298         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
299             num[i] = date_str[0];
300             date_str++;
301             i++;
302         }
303         if ( date_str[0] == ':' ) {
304             date_str++;
305         }
306         num[i] = '\0';
307         gmt.tm_year = atoi(num) - 1900;
308     }
309     // get month
310     if ( strlen(date_str) ) {
311         i = 0;
312         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
313             num[i] = date_str[0];
314             date_str++;
315             i++;
316         }
317         if ( date_str[0] == ':' ) {
318             date_str++;
319         }
320         num[i] = '\0';
321         gmt.tm_mon = atoi(num) -1;
322     }
323     // get day
324     if ( strlen(date_str) ) {
325         i = 0;
326         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
327             num[i] = date_str[0];
328             date_str++;
329             i++;
330         }
331         if ( date_str[0] == ':' ) {
332             date_str++;
333         }
334         num[i] = '\0';
335         gmt.tm_mday = atoi(num);
336     }
337     // get hour
338     if ( strlen(date_str) ) {
339         i = 0;
340         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
341             num[i] = date_str[0];
342             date_str++;
343             i++;
344         }
345         if ( date_str[0] == ':' ) {
346             date_str++;
347         }
348         num[i] = '\0';
349         gmt.tm_hour = atoi(num);
350     }
351     // get minute
352     if ( strlen(date_str) ) {
353         i = 0;
354         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
355             num[i] = date_str[0];
356             date_str++;
357             i++;
358         }
359         if ( date_str[0] == ':' ) {
360             date_str++;
361         }
362         num[i] = '\0';
363         gmt.tm_min = atoi(num);
364     }
365     // get second
366     if ( strlen(date_str) ) {
367         i = 0;
368         while ( (date_str[0] != ':') && (date_str[0] != '\0') ) {
369             num[i] = date_str[0];
370             date_str++;
371             i++;
372         }
373         if ( date_str[0] == ':' ) {
374             date_str++;
375         }
376         num[i] = '\0';
377         gmt.tm_sec = atoi(num);
378     }
379     time_t theTime = sgTimeGetGMT( gmt.tm_year, gmt.tm_mon, gmt.tm_mday,
380                                    gmt.tm_hour, gmt.tm_min, gmt.tm_sec );
381     //printf ("Date is %s\n", ctime(&theTime));
382     //printf ("in seconds that is %d\n", theTime);
383     //exit(1);
384     return (theTime);
385 }
386
387
388 // parse angle in the form of [+/-]ddd:mm:ss into degrees
389 static double
390 parse_degree( const string& degree_str) {
391     double result = parse_time( degree_str );
392
393     // printf("Degree = %.4f\n", result);
394
395     return(result);
396 }
397
398
399 // parse time offset string into seconds
400 static int
401 parse_time_offset( const string& time_str) {
402     int result;
403
404     // printf("time offset = %s\n", time_str);
405
406 #ifdef HAVE_RINT
407     result = (int)rint(parse_time(time_str) * 3600.0);
408 #else
409     result = (int)(parse_time(time_str) * 3600.0);
410 #endif
411
412     // printf("parse_time_offset(): %d\n", result);
413
414     return( result );
415 }
416
417
418 // Parse --fov=x.xx type option 
419 static double
420 parse_fov( const string& arg ) {
421     double fov = atof(arg);
422
423     if ( fov < FG_FOV_MIN ) { fov = FG_FOV_MIN; }
424     if ( fov > FG_FOV_MAX ) { fov = FG_FOV_MAX; }
425
426     fgSetDouble("/sim/field-of-view", fov);
427
428     // printf("parse_fov(): result = %.4f\n", fov);
429
430     return fov;
431 }
432
433
434 // Parse I/O channel option
435 //
436 // Format is "--protocol=medium,direction,hz,medium_options,..."
437 //
438 //   protocol = { native, nmea, garmin, fgfs, rul, pve, etc. }
439 //   medium = { serial, socket, file, etc. }
440 //   direction = { in, out, bi }
441 //   hz = number of times to process channel per second (floating
442 //        point values are ok.
443 //
444 // Serial example "--nmea=serial,dir,hz,device,baud" where
445 // 
446 //  device = OS device name of serial line to be open()'ed
447 //  baud = {300, 1200, 2400, ..., 230400}
448 //
449 // Socket exacmple "--native=socket,dir,hz,machine,port,style" where
450 // 
451 //  machine = machine name or ip address if client (leave empty if server)
452 //  port = port, leave empty to let system choose
453 //  style = tcp or udp
454 //
455 // File example "--garmin=file,dir,hz,filename" where
456 // 
457 //  filename = file system file name
458
459 static bool 
460 add_channel( const string& type, const string& channel_str ) {
461     // cout << "Channel string = " << channel_str << endl;
462
463     globals->get_channel_options_list()->push_back( type + "," + channel_str );
464
465     return true;
466 }
467
468
469 // Parse --wp=ID[@alt]
470 static bool 
471 parse_wp( const string& arg ) {
472     string id, alt_str;
473     double alt = 0.0;
474
475     unsigned int pos = arg.find( "@" );
476     if ( pos != string::npos ) {
477         id = arg.substr( 0, pos );
478         alt_str = arg.substr( pos + 1 );
479         // cout << "id str = " << id << "  alt str = " << alt_str << endl;
480         alt = atof( alt_str.c_str() );
481         if ( fgGetString("/sim/startup/units") == "feet" ) {
482             alt *= SG_FEET_TO_METER;
483         }
484     } else {
485         id = arg;
486     }
487
488     FGAirport a;
489     if ( fgFindAirportID( id, &a ) ) {
490         SGWayPoint wp( a.longitude, a.latitude, alt, SGWayPoint::WGS84, id );
491         globals->get_route()->add_waypoint( wp );
492
493         return true;
494     } else {
495         return false;
496     }
497 }
498
499
500 // Parse --flight-plan=[file]
501 static bool 
502 parse_flightplan(const string& arg)
503 {
504     sg_gzifstream in(arg.c_str());
505     if ( !in.is_open() ) {
506         return false;
507     }
508     while ( true ) {
509         string line;
510
511 #if defined( macintosh )
512         getline( in, line, '\r' );
513 #else
514         getline( in, line, '\n' );
515 #endif
516
517         // catch extraneous (DOS) line ending character
518         if ( line[line.length() - 1] < 32 ) {
519             line = line.substr( 0, line.length()-1 );
520         }
521
522         if ( in.eof() ) {
523             break;
524         }
525         parse_wp(line);
526     }
527
528     return true;
529 }
530
531
532 // Parse a single option
533 static int 
534 parse_option (const string& arg) 
535 {
536     // General Options
537     if ( (arg == "--help") || (arg == "-h") ) {
538         // help/usage request
539         return(FG_OPTIONS_HELP);
540     } else if ( arg == "--disable-game-mode") {
541         fgSetBool("/sim/startup/game-mode", false);
542     } else if ( arg == "--enable-game-mode" ) {
543         fgSetBool("/sim/startup/game-mode", true);
544     } else if ( arg == "--disable-splash-screen" ) {
545         fgSetBool("/sim/startup/splash-screen", false); 
546     } else if ( arg == "--enable-splash-screen" ) {
547         fgSetBool("/sim/startup/splash-screen", true);
548     } else if ( arg == "--disable-intro-music" ) {
549         fgSetBool("/sim/startup/intro-music", false);
550     } else if ( arg == "--enable-intro-music" ) {
551         fgSetBool("/sim/startup/intro-music", true);
552     } else if ( arg == "--disable-mouse-pointer" ) {
553         fgSetString("/sim/startup/mouse-pointer", "disabled");
554     } else if ( arg == "--enable-mouse-pointer" ) {
555         fgSetString("/sim/startup/mouse-pointer", "enabled");
556     } else if ( arg == "--disable-freeze" ) {
557         fgSetBool("/sim/freeze/master", false);
558     } else if ( arg == "--enable-freeze" ) {
559         fgSetBool("/sim/freeze/master", true);
560     } else if ( arg == "--disable-anti-alias-hud" ) {
561         fgSetBool("/sim/hud/antialiased", false);
562     } else if ( arg == "--enable-anti-alias-hud" ) {
563         fgSetBool("/sim/hud/antialiased", true);
564     } else if ( arg.find( "--control=") == 0 ) {
565         fgSetString("/sim/control-mode", arg.substr(10));
566     } else if ( arg == "--disable-auto-coordination" ) {
567         fgSetBool("/sim/auto-coordination", false);
568     } else if ( arg == "--enable-auto-coordination" ) {
569         fgSetBool("/sim/auto-coordination", true);
570     } else if ( arg.find( "--browser-app=") == 0 ) {
571         fgSetString("/sim/startup/browser-app", arg.substr(14));
572     } else if ( arg == "--disable-hud" ) {
573         fgSetBool("/sim/hud/visibility", false);
574     } else if ( arg == "--enable-hud" ) {
575         fgSetBool("/sim/hud/visibility", true);
576     } else if ( arg == "--disable-panel" ) {
577         fgSetBool("/sim/panel/visibility", false);
578     } else if ( arg == "--enable-panel" ) {
579         fgSetBool("/sim/panel/visibility", true);
580     } else if ( arg == "--disable-sound" ) {
581         fgSetBool("/sim/sound", false);
582     } else if ( arg == "--enable-sound" ) {
583         fgSetBool("/sim/sound", true);
584     } else if ( arg.find( "--airport-id=") == 0 ) {
585                                 // NB: changed property name!!!
586         fgSetString("/sim/startup/airport-id", arg.substr(13));
587     } else if ( arg.find( "--offset-distance=") == 0 ) {
588         fgSetDouble("/sim/startup/offset-distance", atof(arg.substr(18)));
589     } else if ( arg.find( "--offset-azimuth=") == 0 ) {
590         fgSetDouble("/sim/startup/offset-azimuth", atof(arg.substr(17))); 
591     } else if ( arg.find( "--lon=" ) == 0 ) {
592         fgSetDouble("/position/longitude-deg",
593                               parse_degree(arg.substr(6)));
594         fgSetString("/sim/startup/airport-id", "");
595     } else if ( arg.find( "--lat=" ) == 0 ) {
596         fgSetDouble("/position/latitude-deg",
597                               parse_degree(arg.substr(6)));
598         fgSetString("/sim/startup/airport-id", "");
599     } else if ( arg.find( "--altitude=" ) == 0 ) {
600         fgSetBool("/sim/startup/onground", false);
601         if ( fgGetString("/sim/startup/units") == "feet" )
602             fgSetDouble("/position/altitude-ft", atof(arg.substr(11)));
603         else
604             fgSetDouble("/position/altitude-ft",
605                         atof(arg.substr(11)) * SG_METER_TO_FEET);
606     } else if ( arg.find( "--uBody=" ) == 0 ) {
607         fgSetString("/sim/startup/speed-set", "UVW");
608         if ( fgGetString("/sim/startup/units") == "feet" )
609           fgSetDouble("/velocities/uBody-fps", atof(arg.substr(8)));
610         else
611           fgSetDouble("/velocities/uBody-fps",
612                                atof(arg.substr(8)) * SG_METER_TO_FEET);
613     } else if ( arg.find( "--vBody=" ) == 0 ) {
614         fgSetString("/sim/startup/speed-set", "UVW");
615         if ( fgGetString("/sim/startup/units") == "feet" )
616           fgSetDouble("/velocities/vBody-fps", atof(arg.substr(8)));
617         else
618           fgSetDouble("/velocities/vBody-fps",
619                                atof(arg.substr(8)) * SG_METER_TO_FEET);
620     } else if ( arg.find( "--wBody=" ) == 0 ) {
621         fgSetString("/sim/startup/speed-set", "UVW");
622         if ( fgGetString("/sim/startup/units") == "feet" )
623           fgSetDouble("/velocities/wBody-fps", atof(arg.substr(8)));
624         else
625           fgSetDouble("/velocities/wBody-fps",
626                                atof(arg.substr(8)) * SG_METER_TO_FEET);
627     } else if ( arg.find( "--vNorth=" ) == 0 ) {
628         fgSetString("/sim/startup/speed-set", "NED");
629         if ( fgGetString("/sim/startup/units") == "feet" )
630           fgSetDouble("/velocities/speed-north-fps", atof(arg.substr(9)));
631         else
632           fgSetDouble("/velocities/speed-north-fps",
633                                atof(arg.substr(9)) * SG_METER_TO_FEET);
634     } else if ( arg.find( "--vEast=" ) == 0 ) {
635         fgSetString("/sim/startup/speed-set", "NED");
636         if ( fgGetString("/sim/startup/units") == "feet" )
637           fgSetDouble("/velocities/speed-east-fps", atof(arg.substr(8)));
638         else
639           fgSetDouble("/velocities/speed-east-fps",
640                       atof(arg.substr(8)) * SG_METER_TO_FEET);
641     } else if ( arg.find( "--vDown=" ) == 0 ) {
642         fgSetString("/sim/startup/speed-set", "NED");
643         if ( fgGetString("/sim/startup/units") == "feet" )
644           fgSetDouble("/velocities/speed-down-fps", atof(arg.substr(8)));
645         else
646           fgSetDouble("/velocities/speed-down-fps",
647                                atof(arg.substr(8)) * SG_METER_TO_FEET);
648     } else if ( arg.find( "--vc=" ) == 0) {
649         fgSetString("/sim/startup/speed-set", "knots");
650         fgSetDouble("/velocities/airspeed-kt", atof(arg.substr(5)));
651     } else if ( arg.find( "--mach=" ) == 0) {
652         fgSetString("/sim/startup/speed-set", "mach");
653         fgSetDouble("/velocities/mach", atof(arg.substr(7)));
654     } else if ( arg.find( "--heading=" ) == 0 ) {
655         fgSetDouble("/orientation/heading-deg", atof(arg.substr(10)));
656     } else if ( arg.find( "--roll=" ) == 0 ) {
657         fgSetDouble("/orientation/roll-deg", atof(arg.substr(7)));
658     } else if ( arg.find( "--pitch=" ) == 0 ) {
659         fgSetDouble("/orientation/pitch-deg", atof(arg.substr(8)));
660     } else if ( arg.find( "--fg-root=" ) == 0 ) {
661         globals->set_fg_root(arg.substr( 10 ));
662     } else if ( arg.find( "--fg-scenery=" ) == 0 ) {
663         globals->set_fg_scenery(arg.substr( 13 ));
664     } else if ( arg.find( "--fdm=" ) == 0 ) {
665         fgSetString("/sim/flight-model", arg.substr(6));
666     } else if ( arg.find( "--aero=" ) == 0 ) {
667         fgSetString("/sim/aero", arg.substr(7));
668     } else if ( arg.find( "--aircraft-dir=" ) == 0 ) {
669         fgSetString("/sim/aircraft-dir", arg.substr(15));
670     } else if ( arg.find( "--model-hz=" ) == 0 ) {
671         fgSetInt("/sim/model-hz", atoi(arg.substr(11)));
672     } else if ( arg.find( "--speed=" ) == 0 ) {
673         fgSetInt("/sim/speed-up", atoi(arg.substr(8)));
674     } else if ( arg.find( "--trim") == 0) {
675         fgSetBool("/sim/startup/trim", true);
676     } else if ( arg.find( "--notrim") == 0) {
677         fgSetBool("/sim/startup/trim", false);
678     } else if ( arg.find( "--on-ground") == 0) {
679         fgSetBool("/sim/startup/onground", true);
680     } else if ( arg.find( "--in-air") == 0) {
681         fgSetBool("/sim/startup/onground", false);
682     } else if ( arg == "--fog-disable" ) {
683         fgSetString("/sim/rendering/fog", "disabled");
684     } else if ( arg == "--fog-fastest" ) {
685         fgSetString("/sim/rendering/fog", "fastest");
686     } else if ( arg == "--fog-nicest" ) {
687         fgSetString("/sim/fog", "nicest");
688     } else if ( arg == "--disable-clouds" ) {
689         fgSetBool("/environment/clouds/status", false);
690     } else if ( arg == "--enable-clouds" ) {
691         fgSetBool("/environment/clouds/status", true);
692     } else if ( arg.find( "--clouds-asl=" ) == 0 ) {
693                                 // FIXME: check units
694         if ( fgGetString("/sim/startup/units") == "feet" )
695           fgSetDouble("/environment/clouds/altitude-ft",
696                                 atof(arg.substr(13)));
697         else
698           fgSetDouble("/environment/clouds/altitude-ft",
699                                 atof(arg.substr(13)) * SG_METER_TO_FEET);
700     } else if ( arg.find( "--fov=" ) == 0 ) {
701         parse_fov( arg.substr(6) );
702     } else if ( arg == "--disable-fullscreen" ) {
703         fgSetBool("/sim/startup/fullscreen", false);
704     } else if ( arg== "--enable-fullscreen") {
705         fgSetBool("/sim/startup/fullscreen", true);
706     } else if ( arg == "--shading-flat") {
707         fgSetBool("/sim/rendering/shading", false);
708     } else if ( arg == "--shading-smooth") {
709         fgSetBool("/sim/rendering/shading", true);
710     } else if ( arg == "--disable-skyblend") {
711         fgSetBool("/sim/rendering/skyblend", false);
712     } else if ( arg== "--enable-skyblend" ) {
713         fgSetBool("/sim/rendering/skyblend", true);
714     } else if ( arg == "--disable-textures" ) {
715         fgSetBool("/sim/rendering/textures", false);
716     } else if ( arg == "--enable-textures" ) {
717         fgSetBool("/sim/rendering/textures", true);
718     } else if ( arg == "--disable-wireframe" ) {
719         fgSetBool("/sim/rendering/wireframe", false);
720     } else if ( arg == "--enable-wireframe" ) {
721         fgSetBool("/sim/rendering/wireframe", true);
722     } else if ( arg.find( "--geometry=" ) == 0 ) {
723         bool geometry_ok = true;
724         int xsize = 0, ysize = 0;
725         string geometry = arg.substr( 11 );
726         string::size_type i = geometry.find('x');
727
728         if (i != string::npos) {
729             xsize = atoi(geometry.substr(0, i));
730             ysize = atoi(geometry.substr(i+1));
731         } else {
732             geometry_ok = false;
733         }
734
735         if ( xsize <= 0 || ysize <= 0 ) {
736             xsize = 640;
737             ysize = 480;
738             geometry_ok = false;
739         }
740
741         if ( !geometry_ok ) {
742             SG_LOG( SG_GENERAL, SG_ALERT, "Unknown geometry: " << geometry );
743             SG_LOG( SG_GENERAL, SG_ALERT,
744                     "Setting geometry to " << xsize << 'x' << ysize << '\n');
745         } else {
746           SG_LOG( SG_GENERAL, SG_INFO,
747                   "Setting geometry to " << xsize << 'x' << ysize << '\n');
748           fgSetInt("/sim/startup/xsize", xsize);
749           fgSetInt("/sim/startup/ysize", ysize);
750         }
751     } else if ( arg.find( "--bpp=" ) == 0 ) {
752         string bits_per_pix = arg.substr( 6 );
753         if ( bits_per_pix == "16" ) {
754             fgSetInt("/sim/rendering/bits-per-pixel", 16);
755         } else if ( bits_per_pix == "24" ) {
756             fgSetInt("/sim/rendering/bits-per-pixel", 24);
757         } else if ( bits_per_pix == "32" ) {
758             fgSetInt("/sim/rendering/bits-per-pixel", 32);
759         } else {
760           SG_LOG(SG_GENERAL, SG_ALERT, "Unsupported bpp " << bits_per_pix);
761         }
762     } else if ( arg == "--units-feet" ) {
763         fgSetString("/sim/startup/units", "feet");
764     } else if ( arg == "--units-meters" ) {
765         fgSetString("/sim/startup/units", "meters");
766     } else if ( arg.find( "--time-offset" ) == 0 ) {
767         fgSetInt("/sim/startup/time-offset",
768                            parse_time_offset( (arg.substr(14)) ));
769     } else if ( arg.find( "--time-match-real") == 0 ) {
770         fgSetString("/sim/startup/time-offset-type",
771                               "system-offset");
772     } else if ( arg.find( "--time-match-local") == 0 ) {
773         fgSetString("/sim/startup/time-offset-type",
774                               "latitude-offset");
775     } else if ( arg.find( "--start-date-sys=") == 0 ) {
776         fgSetInt("/sim/startup/time-offset",
777                            parse_date((arg.substr(17))));
778         fgSetString("/sim/startup/time-offset-type", "system");
779     } else if ( arg.find( "--start-date-lat=") == 0 ) {
780         fgSetInt("/sim/startup/time-offset",
781                            parse_date((arg.substr(17))));
782         fgSetString("/sim/startup/time-offset-type",
783                            "latitude");
784     } else if ( arg.find( "--start-date-gmt=") == 0 ) {
785         fgSetInt("/sim/startup/time-offset",
786                            parse_date((arg.substr(17))));
787         fgSetString("/sim/startup/time-offset-type", "gmt");
788     } else if ( arg == "--hud-tris" ) {
789         fgSetString("/sim/hud/frame-stat-type", "tris");
790     } else if ( arg == "--hud-culled" ) {
791         fgSetString("/sim/hud/frame-stat-type", "culled");
792     } else if ( arg.find( "--atlas=" ) == 0 ) {
793         add_channel( "atlas", arg.substr(8) );
794     } else if ( arg.find( "--httpd=" ) == 0 ) {
795         add_channel( "httpd", arg.substr(8) );
796 #ifdef FG_JPEG_SERVER
797     } else if ( arg.find( "--jpg-httpd=" ) == 0 ) {
798         add_channel( "jpg-httpd", arg.substr(12) );
799 #endif
800     } else if ( arg.find( "--native=" ) == 0 ) {
801         add_channel( "native", arg.substr(9) );
802     } else if ( arg.find( "--native-ctrls=" ) == 0 ) {
803         add_channel( "native_ctrls", arg.substr(15) );
804     } else if ( arg.find( "--native-fdm=" ) == 0 ) {
805         add_channel( "native_fdm", arg.substr(13) );
806     } else if ( arg.find( "--opengc=" ) == 0 ) {
807         // char stop;
808         // cout << "Adding channel for OpenGC Display" << endl; cin >> stop;
809         add_channel( "opengc", arg.substr(9) );
810     } else if ( arg.find( "--garmin=" ) == 0 ) {
811         add_channel( "garmin", arg.substr(9) );
812     } else if ( arg.find( "--nmea=" ) == 0 ) {
813         add_channel( "nmea", arg.substr(7) );
814     } else if ( arg.find( "--props=" ) == 0 ) {
815         add_channel( "props", arg.substr(8) );
816     } else if ( arg.find( "--pve=" ) == 0 ) {
817         add_channel( "pve", arg.substr(6) );
818     } else if ( arg.find( "--ray=" ) == 0 ) {
819         add_channel( "ray", arg.substr(6) );
820     } else if ( arg.find( "--rul=" ) == 0 ) {
821         add_channel( "rul", arg.substr(6) );
822     } else if ( arg.find( "--joyclient=" ) == 0 ) {
823         add_channel( "joyclient", arg.substr(12) );
824 #ifdef FG_NETWORK_OLK
825     } else if ( arg == "--disable-network-olk" ) {
826         fgSetBool("/sim/networking/olk", false);
827     } else if ( arg== "--enable-network-olk") {
828         fgSetBool("/sim/networking/olk", true);
829     } else if ( arg == "--net-hud" ) {
830         fgSetBool("/sim/hud/net-display", true);
831         net_hud_display = 1;    // FIXME
832     } else if ( arg.find( "--net-id=") == 0 ) {
833         fgSetString("sim/networking/call-sign", arg.substr(9));
834 #endif
835     } else if ( arg.find( "--prop:" ) == 0 ) {
836         string assign = arg.substr(7);
837         unsigned int pos = assign.find('=');
838         if ( pos == arg.npos || pos == 0 ) {
839             SG_LOG( SG_GENERAL, SG_ALERT, "Bad property assignment: " << arg );
840             return FG_OPTIONS_ERROR;
841         }
842         string name = assign.substr(0, pos);
843         string value = assign.substr(pos + 1);
844         fgSetString(name.c_str(), value);
845         // SG_LOG(SG_GENERAL, SG_INFO, "Setting default value of property "
846         //        << name << " to \"" << value << '"');
847     } else if ( arg.find("--trace-read=") == 0) {
848         string name = arg.substr(13);
849         SG_LOG(SG_GENERAL, SG_INFO, "Tracing reads for property " << name);
850         fgGetNode(name, true)->setAttribute(SGPropertyNode::TRACE_READ, true);
851     } else if ( arg.find("--trace-write=") == 0) {
852         string name = arg.substr(14);
853         SG_LOG(SG_GENERAL, SG_INFO, "Tracing writes for property " << name);
854         fgGetNode(name, true)->setAttribute(SGPropertyNode::TRACE_WRITE, true);
855     } else if ( arg.find( "--view-offset=" ) == 0 ) {
856         // $$$ begin - added VS Renganathan, 14 Oct 2K
857         // for multi-window outside window imagery
858         string woffset = arg.substr( 14 );
859         double default_view_offset = 0.0;
860         if ( woffset == "LEFT" ) {
861                default_view_offset = SGD_PI * 0.25;
862         } else if ( woffset == "RIGHT" ) {
863             default_view_offset = SGD_PI * 1.75;
864         } else if ( woffset == "CENTER" ) {
865             default_view_offset = 0.00;
866         } else {
867             default_view_offset = atof( woffset.c_str() ) * SGD_DEGREES_TO_RADIANS;
868         }
869         FGViewerRPH *pilot_view =
870             (FGViewerRPH *)globals->get_viewmgr()->get_view( 0 );
871         pilot_view->set_view_offset( default_view_offset );
872         pilot_view->set_goal_view_offset( default_view_offset );
873         fgSetDouble("/sim/view/offset-deg", default_view_offset);
874     // $$$ end - added VS Renganathan, 14 Oct 2K
875     } else if ( arg.find( "--visibility=" ) == 0 ) {
876         fgSetDouble("/environment/visibility-m", atof(arg.substr(13)));
877     } else if ( arg.find( "--visibility-miles=" ) == 0 ) {
878         double visibility = atof(arg.substr(19)) * 5280.0 * SG_FEET_TO_METER;
879         fgSetDouble("/environment/visibility-m", visibility);
880     } else if ( arg.find( "--wind=" ) == 0 ) {
881         string val = arg.substr(7);
882         unsigned int pos = val.find('@');
883         if ( pos == string::npos ) {
884           SG_LOG( SG_GENERAL, SG_ALERT, "bad wind value " << val );
885           return FG_OPTIONS_ERROR;
886         }
887         double dir = atof(val.substr(0,pos).c_str());
888         double speed = atof(val.substr(pos+1).c_str());
889         SG_LOG(SG_GENERAL, SG_INFO, "WIND: " << dir << '@' << 
890                speed << " knots" << endl);
891         fgSetDouble("/environment/wind-from-heading-deg", dir);
892         fgSetDouble("/environment/wind-speed-knots", speed);
893
894         // convert to fps
895         speed *= SG_NM_TO_METER * SG_METER_TO_FEET * (1.0/3600);
896         // dir += 180;
897         if (dir >= 360)
898           dir -= 360;
899         dir *= SGD_DEGREES_TO_RADIANS;
900         fgSetDouble("/environment/wind-north-fps",
901                     speed * cos(dir));
902         fgSetDouble("/environment/wind-east-fps",
903                     speed * sin(dir));
904     } else if ( arg.find( "--wp=" ) == 0 ) {
905         parse_wp( arg.substr( 5 ) );
906     } else if ( arg.find( "--flight-plan=") == 0) {
907         parse_flightplan ( arg.substr (14) );
908     } else if ( arg.find( "--config=" ) == 0 ) {
909         string file = arg.substr(9);
910         try {
911           readProperties(file, globals->get_props());
912         } catch (const sg_exception &e) {
913           string message = "Error loading config file: ";
914           message += e.getFormattedMessage();
915           SG_LOG(SG_INPUT, SG_ALERT, message);
916           exit(2);
917         }
918     } else if ( arg.find( "--aircraft=" ) == 0 ) {
919         // read in the top level aircraft definition file
920         SGPath apath( globals->get_fg_root() );
921         apath.append( "Aircraft" );
922         apath.append( arg.substr(11) );
923         apath.concat( "-set.xml" );
924         try {
925             readProperties( apath.str(), globals->get_props() );
926         } catch (const sg_exception &e) {
927             string message = "Error loading aircraft file: ";
928             message += e.getFormattedMessage();
929             SG_LOG(SG_INPUT, SG_ALERT, message);
930             exit(2);
931         }
932     } else {
933         SG_LOG( SG_GENERAL, SG_ALERT, "Unknown option '" << arg << "'" );
934         return FG_OPTIONS_ERROR;
935     }
936     
937     return FG_OPTIONS_OK;
938 }
939
940
941 // Scan the command line options for an fg_root definition and set
942 // just that.
943 string
944 fgScanForRoot (int argc, char **argv) 
945 {
946     int i = 1;
947
948     SG_LOG(SG_GENERAL, SG_INFO, "Scanning for root: command line");
949
950     while ( i < argc ) {
951         SG_LOG( SG_GENERAL, SG_DEBUG, "argv[" << i << "] = " << argv[i] );
952
953         string arg = argv[i];
954         if ( arg.find( "--fg-root=" ) == 0 ) {
955             return arg.substr( 10 );
956         }
957
958         i++;
959     }
960
961     return "";
962 }
963
964
965 // Scan the config file for an fg_root definition and set just that.
966 string
967 fgScanForRoot (const string& path)
968 {
969     sg_gzifstream in( path );
970     if ( !in.is_open() )
971       return "";
972
973     SG_LOG( SG_GENERAL, SG_INFO, "Scanning for root: " << path );
974
975     in >> skipcomment;
976 #ifndef __MWERKS__
977     while ( ! in.eof() ) {
978 #else
979     char c = '\0';
980     while ( in.get(c) && c != '\0' ) {
981         in.putback(c);
982 #endif
983         string line;
984
985 #if defined( macintosh )
986         getline( in, line, '\r' );
987 #else
988         getline( in, line, '\n' );
989 #endif
990
991         // catch extraneous (DOS) line ending character
992         if ( line[line.length() - 1] < 32 ) {
993             line = line.substr( 0, line.length()-1 );
994         }
995
996         if ( line.find( "--fg-root=" ) == 0 ) {
997             return line.substr( 10 );
998         }
999
1000         in >> skipcomment;
1001     }
1002
1003     return "";
1004 }
1005
1006
1007 // Parse the command line options
1008 void
1009 fgParseArgs (int argc, char **argv)
1010 {
1011     bool in_options = true;
1012
1013     SG_LOG(SG_GENERAL, SG_INFO, "Processing command line arguments");
1014
1015     for (int i = 1; i < argc; i++) {
1016         string arg = argv[i];
1017
1018         if (in_options && (arg.find('-') == 0)) {
1019           if (arg == "--") {
1020             in_options = false;
1021           } else {
1022             int result = parse_option(arg);
1023             if ( (result == FG_OPTIONS_HELP) ||
1024                  (result == FG_OPTIONS_ERROR) ) {
1025               fgUsage();
1026               exit(-1);
1027             }
1028           }
1029         } else {
1030           in_options = false;
1031           SG_LOG(SG_GENERAL, SG_INFO,
1032                  "Reading command-line property file " << arg);
1033           readProperties(arg, globals->get_props());
1034         }
1035     }
1036
1037     SG_LOG(SG_GENERAL, SG_INFO, "Finished command line arguments");
1038 }
1039
1040
1041 // Parse config file options
1042 void
1043 fgParseOptions (const string& path) {
1044     sg_gzifstream in( path );
1045     if ( !in.is_open() ) {
1046         return;
1047     }
1048
1049     SG_LOG( SG_GENERAL, SG_INFO, "Processing config file: " << path );
1050
1051     in >> skipcomment;
1052 #ifndef __MWERKS__
1053     while ( ! in.eof() ) {
1054 #else
1055     char c = '\0';
1056     while ( in.get(c) && c != '\0' ) {
1057         in.putback(c);
1058 #endif
1059         string line;
1060
1061 #if defined( macintosh )
1062         getline( in, line, '\r' );
1063 #else
1064         getline( in, line, '\n' );
1065 #endif
1066
1067         // catch extraneous (DOS) line ending character
1068         if ( line[line.length() - 1] < 32 ) {
1069             line = line.substr( 0, line.length()-1 );
1070         }
1071
1072         if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
1073             SG_LOG( SG_GENERAL, SG_ALERT, 
1074                     "Config file parse error: " << path << " '" 
1075                     << line << "'" );
1076             fgUsage();
1077             exit(-1);
1078         }
1079         in >> skipcomment;
1080     }
1081 }
1082
1083
1084 // Print usage message
1085 void 
1086 fgUsage ()
1087 {
1088     cout << "Usage: fgfs [ options ... ]" << endl;
1089     cout << endl;
1090
1091     cout << "General Options:" << endl;
1092     cout << "\t--help -h:  print usage" << endl;
1093     cout << "\t--fg-root=path:  specify the root path for all the data files"
1094          << endl;
1095     cout << "\t--fg-scenery=path:  specify the base path for all the scenery"
1096          << " data." << endl
1097          << "\t\tdefaults to $FG_ROOT/Scenery" << endl;
1098     cout << "\t--disable-game-mode:  disable full-screen game mode" << endl;
1099     cout << "\t--enable-game-mode:  enable full-screen game mode" << endl;
1100     cout << "\t--disable-splash-screen:  disable splash screen" << endl;
1101     cout << "\t--enable-splash-screen:  enable splash screen" << endl;
1102     cout << "\t--disable-intro-music:  disable introduction music" << endl;
1103     cout << "\t--enable-intro-music:  enable introduction music" << endl;
1104     cout << "\t--disable-mouse-pointer:  disable extra mouse pointer" << endl;
1105     cout << "\t--enable-mouse-pointer:  enable extra mouse pointer (i.e. for"
1106          << endl;
1107     cout << "\t\tfull screen voodoo/voodoo-II based cards.)" << endl;
1108     cout << "\t--disable-freeze:  start out in a running state" << endl;
1109     cout << "\t--enable-freeze:  start out in a frozen state" << endl;
1110     cout << "\t--control=mode:  primary control mode " 
1111          << "(joystick, keyboard, mouse)" << endl;
1112     cout << "\t--enable-auto-coordination:  enable auto coordination" << endl;
1113     cout << "\t--disable-auto-coordination:  disable auto coordination" << endl;
1114     cout << "\t--browser-app=/path/to/app:  specify location of your web browser" << endl;
1115     cout << "\t--prop:name=value:  set property <name> to <value>" << endl;
1116     cout << "\t--config=path:  load additional properties from path" << endl;
1117     cout << endl;
1118
1119     cout << "Features:" << endl;
1120     cout << "\t--disable-hud:  disable heads up display" << endl;
1121     cout << "\t--enable-hud:  enable heads up display" << endl;
1122     cout << "\t--disable-panel:  disable instrument panel" << endl;
1123     cout << "\t--enable-panel:  enable instrument panel" << endl;
1124     cout << "\t--disable-sound:  disable sound effects" << endl;
1125     cout << "\t--enable-sound:  enable sound effects" << endl;
1126     cout << "\t--disable-anti-alias-hud:  disable anti aliased hud" << endl;
1127     cout << "\t--enable-anti-alias-hud:  enable anti aliased hud" << endl;
1128     cout << endl;
1129
1130     cout << "Aircraft:" <<endl;
1131     cout << "\t--aircraft=name:  select a top level <name>-set.xml file which" << endl;
1132     cout << "\t\twill automatically pull in the correct flight dynamics model," << endl;
1133     cout << "\t\taero specification, external 3d model, instrument panel, sounds," << endl;
1134     cout << "\t\tetc." << endl;
1135     
1136     cout << endl;
1137
1138     cout << "Flight Model:" << endl;
1139     cout << "\t--fdm=abcd:  selects the core flight model code." << endl;
1140     cout << "\t\tcan be one of jsb, larcsim, magic, null, external, balloon, or ada"
1141          << endl;
1142     cout << "\t--aero=abcd:  aerodynamics model to load" << endl;
1143     cout << "\t--model-hz=n:  run the FDM this rate (iterations per second)" 
1144          << endl;
1145     cout << "\t--speed=n:  run the FDM this much faster than real time" << endl;
1146     cout << "\t--notrim:  Do NOT attempt to trim the model when initializing JSBsim" << endl;
1147     cout << "\t--on-ground:  Start up at ground level (default)" << endl;
1148     cout << "\t--in-air:  Start up in air (implied by specifying an initial"
1149          << " altitude above ground level." << endl;
1150     cout << "\t--wind=DIR@SPEED: specify wind coming from DIR (degrees) at SPEED (knots)" << endl;
1151     cout << endl;
1152
1153     //(UIUC)
1154     cout <<"Aircraft model directory:" << endl;
1155     cout <<"\t--aircraft-dir=<path> path is relative to the path of the executable" << endl;
1156     cout << endl;
1157
1158     cout << "Initial Position and Orientation:" << endl;
1159     cout << "\t--airport-id=ABCD:  specify starting postion by airport id" 
1160          << endl;
1161     cout << "\t--offset-distance:  specify distance to threshold"
1162          << " (NM)" << endl; 
1163     cout << "\t--offset-azimuth:  specify heading to threshold (deg) " 
1164          << endl;    
1165     cout << "\t--lon=degrees:  starting longitude in degrees (west = -)" 
1166          << endl;
1167     cout << "\t--lat=degrees:  starting latitude in degrees (south = -)"
1168          << endl;
1169     cout << "\t--altitude=feet:  starting altitude in feet" << endl;
1170     cout << "\t\t(unless --units-meters specified)" << endl;
1171     cout << "\t--heading=degrees:  heading (yaw) angle in degrees (Psi)"
1172          << endl;
1173     cout << "\t--roll=degrees:  roll angle in degrees (Phi)" << endl;
1174     cout << "\t--pitch=degrees:  pitch angle in degrees (Theta)" << endl;
1175     cout << "\t--uBody=feet per second:  velocity along the body X axis"
1176          << endl;
1177     cout << "\t--vBody=feet per second:  velocity along the body Y axis"
1178          << endl;
1179     cout << "\t--wBody=feet per second:  velocity along the body Z axis"
1180          << endl;
1181     cout << "\t\t(unless --units-meters specified)" << endl;
1182     cout << "\t--vc= initial airspeed in knots" << endl;
1183     cout << "\t--mach= initial mach number" << endl;
1184     cout << endl;
1185
1186     cout << "Rendering Options:" << endl;
1187     cout << "\t--fog-disable:  disable fog/haze" << endl;
1188     cout << "\t--fog-fastest:  enable fastest fog/haze" << endl;
1189     cout << "\t--fog-nicest:  enable nicest fog/haze" << endl;
1190     cout << "\t--enable-clouds:  enable demo cloud layer" << endl;
1191     cout << "\t--disable-clouds:  disable demo cloud layer" << endl;
1192     cout << "\t--clouds-asl=xxx:  specify altitude of cloud layer above sea level" << endl;
1193     cout << "\t--fov=xx.x:  specify initial field of view angle in degrees"
1194          << endl;
1195     cout << "\t--disable-fullscreen:  disable fullscreen mode" << endl;
1196     cout << "\t--enable-fullscreen:  enable fullscreen mode" << endl;
1197     cout << "\t--shading-flat:  enable flat shading" << endl;
1198     cout << "\t--shading-smooth:  enable smooth shading" << endl;
1199     cout << "\t--disable-skyblend:  disable sky blending" << endl;
1200     cout << "\t--enable-skyblend:  enable sky blending" << endl;
1201     cout << "\t--disable-textures:  disable textures" << endl;
1202     cout << "\t--enable-textures:  enable textures" << endl;
1203     cout << "\t--disable-wireframe:  disable wireframe drawing mode" << endl;
1204     cout << "\t--enable-wireframe:  enable wireframe drawing mode" << endl;
1205     cout << "\t--geometry=WWWxHHH:  window geometry: 640x480, 800x600, etc."
1206          << endl;
1207     cout << "\t--view-offset=xxx:  set the default forward view direction"
1208          << endl;
1209     cout << "\t\tas an offset from straight ahead.  Allowable values are"
1210          << endl;
1211     cout << "\t\tLEFT, RIGHT, CENTER, or a specific number of degrees" << endl;
1212     cout << "\t--visibility=xxx:  specify initial visibility in meters" << endl;
1213     cout << "\t--visibility-miles=xxx:  specify initial visibility in miles"
1214          << endl;
1215     cout << endl;
1216
1217     cout << "Hud Options:" << endl;
1218     cout << "\t--units-feet:  Hud displays units in feet" << endl;
1219     cout << "\t--units-meters:  Hud displays units in meters" << endl;
1220     cout << "\t--hud-tris:  Hud displays number of triangles rendered" << endl;
1221     cout << "\t--hud-culled:  Hud displays percentage of triangles culled"
1222          << endl;
1223     cout << endl;
1224         
1225     cout << "Time Options:" << endl;
1226     cout << "\t--time-offset=[+-]hh:mm:ss: add this time offset" << endl;
1227     cout << "\t--time-match-real: Synchronize real-world and FlightGear" << endl
1228          << "\t\ttime. Can be used in combination with --time-offset." << endl;
1229     cout << "\t--time-match-local:Synchronize local real-world and " << endl
1230          << "\t\tFlightGear time" << endl;   
1231     cout << "\t--start-date-sys=yyyy:mm:dd:hh:mm:ss: specify a starting" << endl
1232          << "\t\tdate/time. Uses your system time " << endl;
1233     cout << "\t--start-date-gmt=yyyy:mm:dd:hh:mm:ss: specify a starting" << endl
1234          << "\t\tdate/time. Uses Greenwich Mean Time" << endl;
1235     cout << "\t--start-date-lat=yyyy:mm:dd:hh:mm:ss: specify a starting" << endl
1236          << "\t\tdate/time. Uses Local Aircraft Time" << endl;
1237     cout << endl;
1238
1239     cout << "Network Options:" << endl;
1240     cout << "\t--httpd=port:  enable http server on the specified port" << endl;
1241 #ifdef FG_JPEG_SERVER
1242     cout << "\t--jpg-httpd=port:  enable screen shot http server on the specified port" << endl;
1243 #endif
1244 #ifdef FG_NETWORK_OLK
1245     cout << "\t--enable-network-olk:  enable Multipilot mode" << endl;
1246     cout << "\t--disable-network-olk:  disable Multipilot mode (default)" << endl;
1247     cout << "\t--net-hud:  Hud displays network info" << endl;
1248     cout << "\t--net-id=name:  specify your own callsign" << endl;
1249 #endif
1250
1251     cout << endl;
1252     cout << "Route/Way Point Options:" << endl;
1253     cout << "\t--wp=ID[@alt]:  specify a waypoint for the GC autopilot" << endl;
1254     cout << "\t\tYou can specify multiple waypoints (a route) with multiple"
1255          << endl;
1256     cout << "\t\tinstances of --wp=" << endl;
1257     cout << "\t--flight-plan=[file]: Read all waypoints from [file]" <<endl;
1258 }