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