aaccbb3eb8767f26c1192bb0e79a6e286b6dfd9b
[supertux.git] / src / object / flower.cpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.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 "audio/sound_manager.hpp"
18 #include "object/flower.hpp"
19 #include "object/player.hpp"
20 #include "sprite/sprite_manager.hpp"
21
22 Flower::Flower(BonusType _type) :
23   type(_type),
24   sprite()
25 {
26   bbox.set_size(32, 32);
27
28   if(type == FIRE_BONUS) {
29     sprite = sprite_manager->create("images/powerups/fireflower/fireflower.sprite");
30     sound_manager->preload("sounds/fire-flower.wav");
31   }
32   else if(type == ICE_BONUS) {
33     sprite = sprite_manager->create("images/powerups/iceflower/iceflower.sprite");
34     sound_manager->preload("sounds/fire-flower.wav");
35   } else {
36     assert(false);
37   }
38
39   set_group(COLGROUP_TOUCHABLE);
40 }
41
42 Flower::~Flower()
43 {
44 }
45
46 void
47 Flower::update(float )
48 {
49 }
50
51 void
52 Flower::draw(DrawingContext& context)
53 {
54   sprite->draw(context, get_pos(), LAYER_OBJECTS);
55 }
56
57 HitResponse
58 Flower::collision(GameObject& other, const CollisionHit& )
59 {
60   Player* player = dynamic_cast<Player*>(&other);
61   if(!player)
62     return ABORT_MOVE;
63
64   if(!player->add_bonus(type, true))
65     return FORCE_MOVE;
66
67   sound_manager->play("sounds/fire-flower.wav");
68   remove_me();
69   return ABORT_MOVE;
70 }
71
72 /* EOF */