/* * 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: * Leo Merholz * Pascal Schärli * * Co-authors: * ... */ #include "FlappyOrxHUDinfo.h" #include "core/CoreIncludes.h" #include "core/XMLPort.h" #include "util/Convert.h" #include "FlappyOrx.h" namespace orxonox { RegisterClass(FlappyOrxHUDinfo); FlappyOrxHUDinfo::FlappyOrxHUDinfo(Context* context) : OverlayText(context) { RegisterObject(FlappyOrxHUDinfo); this->FlappyOrxGame = nullptr; this->bShowPoints_ = false; this->bShowMessage_ = false; this->messageID = 0; } void FlappyOrxHUDinfo::XMLPort(Element& xmlelement, XMLPort::Mode mode) { SUPER(FlappyOrxHUDinfo, XMLPort, xmlelement, mode); XMLPortParam(FlappyOrxHUDinfo, "showpoints", setShowPoints, getShowPoints, xmlelement, mode).defaultValues(false); XMLPortParam(FlappyOrxHUDinfo, "showmessage", setShowMessage, getShowMessage, xmlelement, mode).defaultValues(false); XMLPortParam(FlappyOrxHUDinfo, "messageID", setMessageID, getMessageID, xmlelement, mode).defaultValues(0); } void FlappyOrxHUDinfo::tick(float dt) { SUPER(FlappyOrxHUDinfo, tick, dt); if (this->FlappyOrxGame) { if(not this->FlappyOrxGame->isDead()){ if(this->bShowPoints_){ const std::string& points = "Score: "+multi_cast(this->FlappyOrxGame->getPoints()); setTextSize(0.04); this->setCaption(points); } else if(this->bShowMessage_){ setTextSize(0); } } else{ if(this->bShowPoints_){ setTextSize(0); } else if(this->bShowMessage_){ if(this->FlappyOrxGame->firstGame){ if(messageID==3){ setTextSize(0.05); this->setCaption("First click, then press space to start"); } } else{ std::string message; setTextSize(0.05); switch(messageID){ case 0: message = "Game Over"; setTextSize(0.1); this->setCaption(message); break; case 1: message = this->FlappyOrxGame->sDeathMessage; break; case 2: message = "Your Score: "+multi_cast(this->FlappyOrxGame->getPoints())+ " Local High Score: "+multi_cast(Highscore::getInstance().getHighestScoreOfGame("Flappy Orx")); break; case 3: time_t time = this->FlappyOrxGame->getPlayer()->timeUntilRespawn(); if(time<=0) message = "Press space to restart."; else message = "Please wait "+multi_cast(time)+" seconds."; break; } this->setCaption(message); } } } } } void FlappyOrxHUDinfo::changedOwner() { SUPER(FlappyOrxHUDinfo, changedOwner); if (this->getOwner() && this->getOwner()->getGametype()) { this->FlappyOrxGame = orxonox_cast(this->getOwner()->getGametype()); } else { this->FlappyOrxGame = nullptr; } } }