X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fobject%2Finvisible_block.cpp;h=3f4a8c59bf44d5223740c154b996c4117c2e54a5;hb=2372988b5c58303f17720945e14d48c7aebc95ee;hp=4dbe5a3350e805a9ea34f41a1316c1d8f86abdf3;hpb=8a14d4d16329a6ad16fb7e709270a52cc16d1dfb;p=supertux.git diff --git a/src/object/invisible_block.cpp b/src/object/invisible_block.cpp index 4dbe5a335..3f4a8c59b 100644 --- a/src/object/invisible_block.cpp +++ b/src/object/invisible_block.cpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,26 +12,21 @@ // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -#include +// along with this program. If not, see . -#include "invisible_block.hpp" -#include "resources.hpp" -#include "sprite/sprite.hpp" -#include "sprite/sprite_manager.hpp" -#include "video/drawing_context.hpp" #include "audio/sound_manager.hpp" -#include "object_factory.hpp" +#include "object/invisible_block.hpp" #include "object/player.hpp" +#include "sprite/sprite.hpp" +#include "sprite/sprite_manager.hpp" +#include "supertux/constants.hpp" -InvisibleBlock::InvisibleBlock(const Vector& pos) - : Block(sprite_manager->create("images/objects/bonus_block/invisibleblock.sprite")), visible(false) +InvisibleBlock::InvisibleBlock(const Vector& pos) : + Block(SpriteManager::current()->create("images/objects/bonus_block/invisibleblock.sprite")), + visible(false) { bbox.set_pos(pos); - sound_manager->preload("sounds/brick.wav"); - sound_manager->preload("sounds/brick.wav"); + SoundManager::current()->preload("sounds/brick.wav"); } void @@ -51,9 +44,9 @@ InvisibleBlock::collides(GameObject& other, const CollisionHit& ) // if we're not visible, only register a collision if this will make us visible Player* player = dynamic_cast (&other); - if ((player) - && (player->get_movement().y <= 0) - && (player->get_bbox().get_top() > get_bbox().get_bottom() - 7.0)) { + if ((player) + && (player->get_movement().y <= 0) + && (player->get_bbox().get_top() > get_bbox().get_bottom() - SHIFT_DELTA)) { return true; } @@ -61,23 +54,25 @@ InvisibleBlock::collides(GameObject& other, const CollisionHit& ) } HitResponse -InvisibleBlock::collision(GameObject& other, const CollisionHit& hit) +InvisibleBlock::collision(GameObject& other, const CollisionHit& hit_) { - return Block::collision(other, hit); + return Block::collision(other, hit_); } void InvisibleBlock::hit(Player& player) { - sound_manager->play("sounds/brick.wav"); + SoundManager::current()->play("sounds/brick.wav"); if(visible) return; sprite->set_action("empty"); - start_bounce(player.get_bbox().get_middle().x); + start_bounce(&player); set_group(COLGROUP_STATIC); visible = true; } //IMPLEMENT_FACTORY(InvisibleBlock, "invisible_block"); + +/* EOF */