Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / object / level_time.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_OBJECT_LEVEL_TIME_HPP
18 #define HEADER_SUPERTUX_OBJECT_LEVEL_TIME_HPP
19
20 #include <memory>
21
22 #include "supertux/game_object.hpp"
23 #include "supertux/script_interface.hpp"
24 #include "util/reader_fwd.hpp"
25 #include "video/color.hpp"
26
27 class Surface;
28
29 class LevelTime : public GameObject, 
30                   public ScriptInterface
31 {
32   static Color text_color;
33 public:
34   LevelTime(const Reader& reader);
35
36   virtual void expose(HSQUIRRELVM vm, SQInteger table_idx);
37   virtual void unexpose(HSQUIRRELVM vm, SQInteger table_idx);
38
39   void update(float elapsed_time);
40   void draw(DrawingContext& context);
41
42   /**
43    * @name Scriptable Methods
44    * @{
45    */
46
47   /**
48    * Resumes the countdown
49    */
50   void start();
51
52   /**
53    * Pauses the countdown
54    */
55   void stop();
56
57   /**
58    * Returns the number of seconds left on the clock
59    */
60   float get_time();
61
62   /**
63    * Changes the number of seconds left on the clock
64    */
65   void set_time(float time_left);
66
67   /**
68    * @}
69    */
70
71 private:
72   std::auto_ptr<Surface> time_surface;
73   bool running;
74   float time_left;
75 };
76
77 #endif
78
79 /* EOF */