Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 21, 2008, 2:35:24 PM (16 years ago)
Author:
rgrieder
Message:
  • Dots on the Radar actually disappear now when a Ship gets destroyed…
  • svn save to keep History of HUDText when renaming AND moving
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/hud/src/orxonox/Radar.h

    r1613 r1614  
    2323 *      Reto Grieder
    2424 *   Co-authors:
    25  *      ...
     25 *      Felix Schulthess
    2626 *
    2727 */
     
    3737#include "OrxonoxPrereqs.h"
    3838
     39#include <map>
    3940#include <string>
    4041#include "core/Iterator.h"
     
    4546namespace orxonox
    4647{
    47     class _OrxonoxExport RadarListener : virtual public OrxonoxClass
    48     {
    49     public:
    50         RadarListener();
    51         virtual ~RadarListener() { }
    52 
    53         virtual void displayObject(RadarViewable* viewable, bool bIsMarked) = 0;
    54         virtual void hideMarker() = 0;
    55         virtual float getRadarSensitivity() = 0;
    56         virtual void radarTick(float dt) = 0;
    57     };
    58 
    5948    /**
    6049    @brief This class merely ensures that no one can inherit from Radar.
     
    7362        ~Radar();
    7463
    75         //void unregisterObject(RadarViewable* object);
    7664        const RadarViewable* getFocus();
    7765        RadarViewable::Shape addObjectDescription(const std::string name);
     66
     67        void listObjects() const;
    7868
    7969        static Radar& getInstance();
Note: See TracChangeset for help on using the changeset viewer.