Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / badguy / yeti.hpp
1 //  SuperTux - Boss "Yeti"
2 //  Copyright (C) 2005 Matthias Braun <matze@braunis.de>
3 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #ifndef HEADER_SUPERTUX_BADGUY_YETI_HPP
19 #define HEADER_SUPERTUX_BADGUY_YETI_HPP
20
21 #include <memory>
22
23 #include "badguy/badguy.hpp"
24
25 class Yeti : public BadGuy
26 {
27 public:
28   Yeti(const Reader& lisp);
29   ~Yeti();
30
31   void draw(DrawingContext& context);
32   void initialize();
33   void active_update(float elapsed_time);
34   void collision_solid(const CollisionHit& hit);
35   bool collision_squished(GameObject& object);
36   void kill_squished(GameObject& object);
37   void kill_fall();
38
39 private:
40   void run();
41   void jump_up();
42   void be_angry();
43   void drop_stalactite();
44   void summon_snowball();
45   void jump_down();
46
47   void draw_hit_points(DrawingContext& context);
48
49   void take_hit(Player& player);
50
51 private:
52   enum YetiState {
53     JUMP_DOWN,
54     RUN,
55     JUMP_UP,
56     BE_ANGRY,
57     SQUISHED
58   };
59
60 private:
61   YetiState state;
62   Timer state_timer;
63   Timer safe_timer;
64   int stomp_count;
65   int hit_points;
66   std::auto_ptr<Surface> hud_head;
67 };
68
69 #endif
70
71 /* EOF */