[11836] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
[11998] | 23 | * Sebastian Hirsch |
---|
| 24 | * Robin Jacobs |
---|
| 25 | * Co-authors: |
---|
[11836] | 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
[11838] | 29 | #include "OrxyRoadHUDinfo.h" |
---|
[11836] | 30 | |
---|
| 31 | #include "core/CoreIncludes.h" |
---|
| 32 | #include "core/XMLPort.h" |
---|
| 33 | #include "util/Convert.h" |
---|
[11838] | 34 | //#include "OrxyRoad.h" |
---|
[11836] | 35 | |
---|
| 36 | namespace orxonox |
---|
| 37 | { |
---|
[11838] | 38 | RegisterClass(OrxyRoadHUDinfo); |
---|
[11836] | 39 | |
---|
[11838] | 40 | OrxyRoadHUDinfo::OrxyRoadHUDinfo(Context* context) : OverlayText(context) |
---|
[11836] | 41 | { |
---|
[11838] | 42 | RegisterObject(OrxyRoadHUDinfo); |
---|
[11836] | 43 | |
---|
[11838] | 44 | this->OrxyRoadGame = nullptr; |
---|
[11836] | 45 | this->bShowPoints_ = true; |
---|
| 46 | } |
---|
| 47 | |
---|
[11838] | 48 | void OrxyRoadHUDinfo::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
[11836] | 49 | { |
---|
[11838] | 50 | SUPER(OrxyRoadHUDinfo, XMLPort, xmlelement, mode); |
---|
[11836] | 51 | |
---|
[11838] | 52 | XMLPortParam(OrxyRoadHUDinfo,"showPoints", setShowPoints, getShowPoints, xmlelement, mode).defaultValues(false); |
---|
[11836] | 53 | } |
---|
| 54 | |
---|
[11838] | 55 | void OrxyRoadHUDinfo::tick(float dt) |
---|
[11836] | 56 | { |
---|
[11838] | 57 | SUPER(OrxyRoadHUDinfo, tick, dt); |
---|
[11836] | 58 | |
---|
| 59 | |
---|
| 60 | if(this->bShowPoints_) |
---|
| 61 | { |
---|
[11838] | 62 | const std::string& points = multi_cast<std::string>(this->OrxyRoadGame->getPoints()); |
---|
| 63 | if (this->OrxyRoadGame->lives <= 0) |
---|
[11836] | 64 | { |
---|
| 65 | setTextSize(0.2); |
---|
| 66 | setPosition(Vector2(0.1, 0.02)); |
---|
| 67 | this->setCaption("Final score:\n" + points); |
---|
| 68 | this->setColour(ColourValue(1, 0, 0, 1)); |
---|
| 69 | } |
---|
| 70 | else |
---|
| 71 | { |
---|
| 72 | setTextSize(0.04); |
---|
| 73 | setPosition(Vector2(0.14, 0.02)); |
---|
| 74 | this->setColour(ColourValue(1, 1, 1, 1)); |
---|
| 75 | this->setCaption(points); |
---|
| 76 | } |
---|
| 77 | } |
---|
| 78 | } |
---|
| 79 | |
---|
[11838] | 80 | void OrxyRoadHUDinfo::changedOwner() |
---|
[11836] | 81 | { |
---|
[11838] | 82 | SUPER(OrxyRoadHUDinfo, changedOwner); |
---|
[11836] | 83 | |
---|
| 84 | if (this->getOwner() && this->getOwner()->getGametype()) |
---|
| 85 | { |
---|
[11838] | 86 | this->OrxyRoadGame = orxonox_cast<OrxyRoad*>(this->getOwner()->getGametype()); |
---|
[11836] | 87 | } |
---|
| 88 | else |
---|
| 89 | { |
---|
[11838] | 90 | this->OrxyRoadGame = nullptr; |
---|
[11836] | 91 | } |
---|
| 92 | } |
---|
| 93 | } |
---|