]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.hxx
Better internationalization infrastructure. We now supports the "LANG"
[flightgear.git] / src / Main / globals.hxx
1 // globals.hxx -- Global state that needs to be shared among the sim modules
2 //
3 // Written by Curtis Olson, started July 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
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 _GLOBALS_HXX
25 #define _GLOBALS_HXX
26
27 #include <simgear/compiler.h>
28
29 #include <vector>
30 #include STL_STRING
31
32 SG_USING_STD( vector );
33 SG_USING_STD( string );
34
35 typedef vector<string> string_list;
36
37
38 // Forward declarations
39
40 // This file is included, directly or indirectly, almost everywhere in
41 // FlightGear, so if any of its dependencies changes, most of the sim
42 // has to be recompiled.  Using these forward declarations helps us to
43 // avoid including a lot of header files (and thus, a lot of
44 // dependencies).  Since Most of the methods simply set or return
45 // pointers, we don't need to know anything about the class details
46 // anyway.
47
48 class SGEphemeris;
49
50 class SGMagVar;
51 class SGRoute;
52 class SGTime;
53 class SGPropertyNode;
54 class SGCommandMgr;
55
56 class FGLogger;
57 class FGEnvironmentMgr;
58 class FGEnvironment;
59 class FGControls;
60 class FGSteam;
61 class FGSoundMgr;
62 class FGSystemMgr;
63 class FGInstrumentMgr;
64 class FGAutopilot;
65 class FGFX;
66 class FGViewMgr;
67 class FGViewer;
68 class FGATCMgr;
69 class FGATCDisplay;
70 class FGAIMgr;
71 class FGModelLoader;
72 class FGTextureLoader;
73 class FGAircraftModel;
74 class FGModelMgr;
75 class FGScenery;
76 class FGIO;
77
78 /**
79  * Bucket for subsystem pointers representing the sim's state.
80  */
81 class FGGlobals
82 {
83
84 private:
85
86     // Number of milliseconds elapsed since the start of the program.
87     double sim_time_sec;
88
89     // Root of FlightGear data tree
90     string fg_root;
91
92     // Root of FlightGear scenery tree
93     string fg_scenery;
94
95 #if 0
96     // Freeze sim
97     bool freeze;
98 #endif
99
100     // Fullscreen mode for old 3DFX cards.
101 #if defined(FX) && defined(XMESA)
102     bool fullscreen;
103 #endif
104
105     // An offset in seconds from the true time.  Allows us to adjust
106     // the effective time of day.
107     long int warp;
108
109     // How much to change the value of warp each iteration.  Allows us
110     // to make time progress faster than normal (or even run in reverse.)
111     long int warp_delta;
112
113     // Logger
114     FGLogger *logger;
115
116     // Time structure
117     SGTime *time_params;
118
119     // Sky structures
120     SGEphemeris *ephem;
121
122     // Magnetic Variation
123     SGMagVar *mag;
124
125     // Current autopilot
126     FGAutopilot *autopilot;
127
128     // Global autopilot "route"
129     SGRoute *route;
130
131     // sound manager
132     FGSoundMgr *soundmgr;
133
134     // sound-effects manager
135     FGFX *fx;
136
137     // aircraft system manager
138     FGSystemMgr * systemmgr;
139
140     // aircraft instrument manager
141     FGInstrumentMgr * instrumentmgr;
142
143     // environment information
144     FGEnvironmentMgr * environment_mgr;
145
146     // ATC manager
147     FGATCMgr *ATC_mgr;
148
149     // ATC Renderer
150     FGATCDisplay *ATC_display;
151
152     // AI manager
153     FGAIMgr *AI_mgr;
154
155     // control input state
156     FGControls *controls;
157
158     // Steam instruments
159     FGSteam *steam;
160
161     // viewer manager
162     FGViewMgr *viewmgr;
163
164     // properties
165     SGPropertyNode *props;
166     SGPropertyNode *initial_state;
167
168     // localization
169     SGPropertyNode *locale;
170
171     SGCommandMgr *commands;
172
173     FGModelLoader * model_loader;
174
175     FGTextureLoader * texture_loader;
176
177     FGAircraftModel *acmodel;
178
179     FGModelMgr * model_mgr;
180
181     // list of serial port-like configurations
182     string_list *channel_options_list;
183
184     // FlightGear scenery manager
185     FGScenery *scenery;
186
187     FGIO* io;
188
189 public:
190
191     FGGlobals();
192     ~FGGlobals();
193
194     inline double get_sim_time_sec () const { return sim_time_sec; }
195     inline void inc_sim_time_sec (double dt) { sim_time_sec += dt; }
196     inline void set_sim_time_sec (double t) { sim_time_sec = t; }
197
198     inline const string &get_fg_root () const { return fg_root; }
199     inline void set_fg_root (const string &root) { fg_root = root; }
200
201     inline const string &get_fg_scenery () const { return fg_scenery; }
202     inline void set_fg_scenery (const string &scenery) {
203       fg_scenery = scenery;
204     }
205
206 #if 0
207     inline bool get_freeze() const { return freeze; }
208     inline void set_freeze( bool f ) { freeze = f; }
209 #endif
210
211 #if defined(FX) && defined(XMESA)
212     inline bool get_fullscreen() const { return fullscreen; }
213     inline bool set_fullscreen( bool f ) { fullscreen = f; }
214 #endif
215
216     inline long int get_warp() const { return warp; }
217     inline void set_warp( long int w ) { warp = w; }
218     inline void inc_warp( long int w ) { warp += w; }
219
220     inline long int get_warp_delta() const { return warp_delta; }
221     inline void set_warp_delta( long int d ) { warp_delta = d; }
222     inline void inc_warp_delta( long int d ) { warp_delta += d; }
223
224     inline FGLogger * get_logger () { return logger; }
225     inline void set_logger (FGLogger * l) { logger = l; }
226
227     inline SGTime *get_time_params() const { return time_params; }
228     inline void set_time_params( SGTime *t ) { time_params = t; }
229
230     inline SGEphemeris *get_ephem() const { return ephem; }
231     inline void set_ephem( SGEphemeris *e ) { ephem = e; }
232
233     inline SGMagVar *get_mag() const { return mag; }
234     inline void set_mag( SGMagVar *m ) { mag = m; }
235
236     inline FGAutopilot *get_autopilot() const { return autopilot; }
237     inline void set_autopilot( FGAutopilot *ap) { autopilot = ap; }
238
239     inline SGRoute *get_route() const { return route; }
240     inline void set_route( SGRoute *r ) { route = r; }
241
242     inline FGEnvironmentMgr * get_environment_mgr() {
243       return environment_mgr;
244     }
245     inline void set_environment_mgr(FGEnvironmentMgr * mgr) {
246       environment_mgr = mgr;
247     }
248
249     inline FGATCMgr *get_ATC_mgr() const { return ATC_mgr; }
250     inline void set_ATC_mgr( FGATCMgr *a ) {ATC_mgr = a; }
251
252     inline FGATCDisplay *get_ATC_display() const { return ATC_display; }
253     inline void set_ATC_display( FGATCDisplay *d ) {ATC_display = d; } 
254     
255     inline FGAIMgr *get_AI_mgr() const { return AI_mgr; }
256     inline void set_AI_mgr( FGAIMgr *a ) {AI_mgr = a; }
257
258     inline FGSoundMgr *get_soundmgr() const { return soundmgr; }
259     inline void set_soundmgr( FGSoundMgr *sm ) { soundmgr = sm; }
260
261     inline FGSystemMgr *get_systemmgr() const { return systemmgr; }
262
263     inline FGInstrumentMgr *get_instrumentmgr() const { return instrumentmgr; }
264
265     inline FGFX *get_fx() const { return fx; }
266     inline void set_fx( FGFX *x ) { fx = x; }
267
268     inline FGControls *get_controls() const { return controls; }
269     inline void set_controls( FGControls *c ) { controls = c; }
270
271     inline FGSteam *get_steam() const { return steam; }
272     inline void set_steam( FGSteam *s ) { steam = s; }
273
274     inline FGViewMgr *get_viewmgr() const { return viewmgr; }
275     inline void set_viewmgr( FGViewMgr *vm ) { viewmgr = vm; }
276     FGViewer *get_current_view() const;
277
278     inline SGPropertyNode *get_props () { return props; }
279     inline void set_props( SGPropertyNode *n ) { props = n; }
280
281     inline SGPropertyNode *get_locale () { return locale; }
282     inline void set_locale( SGPropertyNode *n ) { locale = n; }
283
284     inline SGCommandMgr *get_commands () { return commands; }
285
286     inline FGModelLoader * get_model_loader () { return model_loader; }
287
288     inline void set_model_loader (FGModelLoader * loader) {
289         model_loader = loader;
290     }
291
292     inline FGTextureLoader * get_texture_loader () { return texture_loader; }
293
294     inline void set_texture_loader (FGTextureLoader * loader) {
295         texture_loader = loader;
296     }
297
298     inline FGAircraftModel *get_aircraft_model () { return acmodel; }
299
300     inline void set_aircraft_model (FGAircraftModel * model)
301     {
302         acmodel = model;
303     }
304
305     inline FGModelMgr *get_model_mgr () { return model_mgr; }
306
307     inline void set_model_mgr (FGModelMgr * mgr)
308     {
309       model_mgr = mgr;
310     }
311
312     inline string_list *get_channel_options_list () {
313         return channel_options_list;
314     }
315     inline void set_channel_options_list( string_list *l ) {
316         channel_options_list = l;
317     }
318
319     inline FGScenery * get_scenery () const { return scenery; }
320     inline void set_scenery ( FGScenery *s ) { scenery = s; }
321
322     FGIO* get_io() const { return io; }
323
324     /**
325      * Save the current state as the initial state.
326      */
327     void saveInitialState ();
328
329
330     /**
331      * Restore the saved initial state, if any.
332      */
333     void restoreInitialState ();
334
335 };
336
337
338 extern FGGlobals *globals;
339
340
341 #endif // _GLOBALS_HXX