X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Funstable_tile.hpp;h=cd19c4e0d318318178f300bc154968a26e93e36f;hb=5f1c84ed5ce0ab5450f92082a9aaaa9ca0effc39;hp=6b91b5c9e0cf7e587a52ac12fe5be90a15e7bac4;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/object/unstable_tile.hpp b/src/object/unstable_tile.hpp index 6b91b5c9e..cd19c4e0d 100644 --- a/src/object/unstable_tile.hpp +++ b/src/object/unstable_tile.hpp @@ -1,7 +1,8 @@ // $Id$ // -// SuperTux +// SuperTux - Unstable Tile // Copyright (C) 2006 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,31 +21,32 @@ #ifndef __UNSTABLE_TILE_H__ #define __UNSTABLE_TILE_H__ -#include "moving_object.hpp" +#include "object/moving_sprite.hpp" #include "lisp/lisp.hpp" #include "physic.hpp" #include "timer.hpp" -class Sprite; -class Player; - -/** A tile that starts falling down if tux stands to long on it */ -class UnstableTile : public MovingObject +/** + * A block that disintegrates when stood on + */ +class UnstableTile : public MovingSprite { public: UnstableTile(const lisp::Lisp& lisp); - ~UnstableTile(); + virtual UnstableTile* clone() const { return new UnstableTile(*this); } HitResponse collision(GameObject& other, const CollisionHit& hit); void update(float elapsed_time); - void draw(DrawingContext& context); private: + enum State { + STATE_NORMAL, /**< default state */ + STATE_CRUMBLING, /**< crumbling, still solid */ + STATE_DISINTEGRATING /**< disintegrating, no longer solid */ + }; + State state; + Physic physic; - Sprite* sprite; - Timer timer; - bool hit; - bool falling; }; #endif