]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.hxx
SGTime 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/timing/sg_time.hxx>
30
31
32 class FGGlobals {
33
34 private:
35
36     // Freeze sim
37     bool freeze;
38
39     // An offset in seconds from the true time.  Allows us to adjust
40     // the effective time of day.
41     long int warp;
42
43     // How much to change the value of warp each iteration.  Allows us
44     // to make time progress faster than normal (or even run in reverse.)
45     long int warp_delta;
46
47     // Time structure
48     SGTime *time_params;
49
50     // Sky structures
51     SGEphemeris *ephem;
52
53 public:
54
55     FGGlobals();
56     ~FGGlobals();
57
58     inline bool get_freeze() const { return freeze; }
59     inline void set_freeze( bool f ) { freeze = f; }
60
61     inline long int get_warp() const { return warp; }
62     inline void set_warp( long int w ) { warp = w; }
63     inline void inc_warp( long int w ) { warp += w; }
64
65     inline long int get_warp_delta() const { return warp_delta; }
66     inline void set_warp_delta( long int d ) { warp_delta = d; }
67     inline void inc_warp_delta( long int d ) { warp_delta += d; }
68
69     inline SGTime *get_time_params() const { return time_params; }
70     inline void set_time_params( SGTime *t ) { time_params = t; }
71
72     inline SGEphemeris *get_ephem() const { return ephem; }
73     inline void set_ephem( SGEphemeris *e ) { ephem = e; }
74 };
75
76
77 extern FGGlobals *globals;
78
79
80 #endif // _GLOBALS_HXX
81
82