]> git.mxchange.org Git - flightgear.git/blob - src/Time/TimeManager.hxx
Merge branch 'next' of 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   
47   void setTimeOffset(const std::string& offset_type, int offset);
48 private:
49   
50   /**
51    * Ensure a consistent update-rate using a combination of
52    * sleep()-ing and busy-waiting.  
53    */
54   void throttleUpdateRate();
55   
56   /**
57    * Compute frame (update) rate and write it to a property
58    */
59   void computeFrameRate();
60   
61   void updateLocalTime();
62   
63   // set up a time offset (aka warp) if one is specified
64   void initTimeOffset();
65   
66   bool _inited;
67   SGTime* _impl;
68   SGTimeStamp _lastStamp;
69   bool _firstUpdate;
70   double _dtRemainder;
71   SGPropertyNode_ptr _maxDtPerFrame;
72   SGPropertyNode_ptr _clockFreeze;
73   SGPropertyNode_ptr _timeOverride;
74   SGPropertyNode_ptr _warp;
75   SGPropertyNode_ptr _warpDelta;
76   
77   bool _lastClockFreeze;
78   bool _adjustWarpOnUnfreeze;
79   
80   SGPropertyNode_ptr _longitudeDeg;
81   SGPropertyNode_ptr _latitudeDeg;
82   
83   // frame-rate / worst-case latency / update-rate counters
84   SGPropertyNode_ptr _frameRate;
85   SGPropertyNode_ptr _frameLatency;
86   time_t _lastFrameTime;
87   double _frameLatencyMax;
88   int _frameCount;
89 };
90
91 #endif // of FG_TIME_TIMEMANAGER_HXX