| 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 "object/oneup.hpp" | 
|---|
| 18 |  | 
|---|
| 19 | #include "object/player.hpp" | 
|---|
| 20 | #include "supertux/sector.hpp" | 
|---|
| 21 |  | 
|---|
| 22 | OneUp::OneUp(const Vector& pos, Direction direction) : | 
|---|
| 23 | MovingSprite(pos, "images/powerups/1up/1up.sprite", LAYER_FLOATINGOBJECTS, COLGROUP_TOUCHABLE), | 
|---|
| 24 | physic() | 
|---|
| 25 | { | 
|---|
| 26 | physic.set_velocity( (direction == Direction::LEFT) ? -100.0f : 100.0f, -400.0f); | 
|---|
| 27 | if (direction == Direction::DOWN) // this causes the doll to drop when opened with a butt-jump | 
|---|
| 28 | physic.set_velocity(0, -100); | 
|---|
| 29 | } | 
|---|
| 30 |  | 
|---|
| 31 | void | 
|---|
| 32 | OneUp::update(float dt_sec) | 
|---|
| 33 | { | 
|---|
| 34 | if (!Sector::get().inside(m_col.m_bbox)) | 
|---|
| 35 | remove_me(); | 
|---|
| 36 |  | 
|---|
| 37 | m_col.m_movement = physic.get_movement(dt_sec); | 
|---|
| 38 | } | 
|---|
| 39 |  | 
|---|
| 40 | HitResponse | 
|---|
| 41 | OneUp::collision(GameObject& other, const CollisionHit& ) | 
|---|
| 42 | { | 
|---|
| 43 | auto player = dynamic_cast<Player*> (&other); | 
|---|
| 44 | if (player) { | 
|---|
| 45 | player->get_status().add_coins(100); | 
|---|
| 46 | #if 0 | 
|---|
| 47 | // FIXME: do we want this? q.v. src/level.cpp | 
|---|
| 48 | Sector::get().get_level()->stats.coins += 100; | 
|---|
| 49 | #endif | 
|---|
| 50 | remove_me(); | 
|---|
| 51 | return ABORT_MOVE; | 
|---|
| 52 | } | 
|---|
| 53 | return FORCE_MOVE; | 
|---|
| 54 | } | 
|---|
| 55 |  | 
|---|
| 56 | /* EOF */ | 
|---|
| 57 |  | 
|---|