[1505] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
[1502] | 4 | * |
---|
[1505] | 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 | * |
---|
[1502] | 22 | * Author: |
---|
| 23 | * Yuning Chai |
---|
| 24 | * Co-authors: |
---|
| 25 | * Felix Schulthess |
---|
| 26 | * |
---|
| 27 | */ |
---|
[1362] | 28 | |
---|
| 29 | |
---|
| 30 | #ifndef _HUD_H__ |
---|
| 31 | #define _HUD_H__ |
---|
| 32 | |
---|
[1502] | 33 | #include "OrxonoxPrereqs.h" |
---|
| 34 | |
---|
| 35 | #include <OgrePrerequisites.h> |
---|
[1407] | 36 | #include <OgreTextAreaOverlayElement.h> |
---|
[1535] | 37 | #include "objects/Tickable.h" |
---|
[1502] | 38 | #include "util/Math.h" |
---|
[1567] | 39 | #include "OverlayElementFactories.h" |
---|
[1362] | 40 | |
---|
| 41 | namespace orxonox |
---|
| 42 | { |
---|
[1535] | 43 | class _OrxonoxExport HUD : public TickableReal |
---|
[1362] | 44 | { |
---|
[1502] | 45 | public: |
---|
[1567] | 46 | void initialise(); |
---|
| 47 | void destroy(); |
---|
| 48 | |
---|
[1502] | 49 | virtual void tick(float); |
---|
[1564] | 50 | |
---|
| 51 | void resize(); |
---|
| 52 | void addRadarObject(WorldEntity* object, const ColourValue& colour = ColourValue(0.5, 0.5, 0.5, 1)); |
---|
| 53 | void removeRadarObject(WorldEntity* object); |
---|
[1502] | 54 | void setRenderTimeRatio(float ratio); |
---|
| 55 | void setFPS(); |
---|
| 56 | |
---|
[1564] | 57 | inline std::list<RadarObject*>& getRadarObjects() |
---|
| 58 | { return this->roSet_; } |
---|
[1502] | 59 | |
---|
[1567] | 60 | static HUD& getSingleton(); |
---|
| 61 | |
---|
[1502] | 62 | static void setEnergy(float value); |
---|
| 63 | static void cycleNavigationFocus(); |
---|
[1564] | 64 | static void releaseNavigationFocus(); |
---|
[1502] | 65 | static void toggleFPS(); |
---|
| 66 | static void toggleRenderTime(); |
---|
[1564] | 67 | |
---|
| 68 | private: |
---|
| 69 | HUD(); |
---|
| 70 | HUD(const HUD& instance); |
---|
| 71 | ~HUD(); |
---|
| 72 | |
---|
[1567] | 73 | std::list<RadarObject*> roSet_; |
---|
| 74 | BarOverlayElementFactory barOverlayElementFactory_; |
---|
| 75 | RadarOverlayElementFactory radarOverlayElementFactory_; |
---|
[1564] | 76 | |
---|
| 77 | Ogre::Overlay* orxonoxHUD_; |
---|
| 78 | Ogre::OverlayContainer* container_; |
---|
| 79 | Ogre::TextAreaOverlayElement* fpsText_; |
---|
| 80 | Ogre::TextAreaOverlayElement* rTRText_; |
---|
| 81 | BarOverlayElement* energyBar_; |
---|
| 82 | BarOverlayElement* speedoBar_; |
---|
| 83 | RadarOverlayElement* radar_; |
---|
| 84 | Navigation* nav_; |
---|
| 85 | |
---|
| 86 | bool showFPS_; |
---|
| 87 | bool showRenderTime_; |
---|
[1362] | 88 | }; |
---|
| 89 | } |
---|
| 90 | |
---|
[1502] | 91 | #endif /* _HUD_H__ */ |
---|