Krosh: Add large (4x4) icecrusher sprite and code.
[supertux.git] / src / object / icecrusher.hpp
1 //  IceCrusher - A block to stand on, which can drop down to crush the player
2 //  Copyright (C) 2008 Christoph Sommer <christoph.sommer@2008.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_OBJECT_ICECRUSHER_HPP
18 #define HEADER_SUPERTUX_OBJECT_ICECRUSHER_HPP
19
20 #include "object/moving_sprite.hpp"
21 #include "supertux/physic.hpp"
22
23 class Player;
24
25 /**
26  * This class is the base class for icecrushers that tux can stand on
27  */
28 class IceCrusher : public MovingSprite
29 {
30 public:
31   IceCrusher(const Reader& reader);
32   IceCrusher(const IceCrusher& icecrusher);
33
34   virtual HitResponse collision(GameObject& other, const CollisionHit& hit);
35   virtual void collision_solid(const CollisionHit& hit);
36   virtual void update(float elapsed_time);
37
38 #if 0
39   const Vector& get_speed() const
40   {
41     return speed;
42   }
43 #endif
44
45 protected:
46   enum IceCrusherState {
47     IDLE,
48     CRUSHING,
49     RECOVERING
50   };
51   IceCrusherState state;
52   Vector start_position;
53   Physic physic;
54   float cooldown_timer;
55
56   Player* get_nearest_player();
57   bool found_victim();
58   void set_state(IceCrusherState state, bool force = false);
59
60 private:
61   enum IceCrusherSize {
62     NORMAL,
63     LARGE
64   };
65   IceCrusherSize ic_size;
66 };
67
68 #endif
69
70 /* EOF */