Massive copyright update. I'm sorry if I'm crediting Matze for something he didn...
[supertux.git] / src / object / growup.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 "growup.hpp"
24 #include "resources.hpp"
25 #include "camera.hpp"
26 #include "sector.hpp"
27 #include "player.hpp"
28 #include "audio/sound_manager.hpp"
29 #include "sprite/sprite_manager.hpp"
30
31 GrowUp::GrowUp()
32 {
33   bbox.set_size(32, 32);
34   
35   sprite = sprite_manager->create("images/powerups/egg/egg.sprite");
36   physic.enable_gravity(true);
37   physic.set_velocity_x(100);
38   set_group(COLGROUP_MOVING);
39 }
40
41 GrowUp::~GrowUp()
42 {
43   delete sprite;
44 }
45
46 void
47 GrowUp::update(float elapsed_time)
48 {
49   movement = physic.get_movement(elapsed_time);
50 }
51
52 HitResponse
53 GrowUp::collision(GameObject& other, const CollisionHit& hit)
54 {
55   if(other.get_flags() & FLAG_SOLID) {
56     if(fabsf(hit.normal.y) > .5) { // roof or ground
57       physic.set_velocity_y(0);
58     } else { // bumped left or right
59       physic.set_velocity_x(-physic.get_velocity_x());
60     }
61
62     return CONTINUE;
63   }
64   
65   Player* player = dynamic_cast<Player*>(&other);
66   if(player != 0) {
67     player->set_bonus(GROWUP_BONUS, true);
68     sound_manager->play("sounds/grow.wav");
69     remove_me();
70     
71     return ABORT_MOVE;
72   }
73
74   return FORCE_MOVE;
75 }
76
77 void
78 GrowUp::draw(DrawingContext& context)
79 {
80   sprite->draw(context, get_pos(), LAYER_OBJECTS);
81 }
82