ARGoS  3
A parallel, multi-engine simulator for swarm robotics
eyebot_proximity_default_sensor.h
Go to the documentation of this file.
1 
7 #ifndef EYEBOT_PROXIMITY_DEFAULT_SENSOR_H
8 #define EYEBOT_PROXIMITY_DEFAULT_SENSOR_H
9 
10 #include <string>
11 #include <map>
12 
13 namespace argos {
14  class CEyeBotProximityDefaultSensor;
15 }
16 
17 #include <argos3/plugins/robots/eye-bot/control_interface/ci_eyebot_proximity_sensor.h>
18 #include <argos3/plugins/robots/generic/simulator/proximity_default_sensor.h>
19 
20 namespace argos {
21 
23  public CSimulatedSensor {
24 
25  public:
26 
28 
30 
31  virtual void SetRobot(CComposableEntity& c_entity);
32 
33  virtual void Init(TConfigurationNode& t_tree);
34 
35  virtual void Update();
36 
37  virtual void Reset();
38 
39  private:
40 
41  CProximityDefaultSensor* m_pcProximityImpl;
42 
43  };
44 
45 }
46 
47 #endif
argos
The namespace containing all the ARGoS related code.
Definition: ci_actuator.h:12
argos::CProximityDefaultSensor
Definition: proximity_default_sensor.h:26
argos::CComposableEntity
Basic class for an entity that contains other entities.
Definition: composable_entity.h:32
argos::CEyeBotProximityDefaultSensor::Update
virtual void Update()
Updates the state of the entity associated to this sensor.
Definition: eyebot_proximity_default_sensor.cpp:68
argos::CEyeBotProximityDefaultSensor::~CEyeBotProximityDefaultSensor
virtual ~CEyeBotProximityDefaultSensor()
Definition: eyebot_proximity_default_sensor.cpp:42
argos::TConfigurationNode
ticpp::Element TConfigurationNode
The ARGoS configuration XML node.
Definition: argos_configuration.h:27
argos::CCI_EyeBotProximitySensor
Definition: ci_eyebot_proximity_sensor.h:44
argos::CEyeBotProximityDefaultSensor::Reset
virtual void Reset()
Resets the sensor to the state it had just after Init().
Definition: eyebot_proximity_default_sensor.cpp:78
argos::CSimulatedSensor
The basic interface for a simulated sensor.
Definition: sensor.h:22
argos::CEyeBotProximityDefaultSensor::Init
virtual void Init(TConfigurationNode &t_tree)
Initializes the sensor from the XML configuration tree.
Definition: eyebot_proximity_default_sensor.cpp:61
argos::CEyeBotProximityDefaultSensor
Definition: eyebot_proximity_default_sensor.h:22
argos::CEyeBotProximityDefaultSensor::SetRobot
virtual void SetRobot(CComposableEntity &c_entity)
Sets the entity associated to this sensor.
Definition: eyebot_proximity_default_sensor.cpp:49
argos::CEyeBotProximityDefaultSensor::CEyeBotProximityDefaultSensor
CEyeBotProximityDefaultSensor()
Definition: eyebot_proximity_default_sensor.cpp:36