]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.hxx
827debbcabcdc841c9405a7d6aa9c9eb5b242b78
[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 #include "fgfs.hxx"
33
34
35 SG_USING_STD( vector );
36 SG_USING_STD( string );
37
38 typedef vector<string> string_list;
39
40
41 // Forward declarations
42
43 // This file is included, directly or indirectly, almost everywhere in
44 // FlightGear, so if any of its dependencies changes, most of the sim
45 // has to be recompiled.  Using these forward declarations helps us to
46 // avoid including a lot of header files (and thus, a lot of
47 // dependencies).  Since Most of the methods simply set or return
48 // pointers, we don't need to know anything about the class details
49 // anyway.
50
51 class SGEphemeris;
52
53 class SGCommandMgr;
54 class SGMagVar;
55 class SGMaterialLib;
56 class SGModelLib;
57 class SGPropertyNode;
58 class SGRoute;
59 class SGTime;
60 class SGSoundMgr;
61
62 class FGAirportList;
63 class FGRunwayList;
64 class FGAIMgr;
65 class FGATCMgr;
66 class FGATCDisplay;
67 class FGAircraftModel;
68 class FGAutopilot;
69 class FGControls;
70 class FGIO;
71 class FGModelMgr;
72 class FGScenery;
73 #ifdef FG_MPLAYER_AS
74 class FGMultiplayRxMgr;
75 class FGMultiplayTxMgr;
76 #endif
77 class FGPanel;
78 class FGTileMgr;
79 class FGViewMgr;
80 class FGViewer;
81
82
83 /**
84  * Bucket for subsystem pointers representing the sim's state.
85  */
86 class FGGlobals
87 {
88
89 private:
90
91     FGSubsystemMgr * subsystem_mgr;
92
93     // Number of milliseconds elapsed since the start of the program.
94     double sim_time_sec;
95
96     // Root of FlightGear data tree
97     string fg_root;
98
99     // Root of FlightGear scenery tree
100     string fg_scenery;
101
102     // Fullscreen mode for old 3DFX cards.
103 #if defined(FX) && defined(XMESA)
104     bool fullscreen;
105 #endif
106
107     // An offset in seconds from the true time.  Allows us to adjust
108     // the effective time of day.
109     long int warp;
110
111     // How much to change the value of warp each iteration.  Allows us
112     // to make time progress faster than normal (or even run in reverse.)
113     long int warp_delta;
114
115     // Time structure
116     SGTime *time_params;
117
118     // Sky structures
119     SGEphemeris *ephem;
120
121     // Magnetic Variation
122     SGMagVar *mag;
123
124     // Material properties library
125     SGMaterialLib *matlib;
126
127     // Current autopilot
128     FGAutopilot *autopilot;
129
130     // Global autopilot "route"
131     SGRoute *route;
132
133     // 2D panel
134     FGPanel *current_panel;
135
136     // sound manager
137     SGSoundMgr *soundmgr;
138
139     // Simple Airport List
140     FGAirportList *airports;
141
142     // Runway List
143     FGRunwayList *runways;
144
145     // ATC manager
146     FGATCMgr *ATC_mgr;
147
148     // ATC Renderer
149     FGATCDisplay *ATC_display;
150
151     // AI manager
152     FGAIMgr *AI_mgr;
153
154     // control input state
155     FGControls *controls;
156
157     // viewer manager
158     FGViewMgr *viewmgr;
159
160     // properties
161     SGPropertyNode *props;
162     SGPropertyNode *initial_state;
163
164     // localization
165     SGPropertyNode *locale;
166
167     SGCommandMgr *commands;
168
169     SGModelLib *model_lib;
170
171     FGAircraftModel *acmodel;
172
173     FGModelMgr * model_mgr;
174
175     // list of serial port-like configurations
176     string_list *channel_options_list;
177
178     // FlightGear scenery manager
179     FGScenery *scenery;
180
181     // Tile manager
182     FGTileMgr *tile_mgr;
183
184     FGIO* io;
185
186 #ifdef FG_MPLAYER_AS
187     //Mulitplayer managers
188     FGMultiplayTxMgr *multiplayer_tx_mgr;
189
190     FGMultiplayRxMgr *multiplayer_rx_mgr;
191 #endif
192
193 public:
194
195     FGGlobals();
196     virtual ~FGGlobals();
197
198     virtual FGSubsystemMgr * get_subsystem_mgr () const;
199
200     virtual FGSubsystem * get_subsystem (const char * name);
201
202     virtual void add_subsystem (const char * name,
203                                 FGSubsystem * subsystem,
204                                 FGSubsystemMgr::GroupType
205                                   type = FGSubsystemMgr::GENERAL,
206                                 double min_time_sec = 0);
207
208     inline double get_sim_time_sec () const { return sim_time_sec; }
209     inline void inc_sim_time_sec (double dt) { sim_time_sec += dt; }
210     inline void set_sim_time_sec (double t) { sim_time_sec = t; }
211
212     inline const string &get_fg_root () const { return fg_root; }
213     void set_fg_root (const string &root);
214
215     inline const string &get_fg_scenery () const { return fg_scenery; }
216     inline void set_fg_scenery (const string &scenery) {
217       fg_scenery = scenery;
218     }
219
220 #if defined(FX) && defined(XMESA)
221     inline bool get_fullscreen() const { return fullscreen; }
222     inline bool set_fullscreen( bool f ) { fullscreen = f; }
223 #endif
224
225     inline long int get_warp() const { return warp; }
226     inline void set_warp( long int w ) { warp = w; }
227     inline void inc_warp( long int w ) { warp += w; }
228
229     inline long int get_warp_delta() const { return warp_delta; }
230     inline void set_warp_delta( long int d ) { warp_delta = d; }
231     inline void inc_warp_delta( long int d ) { warp_delta += d; }
232
233     inline SGTime *get_time_params() const { return time_params; }
234     inline void set_time_params( SGTime *t ) { time_params = t; }
235
236     inline SGEphemeris *get_ephem() const { return ephem; }
237     inline void set_ephem( SGEphemeris *e ) { ephem = e; }
238
239     inline SGMagVar *get_mag() const { return mag; }
240     inline void set_mag( SGMagVar *m ) { mag = m; }
241
242     inline SGMaterialLib *get_matlib() const { return matlib; }
243     inline void set_matlib( SGMaterialLib *m ) { matlib = m; }
244
245     inline FGAutopilot *get_autopilot() const { return autopilot; }
246     inline void set_autopilot( FGAutopilot *ap) { autopilot = ap; }
247
248     inline SGRoute *get_route() const { return route; }
249     inline void set_route( SGRoute *r ) { route = r; }
250
251     inline FGAirportList *get_airports() const { return airports; }
252     inline void set_airports( FGAirportList *a ) {airports = a; }
253
254     inline FGRunwayList *get_runways() const { return runways; }
255     inline void set_runways( FGRunwayList *r ) {runways = r; }
256
257     inline FGATCMgr *get_ATC_mgr() const { return ATC_mgr; }
258     inline void set_ATC_mgr( FGATCMgr *a ) {ATC_mgr = a; }
259
260     inline FGATCDisplay *get_ATC_display() const { return ATC_display; }
261     inline void set_ATC_display( FGATCDisplay *d ) {ATC_display = d; }
262
263     inline FGAIMgr *get_AI_mgr() const { return AI_mgr; }
264     inline void set_AI_mgr( FGAIMgr *a ) {AI_mgr = a; }
265
266     inline FGPanel *get_current_panel() const { return current_panel; }
267     inline void set_current_panel( FGPanel *cp ) { current_panel = cp; }
268
269     inline SGSoundMgr *get_soundmgr() const { return soundmgr; }
270     inline void set_soundmgr( SGSoundMgr *sm ) { soundmgr = sm; }
271
272     inline FGControls *get_controls() const { return controls; }
273     inline void set_controls( FGControls *c ) { controls = c; }
274
275     inline FGViewMgr *get_viewmgr() const { return viewmgr; }
276     inline void set_viewmgr( FGViewMgr *vm ) { viewmgr = vm; }
277     FGViewer *get_current_view() const;
278
279     inline SGPropertyNode *get_props () { return props; }
280     inline void set_props( SGPropertyNode *n ) { props = n; }
281
282     inline SGPropertyNode *get_locale () { return locale; }
283     inline void set_locale( SGPropertyNode *n ) { locale = n; }
284
285     inline SGCommandMgr *get_commands () { return commands; }
286
287     inline SGModelLib * get_model_lib () { return model_lib; }
288
289     inline void set_model_lib (SGModelLib *m) {
290         model_lib = m;
291     }
292
293     inline FGAircraftModel *get_aircraft_model () { return acmodel; }
294
295     inline void set_aircraft_model (FGAircraftModel * model)
296     {
297         acmodel = model;
298     }
299
300     inline FGModelMgr *get_model_mgr () { return model_mgr; }
301
302     inline void set_model_mgr (FGModelMgr * mgr)
303     {
304       model_mgr = mgr;
305     }
306
307 #ifdef FG_MPLAYER_AS
308     inline FGMultiplayTxMgr *get_multiplayer_tx_mgr () { return multiplayer_tx_mgr; }
309
310     inline void set_multiplayer_tx_mgr (FGMultiplayTxMgr * mgr)
311     {
312       multiplayer_tx_mgr = mgr;
313     }
314
315     inline FGMultiplayRxMgr *get_multiplayer_rx_mgr () { return multiplayer_rx_mgr; }
316
317     inline void set_multiplayer_rx_mgr (FGMultiplayRxMgr * mgr)
318     {
319       multiplayer_rx_mgr = mgr;
320     }
321 #endif
322
323     inline string_list *get_channel_options_list () {
324         return channel_options_list;
325     }
326     inline void set_channel_options_list( string_list *l ) {
327         channel_options_list = l;
328     }
329
330     inline FGScenery * get_scenery () const { return scenery; }
331     inline void set_scenery ( FGScenery *s ) { scenery = s; }
332
333     inline FGTileMgr * get_tile_mgr () const { return tile_mgr; }
334     inline void set_tile_mgr ( FGTileMgr *t ) { tile_mgr = t; }
335
336     FGIO* get_io() const { return io; }
337
338
339     /**
340      * Save the current state as the initial state.
341      */
342     void saveInitialState ();
343
344
345     /**
346      * Restore the saved initial state, if any.
347      */
348     void restoreInitialState ();
349
350 };
351
352
353 extern FGGlobals *globals;
354
355
356 #endif // _GLOBALS_HXX