[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 |
---|
[1614] | 24 | * Felix Schulthess |
---|
[1502] | 25 | * Co-authors: |
---|
[1614] | 26 | * Reto Grieder |
---|
[1502] | 27 | * |
---|
| 28 | */ |
---|
[1283] | 29 | |
---|
[1604] | 30 | #ifndef _HUDRadar_H__ |
---|
| 31 | #define _HUDRadar_H__ |
---|
[1283] | 32 | |
---|
[1502] | 33 | #include "OrxonoxPrereqs.h" |
---|
| 34 | |
---|
[1614] | 35 | #include <vector> |
---|
| 36 | #include <map> |
---|
[1502] | 37 | #include <OgrePrerequisites.h> |
---|
[1604] | 38 | #include "overlays/OrxonoxOverlay.h" |
---|
[1819] | 39 | #include "objects/RadarListener.h" |
---|
| 40 | #include "objects/RadarViewable.h" |
---|
[1407] | 41 | |
---|
[1283] | 42 | namespace orxonox |
---|
| 43 | { |
---|
[1614] | 44 | class _OrxonoxExport HUDRadar : public OrxonoxOverlay, public RadarListener |
---|
[1329] | 45 | { |
---|
[1615] | 46 | public: |
---|
[1604] | 47 | HUDRadar(); |
---|
| 48 | ~HUDRadar(); |
---|
[1400] | 49 | |
---|
[1747] | 50 | virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode); |
---|
[1604] | 51 | |
---|
[1615] | 52 | private: |
---|
| 53 | // XML accessors |
---|
[1613] | 54 | float getHalfDotSizeDistance() const { return this->halfDotSizeDistance_; } |
---|
| 55 | void setHalfDotSizeDistance(float distance) { this->halfDotSizeDistance_ = distance; } |
---|
[1604] | 56 | |
---|
[1613] | 57 | float getMaximumDotSize() const { return this->maximumDotSize_; } |
---|
| 58 | void setMaximumDotSize(float size) { this->maximumDotSize_ = size; } |
---|
| 59 | |
---|
[1615] | 60 | float getRadarSensitivity() const { return this->sensitivity_; } |
---|
| 61 | // used also by RadarListener interface! |
---|
| 62 | void setRadarSensitivity(float sensitivity) { this->sensitivity_ = sensitivity; } |
---|
| 63 | |
---|
| 64 | // RadarListener interface |
---|
[1613] | 65 | void displayObject(RadarViewable* viewable, bool bIsMarked); |
---|
| 66 | void radarTick(float dt); |
---|
[1604] | 67 | |
---|
[1613] | 68 | std::map<RadarViewable::Shape, std::string> shapeMaterials_; |
---|
[1604] | 69 | |
---|
[1614] | 70 | std::vector<Ogre::PanelOverlayElement*> radarDots_; |
---|
| 71 | std::vector<Ogre::PanelOverlayElement*>::iterator itRadarDots_; |
---|
[1613] | 72 | Ogre::PanelOverlayElement* marker_; |
---|
| 73 | |
---|
| 74 | float halfDotSizeDistance_; |
---|
| 75 | float maximumDotSize_; |
---|
| 76 | |
---|
| 77 | float sensitivity_; |
---|
[1604] | 78 | }; |
---|
[1302] | 79 | } |
---|
[1283] | 80 | |
---|
[1604] | 81 | #endif /* _HUDRadar_H__ */ |
---|