Rewrote Yeti to rely on position instead of ellapsed time
[supertux.git] / src / badguy / yeti.hpp
1 //  $Id$
2 //
3 //  SuperTux - Boss "Yeti"
4 //  Copyright (C) 2005 Matthias Braun <matze@braunis.de>
5 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
6 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 //
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 #ifndef __YETI_H__
22 #define __YETI_H__
23
24 #include "badguy.hpp"
25
26 class Yeti : public BadGuy
27 {
28 public:
29   Yeti(const lisp::Lisp& lisp);
30   ~Yeti();
31
32   void draw(DrawingContext& context);
33   void write(lisp::Writer& writer);
34   void activate();
35   void active_update(float elapsed_time);
36   HitResponse collision_solid(GameObject& object, const CollisionHit& hit);
37   bool collision_squished(Player& player);
38   void kill_fall();
39
40 private:
41   void run();
42   void jump_up();
43   void be_angry();
44   void drop_stalactite();
45   void summon_snowball();
46   void jump_down();
47   void die(Player& player);
48   
49   enum YetiState {
50     JUMP_DOWN,
51     RUN,
52     JUMP_UP,
53     BE_ANGRY
54   };
55   YetiState state;
56   Timer stomp_timer;
57   Timer safe_timer;
58   int stomp_count;
59   int hit_points;
60   std::string dead_script;
61 };
62
63 #endif
64