Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/src/modules/orxyroad/OrxyRoadHUDinfo.cc @ 12177

Last change on this file since 12177 was 12177, checked in by siramesh, 5 years ago

Super Orxo Bros Final (Sidharth Ramesh, Nisa Balta, Jeff Ren)

File size: 2.7 KB
Line 
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:
23 *      Sebastian Hirsch
24 *      Robin Jacobs
25 *   Co-authors:
26 *
27 */
28
29#include "OrxyRoadHUDinfo.h"
30
31#include "core/CoreIncludes.h"
32#include "core/XMLPort.h"
33#include "util/Convert.h"
34//#include "OrxyRoad.h"
35
36namespace orxonox
37{
38    RegisterClass(OrxyRoadHUDinfo);
39
40    OrxyRoadHUDinfo::OrxyRoadHUDinfo(Context* context) : OverlayText(context)
41    {
42        RegisterObject(OrxyRoadHUDinfo);
43
44        this->OrxyRoadGame = nullptr;
45        this->bShowPoints_ = true;
46    }
47
48    void OrxyRoadHUDinfo::XMLPort(Element& xmlelement, XMLPort::Mode mode)
49    {
50        SUPER(OrxyRoadHUDinfo, XMLPort, xmlelement, mode);
51
52        XMLPortParam(OrxyRoadHUDinfo,"showPoints", setShowPoints, getShowPoints, xmlelement, mode).defaultValues(false);
53    }
54
55    void OrxyRoadHUDinfo::tick(float dt)
56    {
57        SUPER(OrxyRoadHUDinfo, tick, dt);
58
59
60        if(this->bShowPoints_)
61        {
62            const std::string& points = multi_cast<std::string>(this->OrxyRoadGame->getPoints());
63            if (this->OrxyRoadGame->lives <= 0)
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
80    void OrxyRoadHUDinfo::changedOwner()
81    {
82        SUPER(OrxyRoadHUDinfo, changedOwner);
83
84        if (this->getOwner() && this->getOwner()->getGametype())
85        {
86            this->OrxyRoadGame = orxonox_cast<OrxyRoad*>(this->getOwner()->getGametype());
87        }
88        else
89        {
90            this->OrxyRoadGame = nullptr;
91        }
92    }
93}
Note: See TracBrowser for help on using the repository browser.