| [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 | #ifndef _OrxyRoadHUDinfo_H__ | 
|---|
 | 30 | #define _OrxyRoadHUDinfo_H__ | 
|---|
| [11836] | 31 |  | 
|---|
| [11838] | 32 | //#include "OrxyRoadShip.h" | 
|---|
 | 33 | #include "OrxyRoad.h" | 
|---|
 | 34 | //#include "OrxyRoadCenterPoint.h" | 
|---|
| [11836] | 35 |  | 
|---|
| [11881] | 36 | #include "OrxyRoadPrereqs.h" | 
|---|
| [11836] | 37 |  | 
|---|
 | 38 | #include "tools/interfaces/Tickable.h" | 
|---|
 | 39 | #include "overlays/OverlayText.h" | 
|---|
 | 40 |  | 
|---|
 | 41 | namespace orxonox | 
|---|
 | 42 | { | 
|---|
| [11838] | 43 |     class _OrxyRoadExport OrxyRoadHUDinfo : public OverlayText, public Tickable | 
|---|
| [11836] | 44 |     { | 
|---|
 | 45 |      public: | 
|---|
| [11838] | 46 |             OrxyRoadHUDinfo(Context* context); | 
|---|
| [11836] | 47 |  | 
|---|
 | 48 |             virtual void tick(float dt) override; | 
|---|
 | 49 |             virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override; | 
|---|
 | 50 |             virtual void changedOwner() override; | 
|---|
 | 51 |  | 
|---|
 | 52 |             inline void setShowPoints(bool value) | 
|---|
 | 53 |                 { this->bShowPoints_ = value; } | 
|---|
 | 54 |             inline bool getShowPoints() const | 
|---|
 | 55 |                 { return this->bShowPoints_; } | 
|---|
 | 56 |  | 
|---|
 | 57 |  | 
|---|
 | 58 |         private: | 
|---|
| [11838] | 59 |             OrxyRoad* OrxyRoadGame; | 
|---|
| [11836] | 60 |             bool bShowPoints_; | 
|---|
 | 61 |     }; | 
|---|
 | 62 | } | 
|---|
| [11838] | 63 | #endif /* _OrxyRoadHUDinfo_H__ */ | 
|---|