X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fbadguy%2Fspidermite.hpp;h=4b90a46131f9b4014fcfb37a1c8ed71c4d31443f;hb=1f5ff04e5283398473b4ac033258b17af0ed08f0;hp=048831ce44fcc0464e68d876ddf051666b9ef9ab;hpb=58eb3364f724b2100859fd39da9bba5a9a09cafc;p=supertux.git diff --git a/src/badguy/spidermite.hpp b/src/badguy/spidermite.hpp index 048831ce4..4b90a4613 100644 --- a/src/badguy/spidermite.hpp +++ b/src/badguy/spidermite.hpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,37 +12,41 @@ // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// along with this program. If not, see . -#ifndef __SPIDERMITE_H__ -#define __SPIDERMITE_H__ +#ifndef HEADER_SUPERTUX_BADGUY_SPIDERMITE_HPP +#define HEADER_SUPERTUX_BADGUY_SPIDERMITE_HPP -#include "badguy.hpp" +#include "badguy/badguy.hpp" class SpiderMite : public BadGuy { public: - SpiderMite(const lisp::Lisp& reader); - SpiderMite(float pos_x, float pos_y); + SpiderMite(const Reader& reader); + SpiderMite(const Vector& pos); - void activate(); - void write(lisp::Writer& writer); + void initialize(); void active_update(float elapsed_time); - HitResponse collision_solid(GameObject& other, const CollisionHit& hit); + void collision_solid(const CollisionHit& hit); - virtual SpiderMite* clone() const { return new SpiderMite(*this); } + void freeze(); + void unfreeze(); + bool is_freezable() const; protected: enum SpiderMiteMode { FLY_UP, FLY_DOWN }; - SpiderMiteMode mode; - bool collision_squished(Player& player); + +protected: + bool collision_squished(GameObject& object); + private: + SpiderMiteMode mode; Timer timer; }; #endif +/* EOF */