X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fbadguy%2Fdispenser.hpp;h=a67a1de94273f8f7437c17de001ed8e8cdecf4d8;hb=dfaf28adf2756d68091c7e54ab16fcb174dfcc5c;hp=c01e19e1d81f6ba7fcc8f7a3f3635b51ca37357c;hpb=a113d3bd1feddd510e3b2852b0d42522735eee40;p=supertux.git diff --git a/src/badguy/dispenser.hpp b/src/badguy/dispenser.hpp index c01e19e1d..a67a1de94 100644 --- a/src/badguy/dispenser.hpp +++ b/src/badguy/dispenser.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,32 +12,43 @@ // 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 __DISPENSER_H__ -#define __DISPENSER_H__ +#ifndef HEADER_SUPERTUX_BADGUY_DISPENSER_HPP +#define HEADER_SUPERTUX_BADGUY_DISPENSER_HPP -#include "badguy.hpp" -#include "timer.hpp" +#include "badguy/badguy.hpp" class Dispenser : public BadGuy { public: - Dispenser(const lisp::Lisp& reader); + Dispenser(const Reader& reader); void activate(); - void write(lisp::Writer& writer); + void deactivate(); void active_update(float elapsed_time); - virtual Dispenser* clone() const { return new Dispenser(*this); } + void freeze(); + void unfreeze(); + bool is_freezable() const; protected: - bool collision_squished(Player& player); + bool collision_squished(GameObject& object); + HitResponse collision(GameObject& other, const CollisionHit& hit); void launch_badguy(); + +private: float cycle; - std::string badguy; + std::vector badguys; + unsigned int next_badguy; Timer dispense_timer; + bool autotarget; + bool swivel; + bool broken; + bool random; + std::string type; }; #endif + +/* EOF */