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 | * Felix Schulthess |
---|
24 | * Co-authors: |
---|
25 | * Reto Grieder |
---|
26 | * Matthias Spalinger |
---|
27 | * |
---|
28 | */ |
---|
29 | |
---|
30 | #ifndef _HUDNavigation_H__ |
---|
31 | #define _HUDNavigation_H__ |
---|
32 | |
---|
33 | #include "overlays/OverlaysPrereqs.h" |
---|
34 | |
---|
35 | #include <map> |
---|
36 | #include <string> |
---|
37 | |
---|
38 | #include "util/OgreForwardRefs.h" |
---|
39 | #include "tools/interfaces/Tickable.h" |
---|
40 | #include "interfaces/RadarListener.h" |
---|
41 | #include "overlays/OrxonoxOverlay.h" |
---|
42 | |
---|
43 | namespace orxonox |
---|
44 | { |
---|
45 | class _OverlaysExport HUDNavigation : public OrxonoxOverlay, public Tickable, public RadarListener |
---|
46 | { |
---|
47 | public: |
---|
48 | HUDNavigation(Context* context); |
---|
49 | virtual ~HUDNavigation(); |
---|
50 | |
---|
51 | void setConfigValues(); |
---|
52 | |
---|
53 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); |
---|
54 | virtual void tick(float dt); |
---|
55 | |
---|
56 | // RadarListener interface |
---|
57 | virtual void addObject(RadarViewable* object); |
---|
58 | virtual void removeObject(RadarViewable* viewable); |
---|
59 | virtual void objectChanged(RadarViewable* viewable); |
---|
60 | |
---|
61 | virtual void changedOwner(); |
---|
62 | virtual void sizeChanged(); |
---|
63 | virtual void angleChanged() { } |
---|
64 | virtual void positionChanged() { } |
---|
65 | virtual void radarTick(float dt) {} |
---|
66 | |
---|
67 | inline float getRadarSensitivity() const |
---|
68 | { return 1.0f; } |
---|
69 | |
---|
70 | inline unsigned int getMarkerLimit() const |
---|
71 | { return this->markerLimit_; } |
---|
72 | |
---|
73 | static void selectClosestTarget(); |
---|
74 | static void selectNextTarget(); |
---|
75 | |
---|
76 | private: |
---|
77 | struct ObjectInfo |
---|
78 | { |
---|
79 | Ogre::PanelOverlayElement* panel_; |
---|
80 | Ogre::PanelOverlayElement* target_; |
---|
81 | Ogre::TextAreaOverlayElement* text_; |
---|
82 | bool outOfView_; |
---|
83 | bool wasOutOfView_; |
---|
84 | bool selected_; |
---|
85 | }; |
---|
86 | |
---|
87 | bool showObject(RadarViewable* rv); |
---|
88 | |
---|
89 | // XMLPort accessors |
---|
90 | inline void setNavMarkerSize(float size) |
---|
91 | { |
---|
92 | this->navMarkerSize_ = size; |
---|
93 | this->sizeChanged(); |
---|
94 | } |
---|
95 | inline float getNavMarkerSize() const |
---|
96 | { return navMarkerSize_; } |
---|
97 | inline void setAimMarkerSize(float size) |
---|
98 | { |
---|
99 | this->aimMarkerSize_ = size; |
---|
100 | this->sizeChanged(); |
---|
101 | } |
---|
102 | inline float getAimMarkerSize() const |
---|
103 | { return aimMarkerSize_; } |
---|
104 | inline void setDetectionLimit(float limit) |
---|
105 | { this->detectionLimit_ = limit; } |
---|
106 | inline float getDetectionLimit() const |
---|
107 | { return this->detectionLimit_; } |
---|
108 | |
---|
109 | void setTextSize(float size); |
---|
110 | float getTextSize() const; |
---|
111 | |
---|
112 | void setFont(const std::string& font); |
---|
113 | const std::string& getFont() const; |
---|
114 | |
---|
115 | float getArrowSizeX(int dist) const; |
---|
116 | float getArrowSizeY(int dist) const; |
---|
117 | |
---|
118 | Vector3* toAimPosition(RadarViewable* target) const; |
---|
119 | |
---|
120 | std::map<RadarViewable*, ObjectInfo> activeObjectList_; |
---|
121 | std::list<std::pair<RadarViewable*, unsigned int> > sortedObjectList_; |
---|
122 | |
---|
123 | float navMarkerSize_; |
---|
124 | float aimMarkerSize_; |
---|
125 | std::string fontName_; |
---|
126 | float textSize_; |
---|
127 | bool showDistance_; |
---|
128 | |
---|
129 | RadarViewable* selectedTarget_; |
---|
130 | |
---|
131 | bool closestTarget_; |
---|
132 | bool nextTarget_; |
---|
133 | |
---|
134 | static HUDNavigation* localHUD_s; //!< This is used as a filter. Only the local HUD should be influenced by the static Console Command functions. |
---|
135 | |
---|
136 | |
---|
137 | float currentMunitionSpeed_; |
---|
138 | |
---|
139 | unsigned int markerLimit_; |
---|
140 | float detectionLimit_; //!< Objects that are more far away than detectionLimit_ are not displayed on the HUD. 10000.0f is the default value. |
---|
141 | }; |
---|
142 | } |
---|
143 | |
---|
144 | #endif /* _HUDNavigation_H__ */ |
---|