X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fobject%2Frock.cpp;h=8f60e661de4002a04c68fdfae8fde7495b9b676b;hb=6492679a300bff2c17505c5d9bc9d333eeba384d;hp=1ffa23167e5c69bac615088fc60eb1bb59cc95b2;hpb=2892ebda09d24c977547159e34abf0244884b89e;p=supertux.git diff --git a/src/object/rock.cpp b/src/object/rock.cpp index 1ffa23167..8f60e661d 100644 --- a/src/object/rock.cpp +++ b/src/object/rock.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,78 +12,130 @@ // 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. +// along with this program. If not, see . -#include +#include "audio/sound_manager.hpp" +#include "object/rock.hpp" +#include "supertux/object_factory.hpp" +#include "supertux/tile.hpp" -#include "rock.hpp" -#include "lisp/writer.hpp" -#include "video/drawing_context.hpp" -#include "resources.hpp" -#include "object_factory.hpp" +namespace { +const std::string ROCK_SOUND = "sounds/brick.wav"; //TODO use own sound. +} -Rock::Rock(const lisp::Lisp& reader) - : MovingSprite(reader, "images/objects/rock/rock.sprite", LAYER_OBJECTS+1, COLGROUP_STATIC) +Rock::Rock(const Vector& pos, std::string spritename) : + MovingSprite(pos, spritename), + physic(), + on_ground(), + grabbed(), + last_movement() { + SoundManager::current()->preload(ROCK_SOUND); + on_ground = false; grabbed = false; - flags |= FLAG_SOLID | FLAG_PORTABLE; + set_group(COLGROUP_MOVING_STATIC); } -void -Rock::write(lisp::Writer& writer) +Rock::Rock(const Reader& reader) : + MovingSprite(reader, "images/objects/rock/rock.sprite"), + physic(), + on_ground(), + grabbed(), + last_movement() { - writer.start_list("rock"); - - writer.write_float("x", bbox.p1.x); - writer.write_float("y", bbox.p1.y); + SoundManager::current()->preload(ROCK_SOUND); + on_ground = false; + grabbed = false; + set_group(COLGROUP_MOVING_STATIC); +} - writer.end_list("rock"); +Rock::Rock(const Reader& reader, std::string spritename) : + MovingSprite(reader, spritename), + physic(), + on_ground(), + grabbed(), + last_movement() +{ + SoundManager::current()->preload(ROCK_SOUND); + on_ground = false; + grabbed = false; + set_group(COLGROUP_MOVING_STATIC); } void Rock::update(float elapsed_time) { - if(!grabbed) { - flags |= FLAG_SOLID; - set_group(COLGROUP_STATIC); - movement = physic.get_movement(elapsed_time); - } else { - physic.set_velocity(0, 0); - flags &= ~FLAG_SOLID; - set_group(COLGROUP_DISABLED); - } - - grabbed = false; - /* - printf("%p - V %3.1f %3.1f - P %3.1f %3.1f\n", this, - physic.get_velocity().x, physic.get_velocity().y, - get_pos().x, get_pos().y); - */ + if( grabbed ) + return; + + if (on_ground) physic.set_velocity_x(0); + + movement = physic.get_movement(elapsed_time); } void -Rock::collision_solid(const CollisionHit& ) +Rock::collision_solid(const CollisionHit& hit) { - physic.set_velocity(0, 0); + if(grabbed) { + return; + } + if(hit.top || hit.bottom) + physic.set_velocity_y(0); + if(hit.left || hit.right) + physic.set_velocity_x(0); + if(hit.crush) + physic.set_velocity(0, 0); + + if(hit.bottom && !on_ground && !grabbed) { + SoundManager::current()->play(ROCK_SOUND, get_pos()); + on_ground = true; + } } HitResponse -Rock::collision(GameObject& , const CollisionHit& ) +Rock::collision(GameObject& other, const CollisionHit& hit) { if(grabbed) { - return PASSTHROUGH; + return ABORT_MOVE; + } + if(!on_ground) { + if(hit.bottom && physic.get_velocity_y() > 200) { + MovingObject* moving_object = dynamic_cast (&other); + if(moving_object) { + //Getting a rock on the head hurts. A lot. + moving_object->collision_tile(Tile::HURTS); + } + } + return FORCE_MOVE; } - return SOLID; + return FORCE_MOVE; } void Rock::grab(MovingObject& , const Vector& pos, Direction) { movement = pos - get_pos(); + last_movement = movement; + set_group(COLGROUP_TOUCHABLE); //needed for lanterns catching willowisps + on_ground = false; grabbed = true; } -IMPLEMENT_FACTORY(Rock, "rock"); +void +Rock::ungrab(MovingObject& , Direction dir) +{ + set_group(COLGROUP_MOVING_STATIC); + on_ground = false; + if(dir == UP) { + physic.set_velocity(0, -500); + } else if (last_movement.norm() > 1) { + physic.set_velocity((dir == RIGHT) ? 200 : -200, -200); + } else { + physic.set_velocity(0, 0); + } + grabbed = false; +} + +/* EOF */