/* * 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: * Fabian 'x3n' Landau * Co-authors: * ... * */ #include "OrxonoxStableHeaders.h" #include "BlinkingBillboard.h" #include "core/Core.h" #include "core/CoreIncludes.h" #include "core/XMLPort.h" #include "util/Math.h" namespace orxonox { CreateFactory(BlinkingBillboard); BlinkingBillboard::BlinkingBillboard(BaseObject* creator) : Billboard(creator) { RegisterObject(BlinkingBillboard); this->amplitude_ = 1.0f; this->frequency_ = 1.0f; this->phase_ = 0; this->bQuadratic_ = false; this->time_ = 0; this->registerVariables(); } BlinkingBillboard::~BlinkingBillboard() { } void BlinkingBillboard::XMLPort(Element& xmlelement, XMLPort::Mode mode) { SUPER(BlinkingBillboard, XMLPort, xmlelement, mode); XMLPortParam(BlinkingBillboard, "amplitude", setAmplitude, getAmplitude, xmlelement, mode).defaultValues(1.0f); XMLPortParam(BlinkingBillboard, "frequency", setFrequency, getFrequency, xmlelement, mode).defaultValues(1.0f); XMLPortParam(BlinkingBillboard, "phase", setPhase, getPhase, xmlelement, mode).defaultValues(Degree(0)); XMLPortParam(BlinkingBillboard, "quadratic", setQuadratic, isQuadratic, xmlelement, mode).defaultValues(false); } void BlinkingBillboard::registerVariables() { // registerVariable(this->amplitude_, variableDirection::toclient); // registerVariable(this->frequency_, variableDirection::toclient); // registerVariable(this->phase_, variableDirection::toclient); } void BlinkingBillboard::tick(float dt) { SUPER(BlinkingBillboard, tick, dt); if (Core::isMaster() && this->isActive()) { this->time_ += dt; if (this->bQuadratic_) this->setScale(this->amplitude_ * square(sin((6.2831853 * this->time_ + this->phase_.valueRadians()) * this->frequency_))); else this->setScale(this->amplitude_ * sin((6.2831853 * this->time_ + this->phase_.valueRadians()) * this->frequency_)); } } }