Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/radarDreiD/src/modules/overlays/hud/HUDRadar.h @ 9835

Last change on this file since 9835 was 9835, checked in by wroennin, 11 years ago

added XML port and variable mapAngle_

  • Property svn:eol-style set to native
File size: 4.1 KB
RevLine 
[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
[5693]33#include "overlays/OverlaysPrereqs.h"
[1502]34
[3196]35#include <map>
[1614]36#include <vector>
[9818]37#include <string>
[3196]38
39#include "util/OgreForwardRefs.h"
40#include "interfaces/RadarListener.h"
41#include "interfaces/RadarViewable.h"
[1604]42#include "overlays/OrxonoxOverlay.h"
[1407]43
[1283]44namespace orxonox
45{
[5693]46    class _OverlaysExport HUDRadar : public OrxonoxOverlay, public RadarListener
[1329]47    {
[1615]48    public:
[9667]49        HUDRadar(Context* context);
[3196]50        virtual ~HUDRadar();
[1400]51
[7401]52        virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
[2662]53        virtual void changedOwner();
[9818]54        void setConfigValues();
[1604]55
[1615]56    private:
57        // XML accessors
[1613]58        float getHalfDotSizeDistance() const { return this->halfDotSizeDistance_; }
59        void setHalfDotSizeDistance(float distance) { this->halfDotSizeDistance_ = distance; }
[1604]60
[8891]61        void setDetectionLimit( float limit )
62        { this->detectionLimit_ = limit; }
63        float getDetectionLimit() const
64        { return this->detectionLimit_; }
65
[1613]66        float getMaximumDotSize() const { return this->maximumDotSize_; }
67        void setMaximumDotSize(float size) { this->maximumDotSize_ = size; }
68
[9818]69        float getMaximumDotSize3D() const { return this->maximumDotSize3D_; }
70        void setMaximumDotSize3D(float size) { this->maximumDotSize3D_ = size;}
71
72        std::string get2DMaterial() const {return this->material2D_; }
73        void set2DMaterial(std::string material2D) { this->material2D_ = material2D; }
74
75        std::string get3DMaterial() const {return this->material3D_; }
76        void set3DMaterial(std::string material3D) { this->material3D_ = material3D; }
77
[1615]78        float getRadarSensitivity() const { return this->sensitivity_; }
79        // used also by RadarListener interface!
80        void setRadarSensitivity(float sensitivity) { this->sensitivity_ = sensitivity; }
81
[9835]82        // Determines angle between line of sight and x/z-plain on the 3D minimap
83        float getMapAngle() const { return this->mapAngle_; }
84        void setMapAngle(float mapAngle) { this->mapAngle_ = mapAngle; }
85
[1615]86        // RadarListener interface
[7163]87        virtual void addObject(RadarViewable* viewable);
88        virtual void removeObject(RadarViewable* viewable);
89        virtual void objectChanged( RadarViewable* rv );
[1613]90        void radarTick(float dt);
[8891]91        bool showObject( RadarViewable* rv ); //!< Do not display an object on radar, if showObject(.) is false.
[1604]92
[7163]93        void gatherObjects();
94
[1613]95        std::map<RadarViewable::Shape, std::string> shapeMaterials_;
[1604]96
[7163]97//         std::vector<Ogre::PanelOverlayElement*> radarDots_;
98//         std::vector<Ogre::PanelOverlayElement*>::iterator itRadarDots_;
99        std::map<RadarViewable*, Ogre::PanelOverlayElement*> radarObjects_;
[1613]100        Ogre::PanelOverlayElement* marker_;
101
[9818]102        bool RadarMode_; // Determines, if Radar runs in 3D or 2D Mode
103
[1613]104        float halfDotSizeDistance_;
105        float maximumDotSize_;
[9818]106        float maximumDotSize3D_;
[9835]107        float mapAngle_;
[1613]108
[9818]109        std::string material2D_;
110        std::string material3D_;
111
[1613]112        float sensitivity_;
[8891]113        float detectionLimit_;
[7880]114        ControllableEntity* owner_;
[1604]115    };
[1302]116}
[1283]117
[1604]118#endif /* _HUDRadar_H__ */
Note: See TracBrowser for help on using the repository browser.