/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * 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 distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Fabien Vultier * Co-authors: * ... * */ /** @file JumpSpring.cc @brief If this spring is touched by the figure, it jumps higher then from a platform. */ #include "JumpSpring.h" #include "core/CoreIncludes.h" #include "JumpFigure.h" namespace orxonox { RegisterClass(JumpSpring); JumpSpring::JumpSpring(Context* context) : JumpItem(context) { RegisterObject(JumpSpring); stretch_ = 1.0; setPosition(Vector3(0,0,0)); setVelocity(Vector3(0,0,0)); setAcceleration(Vector3(0,0,0)); setProperties(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); } JumpSpring::~JumpSpring() { } void JumpSpring::tick(float dt) { SUPER(JumpSpring, tick, dt); if (stretch_ > 1.0) { stretch_ -= dt; setScale3D(1.0, 1.0, stretch_); } Vector3 springPosition = getWorldPosition(); if (figure_ != nullptr) { Vector3 figurePosition = figure_->getWorldPosition(); Vector3 figureVelocity = figure_->getVelocity(); if(figureVelocity.z < 0 && figurePosition.x > springPosition.x-width_ && figurePosition.x < springPosition.x+width_ && figurePosition.z > springPosition.z-height_ && figurePosition.z < springPosition.z+height_) { touchFigure(); } } } void JumpSpring::touchFigure() { JumpItem::touchFigure(); stretch_ = 3.0; accelerateFigure(); } void JumpSpring::accelerateFigure() { if (figure_ != nullptr) { figure_->JumpFromSpring(this); } } }