Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/spaceNavigation/src/modules/overlays/hud/HUDNavigation.h @ 9434

Last change on this file since 9434 was 9434, checked in by mottetb, 12 years ago

aimMarkerSize aendert nichts im Spiel

  • Property svn:eol-style set to native
File size: 4.4 KB
RevLine 
[1505]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
[1454]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 *
[1454]22 *   Author:
23 *      Felix Schulthess
24 *   Co-authors:
[1590]25 *      Reto Grieder
[9016]26 *      Matthias Spalinger
[1454]27 *
28 */
[1393]29
[1601]30#ifndef _HUDNavigation_H__
31#define _HUDNavigation_H__
[1393]32
[5693]33#include "overlays/OverlaysPrereqs.h"
[1410]34
[7163]35#include <map>
36#include <string>
37
[3196]38#include "util/OgreForwardRefs.h"
[5693]39#include "tools/interfaces/Tickable.h"
[7163]40#include "interfaces/RadarListener.h"
[1601]41#include "overlays/OrxonoxOverlay.h"
[1393]42
43namespace orxonox
44{
[9348]45    class _OverlaysExport HUDNavigation : public OrxonoxOverlay, public Tickable, public RadarListener
46    {
47        public:
48            HUDNavigation(BaseObject* creator);
49            virtual ~HUDNavigation();
[7163]50
[9348]51            void setConfigValues();
[7163]52
[9348]53            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
54            virtual void tick(float dt);
[7163]55
[9348]56            // RadarListener interface
57            virtual void addObject(RadarViewable* object);
58            virtual void removeObject(RadarViewable* viewable);
59            virtual void objectChanged(RadarViewable* viewable);
[7163]60
[9348]61            virtual void changedOwner();
62            virtual void sizeChanged();
63            virtual void angleChanged() { }
64            virtual void positionChanged() { }
65            virtual void radarTick(float dt) {}
[7163]66
[9348]67            inline float getRadarSensitivity() const
68                { return 1.0f; }
[7163]69
[9348]70            inline unsigned int getMarkerLimit() const
71                { return this->markerLimit_; }
[9016]72
[9348]73        private:
74            struct ObjectInfo
75            {
76                Ogre::PanelOverlayElement* panel_;
[9421]77                Ogre::PanelOverlayElement* target_;
[9348]78                Ogre::TextAreaOverlayElement* text_;
79                bool outOfView_;
80                bool wasOutOfView_;
[9434]81                bool selected_;
[9348]82            };
[1393]83
[9348]84            bool showObject(RadarViewable* rv);
[1590]85
[9348]86            // XMLPort accessors
87            inline void setNavMarkerSize(float size)
88            {
89                navMarkerSize_ = size;
90                this->sizeChanged();
91            }
92            inline float getNavMarkerSize() const
93                { return navMarkerSize_; }
[9429]94            inline void setAimMarkerSize(float size)
95            {
96                aimMarkerSize_ = size;
97                this->sizeChanged();
98            }
99            inline float getAimMarkerSize() const
100                { return aimMarkerSize_; }
[9348]101            inline void setDetectionLimit(float limit)
102                { this->detectionLimit_ = limit; }
103            inline float getDetectionLimit() const
104                { return this->detectionLimit_; }
[1604]105
[9348]106            void setTextSize(float size);
107            float getTextSize() const;
[1615]108
[9348]109            void setFont(const std::string& font);
110            const std::string& getFont() const;
[1615]111
[9348]112            float getArrowSizeX(int dist) const;
113            float getArrowSizeY(int dist) const;
[1615]114
[9421]115            Vector3* toAimPosition(RadarViewable* target) const;
116
[9348]117            std::map<RadarViewable*, ObjectInfo> activeObjectList_;
118            std::list<std::pair<RadarViewable*, unsigned int> > sortedObjectList_;
[1590]119
[9348]120            float navMarkerSize_;
[9429]121            float aimMarkerSize_;
[9348]122            std::string fontName_;
123            float textSize_;
124            bool showDistance_;
[1615]125
[9421]126            static const float LIGHTNING_GUN_SPEED_ = 700.0f;
127            static const float HSW01_SPEED_ = 2500.0f;
128
129            float currentMunitionSpeed_;
130
131            Pawn* ship_;
132
[9348]133            unsigned int markerLimit_;
134            float detectionLimit_; //!< Objects that are more far away than detectionLimit_ are not displayed on the HUD. 10000.0f is the default value.
135    };
[1393]136}
137
[1601]138#endif /* _HUDNavigation_H__ */
Note: See TracBrowser for help on using the repository browser.