X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fbadguy%2Fplant.cpp;h=2bf14ffb765732b6a853f1a9ddb7e618090327a8;hb=12a28b64dcce9c7ff706451b4f3aecd201cc8a5f;hp=5830d2b01c996d69b0eec20ebc63bed443253d4c;hpb=fea3446f05e1e7673607b835c269d3e8d1929ab3;p=supertux.git diff --git a/src/badguy/plant.cpp b/src/badguy/plant.cpp index 5830d2b01..2bf14ffb7 100644 --- a/src/badguy/plant.cpp +++ b/src/badguy/plant.cpp @@ -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,35 +12,27 @@ // 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 . -#include +#include "badguy/plant.hpp" -#include "plant.hpp" +#include "object/player.hpp" +#include "sprite/sprite.hpp" +#include "supertux/object_factory.hpp" static const float WALKSPEED = 80; static const float WAKE_TIME = .5; -Plant::Plant(const lisp::Lisp& reader) - : BadGuy(reader, "images/creatures/plant/plant.sprite") +Plant::Plant(const Reader& reader) : + BadGuy(reader, "images/creatures/plant/plant.sprite"), + timer(), + state() { state = PLANT_SLEEPING; } void -Plant::write(lisp::Writer& writer) -{ - writer.start_list("plant"); - - writer.write_float("x", start_position.x); - writer.write_float("y", start_position.y); - - writer.end_list("plant"); -} - -void -Plant::activate() +Plant::initialize() { //FIXME: turns sspiky around for debugging dir = dir == LEFT ? RIGHT : LEFT; @@ -114,4 +104,6 @@ Plant::active_update(float elapsed_time) { } -IMPLEMENT_FACTORY(Plant, "plant") +IMPLEMENT_FACTORY(Plant, "plant"); + +/* EOF */