]> git.mxchange.org Git - flightgear.git/blob - src/Time/TimeManager.hxx
Merge branch 'next' of http://git.gitorious.org/fg/flightgear into next
[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 #include <simgear/props/props.hxx>
26
27 // forward decls
28 class SGTime;
29
30 class TimeManager : public SGSubsystem, public SGPropertyChangeListener
31 {
32 public:
33   TimeManager();
34   
35   void computeTimeDeltas(double& simDt, double& realDt);
36   
37   virtual void init();
38   virtual void reinit();
39   virtual void postinit();
40   virtual void shutdown();
41   
42   void update(double dt);
43   
44 // SGPropertyChangeListener overrides
45   virtual void valueChanged(SGPropertyNode *);
46 private:
47   
48   /**
49    * Ensure a consistent update-rate using a combination of
50    * sleep()-ing and busy-waiting.  
51    */
52   void throttleUpdateRate();
53   
54   /**
55    * Compute frame (update) rate and write it to a property
56    */
57   void computeFrameRate();
58   
59   void updateLocalTime();
60   
61   // set up a time offset (aka warp) if one is specified
62   void initTimeOffset();
63   
64   bool _inited;
65   SGTime* _impl;
66   SGTimeStamp _lastStamp;
67   bool _firstUpdate;
68   double _dtRemainder;
69   SGPropertyNode_ptr _maxDtPerFrame;
70   SGPropertyNode_ptr _clockFreeze;
71   SGPropertyNode_ptr _timeOverride;
72   SGPropertyNode_ptr _warp;
73   SGPropertyNode_ptr _warpDelta;
74   
75   bool _lastClockFreeze;
76   bool _adjustWarpOnUnfreeze;
77   
78   SGPropertyNode_ptr _longitudeDeg;
79   SGPropertyNode_ptr _latitudeDeg;
80   
81 // frame-rate / update-rate counters  
82   SGPropertyNode_ptr _frameRate;
83   time_t _lastFrameTime;
84   int _frameCount;
85 };
86
87 #endif // of FG_TIME_TIMEMANAGER_HXX