the boat works now
[supertux.git] / src / worldmap / sprite_change.cpp
1 //  $Id: worldmap.hpp 3327 2006-04-13 15:02:40Z ravu_al_hemio $
2 //
3 //  SuperTux
4 //  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmx.de>
5 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
6 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 //
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 #include <config.h>
21
22 #include "sprite_change.hpp"
23 #include "sprite/sprite_manager.hpp"
24 #include "sprite/sprite.hpp"
25 #include "video/drawing_context.hpp"
26
27 namespace WorldMapNS
28 {
29
30 SpriteChange::SpriteChange(const lisp::Lisp* lisp)
31   : change_on_touch(false), in_stay_action(false)
32 {
33   lisp->get("x", pos.x);
34   lisp->get("y", pos.y);
35   lisp->get("change-on-touch", change_on_touch);
36   
37   std::string spritefile = "";
38   lisp->get("sprite", spritefile);
39   sprite.reset(sprite_manager->create(spritefile));
40
41   lisp->get("stay-action", stay_action);
42   lisp->get("initial-stay-action", in_stay_action);
43 }
44
45 SpriteChange::~SpriteChange()
46 {
47 }
48
49 void
50 SpriteChange::draw(DrawingContext& context)
51 {
52   if(in_stay_action && stay_action != "") {
53     sprite->set_action(stay_action);
54     sprite->draw(context, pos * 32 + Vector(16, 16), LAYER_OBJECTS-1);
55   }
56 }
57
58 void
59 SpriteChange::update(float )
60 {
61 }
62
63 }