]> git.mxchange.org Git - flightgear.git/blob - src/Time/TimeManager.hxx
CMake update for new KLN89 file.
[flightgear.git] / src / Time / TimeManager.hxx
1 // TimeManager.hxx -- simulation-wide time management
2 //
3 // Written by James Turner, started July 2010.
4 //
5 // Copyright (C) 2010  Curtis L. Olson  - http://www.flightgear.org/~curt
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifndef FG_TIME_TIMEMANAGER_HXX
22 #define FG_TIME_TIMEMANAGER_HXX
23
24 #include <simgear/structure/subsystem_mgr.hxx>
25
26 // forward decls
27 class SGTime;
28
29 class TimeManager : public SGSubsystem, public SGPropertyChangeListener
30 {
31 public:
32   TimeManager();
33   
34   void computeTimeDeltas(double& simDt, double& realDt);
35   
36   virtual void init();
37   virtual void reinit();
38   virtual void postinit();
39   virtual void shutdown();
40   
41   void update(double dt);
42   
43 // SGPropertyChangeListener overrides
44   virtual void valueChanged(SGPropertyNode *);
45 private:
46   
47   /**
48    * Ensure a consistent update-rate using a combination of
49    * sleep()-ing and busy-waiting.  
50    */
51   void throttleUpdateRate();
52   
53   /**
54    * Compute frame (update) rate and write it to a property
55    */
56   void computeFrameRate();
57   
58   void updateLocalTime();
59   
60   // set up a time offset (aka warp) if one is specified
61   void initTimeOffset();
62   
63   bool _inited;
64   SGTime* _impl;
65   SGTimeStamp _lastStamp;
66   bool _firstUpdate;
67   double _dtRemainder;
68   SGPropertyNode_ptr _maxDtPerFrame;
69   SGPropertyNode_ptr _clockFreeze;
70   SGPropertyNode_ptr _timeOverride;
71   SGPropertyNode_ptr _warp;
72   SGPropertyNode_ptr _warpDelta;
73   
74   bool _lastClockFreeze;
75   bool _adjustWarpOnUnfreeze;
76   
77   SGPropertyNode_ptr _longitudeDeg;
78   SGPropertyNode_ptr _latitudeDeg;
79   
80 // frame-rate / update-rate counters  
81   SGPropertyNode_ptr _frameRate;
82   time_t _lastFrameTime;
83   int _frameCount;
84 };
85
86 #endif // of FG_TIME_TIMEMANAGER_HXX