Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_FS17/src/modules/superorxobros/SOBHUDInfo.cc @ 11412

Last change on this file since 11412 was 11412, checked in by jkindle, 7 years ago

Fixed turning, added and finished Gumbas, added turnOnCollide for all NPC and items, added Flagstone - todo: add points on flagstone hit and go into a between lvl mode, then warp to lvl 2. AAH, and added onDeath fcts…

File size: 3.0 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 "SOBHUDInfo.h"
28
29#include "core/CoreIncludes.h"
30#include "core/XMLPort.h"
31#include "util/Convert.h"
32#include "SOB.h"
33#include <sstream>
34#include <iomanip>
35
36
37
38namespace orxonox
39{
40    RegisterClass(SOBHUDInfo);
41
42    SOBHUDInfo::SOBHUDInfo(Context* context) : OverlayText(context)
43    {
44        RegisterObject(SOBHUDInfo);
45
46        this->SOBGame = nullptr;
47       
48    }
49
50    void SOBHUDInfo::XMLPort(Element& xmlelement, XMLPort::Mode mode)
51    {
52        SUPER(SOBHUDInfo, XMLPort, xmlelement, mode);
53        XMLPortParam(SOBHUDInfo, "type",     setType,     getType,     xmlelement, mode).defaultValues(false);
54
55
56    }
57
58    void SOBHUDInfo::tick(float dt)
59    {
60        SUPER(SOBHUDInfo, tick, dt);
61
62        if (this->SOBGame)
63        {
64         
65         // setPosition(Vector2(0.1, 0.65));
66          if (this->type_ == "Coins") {
67                // this->setCaption("Game ends in 30 seconds.\nPress (e)xit / (q)uit to go to the main menu.\nTo restart fly out of the screen!");
68           
69           
70            std::stringstream ss;
71            ss << "cc x " << std::setw(2) << std::setfill('0') << SOBGame->getCoins();
72            std::string s = ss.str();
73
74            this->setCaption(s);
75           
76        }
77        if (this->type_ == "Points") {
78            std::stringstream ss;
79            ss << std::setw(6) << std::setfill('0') << SOBGame->getPoints();
80            std::string s = ss.str();
81            this->setCaption(s);
82        }
83        if (this->type_ == "Time") {
84            std::stringstream ss;
85            ss << SOBGame->getTimeLeft();
86            std::string s = ss.str();
87            this->setCaption(s);
88        }
89        if (this->type_ == "Info") {
90            std::stringstream ss;
91            ss << SOBGame->getInfoText();
92            std::string s = ss.str();
93            this->setCaption(s);
94        }
95       
96
97       
98    }
99}
100
101void SOBHUDInfo::changedOwner()
102{
103    SUPER(SOBHUDInfo, changedOwner);
104
105    if (this->getOwner() && this->getOwner()->getGametype())
106    {
107        this->SOBGame = orxonox_cast<SOB*>(this->getOwner()->getGametype());
108    }
109    else
110    {
111        this->SOBGame = nullptr;
112    }
113}
114}
Note: See TracBrowser for help on using the repository browser.