b5830e0a9f76539c0d5107a1d69ce56ea0aef6c5
[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   } else {
44     assert(false);
45   }
46
47   set_group(COLGROUP_TOUCHABLE);
48 }
49
50 Flower::~Flower()
51 {
52   delete sprite;
53 }
54
55 void
56 Flower::update(float )
57 {
58 }
59
60 void
61 Flower::draw(DrawingContext& context)
62 {
63   sprite->draw(context, get_pos(), LAYER_OBJECTS);
64 }
65
66 HitResponse
67 Flower::collision(GameObject& other, const CollisionHit& )
68 {
69   Player* player = dynamic_cast<Player*>(&other);
70   if(!player)
71     return ABORT_MOVE;
72
73   if(!player->add_bonus(type, true))
74     return FORCE_MOVE;
75   
76   sound_manager->play("sounds/fire-flower.wav");
77   remove_me();
78   return ABORT_MOVE;
79 }
80