]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.hxx
5521a2bf66bca03e459f5f50833e53dac5490a33
[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 class FGGlobals {
29
30 private:
31
32     // Freeze sim
33     bool freeze;
34
35     // An offset in seconds from the true time.  Allows us to adjust
36     // the effective time of day.
37     long int warp;
38
39     // How much to change the value of warp each iteration.  Allows us
40     // to make time progress faster than normal (or even run in reverse.)
41     long int warp_delta;
42
43 public:
44
45     FGGlobals();
46     ~FGGlobals();
47
48     inline bool get_frozen() const { return freeze; }
49     inline void toggle_frozen() { freeze = !freeze; }
50
51     inline long int get_warp() const { return warp; }
52     inline void set_warp( long int w ) { warp = w; }
53     inline void inc_warp( long int w ) { warp += w; }
54
55     inline long int get_warp_delta() const { return warp_delta; }
56     inline void set_warp_delta( long int d ) { warp_delta = d; }
57     inline void inc_warp_delta( long int d ) { warp_delta += d; }
58 };
59
60
61 extern FGGlobals *globals;
62
63
64 #endif // _GLOBALS_HXX
65
66