]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.hxx
Added FGEnvironmentMgr to provide information on the environment in
[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
33 #include <simgear/ephemeris/ephemeris.hxx>
34 #include <simgear/magvar/magvar.hxx>
35 #include <simgear/route/route.hxx>
36 #include <simgear/timing/sg_time.hxx>
37 #include <simgear/misc/commands.hxx>
38 #include <simgear/misc/props.hxx>
39
40 SG_USING_STD( vector );
41 SG_USING_STD( string );
42
43 typedef vector<string> string_list;
44
45 #include <Environment/environment_mgr.hxx>
46
47
48 // Forward declarations
49 class FGEnvironmentMgr;
50 class FGEnvironment;
51 class FGControls;
52 class FGSoundMgr;
53 class FGFX;
54 class FGViewMgr;
55 class FGViewer;
56
57 class FGGlobals {
58
59 private:
60
61     // Root of FlightGear data tree
62     string fg_root;
63
64     // Root of FlightGear scenery tree
65     string fg_scenery;
66
67 #if 0
68     // Freeze sim
69     bool freeze;
70 #endif
71
72     // Fullscreen mode for old 3DFX cards.
73 #if defined(FX) && defined(XMESA)
74     bool fullscreen;
75 #endif
76
77     // An offset in seconds from the true time.  Allows us to adjust
78     // the effective time of day.
79     long int warp;
80
81     // How much to change the value of warp each iteration.  Allows us
82     // to make time progress faster than normal (or even run in reverse.)
83     long int warp_delta;
84
85     // Time structure
86     SGTime *time_params;
87
88     // Sky structures
89     SGEphemeris *ephem;
90
91     // Magnetic Variation
92     SGMagVar *mag;
93
94     // Global autopilot "route"
95     SGRoute *route;
96
97     // sound manager
98     FGSoundMgr *soundmgr;
99
100     // sound-effects manager
101     FGFX *fx;
102
103     // environment information
104     FGEnvironmentMgr * environment_mgr;
105
106     // control input state
107     FGControls *controls;
108
109     // viewer manager
110     FGViewMgr *viewmgr;
111     FGViewer *current_view;
112
113     // properties
114     SGPropertyNode *props;
115     SGPropertyNode *initial_state;
116
117     SGCommandMgr *commands;
118
119     // list of serial port-like configurations
120     string_list *channel_options_list;
121
122 public:
123
124     FGGlobals();
125     ~FGGlobals();
126
127     inline const string &get_fg_root () const { return fg_root; }
128     inline void set_fg_root (const string &root) { fg_root = root; }
129
130     inline const string &get_fg_scenery () const { return fg_scenery; }
131     inline void set_fg_scenery (const string &scenery) {
132       fg_scenery = scenery;
133     }
134
135 #if 0
136     inline bool get_freeze() const { return freeze; }
137     inline void set_freeze( bool f ) { freeze = f; }
138 #endif
139
140 #if defined(FX) && defined(XMESA)
141     inline bool get_fullscreen() const { return fullscreen; }
142     inline bool set_fullscreen( bool f ) { fullscreen = f; }
143 #endif
144
145     inline long int get_warp() const { return warp; }
146     inline void set_warp( long int w ) { warp = w; }
147     inline void inc_warp( long int w ) { warp += w; }
148
149     inline long int get_warp_delta() const { return warp_delta; }
150     inline void set_warp_delta( long int d ) { warp_delta = d; }
151     inline void inc_warp_delta( long int d ) { warp_delta += d; }
152
153     inline SGTime *get_time_params() const { return time_params; }
154     inline void set_time_params( SGTime *t ) { time_params = t; }
155
156     inline SGEphemeris *get_ephem() const { return ephem; }
157     inline void set_ephem( SGEphemeris *e ) { ephem = e; }
158
159     inline SGMagVar *get_mag() const { return mag; }
160     inline void set_mag( SGMagVar *m ) { mag = m; }
161
162     inline SGRoute *get_route() const { return route; }
163     inline void set_route( SGRoute *r ) { route = r; }
164
165     inline FGEnvironmentMgr * get_environment_mgr() {
166       return environment_mgr;
167     }
168     inline void set_environment_mgr(FGEnvironmentMgr * mgr) {
169       environment_mgr = mgr;
170     }
171     inline const FGEnvironment * get_environment() const {
172       return environment_mgr->getEnvironment();
173     }
174     inline const FGEnvironment * get_environment(double lat, double lon,
175                                                  double alt) const {
176       return environment_mgr->getEnvironment(lat, lon, alt);
177     }
178
179     inline FGSoundMgr *get_soundmgr() const { return soundmgr; }
180     inline void set_soundmgr( FGSoundMgr *sm ) { soundmgr = sm; }
181
182     inline FGFX *get_fx() const { return fx; }
183     inline void set_fx( FGFX *x ) { fx = x; }
184
185     inline FGControls *get_controls() const { return controls; }
186     inline void set_controls( FGControls *c ) { controls = c; }
187
188     inline FGViewMgr *get_viewmgr() const { return viewmgr; }
189     inline void set_viewmgr( FGViewMgr *vm ) { viewmgr = vm; }
190     inline FGViewer *get_current_view() const { return current_view; }
191     inline void set_current_view( FGViewer *v ) { current_view = v; }
192
193     inline SGPropertyNode *get_props () { return props; }
194     inline void set_props( SGPropertyNode *n ) { props = n; }
195
196     inline SGCommandMgr *get_commands () { return commands; }
197
198     inline string_list *get_channel_options_list () {
199         return channel_options_list;
200     }
201     inline void set_channel_options_list( string_list *l ) {
202         channel_options_list = l;
203     }
204
205
206     /**
207      * Save the current state as the initial state.
208      */
209     void saveInitialState ();
210
211
212     /**
213      * Restore the saved initial state, if any.
214      */
215     void restoreInitialState ();
216
217 };
218
219
220 extern FGGlobals *globals;
221
222
223 #endif // _GLOBALS_HXX
224
225