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