#include <formel1.h>
Inheritance diagram for Formel1:
Definition at line 62 of file formel1.h.
Public Member Functions | |
Formel1 (const OdeHandle &odeHandle, const OsgHandle &osgHandle, double size=1, double force=3, double speed=15, bool sphereWheels=true) | |
virtual | ~Formel1 () |
virtual void | update () |
updates the osg notes | |
virtual void | place (const osg::Matrix &pose) |
sets the pose of the vehicle | |
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 bool | collisionCallback (void *data, dGeomID o1, dGeomID o2) |
checks for internal collisions and treats them. | |
virtual void | doInternalStuff (const GlobalData &globalData) |
this function is called in each timestep. | |
Protected Member Functions | |
virtual Primitive * | getMainPrimitive () const |
the main object of the robot, which is used for position and speed tracking | |
virtual void | create (const osg::Matrix &pose) |
creates vehicle at desired pose | |
virtual void | destroy () |
destroys vehicle and space | |
Static Protected Member Functions | |
static void | mycallback (void *data, dGeomID o1, dGeomID o2) |
things for collision handling inside the space of the robot can be done here | |
Protected Attributes | |
double | length |
double | width |
double | height |
double | radius |
double | wheelthickness |
bool | sphereWheels |
double | cmass |
double | wmass |
int | sensorno |
int | motorno |
int | segmentsno |
double | speed |
double | max_force |
bool | created |
Primitive * | object [5] |
Hinge2Joint * | joint [4] |
|
Definition at line 58 of file formel1.cpp. |
|
|
|
checks for internal collisions and treats them. In case of a treatment return true (collision will be ignored by other objects and the default routine) else false (collision is passed to other objects and (if not treated) to the default routine). Implements OdeRobot. Definition at line 200 of file formel1.cpp. |
|
creates vehicle at desired pose
|
|
destroys vehicle and space
Definition at line 313 of file formel1.cpp. |
|
this function is called in each timestep. It should perform robot-internal checks, like space-internal collision detection, sensor resets/update etc.
Implements OdeRobot. Definition at line 193 of file formel1.cpp. |
|
the main object of the robot, which is used for position and speed tracking
Implements OdeRobot. |
|
returns number of motors
Implements AbstractRobot. |
|
returns number of sensors
Implements AbstractRobot. |
|
returns actual sensorvalues
Implements AbstractRobot. Definition at line 129 of file formel1.cpp. |
|
things for collision handling inside the space of the robot can be done here
Definition at line 174 of file formel1.cpp. |
|
sets the pose of the vehicle
Implements OdeRobot. |
|
sets actual motorcommands
Implements AbstractRobot. Definition at line 97 of file formel1.cpp. |
|
updates the osg notes
Implements OdeRobot. Definition at line 160 of file formel1.cpp. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|