]> git.mxchange.org Git - flightgear.git/blob - src/Time/TimeManager.hxx
c0a89c39a036d548ae3bf677ab54dea0acaa40c9
[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
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   
40   void update(double dt);
41   
42 private:
43   /**
44    * Ensure a consistent update-rate using a combination of
45    * sleep()-ing and busy-waiting.  
46    */
47   void throttleUpdateRate();
48   
49   /**
50    * Compute frame (update) rate and write it to a property
51    */
52   void computeFrameRate();
53   
54   void updateLocalTime();
55   
56   // set up a time offset (aka warp) if one is specified
57   void initTimeOffset();
58   
59   bool _inited;
60   SGTime* _impl;
61   SGTimeStamp _lastStamp;
62   bool _firstUpdate;
63   double _dtRemainder;
64   SGPropertyNode_ptr _maxDtPerFrame;
65   SGPropertyNode_ptr _clockFreeze;
66   SGPropertyNode_ptr _timeOverride;
67   bool _lastClockFreeze;
68
69   SGPropertyNode_ptr _longitudeDeg;
70   SGPropertyNode_ptr _latitudeDeg;
71   
72 // frame-rate / update-rate counters  
73   SGPropertyNode_ptr _frameRate;
74   time_t _lastFrameTime;
75   int _frameCount;
76 };
77
78 #endif // of FG_TIME_TIMEMANAGER_HXX