Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / trigger / climbable.hpp
1 //  SuperTux - Climbable area
2 //  Copyright (C) 2007 Christoph Sommer <christoph.sommer@2007.expires.deltadevelopment.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_TRIGGER_CLIMBABLE_HPP
18 #define HEADER_SUPERTUX_TRIGGER_CLIMBABLE_HPP
19
20 #include "supertux/resources.hpp"
21 #include "supertux/timer.hpp"
22 #include "trigger/trigger_base.hpp"
23 #include "util/reader_fwd.hpp"
24 #include "video/drawing_context.hpp"
25
26 class Player;
27
28 class Climbable : public TriggerBase
29 {
30   static Color text_color;
31 public:
32   Climbable(const Reader& reader);
33   Climbable(const Rect& area);
34   ~Climbable();
35
36   void event(Player& player, EventType type);
37   void update(float elapsed_time);
38   void draw(DrawingContext& context);
39
40   /**
41    * returns true if the player is within bounds of the Climbable
42    */
43   bool may_climb(Player& player);
44
45 protected:
46   Player* climbed_by; /**< set to player who's currently climbing us, null if nobody is */
47   Timer activate_try_timer; /**< try to correct mis-alignment while this timer runs */
48
49 private:
50   Climbable(const Climbable&);
51   Climbable& operator=(const Climbable&);
52 };
53
54 #endif
55
56 /* EOF */