Some Yeti boss work. Yes, you *can* beat it as small tux. (And the secret area *is...
[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 jump_down();
45
46   void draw_hit_points(DrawingContext& context);
47
48   void take_hit(Player& player);
49
50 private:
51   enum YetiState {
52     JUMP_DOWN,
53     RUN,
54     JUMP_UP,
55     BE_ANGRY,
56     SQUISHED
57   };
58
59 private:
60   YetiState state;
61   Timer state_timer;
62   Timer safe_timer;
63   int stomp_count;
64   int hit_points;
65   SurfacePtr hud_head;
66 };
67
68 #endif
69
70 /* EOF */