Warning: include(php/utility.php): Failed to open stream: No such file or directory in /home/argos/argos3/doc/api/embedded/a00687_source.php on line 2

Warning: include(): Failed opening 'php/utility.php' for inclusion (include_path='.:/usr/lib64/php') in /home/argos/argos3/doc/api/embedded/a00687_source.php on line 2
The ARGoS Website

proximity_default_sensor.h
Go to the documentation of this file.
1 
7 #ifndef PROXIMITY_DEFAULT_SENSOR_H
8 #define PROXIMITY_DEFAULT_SENSOR_H
9 
10 #include <string>
11 #include <map>
12 
13 namespace argos {
14  class CProximityDefaultSensor;
15  class CProximitySensorEquippedEntity;
16 }
17 
18 #include <argos3/plugins/robots/generic/control_interface/ci_proximity_sensor.h>
19 #include <argos3/core/utility/math/range.h>
20 #include <argos3/core/utility/math/rng.h>
21 #include <argos3/core/simulator/space/space.h>
22 #include <argos3/core/simulator/sensor.h>
23 
24 namespace argos {
25 
27  public CCI_ProximitySensor {
28 
29  public:
30 
32 
34 
35  virtual void SetRobot(CComposableEntity& c_entity);
36 
37  virtual void Init(TConfigurationNode& t_tree);
38 
39  virtual void Update();
40 
41  virtual void Reset();
42 
48  virtual Real CalculateReading(Real f_distance);
49 
50  protected:
51 
54 
57 
60 
63 
66 
69 
72 
75  };
76 
77 }
78 
79 #endif
CControllableEntity * m_pcControllableEntity
Reference to controllable entity associated to this sensor.
The RNG.
Definition: rng.h:90
An entity that contains a pointer to the user-defined controller.
virtual void Init(TConfigurationNode &t_tree)
Initializes the sensor from the XML configuration tree.
float Real
Collects all ARGoS code.
Definition: datatypes.h:39
CProximitySensorEquippedEntity * m_pcProximityEntity
Reference to proximity sensor equipped entity associated to this sensor.
virtual Real CalculateReading(Real f_distance)
Calculates the proximity reading when the closest occluding object is located as the given distance...
ticpp::Element TConfigurationNode
The ARGoS configuration XML node.
CRange< Real > m_cNoiseRange
Noise range.
This entity is a link to a body in the physics engine.
virtual void Reset()
Resets the sensor to the state it had just after Init().
bool m_bShowRays
Flag to show rays in the simulator.
The basic interface for a simulated sensor.
Definition: sensor.h:22
Basic class for an entity that contains other entities.
bool m_bAddNoise
Whether to add noise or not.
CRandom::CRNG * m_pcRNG
Random number generator.
virtual void SetRobot(CComposableEntity &c_entity)
Sets the entity associated to this sensor.
The namespace containing all the ARGoS related code.
Definition: ci_actuator.h:12
virtual void Update()
Updates the state of the entity associated to this sensor.
CSpace & m_cSpace
Reference to the space.
CEmbodiedEntity * m_pcEmbodiedEntity
Reference to embodied entity associated to this sensor.