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