]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.hxx
Initial revision.
[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 "viewmgr.hxx"
33
34 SG_USING_STD( vector );
35 SG_USING_STD( string );
36
37 typedef vector<string> string_list;
38
39
40 // Forward declarations
41
42 // This file is included, directly or indirectly, almost everywhere in
43 // FlightGear, so if any of its dependencies changes, most of the sim
44 // has to be recompiled.  Using these forward declarations helps us to
45 // avoid including a lot of header files (and thus, a lot of
46 // dependencies).  Since Most of the methods simply set or return
47 // pointers, we don't need to know anything about the class details
48 // anyway.
49
50 class SGEphemeris;
51 class SGMagVar;
52 class SGRoute;
53 class SGTime;
54 class SGPropertyNode;
55 class SGCommandMgr;
56
57 class FGLogger;
58 class FGEnvironmentMgr;
59 class FGEnvironment;
60 class FGControls;
61 class FGSoundMgr;
62 class FGAutopilot;
63 class FGFX;
64 class FGViewer;
65 class FGATCMgr;
66 class FGATCDisplay;
67 class FGAIMgr;
68
69
70 /**
71  * Bucket for subsystem pointers representing the sim's state.
72  */
73 class FGGlobals
74 {
75
76 private:
77
78     // Number of milliseconds elapsed since the start of the program.
79     long elapsed_time_ms;
80
81     // Root of FlightGear data tree
82     string fg_root;
83
84     // Root of FlightGear scenery tree
85     string fg_scenery;
86
87 #if 0
88     // Freeze sim
89     bool freeze;
90 #endif
91
92     // Fullscreen mode for old 3DFX cards.
93 #if defined(FX) && defined(XMESA)
94     bool fullscreen;
95 #endif
96
97     // An offset in seconds from the true time.  Allows us to adjust
98     // the effective time of day.
99     long int warp;
100
101     // How much to change the value of warp each iteration.  Allows us
102     // to make time progress faster than normal (or even run in reverse.)
103     long int warp_delta;
104
105     // Logger
106     FGLogger * logger;
107
108     // Time structure
109     SGTime *time_params;
110
111     // Sky structures
112     SGEphemeris *ephem;
113
114     // Magnetic Variation
115     SGMagVar *mag;
116
117     // Current autopilot
118     FGAutopilot *autopilot;
119
120     // Global autopilot "route"
121     SGRoute *route;
122
123     // sound manager
124     FGSoundMgr *soundmgr;
125
126     // sound-effects manager
127     FGFX *fx;
128
129     // environment information
130     FGEnvironmentMgr * environment_mgr;
131
132     // ATC manager
133     FGATCMgr *ATC_mgr;
134
135     // ATC Renderer
136     FGATCDisplay *ATC_display;
137
138     // AI manager
139     FGAIMgr *AI_mgr;
140
141     // control input state
142     FGControls *controls;
143
144     // viewer manager
145     FGViewMgr *viewmgr;
146
147     // properties
148     SGPropertyNode *props;
149     SGPropertyNode *initial_state;
150
151     SGCommandMgr *commands;
152
153     // list of serial port-like configurations
154     string_list *channel_options_list;
155
156 public:
157
158     FGGlobals();
159     ~FGGlobals();
160
161     inline long get_elapsed_time_ms () const { return elapsed_time_ms; }
162     inline void set_elapsed_time_ms (long t) { elapsed_time_ms = t; }
163
164     inline const string &get_fg_root () const { return fg_root; }
165     inline void set_fg_root (const string &root) { fg_root = root; }
166
167     inline const string &get_fg_scenery () const { return fg_scenery; }
168     inline void set_fg_scenery (const string &scenery) {
169       fg_scenery = scenery;
170     }
171
172 #if 0
173     inline bool get_freeze() const { return freeze; }
174     inline void set_freeze( bool f ) { freeze = f; }
175 #endif
176
177 #if defined(FX) && defined(XMESA)
178     inline bool get_fullscreen() const { return fullscreen; }
179     inline bool set_fullscreen( bool f ) { fullscreen = f; }
180 #endif
181
182     inline long int get_warp() const { return warp; }
183     inline void set_warp( long int w ) { warp = w; }
184     inline void inc_warp( long int w ) { warp += w; }
185
186     inline long int get_warp_delta() const { return warp_delta; }
187     inline void set_warp_delta( long int d ) { warp_delta = d; }
188     inline void inc_warp_delta( long int d ) { warp_delta += d; }
189
190     inline FGLogger * get_logger () { return logger; }
191     inline void set_logger (FGLogger * l) { logger = l; }
192
193     inline SGTime *get_time_params() const { return time_params; }
194     inline void set_time_params( SGTime *t ) { time_params = t; }
195
196     inline SGEphemeris *get_ephem() const { return ephem; }
197     inline void set_ephem( SGEphemeris *e ) { ephem = e; }
198
199     inline SGMagVar *get_mag() const { return mag; }
200     inline void set_mag( SGMagVar *m ) { mag = m; }
201
202     inline FGAutopilot *get_autopilot() const { return autopilot; }
203     inline void set_autopilot( FGAutopilot *ap) { autopilot = ap; }
204
205     inline SGRoute *get_route() const { return route; }
206     inline void set_route( SGRoute *r ) { route = r; }
207
208     inline FGEnvironmentMgr * get_environment_mgr() {
209       return environment_mgr;
210     }
211     inline void set_environment_mgr(FGEnvironmentMgr * mgr) {
212       environment_mgr = mgr;
213     }
214     const FGEnvironment * get_environment() const;
215     const FGEnvironment * get_environment(double lat, double lon,
216                                           double alt) const;
217
218     inline FGATCMgr *get_ATC_mgr() const { return ATC_mgr; }
219     inline void set_ATC_mgr( FGATCMgr *a ) {ATC_mgr = a; }
220
221     inline FGATCDisplay *get_ATC_display() const { return ATC_display; }
222     inline void set_ATC_display( FGATCDisplay *d ) {ATC_display = d; } 
223     
224     inline FGAIMgr *get_AI_mgr() const { return AI_mgr; }
225     inline void set_AI_mgr( FGAIMgr *a ) {AI_mgr = a; }
226
227     inline FGSoundMgr *get_soundmgr() const { return soundmgr; }
228     inline void set_soundmgr( FGSoundMgr *sm ) { soundmgr = sm; }
229
230     inline FGFX *get_fx() const { return fx; }
231     inline void set_fx( FGFX *x ) { fx = x; }
232
233     inline FGControls *get_controls() const { return controls; }
234     inline void set_controls( FGControls *c ) { controls = c; }
235
236     inline FGViewMgr *get_viewmgr() const { return viewmgr; }
237     inline void set_viewmgr( FGViewMgr *vm ) { viewmgr = vm; }
238     inline FGViewer *get_current_view() const {
239       return viewmgr->get_current_view();
240     }
241
242     inline SGPropertyNode *get_props () { return props; }
243     inline void set_props( SGPropertyNode *n ) { props = n; }
244
245     inline SGCommandMgr *get_commands () { return commands; }
246
247     inline string_list *get_channel_options_list () {
248         return channel_options_list;
249     }
250     inline void set_channel_options_list( string_list *l ) {
251         channel_options_list = l;
252     }
253
254
255     /**
256      * Save the current state as the initial state.
257      */
258     void saveInitialState ();
259
260
261     /**
262      * Restore the saved initial state, if any.
263      */
264     void restoreInitialState ();
265
266 };
267
268
269 extern FGGlobals *globals;
270
271
272 #endif // _GLOBALS_HXX