Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 17, 2016, 4:03:06 PM (8 years ago)
Author:
ooguz
Message:

WayPoint class changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/QuestGuide_HS16/src/orxonox/worldentities/Waypoint.h

    r11230 r11237  
    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  *      Fabian 'x3n' Landau
    24  *      Reto Grieder
    25  *   Co-authors:
    26  *      ...
    27  *
    28  */
     1
    292
    303#ifndef _Waypoint_H__
     
    336#include "OrxonoxPrereqs.h"
    347#include "StaticEntity.h"
     8#include "overlays/OverlaysPrereqs.h"
     9
     10#include <map>
     11#include <string>
     12
     13#include "util/OgreForwardRefs.h"
     14#include "tools/interfaces/Tickable.h"
     15#include "interfaces/RadarListener.h"
     16#include "overlays/OrxonoxOverlay.h"
    3517
    3618namespace orxonox
     
    4830    */
    4931
    50     class _OrxonoxExport Waypoint : public StaticEntity
     32    class _OrxonoxExport Waypoint : public StaticEntity, public RadarListener
    5133    {
    5234        public:
    5335            Waypoint(Context* context);
    5436            virtual ~Waypoint();
     37
     38            virtual void addObject(RadarViewable* object) override;
     39            virtual void removeObject(RadarViewable* viewable) override;
     40            virtual void objectChanged(RadarViewable* viewable) override;
    5541
    5642            using StaticEntity::setPosition;
     
    5945            virtual void setPosition(const Vector3& position) override;
    6046            virtual void setOrientation(const Quaternion& orientation) override;
     47
     48            virtual void positionChanged() override { }
     49            virtual void radarTick(float dt) override {}
     50
     51            virtual inline float getRadarSensitivity() const override
     52                { return 1.0f; }
     53
     54            inline unsigned int getMarkerLimit() const
     55                { return this->markerLimit_; }
     56
     57            static void selectClosestTarget();
     58            static void selectNextTarget();
     59
     60
    6161
    6262        private:
Note: See TracChangeset for help on using the changeset viewer.