X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Ftrigger%2Fswitch.hpp;h=8141a8ffdbc772f53924f3ab44d60d05a95e4fe4;hb=5240d812e12e6b53dc3c36bf313361d2d457382a;hp=d7e68952bc613f02b44610fdc6388e7724c14cee;hpb=df0ba6e934e68e8274083bf04888ecadb81ecff1;p=supertux.git diff --git a/src/trigger/switch.hpp b/src/trigger/switch.hpp index d7e68952b..8141a8ffd 100644 --- a/src/trigger/switch.hpp +++ b/src/trigger/switch.hpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux - Switch Trigger // 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 -// 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,29 +12,24 @@ // 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 SUPERTUX_SWITCH_H -#define SUPERTUX_SWITCH_H +#ifndef HEADER_SUPERTUX_TRIGGER_SWITCH_HPP +#define HEADER_SUPERTUX_TRIGGER_SWITCH_HPP #include -#include "trigger_base.hpp" -#include "serializable.hpp" -#include "lisp/lisp.hpp" -#include "lisp/writer.hpp" -#include "video/drawing_context.hpp" #include "sprite/sprite.hpp" +#include "trigger/trigger_base.hpp" +#include "util/reader.hpp" +#include "video/drawing_context.hpp" -class Switch : public TriggerBase, public Serializable +class Switch : public TriggerBase { public: - Switch(const lisp::Lisp& reader); + Switch(const Reader& reader); virtual ~Switch(); - virtual void write(lisp::Writer& writer); - virtual void update(float elapsed_time); virtual void draw(DrawingContext& context); virtual void event(Player& player, EventType type); @@ -49,12 +42,13 @@ private: TURN_OFF }; +private: std::string sprite_name; - Sprite* sprite; + SpritePtr sprite; std::string script; - SwitchState state; - }; #endif + +/* EOF */