Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/invaders/src/modules/invader/InvaderHUDinfo.cc @ 9868

Last change on this file since 9868 was 9868, checked in by zifloria, 11 years ago

End game screen. Eye candy. Gameplay tweaks

File size: 4.6 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 *      Florian Zinggeler
24 *
25 */
26
27#include "InvaderHUDinfo.h"
28
29#include "core/CoreIncludes.h"
30#include "core/XMLPort.h"
31#include "util/Convert.h"
32// #include "Invader.h"
33
34namespace orxonox
35{
36    RegisterClass(InvaderHUDinfo);
37
38    InvaderHUDinfo::InvaderHUDinfo(Context* context) : OverlayText(context)
39    {
40        RegisterObject(InvaderHUDinfo);
41
42        this->InvaderGame = 0;
43        this->bShowLives_ = false;
44        this->bShowLevel_ = false;
45        this->bShowPoints_ = false;
46        this->bShowMultiplier_ = false;
47    }
48
49    void InvaderHUDinfo::XMLPort(Element& xmlelement, XMLPort::Mode mode)
50    {
51        SUPER(InvaderHUDinfo, XMLPort, xmlelement, mode);
52
53        XMLPortParam(InvaderHUDinfo, "showlives",     setShowLives,     getShowLives,     xmlelement, mode).defaultValues(false);
54        XMLPortParam(InvaderHUDinfo, "showPoints",     setShowPoints,     getShowPoints,     xmlelement, mode).defaultValues(false);
55        XMLPortParam(InvaderHUDinfo, "showLevel",     setShowLevel,     getShowLevel,     xmlelement, mode).defaultValues(false);
56        XMLPortParam(InvaderHUDinfo, "showMultiplier",     setShowMultiplier,     getShowMultiplier,     xmlelement, mode).defaultValues(false);
57    }
58
59    void InvaderHUDinfo::tick(float dt)
60    {
61        SUPER(InvaderHUDinfo, tick, dt);
62
63        if (this->InvaderGame)
64        {
65            if (this->bShowLives_)
66            {
67                const std::string& lives = multi_cast<std::string>(this->InvaderGame->getLives());
68                this->setCaption(lives);
69            }
70            else if(this->bShowLevel_)
71            {
72                const std::string& Level = multi_cast<std::string>(this->InvaderGame->getLevel());
73                if (this->InvaderGame->lives <= 0)
74                {
75                    setPosition(Vector2(0.1, 0.65));
76                    this->setCaption("Game ends in 30 seconds.\nPress (e)xit / (q)uit to go to the main menu.\nTo restart press space.");
77                    setTextSize(0.05);
78                    this->InvaderGame->bEndGame = true;
79                }
80                else
81                {
82                    setTextSize(0.04);
83                    setPosition(Vector2(0.14, 0.055));
84                    this->setCaption(Level);
85                }
86            }
87            else if(this->bShowPoints_)
88            {
89                const std::string& points = multi_cast<std::string>(this->InvaderGame->getPoints());
90                if (this->InvaderGame->lives <= 0)
91                {
92                    setTextSize(0.2);
93                    setPosition(Vector2(0.1, 0.25));
94                    this->setCaption("Final score:\n" + points);
95                    this->setColour(ColourValue(1, 0, 0, 1));
96                }
97                else
98                {
99                    setTextSize(0.04);
100                    setPosition(Vector2(0.14, 0.1));
101                    this->setColour(ColourValue(1, 1, 1, 1));
102                    this->setCaption(points);
103                }
104            }
105            else if(this->bShowMultiplier_)
106            {
107                int mult = this->InvaderGame->getMultiplier();
108                const std::string& Multiplier = "X " + multi_cast<std::string>(mult);
109                this->setCaption(Multiplier);
110                this->setColour(ColourValue(1, 0, 0, clamp(float(mult * 0.1), 0.0f, 1.0f)));
111                this->setTextSize(clamp(float(mult * 0.1), 0.0f, 1.0f) * 0.01 + 0.04);
112            }
113        }
114    }
115
116    void InvaderHUDinfo::changedOwner()
117    {
118        SUPER(InvaderHUDinfo, changedOwner);
119
120        if (this->getOwner() && this->getOwner()->getGametype())
121        {
122            this->InvaderGame = orxonox_cast<Invader*>(this->getOwner()->getGametype().get());
123        }
124        else
125        {
126            this->InvaderGame = 0;
127        }
128    }
129}
Note: See TracBrowser for help on using the repository browser.