added unstable_tile object
[supertux.git] / src / timer.h
1 #ifndef __SUPERTUX_TIMER_H__
2 #define __SUPERTUX_TIMER_H__
3
4 extern float global_time;
5
6 /**
7  * new simpler timer designed to be used in the update functions of objects
8  */
9 class Timer2 // TODO rename later
10 {
11 public:
12   Timer2();
13   ~Timer2();
14
15   /** start the timer with the given period (in seconds).
16    * If cyclic=true then the timer willl be reset after each period.
17    * Set period to zero if you want to disable the timer.
18    */
19   void start(float period, bool cyclic = false);
20   /** returns true if a period (or more) passed since start call or last
21    * successfull check
22    */
23   bool check();
24   /** stop the timer */
25   void stop()
26   { start(0); }
27
28   /** returns the period of the timer or 0 if it isn't started */
29   float get_period() const
30   { return period; }
31   float get_timeleft() const
32   { return period - (global_time - cycle_start); }
33   float get_timegone() const
34   { return global_time - cycle_start; }
35   bool started() const
36   { return period != 0 && get_timeleft() > 0; }
37
38 private:
39   float period;
40   float cycle_start;
41   bool cyclic;
42 };
43
44 #endif
45