]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.hxx
Minor 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
28 #include <simgear/ephemeris/ephemeris.hxx>
29 #include <simgear/magvar/magvar.hxx>
30 #include <simgear/route/route.hxx>
31 #include <simgear/timing/sg_time.hxx>
32 #include <simgear/misc/props.hxx>
33
34 #include "options.hxx"
35 #include "viewmgr.hxx"
36
37
38 class FGGlobals {
39
40 private:
41
42     // Freeze sim
43     bool freeze;
44
45     // An offset in seconds from the true time.  Allows us to adjust
46     // the effective time of day.
47     long int warp;
48
49     // How much to change the value of warp each iteration.  Allows us
50     // to make time progress faster than normal (or even run in reverse.)
51     long int warp_delta;
52
53     // Time structure
54     SGTime *time_params;
55
56     // Sky structures
57     SGEphemeris *ephem;
58
59     // Magnetic Variation
60     SGMagVar *mag;
61
62     // Global autopilot "route"
63     SGRoute *route;
64
65     // options
66     FGOptions *options;
67
68     // viewer maneger
69     FGViewMgr *viewmgr;
70     FGViewer *current_view;
71
72     // properties
73     SGPropertyNode *props;
74
75 public:
76
77     FGGlobals();
78     ~FGGlobals();
79
80     inline bool get_freeze() const { return freeze; }
81     inline void set_freeze( bool f ) { freeze = f; }
82
83     inline long int get_warp() const { return warp; }
84     inline void set_warp( long int w ) { warp = w; }
85     inline void inc_warp( long int w ) { warp += w; }
86
87     inline long int get_warp_delta() const { return warp_delta; }
88     inline void set_warp_delta( long int d ) { warp_delta = d; }
89     inline void inc_warp_delta( long int d ) { warp_delta += d; }
90
91     inline SGTime *get_time_params() const { return time_params; }
92     inline void set_time_params( SGTime *t ) { time_params = t; }
93
94     inline SGEphemeris *get_ephem() const { return ephem; }
95     inline void set_ephem( SGEphemeris *e ) { ephem = e; }
96
97     inline SGMagVar *get_mag() const { return mag; }
98     inline void set_mag( SGMagVar *m ) { mag = m; }
99
100     inline SGRoute *get_route() const { return route; }
101     inline void set_route( SGRoute *r ) { route = r; }
102
103     inline FGOptions *get_options() const { return options; }
104     inline void set_options( FGOptions *o ) { options = o; }
105
106     inline FGViewMgr *get_viewmgr() const { return viewmgr; }
107     inline void set_viewmgr( FGViewMgr *vm ) { viewmgr = vm; }
108     inline FGViewer *get_current_view() const { return current_view; }
109     inline void set_current_view( FGViewer *v ) { current_view = v; }
110
111     inline SGPropertyNode *get_props () { return props; }
112     inline void set_props( SGPropertyNode *n ) { props = n; }
113     // inline const SGPropertyNode &get_props () const { return props; }
114     
115 };
116
117
118 extern FGGlobals *globals;
119
120
121 #endif // _GLOBALS_HXX
122
123