]> git.mxchange.org Git - flightgear.git/blob - src/Main/options.hxx
More tidying up of SGTime.
[flightgear.git] / src / Main / options.hxx
1 // options.hxx -- 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 #ifndef _OPTIONS_HXX
25 #define _OPTIONS_HXX
26
27
28 #ifndef __cplusplus
29 # error This library requires C++
30 #endif                                   
31
32 #ifdef HAVE_CONFIG_H
33 #  include <config.h>
34 #endif
35
36 #include <simgear/compiler.h>
37
38 #ifdef HAVE_WINDOWS_H
39 #  include <windows.h>
40 #endif
41
42 #include <GL/glut.h>
43 #include <simgear/xgl/xgl.h>
44
45 #if defined(FX) && defined(XMESA)
46 extern bool global_fullscreen;
47 #endif
48
49 #include <simgear/math/fg_types.hxx>
50 #include <simgear/timing/sg_time.hxx>
51
52 #include STL_STRING
53 #include <vector>
54
55 FG_USING_STD(vector);
56 FG_USING_STD(string);
57
58 #define NEW_DEFAULT_MODEL_HZ 120
59
60
61 class fgOPTIONS {
62
63 public:
64
65     enum
66     {
67         FG_OPTIONS_OK = 0,
68         FG_OPTIONS_HELP = 1,
69         FG_OPTIONS_ERROR = 2
70     };
71
72     enum
73     {
74         FG_UNITS_FEET = 0,
75         FG_UNITS_METERS = 1
76     };
77
78     enum fgFogKind
79     {
80         FG_FOG_DISABLED = 0,
81         FG_FOG_FASTEST  = 1,
82         FG_FOG_NICEST   = 2
83     };
84
85     enum
86     {
87         FG_RADIUS_MIN = 1,
88         FG_RADIUS_MAX = 4
89     };
90
91     enum fgControlMode
92     {
93         FG_JOYSTICK = 0,
94         FG_KEYBOARD = 1,
95         FG_MOUSE = 2
96     };
97
98     enum fgViewMode
99     {
100         FG_VIEW_PILOT = 0,      // Pilot perspective
101         FG_VIEW_FOLLOW  = 1,    // Following in the "foot steps" so to speak
102         FG_VIEW_CHASE = 2,      // Chase
103         FG_VIEW_CIRCLING = 3,   // Circling
104         FG_VIEW_SATELLITE = 4,  // From high above
105         FG_VIEW_ANCHOR = 5,     // Drop an anchor and watch from there
106         FG_VIEW_TOWER = 6,      // From nearest tower?
107         FG_VIEW_SPOTTER = 7     // Fron a ground spotter
108     };
109
110     enum fgAutoCoordMode
111     {
112         FG_AUTO_COORD_NOT_SPECIFIED = 0,
113         FG_AUTO_COORD_DISABLED = 1,
114         FG_AUTO_COORD_ENABLED = 2
115     };
116
117     enum fgTimingOffsetType {
118         FG_TIME_SYS_OFFSET   = 0,
119         FG_TIME_GMT_OFFSET   = 1,
120         FG_TIME_LAT_OFFSET   = 2,
121         FG_TIME_SYS_ABSOLUTE = 3,
122         FG_TIME_GMT_ABSOLUTE = 4,
123         FG_TIME_LAT_ABSOLUTE = 5
124     };
125
126 private:
127
128     // The flight gear "root" directory
129     string fg_root;
130
131     // Starting position and orientation
132     string airport_id;  // ID of initial starting airport
133     double lon;         // starting longitude in degrees (west = -)
134     double lat;         // starting latitude in degrees (south = -)
135     double altitude;    // starting altitude in meters
136     double heading;     // heading (yaw) angle in degress (Psi)
137     double roll;        // roll angle in degrees (Phi)
138     double pitch;       // pitch angle in degrees (Theta)
139     double uBody;       // Body axis X velocity (U)
140     double vBody;       // Body axis Y velocity (V)
141     double wBody;       // Body axis Z velocity (W)
142     double vkcas;       // Calibrated airspeed, knots
143     double mach;        // Mach number
144
145     // Miscellaneous
146     bool game_mode;     // Game mode enabled/disabled
147     bool splash_screen; // show splash screen
148     bool intro_music;   // play introductory music
149     int mouse_pointer;  // show mouse pointer
150     bool pause;         // pause intially enabled/disabled
151     fgControlMode control_mode; // primary control mode
152     fgAutoCoordMode auto_coordination;  // enable auto coordination
153
154     // Features
155     bool hud_status;    // HUD on/off
156     bool panel_status;  // Panel on/off
157     bool sound;         // play sound effects
158     bool anti_alias_hud;
159
160     // Flight Model options
161     int flight_model;   // Core flight model code:  jsb, larcsim, magic, etc.
162     string aircraft;    // Aircraft to model
163     int model_hz;       // number of FDM iterations per second
164     int speed_up;       // Sim mechanics run this much faster than normal speed
165     int trim;           // use the FDM trimming routine during init
166                         // <0 --notrim set, 0 no trim, >0 trim
167                         // default behavior is to enable trimming for jsbsim
168                         // disable for all other fdm's
169
170     // Rendering options
171     fgFogKind fog;      // Fog nicest/fastest/disabled
172     bool clouds;        // Enable clouds
173     double clouds_asl;  // Cloud layer height above sea level
174     double fov;         // Field of View
175     bool fullscreen;    // Full screen mode enabled/disabled
176     int shading;        // shading method, 0 = Flat, 1 = Smooth
177     bool skyblend;      // Blend sky to haze (using polygons) or just clear
178     bool textures;      // Textures enabled/disabled
179     bool wireframe;     // Wireframe mode enabled/disabled
180     int xsize, ysize;   // window size derived from geometry string
181     int bpp;            // bits per pixel
182     fgViewMode view_mode; // view mode
183
184     // Scenery options
185     int tile_radius;   // Square radius of rendered tiles (around center 
186                        // square.)
187     int tile_diameter; // Diameter of rendered tiles.  for instance
188                        // if tile_diameter = 3 then a 3 x 3 grid of tiles will 
189                        // be drawn.  Increase this to see terrain that is 
190                        // further away.
191
192     // HUD options
193     int units;         // feet or meters
194     int tris_or_culled;
195
196     // Time options
197     int time_offset;            // Use this value to change time.
198     fgTimingOffsetType time_offset_type; // Will be set to one of the
199                                 // FG_TIME_* enums, to deterine how
200                                 // time_offset should be used 
201
202     // Serial port configuration strings
203     string_list channel_options_list;
204
205     // Network options
206     bool network_olk;
207     string net_id;
208     
209 public:
210
211     fgOPTIONS();
212     ~fgOPTIONS();
213
214     // Parse a single option
215     int parse_option( const string& arg );
216
217     // Parse the command line options
218     int parse_command_line( int argc, char **argv );
219
220     // Parse the command line options
221     int parse_config_file( const string& path );
222
223     // Print usage message
224     void usage ( void );
225
226     // Query functions
227     inline string get_fg_root() const { return fg_root; }
228     inline string get_airport_id() const { return airport_id; }
229     inline double get_lon() const { return lon; }
230     inline double get_lat() const { return lat; }
231     inline double get_altitude() const { return altitude; }
232     inline double get_heading() const { return heading; }
233     inline double get_roll() const { return roll; }
234     inline double get_pitch() const { return pitch; }
235     inline double get_uBody() const {return uBody;}
236     inline double get_vBody() const {return vBody;}
237     inline double get_wBody() const {return wBody;}
238     inline double get_vc() const {return vkcas;}
239     inline double get_mach() const {return mach;}
240         
241     inline bool get_game_mode() const { return game_mode; }
242     inline bool get_splash_screen() const { return splash_screen; }
243     inline bool get_intro_music() const { return intro_music; }
244     inline int get_mouse_pointer() const { return mouse_pointer; }
245     inline bool get_pause() const { return pause; }
246     inline bool get_anti_alias_hud() const { return anti_alias_hud; }
247     inline fgControlMode get_control_mode() const { return control_mode; }
248     inline void set_control_mode( fgControlMode mode ) { control_mode = mode; }
249     inline fgAutoCoordMode get_auto_coordination() const { 
250         return auto_coordination;
251     }
252     inline void set_auto_coordination(fgAutoCoordMode m) { 
253         auto_coordination = m;
254     }
255     inline bool get_hud_status() const { return hud_status; }
256     inline bool get_panel_status() const { return panel_status; }
257     inline bool get_sound() const { return sound; }
258     inline int get_flight_model() const { return flight_model; }
259     inline string get_aircraft() const { return aircraft; }
260     inline int get_model_hz() const { return model_hz; }
261     inline int get_speed_up() const { return speed_up; }
262     inline void set_speed_up( int speed ) { speed_up = speed; }
263     inline int get_trim_mode(void) { return trim; }
264         
265     inline bool fog_enabled() const { return fog != FG_FOG_DISABLED; }
266     inline fgFogKind get_fog() const { return fog; }
267     inline bool get_clouds() const { return clouds; }
268     inline double get_clouds_asl() const { return clouds_asl; }
269     inline double get_fov() const { return fov; }
270     inline bool get_fullscreen() const { return fullscreen; }
271     inline int get_shading() const { return shading; }
272     inline bool get_skyblend() const { return skyblend; }
273     inline bool get_textures() const { return textures; }
274     inline bool get_wireframe() const { return wireframe; }
275     inline int get_xsize() const { return xsize; }
276     inline int get_ysize() const { return ysize; }
277     inline int get_bpp() const { return bpp; }
278     inline fgViewMode get_view_mode() const { return view_mode; }
279     inline int get_tile_radius() const { return tile_radius; }
280     inline int get_tile_diameter() const { return tile_diameter; }
281
282     inline int get_units() const { return units; }
283     inline int get_tris_or_culled() const { return tris_or_culled; }
284
285     inline int get_time_offset() const { return time_offset; }
286     inline fgTimingOffsetType  get_time_offset_type() const {
287         return time_offset_type;
288     };
289
290     inline string_list get_channel_options_list() const { 
291         return channel_options_list;
292     }
293
294     inline bool get_network_olk() const { return network_olk; }
295     inline string get_net_id() const { return net_id; }
296
297     // Update functions
298     inline void set_fg_root (const string value) { fg_root = value; }
299     inline void set_airport_id( const string id ) { airport_id = id; }
300     inline void set_lon (double value) { lon = value; }
301     inline void set_lat (double value) { lat = value; }
302     inline void set_altitude (double value) { altitude = value; }
303     inline void set_heading (double value) { heading = value; }
304     inline void set_roll (double value) { roll = value; }
305     inline void set_pitch (double value) { pitch = value; }
306     inline void set_uBody (double value) { uBody = value; }
307     inline void set_vBody (double value) { vBody = value; }
308     inline void set_wBody (double value) { wBody = value; }
309     inline void set_vc (double value) { vkcas = value; }
310     inline void set_mach(double value) { mach = value; }
311     inline void set_game_mode (bool value) { game_mode = value; }
312     inline void set_splash_screen (bool value) { splash_screen = value; }
313     inline void set_intro_music (bool value) { intro_music = value; }
314     inline void set_mouse_pointer (int value) { mouse_pointer = value; }
315     inline void set_pause (bool value) { pause = value; }
316     inline void toggle_pause () { pause = !pause; }
317     inline void set_anti_alias_hud (bool value) { anti_alias_hud = value; }
318     inline void set_hud_status( bool status ) { hud_status = status; }
319     inline void set_sound (bool value) { sound = value; }
320     inline void set_flight_model (int value) { flight_model = value; }
321     inline void set_aircraft (const string &ac) { aircraft = ac; }
322     inline void set_model_hz (int value) { model_hz = value; }
323     inline void set_trim_mode(int value) { trim = value; }
324     inline void set_fog (fgFogKind value) { fog = value; }
325     inline void set_clouds( bool value ) { clouds = value; }
326     inline void set_clouds_asl( double value ) { clouds_asl = value; }
327     inline void set_fov( double amount ) { fov = amount; }
328     inline void set_fullscreen (bool value) { fullscreen = value; }
329     inline void set_shading (int value) { shading = value; }
330     inline void set_skyblend (bool value) { skyblend = value; }
331     inline void set_textures( bool status ) { textures = status; }
332     inline void set_wireframe (bool status) { wireframe = status; }
333     inline void cycle_fog( void ) { 
334         if ( fog == FG_FOG_DISABLED ) {
335             fog = FG_FOG_FASTEST;
336         } else if ( fog == FG_FOG_FASTEST ) {
337             fog = FG_FOG_NICEST;
338             xglHint ( GL_FOG_HINT, GL_NICEST );
339         } else if ( fog == FG_FOG_NICEST ) {
340             fog = FG_FOG_DISABLED;
341             xglHint ( GL_FOG_HINT, GL_FASTEST );
342         }
343     }
344     void toggle_panel();
345     inline void set_xsize( int x ) { xsize = x; }
346     inline void set_ysize( int y ) { ysize = y; }
347     inline void set_view_mode (fgViewMode value) { view_mode = value; }
348     inline void set_tile_radius (int value) { tile_radius = value; }
349     inline void set_tile_diameter (int value) { tile_diameter = value; }
350     inline void set_units (int value) { units = value; }
351     inline void set_tris_or_culled (int value) { tris_or_culled = value; }
352     inline void set_time_offset (int value) { time_offset = value; }
353     inline void set_time_offset_type (fgTimingOffsetType value) {
354         time_offset_type = value;
355     }
356     inline void cycle_view_mode() { 
357         if ( view_mode == FG_VIEW_PILOT ) {
358             view_mode = FG_VIEW_FOLLOW;
359         } else if ( view_mode == FG_VIEW_FOLLOW ) {
360             view_mode = FG_VIEW_PILOT;
361         }
362     }
363
364     inline void set_network_olk( bool net ) { network_olk = net; }
365     inline void set_net_id( const string id ) { net_id = id; }
366
367 private:
368
369     void parse_control( const string& mode );
370     double parse_time( const string& time_str );
371     long int parse_date( const string& date_str );
372     double parse_degree( const string& degree_str );
373     int parse_time_offset( const string& time_str );
374     int parse_tile_radius( const string& arg );
375     int parse_fdm( const string& fm );
376     double parse_fov( const string& arg );
377     bool parse_channel( const string& type, const string& channel_str );
378 };
379
380
381 extern fgOPTIONS current_options;
382
383
384 #endif /* _OPTIONS_HXX */
385
386