X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fbadguy%2Fyeti.hpp;h=a3c996f25c7ea9c0c68a2a2e8eac842fd2f67481;hb=013a5ca196545a094f27c1b708facd0084d58d55;hp=43fab194c18b310ed71e2f77ee139c6ce1065bd9;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/badguy/yeti.hpp b/src/badguy/yeti.hpp index 43fab194c..a3c996f25 100644 --- a/src/badguy/yeti.hpp +++ b/src/badguy/yeti.hpp @@ -1,7 +1,8 @@ // $Id$ // -// SuperTux -// Copyright (C) 2006 Matthias Braun +// SuperTux - Boss "Yeti" +// Copyright (C) 2005 Matthias Braun +// Copyright (C) 2006 Christoph Sommer // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -20,6 +21,8 @@ #ifndef __YETI_H__ #define __YETI_H__ +#include + #include "badguy.hpp" class Yeti : public BadGuy @@ -30,33 +33,40 @@ public: void draw(DrawingContext& context); void write(lisp::Writer& writer); + void initialize(); void active_update(float elapsed_time); - HitResponse collision_solid(GameObject& object, const CollisionHit& hit); - bool collision_squished(Player& player); + void collision_solid(const CollisionHit& hit); + bool collision_squished(GameObject& object); + void kill_squished(GameObject& object); void kill_fall(); + virtual Yeti* clone() const { return new Yeti((Yeti&)*this); } + private: - void go_right(); - void go_left(); - void angry_jumping(); + void run(); + void jump_up(); + void be_angry(); void drop_stalactite(); void summon_snowball(); - + void jump_down(); + + void draw_hit_points(DrawingContext& context); + + void take_hit(Player& player); + enum YetiState { - INIT, - ANGRY_JUMPING, - THROW_SNOWBALL, - GO_RIGHT, - GO_LEFT + JUMP_DOWN, + RUN, + JUMP_UP, + BE_ANGRY, + SQUISHED }; - Direction side; YetiState state; - Timer timer; + Timer state_timer; Timer safe_timer; - int jumpcount; + int stomp_count; int hit_points; - std::string dead_script; + std::auto_ptr hud_head; }; #endif -