X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fbadguy%2Ftreewillowisp.cpp;h=ff8410886d756666a9e7745d786c76c96d18dd04;hb=08813a74da6ac1fd045a105e4e8105f1d7f716f0;hp=f25ea532362330a8968af0a345d6b2fc79331cc8;hpb=f406067af6cbeb0a638078fe1d386d092583909c;p=supertux.git diff --git a/src/badguy/treewillowisp.cpp b/src/badguy/treewillowisp.cpp index f25ea5323..ff8410886 100644 --- a/src/badguy/treewillowisp.cpp +++ b/src/badguy/treewillowisp.cpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux - "Will-O-Wisp" Badguy // Copyright (C) 2007 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,20 +12,15 @@ // 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. -#include +// along with this program. If not, see . -#include "treewillowisp.hpp" +#include "badguy/treewillowisp.hpp" -#include "ghosttree.hpp" -#include "object/lantern.hpp" +#include "audio/sound_manager.hpp" #include "audio/sound_source.hpp" -#include "lisp/writer.hpp" -#include "object_factory.hpp" +#include "badguy/ghosttree.hpp" +#include "object/lantern.hpp" #include "object/player.hpp" -#include "audio/sound_manager.hpp" #include "sprite/sprite.hpp" #include @@ -36,9 +29,18 @@ static const std::string SOUNDFILE = "sounds/willowisp.wav"; static const float SUCKSPEED = 25; TreeWillOWisp::TreeWillOWisp(GhostTree* tree, const Vector& pos, - float radius, float speed) - : BadGuy(tree->get_pos() + pos, "images/creatures/willowisp/willowisp.sprite", - LAYER_OBJECTS - 20), was_sucked(false), mystate(STATE_DEFAULT), tree(tree) + float radius, float speed) : + BadGuy(tree->get_pos() + pos, "images/creatures/willowisp/willowisp.sprite", + LAYER_OBJECTS - 20), + was_sucked(false), + mystate(STATE_DEFAULT), + color(), + angle(), + radius(), + speed(), + sound_source(), + tree(tree), + suck_target() { sound_manager->preload(SOUNDFILE); @@ -162,3 +164,4 @@ TreeWillOWisp::get_color() const return color; } +/* EOF */