Another round of fixes for squirrel
[supertux.git] / src / badguy / crystallo.cpp
1 //  SuperTux - Crystallo
2 //  Copyright (C) 2008 Wolfgang Becker <uafr@gmx.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "badguy/crystallo.hpp"
18
19 #include "sprite/sprite.hpp"
20 #include "supertux/object_factory.hpp"
21 #include "util/reader.hpp"
22 #include "object/anchor_point.hpp"
23
24 Crystallo::Crystallo(const Reader& reader) :
25   WalkingBadguy(reader, "images/creatures/crystallo/crystallo.sprite", "left", "right"),
26   radius()
27 {
28   walk_speed = 80;
29   max_drop_height = 16;
30   radius = 100;
31   reader.get("radius", radius);
32 }
33
34 Crystallo::Crystallo(const Vector& pos, Direction d) :
35   WalkingBadguy(pos, d, "images/creatures/crystallo/crystallo.sprite", "left", "right"),
36   radius()
37 {
38   walk_speed = 80;
39   max_drop_height = 16;
40   radius = 100;
41 }
42
43 void
44 Crystallo::active_update(float elapsed_time)
45 {
46   if(get_pos().x > (start_position.x + radius)){
47     if(dir != LEFT){
48       turn_around();
49     }
50   }
51   if( get_pos().x < (start_position.x - radius)){
52     if(dir != RIGHT){
53       turn_around();
54     }
55   }
56   BadGuy::active_update(elapsed_time);
57 }
58
59 bool
60 Crystallo::collision_squished(GameObject& object)
61 {
62   this->set_action(dir == LEFT ? "shattered-left" : "shattered-right", /* loops = */ -1, ANCHOR_BOTTOM);
63   kill_squished(object);
64   return true;
65 }
66
67 /* EOF */