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