* Fixed a few own mistakes from a previous commit
[supertux.git] / src / badguy / snowball.cpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2005 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 // 
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 //  02111-1307, USA.
20
21 #include <config.h>
22
23 #include "snowball.hpp"
24
25 static const float WALKSPEED = 80;
26
27 SnowBall::SnowBall(const lisp::Lisp& reader)
28 {
29   reader.get("x", start_position.x);
30   reader.get("y", start_position.y);
31   //This is for a hidden badguy :)
32   fluffy = false;  
33   reader.get("fluffy",fluffy);
34   bbox.set_size(31.8, 31.8);
35   if (fluffy) sprite = sprite_manager->create("fluffy");
36   else sprite = sprite_manager->create("snowball");
37   set_direction = false;
38 }
39
40 SnowBall::SnowBall(float pos_x, float pos_y, Direction d)
41 {
42   start_position.x = pos_x;
43   start_position.y = pos_y;
44   bbox.set_size(31.8, 31.8);
45   sprite = sprite_manager->create("snowball");
46   set_direction = true;
47   initial_direction = d;
48 }
49
50 void
51 SnowBall::write(lisp::Writer& writer)
52 {
53   writer.start_list("snowball");
54
55   writer.write_float("x", start_position.x);
56   writer.write_float("y", start_position.y);
57
58   if (fluffy) {  // don't give us away at every snowball
59     writer.write_bool("fluffy", true);
60   }
61
62   writer.end_list("snowball");
63 }
64
65 void
66 SnowBall::activate()
67 {
68   if (set_direction) {dir = initial_direction;}
69   physic.set_velocity_x(dir == LEFT ? -WALKSPEED : WALKSPEED);
70   sprite->set_action(dir == LEFT ? "left" : "right");
71 }
72
73 bool
74 SnowBall::collision_squished(Player& player)
75 {
76   sprite->set_action(dir == LEFT ? "squished-left" : "squished-right");
77   kill_squished(player);
78   return true;
79 }
80
81 HitResponse
82 SnowBall::collision_solid(GameObject& , const CollisionHit& hit)
83 {
84   if(fabsf(hit.normal.y) > .5) { // hit floor or roof?
85     physic.set_velocity_y(0);
86   } else { // hit right or left
87     dir = dir == LEFT ? RIGHT : LEFT;
88     sprite->set_action(dir == LEFT ? "left" : "right");
89     physic.set_velocity_x(-physic.get_velocity_x());
90   }
91
92   return CONTINUE;
93 }
94
95 HitResponse
96 SnowBall::collision_badguy(BadGuy& , const CollisionHit& hit)
97 {
98   if(fabsf(hit.normal.x) > .8) { // left or right hit
99     dir = dir == LEFT ? RIGHT : LEFT;
100     sprite->set_action(dir == LEFT ? "left" : "right");
101     physic.set_velocity_x(-physic.get_velocity_x());       
102   }
103
104   return CONTINUE;
105 }
106
107 IMPLEMENT_FACTORY(SnowBall, "snowball")