updated squirrel version
[supertux.git] / src / badguy / mriceblock.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 "mriceblock.h"
24 #include "object/block.h"
25
26 static const float WALKSPEED = 80;
27 static const float KICKSPEED = 500;
28 static const int MAXSQUISHES = 10;
29
30 MrIceBlock::MrIceBlock(const lisp::Lisp& reader)
31   : ice_state(ICESTATE_NORMAL), squishcount(0)
32 {
33   reader.get("x", start_position.x);
34   reader.get("y", start_position.y);
35   bbox.set_size(31.8, 31.8);
36   sprite = sprite_manager->create("mriceblock");
37   set_direction = false;
38 }
39
40 MrIceBlock::MrIceBlock(float pos_x, float pos_y, Direction d)
41   : ice_state(ICESTATE_NORMAL), squishcount(0)
42 {
43   start_position.x = pos_x;
44   start_position.y = pos_y;
45   bbox.set_size(31.8, 31.8);
46   sprite = sprite_manager->create("mriceblock");
47   set_direction = true;
48   initial_direction = d;
49 }
50
51 void
52 MrIceBlock::write(lisp::Writer& writer)
53 {
54   writer.start_list("mriceblock");
55
56   writer.write_float("x", start_position.x);
57   writer.write_float("y", start_position.y);
58
59   writer.end_list("mriceblock");
60 }
61
62 void
63 MrIceBlock::activate()
64 {
65   if (set_direction) {dir = initial_direction;}
66   physic.set_velocity_x(dir == LEFT ? -WALKSPEED : WALKSPEED);
67   sprite->set_action(dir == LEFT ? "left" : "right");
68 }
69
70 void
71 MrIceBlock::active_update(float elapsed_time)
72 {
73   if(ice_state == ICESTATE_FLAT && flat_timer.check()) {
74     ice_state = ICESTATE_NORMAL;
75     physic.set_velocity_x(dir == LEFT ? -WALKSPEED : WALKSPEED);
76     sprite->set_action(dir == LEFT ? "left" : "right");
77   }
78   BadGuy::active_update(elapsed_time);
79 }
80
81 HitResponse
82 MrIceBlock::collision_solid(GameObject& object, const CollisionHit& hit)
83 {
84   if(fabsf(hit.normal.y) > .5) { // floor or roof
85     physic.set_velocity_y(0);
86     return CONTINUE;
87   }
88   // hit left or right
89   switch(ice_state) {
90     case ICESTATE_NORMAL:
91       dir = dir == LEFT ? RIGHT : LEFT;
92       sprite->set_action(dir == LEFT ? "left" : "right");
93       physic.set_velocity_x(-physic.get_velocity_x());       
94       break;
95     case ICESTATE_KICKED: {
96       BonusBlock* bonusblock = dynamic_cast<BonusBlock*> (&object);
97       if(bonusblock) {
98         bonusblock->try_open();
99       }
100       Brick* brick = dynamic_cast<Brick*> (&object);
101       if(brick) {
102         brick->try_break();
103       }
104       
105       dir = dir == LEFT ? RIGHT : LEFT;
106       sprite->set_action(dir == LEFT ? "flat-left" : "flat-right");
107       physic.set_velocity_x(-physic.get_velocity_x());
108       sound_manager->play("sounds/ricochet.wav", get_pos());
109       break;
110     }
111     case ICESTATE_FLAT:
112       physic.set_velocity_x(0);
113       break;
114   }
115
116   return CONTINUE;
117 }
118
119 HitResponse
120 MrIceBlock::collision_badguy(BadGuy& badguy, const CollisionHit& hit)
121 {
122   switch(ice_state) {
123     case ICESTATE_NORMAL:
124       if(fabsf(hit.normal.x) > .8) {
125         dir = dir == LEFT ? RIGHT : LEFT;
126         sprite->set_action(dir == LEFT ? "left" : "right");
127         physic.set_velocity_x(-physic.get_velocity_x());               
128       }
129       return CONTINUE;
130     case ICESTATE_FLAT:
131       return FORCE_MOVE;
132     case ICESTATE_KICKED:
133       badguy.kill_fall();
134       return FORCE_MOVE;
135     default:
136       assert(false);
137   }
138
139   return ABORT_MOVE;
140 }
141
142 bool
143 MrIceBlock::collision_squished(Player& player)
144 {
145   switch(ice_state) {
146     case ICESTATE_KICKED:
147     case ICESTATE_NORMAL:
148       squishcount++;
149       if(squishcount >= MAXSQUISHES) {
150         kill_fall();
151         return true;
152       }
153
154       // flatten
155       sound_manager->play("sounds/stomp.wav", get_pos());
156       physic.set_velocity_x(0);
157       physic.set_velocity_y(0); 
158       
159       sprite->set_action(dir == LEFT ? "flat-left" : "flat-right");
160       flat_timer.start(4);
161       ice_state = ICESTATE_FLAT;
162       break;
163     case ICESTATE_FLAT:
164       // kick
165       sound_manager->play("sounds/kick.wav", get_pos());
166
167       if(player.get_pos().x < get_pos().x) {
168         dir = RIGHT;
169       } else {
170         dir = LEFT;
171       }
172       physic.set_velocity_x(dir == LEFT ? -KICKSPEED : KICKSPEED);
173       sprite->set_action(dir == LEFT ? "flat-left" : "flat-right");
174       ice_state = ICESTATE_KICKED;
175       break;
176   }
177
178   player.bounce(*this);
179   return true;
180 }
181
182 IMPLEMENT_FACTORY(MrIceBlock, "mriceblock")