[9828] | 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 | #ifndef _InvaderHUDinfo_H__ |
---|
| 28 | #define _InvaderHUDinfo_H__ |
---|
| 29 | |
---|
[9957] | 30 | #include "invader/InvaderPrereqs.h" |
---|
[9828] | 31 | |
---|
| 32 | #include "tools/interfaces/Tickable.h" |
---|
| 33 | #include "overlays/OverlayText.h" |
---|
| 34 | |
---|
| 35 | namespace orxonox |
---|
| 36 | { |
---|
[9957] | 37 | class _InvaderExport InvaderHUDinfo : public OverlayText, public Tickable |
---|
[9828] | 38 | { |
---|
| 39 | public: |
---|
| 40 | InvaderHUDinfo(Context* context); |
---|
| 41 | |
---|
| 42 | virtual void tick(float dt); |
---|
| 43 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); |
---|
| 44 | virtual void changedOwner(); |
---|
| 45 | |
---|
| 46 | inline void setShowLives(bool value) |
---|
| 47 | { this->bShowLives_ = value; } |
---|
| 48 | inline bool getShowLives() const |
---|
| 49 | { return this->bShowLives_; } |
---|
| 50 | |
---|
| 51 | inline void setShowLevel(bool value) |
---|
| 52 | { this->bShowLevel_ = value; } |
---|
| 53 | inline bool getShowLevel() const |
---|
| 54 | { return this->bShowLevel_; } |
---|
| 55 | |
---|
| 56 | inline void setShowPoints(bool value) |
---|
| 57 | { this->bShowPoints_ = value; } |
---|
| 58 | inline bool getShowPoints() const |
---|
| 59 | { return this->bShowPoints_; } |
---|
| 60 | |
---|
[9854] | 61 | inline void setShowMultiplier(bool value) |
---|
| 62 | { this->bShowMultiplier_ = value; } |
---|
| 63 | inline bool getShowMultiplier() const |
---|
| 64 | { return this->bShowMultiplier_; } |
---|
| 65 | |
---|
| 66 | |
---|
[9828] | 67 | private: |
---|
| 68 | Invader* InvaderGame; |
---|
| 69 | bool bShowLives_; |
---|
| 70 | bool bShowLevel_; |
---|
| 71 | bool bShowPoints_; |
---|
[9854] | 72 | bool bShowMultiplier_; |
---|
[9828] | 73 | }; |
---|
| 74 | } |
---|
| 75 | #endif /* _InvaderHUDinfo_H__ */ |
---|