X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fbadguy%2Fspidermite.hpp;h=c2e7675a85300c1ca9fd290d3951029091d75409;hb=042c6360feee8c78a7980ca18ce739f05855b9ed;hp=048831ce44fcc0464e68d876ddf051666b9ef9ab;hpb=58eb3364f724b2100859fd39da9bba5a9a09cafc;p=supertux.git diff --git a/src/badguy/spidermite.hpp b/src/badguy/spidermite.hpp index 048831ce4..c2e7675a8 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,37 @@ // 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); - - virtual SpiderMite* clone() const { return new SpiderMite(*this); } + void collision_solid(const CollisionHit& hit); 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 */