#include <arm2segm.h>
Inherits OdeRobot.
Inheritance diagram for Arm2Segm:
Public Member Functions | |
Arm2Segm (const OdeHandle &odeHandle, const OsgHandle &osgHandle, const Arm2SegmConf) | |
virtual | ~Arm2Segm () |
virtual void | update () |
update the subcomponents | |
virtual void | place (const osg::Matrix &pose) |
sets the vehicle to position pos, sets color to c, and creates robot if necessary | |
virtual int | getSensors (sensor *sensors, int sensornumber) |
returns actual sensorvalues | |
virtual void | setMotors (const motor *motors, int motornumber) |
sets actual motorcommands | |
virtual int | getSensorNumber () |
returns number of sensors | |
virtual int | getMotorNumber () |
returns number of motors | |
virtual int | getSegmentsPosition (std::vector< Position > &poslist) |
returns a vector with the positions of all segments of the robot | |
virtual Primitive * | getMainPrimitive () const |
the main object of the robot, which is used for position and speed tracking | |
virtual bool | collisionCallback (void *data, dGeomID o1, dGeomID o2) |
virtual void | doInternalStuff (GlobalData &globalData) |
this function is called in each timestep. | |
paramlist | getParamList () const |
The list of all parameters with there value as allocated lists. | |
virtual paramval | getParam (const paramkey &key) const |
virtual bool | setParam (const paramkey &key, paramval val) |
Static Public Member Functions | |
static Arm2SegmConf | getDefaultConf () |
Protected Member Functions | |
virtual void | create (const osg::Matrix &pose) |
creates vehicle at desired position | |
virtual void | destroy () |
destroys vehicle and space | |
Static Protected Member Functions | |
static void | mycallback (void *data, dGeomID o1, dGeomID o2) |
Protected Attributes | |
dSpaceID | parentspace |
Arm2SegmConf | conf |
std::vector< Primitive * > | objects |
std::vector< Joint * > | joints |
std::vector< AngularMotor1Axis * > | amotors |
std::string | name |
paramval | speed |
paramval | factorSensors |
int | sensorno |
int | motorno |
bool | created |
virtual ~Arm2Segm | ( | ) | [inline, virtual] |
bool collisionCallback | ( | void * | data, | |
dGeomID | o1, | |||
dGeomID | o2 | |||
) | [virtual] |
Reimplemented from OdeRobot.
void create | ( | const osg::Matrix & | pose | ) | [protected, virtual] |
creates vehicle at desired position
pose | 4x4 pose matrix |
pose
pose
pose
void destroy | ( | ) | [protected, virtual] |
destroys vehicle and space
void doInternalStuff | ( | GlobalData & | globalData | ) | [virtual] |
this function is called in each timestep.
It should perform robot-internal checks, like space-internal collision detection, sensor resets/update etc.
globalData | structure that contains global data from the simulation environment |
Implements OdeRobot.
static Arm2SegmConf getDefaultConf | ( | ) | [inline, static] |
Primitive * getMainPrimitive | ( | ) | const [virtual] |
virtual int getMotorNumber | ( | ) | [inline, virtual] |
Configurable::paramval getParam | ( | const paramkey & | key | ) | const [virtual] |
Configurable::paramlist getParamList | ( | ) | const [virtual] |
The list of all parameters with there value as allocated lists.
Reimplemented from Configurable.
int getSegmentsPosition | ( | std::vector< Position > & | poslist | ) | [virtual] |
returns a vector with the positions of all segments of the robot
poslist | vector of positions (of all robot segments) |
virtual int getSensorNumber | ( | ) | [inline, virtual] |
int getSensors | ( | sensor * | sensors, | |
int | sensornumber | |||
) | [virtual] |
returns actual sensorvalues
sensors | sensors scaled to [-1,1] | |
sensornumber | length of the sensor array |
Implements AbstractRobot.
void mycallback | ( | void * | data, | |
dGeomID | o1, | |||
dGeomID | o2 | |||
) | [static, protected] |
void place | ( | const osg::Matrix & | pose | ) | [virtual] |
sets the vehicle to position pos, sets color to c, and creates robot if necessary
pose | desired 4x4 pose matrix |
Implements OdeRobot.
void setMotors | ( | const motor * | motors, | |
int | motornumber | |||
) | [virtual] |
sets actual motorcommands
motors | motors scaled to [-1,1] | |
motornumber | length of the motor array |
Implements AbstractRobot.
void update | ( | ) | [virtual] |
std::vector<AngularMotor1Axis*> amotors [protected] |
Arm2SegmConf conf [protected] |
bool created [protected] |
paramval factorSensors [protected] |
int motorno [protected] |
std::string name [protected] |
Reimplemented from Configurable.
dSpaceID parentspace [protected] |
Reimplemented from OdeRobot.
int sensorno [protected] |