e79e847d81a11b2941cd4dcb1702118e58e33ba7
[supertux.git] / src / badguy / rocketexplosion.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 "rocketexplosion.hpp"
24
25 static const float EXPLOSIONTIME = 1;
26
27 RocketExplosion::RocketExplosion(const Vector& pos, Direction dir)
28 {
29   start_position = pos;
30   bbox.set_pos(pos);
31   bbox.set_size(31.8, 31.8);
32   sprite = sprite_manager->create("rocketexplosion");
33   this->dir = dir;
34   countMe = false;
35   explode();
36 }
37
38 void
39 RocketExplosion::write(lisp::Writer& )
40 {
41   // bombs are only temporarily so don't write them out...
42 }
43
44 HitResponse
45 RocketExplosion::collision_solid(GameObject& , const CollisionHit& hit)
46 {
47   if(fabsf(hit.normal.y) > .5)
48     physic.set_velocity_y(0);
49
50   return CONTINUE;
51 }
52
53 HitResponse
54 RocketExplosion::collision_player(Player& player, const CollisionHit& )
55 {
56   player.kill(Player::SHRINK);
57   return ABORT_MOVE;
58 }
59
60 HitResponse
61 RocketExplosion::collision_badguy(BadGuy& badguy, const CollisionHit& )
62 {
63    badguy.kill_fall();
64    return ABORT_MOVE;
65 }
66
67 void
68 RocketExplosion::active_update(float )
69 {
70    if(timer.check()) {
71       remove_me();
72    }
73 }
74
75 void
76 RocketExplosion::explode()
77 {
78   sprite->set_action(dir == LEFT ? "explosion-left" : "explosion-right");
79   sound_manager->play("sounds/explosion.wav", get_pos());
80   timer.start(EXPLOSIONTIME, true);
81 }
82
83 void
84 RocketExplosion::kill_fall()
85 {
86 }
87