Robot Simulator of the Robotics Group for Self-Organization of Control
0.8.0
|
Class for Ray-based sensors. More...
#include <raysensor.h>
Public Types | |
enum | rayDrawMode { drawNothing, drawRay, drawSensor, drawAll } |
![]() | |
enum | Dimensions { X = 1, Y = 2, Z = 4, XY = X | Y, XZ = X | Z, YZ = Y | Z, XYZ = X | Y | Z } |
defines which dimensions should be sensed. The meaning is sensor specific. More... | |
![]() | |
typedef std::function < std::string(int)> | NamingFunction |
function that returns the name given the index More... | |
Public Member Functions | |
RaySensor () | |
RaySensor (double size, double range, rayDrawMode drawMode) | |
~RaySensor () | |
virtual RaySensor * | clone () const |
Create a copy of this without initialization. More... | |
void | setPose (const osg::Matrix &pose) override |
changes the relative pose of the sensor More... | |
void | init (Primitive *own, Joint *joint=0) override |
initialises sensor with a body of robot and optionally with a joint. More... | |
bool | sense (const GlobalData &globaldata) override |
performs sense action More... | |
int | get (sensor *sensors, int length) const override |
writes the sensor values (usually in the range [-1,1] ) into the given sensor array and returns the number of sensors written. More... | |
std::list< sensor > | getList () const override |
returns a list of sensor values (usually in the range [-1,1] ) This function should be overloaded. More... | |
virtual int | getSensorNumber () const override |
returns the number of sensors values produced by this sensor More... | |
virtual void | update () override |
to update any visual appearance More... | |
virtual void | setRange (double range) |
Set maximum range of ray. More... | |
virtual void | setDrawMode (rayDrawMode drawMode) |
Set draw mode of ray. More... | |
void | setLength (double len, long int time) |
Set length of ray (needed for callback) More... | |
![]() | |
PhysicalSensor () | |
virtual | ~PhysicalSensor () |
virtual void | setInitData (const OdeHandle &odeHandle, const OsgHandle &osgHandle, const osg::Matrix &pose) |
sets the initial data structures More... | |
virtual osg::Matrix | getPose () |
relative pose of the sensor More... | |
![]() | |
Sensor () | |
virtual | ~Sensor () |
virtual std::list < SensorMotorInfo > | getSensorInfos () const |
returns a list of sensor infos ( More... | |
std::list< sensor > | getListOfArray () const |
helper function for performance implementation of list<> get() based on array-get More... | |
![]() | |
SensorMotorInfoAble () | |
void | setBaseName (const std::string &basename) |
void | setBaseInfo (const SensorMotorInfo &baseinfo) |
SensorMotorInfo | getBaseInfo () |
void | setNamingFunc (const NamingFunction &func) |
NamingFunction | getNamingFunc () const |
void | setNames (const std::vector< std::string > &names) |
set names explicitly (basename is anyway suffixed) More... | |
std::string | getName (int index) const |
returns the name of a single item. Typically called from within Sensor and Motor class. More... | |
std::list< SensorMotorInfo > | getInfos (int number) const |
get all infos. More... | |
Protected Member Functions | |
void | defaultInit () |
Protected Attributes | |
double | size |
double | range |
rayDrawMode | drawMode |
double | len |
double | lastlen |
double | detection |
long | lasttimeasked |
OSGCylinder * | sensorBody |
Transform * | transform |
Ray * | ray |
bool | initialised |
![]() | |
OdeHandle | odeHandle |
OsgHandle | osgHandle |
osg::Matrix | pose |
bool | isInitDataSet |
![]() | |
NamingFunction | func |
SensorMotorInfo | baseinfo |
Additional Inherited Members | |
![]() | |
static std::list< sensor > | selectrows (const matrix::Matrix &m, short dimensions) |
selects the rows specified by dimensions (X->0, Y->1, Z->2) More... | |
static int | selectrows (sensor *sensors, int length, const matrix::Matrix &m, short dimensions) |
selects the rows specified by dimensions (X->0, Y->1, Z->2) More... | |
static Dimensions | parseSensorDimension (char *str) |
static std::string | dimensions2String (short dimensions) |
![]() | |
static std::string | defaultNameing (int index) |
the default implementation is for index==0: basename, otherwise basename + (index+1) More... | |
Class for Ray-based sensors.
This are sensors which are based on distance measurements using the ODE geom class Ray. The sensor value is obtained by collisions. See also RaySensorBank, which is an object for managing multiple ray sensors.
enum rayDrawMode |
RaySensor | ( | ) |
RaySensor | ( | double | size, |
double | range, | ||
rayDrawMode | drawMode | ||
) |
size | size of sensor in simulation |
range | maximum range of the Ray sensor |
drawMode | draw mode of the sensor |
~RaySensor | ( | ) |
|
virtual |
Create a copy of this without initialization.
|
protected |
|
overridevirtual |
writes the sensor values (usually in the range [-1,1] ) into the given sensor array and returns the number of sensors written.
A default implementation based on get() is provided. Only if performance matters overwrite this function.
sensors | call by refernce array which received the values |
length | capacity of sensors array |
Reimplemented from Sensor.
|
overridevirtual |
returns a list of sensor values (usually in the range [-1,1] ) This function should be overloaded.
If performance matters, implement get(double*, int) and use getListOfArray to implement this.
Implements Sensor.
|
overridevirtual |
returns the number of sensors values produced by this sensor
Implements Sensor.
initialises sensor with a body of robot and optionally with a joint.
This is usually done by the robot itself (or using the Attachment())
Implements Sensor.
|
overridevirtual |
performs sense action
Implements Sensor.
|
virtual |
Set draw mode of ray.
void setLength | ( | double | len, |
long int | time | ||
) |
Set length of ray (needed for callback)
|
overridevirtual |
changes the relative pose of the sensor
Reimplemented from PhysicalSensor.
|
virtual |
Set maximum range of ray.
|
overridevirtual |
to update any visual appearance
Reimplemented from Sensor.
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |