Public Types | |
enum | ExternalizationType { Input = 1, Output = 2, IO = 3 } |
Public Member Functions | |
SimulatedRobotDescription () | |
SimulatedRobotDescription (String name, ref< const PlatformDescription > platformDescription, array< ref< const ManipulatorDescription > > manipulatorDescriptions, array< Vector3 > manipulatorOffsets) | |
SimulatedRobotDescription (const RobotDescription &r) | |
SimulatedRobotDescription (const SimulatedRobotDescription &r) | |
virtual String | className () const |
virtual ref< PlatformDescription > | newPlatformDescription () const |
virtual ref< ManipulatorDescription > | newManipulatorDescription () const |
SimulatedRobotDescription & | operator= (const SimulatedRobotDescription &r) |
virtual bool | formatSupported (const String format, Real version=1.0, ExternalizationType type=IO) const |
query if specific format is supported (for input, output or both) | |
virtual void | externalize (base::Externalizer &e, String format="", Real version=1.0) |
read or write object state to Externalizer | |
void | externalize (base::Externalizer &e, String format="", Real version=1.0) const |
write object state to Externalizer (throws if e is in Input) | |
void | set (String name, ref< const PlatformDescription > platformDescription, array< ref< const ManipulatorDescription > > manipulatorDescriptions, array< Vector3 > manipulatorOffsets) |
virtual ref< const PlatformDescription > | platform () const |
get description of this robot's platform | |
virtual const array< ref< const ManipulatorDescription > > & | manipulators () const |
get descriptions of this robot's manipulators (if any) | |
virtual const array< Vector3 > & | manipulatorOffsets () const |
get the offset of each manipulator from the platform origin | |
virtual KinematicChain | getKinematicChain (Int platformDOF=0, const base::Matrix4 &platformTransform=base::Matrix4(), Int manipIndex=0, Int manipChainIndex=0) const |
virtual const String & | getName () const |
void | load (ref< VFile > archive, const String &format="", Real version=1.0) |
void | save (ref< VFile > archive, const String &format="", Real version=1.0) |
virtual bool | isSameKindAs (const Object &) const |
virtual bool | isSameKindAs (const ReferencedObject &) const |
void | reference () const |
bool | unreference () const |
const int | referenceCount () const |
void | enableOnUnreferenceCall (bool enabled) |
virtual void | onUnreference () const |
Protected Member Functions | |
SimulatedRobotDescription (const String &name) | |
void | setPlatformDescription (ref< const PlatformDescription > pd) |
void | setManipulatorDescriptions (const array< ref< const ManipulatorDescription > > &mds) |
void | setManipulatorOffsets (const array< Vector3 > offsets) |
virtual void | setName (const String &name) |
Protected Attributes | |
int | _refCount |
bool | onUnreferenceEnabled |
Friends | |
class | SimulatedRobot |
Definition at line 44 of file SimulatedRobotDescription.
|
Definition at line 40 of file Externalizable. |
|
Definition at line 47 of file SimulatedRobotDescription. |
|
Definition at line 48 of file SimulatedRobotDescription. |
|
Definition at line 54 of file SimulatedRobotDescription. |
|
Definition at line 58 of file SimulatedRobotDescription. |
|
Definition at line 87 of file SimulatedRobotDescription. |
|
return the name of the object's class type. Must be defined by derived classes. Reimplemented from robot::RobotDescription. Definition at line 62 of file SimulatedRobotDescription. |
|
If enabled, each call to unreference() will also call virtual method onUnreference() Definition at line 115 of file Referenced. References base::Referenced::onUnreferenceEnabled. |
|
write object state to Externalizer (throws if e is in Input)
Reimplemented from robot::RobotDescription. Definition at line 82 of file SimulatedRobotDescription. |
|
read or write object state to Externalizer
Reimplemented from robot::RobotDescription. Definition at line 80 of file SimulatedRobotDescription. |
|
query if specific format is supported (for input, output or both)
Reimplemented from robot::RobotDescription. Definition at line 78 of file SimulatedRobotDescription. |
|
get an equivelent kinematic chain for the robot (from world frame to indicated manipulator end-effector). The platform dof can either be 0, 3 or 6:
|
|
Definition at line 44 of file Named. References base::String. Referenced by physics::Collidable::findNamed(), physics::operator<<(), robot::ToolDescription::operator=(), robot::RobotDescription::operator=(), robot::PlatformDescription::operator=(), robot::ManipulatorDescription::operator=(), base::Named::operator=(), and robot::ManipulatorDescription::operator==(). |
|
Definition at line 52 of file ReferencedObject. |
|
|
|
|
|
get the offset of each manipulator from the platform origin
Definition at line 97 of file RobotDescription. |
|
get descriptions of this robot's manipulators (if any)
Definition at line 94 of file RobotDescription. |
|
Reimplemented from robot::RobotDescription. Definition at line 67 of file SimulatedRobotDescription. References NewObj. |
|
Reimplemented from robot::RobotDescription. Definition at line 66 of file SimulatedRobotDescription. References NewObj. |
|
Called by unreference() if enabled via enableOnUnreferenceCall(true). Typically overridden in subclasses that wish to know about unreference() calls - for example to handle manually breaking cyclic references Reimplemented in robot::control::ControllableAdaptor::AdaptorControlInterface, and robot::control::ControllableAdaptor. Definition at line 121 of file Referenced. Referenced by base::Referenced::unreference(). |
|
Definition at line 70 of file SimulatedRobotDescription. |
|
get description of this robot's platform
Definition at line 91 of file RobotDescription. |
|
Increment the reference count by one, indicating that this object has another pointer which is referencing it. Definition at line 65 of file Referenced. References base::Referenced::_refCount. |
|
Return the number pointers currently referencing this object. Definition at line 112 of file Referenced. References base::Referenced::_refCount. Referenced by robot::control::ControllableAdaptor::AdaptorControlInterface::onUnreference(). |
|
|
|
Definition at line 65 of file RobotDescription. References robot::RobotDescription::setManipulatorDescriptions(), robot::RobotDescription::setManipulatorOffsets(), base::Named::setName(), and robot::RobotDescription::setPlatformDescription(). |
|
Definition at line 126 of file RobotDescription. Referenced by robot::RobotDescription::set(). |
|
Definition at line 127 of file RobotDescription. Referenced by robot::RobotDescription::set(). |
|
|
Definition at line 125 of file RobotDescription. Referenced by robot::RobotDescription::set(). |
|
Decrement the reference count by one, indicating that a pointer to this object is referencing it. If the refence count goes to zero, it is assumed that this object is nolonger referenced and is automatically deleted. Definition at line 81 of file Referenced. References base::Referenced::_refCount, Exception, base::Referenced::onUnreference(), and base::Referenced::onUnreferenceEnabled. |
|
Definition at line 92 of file SimulatedRobotDescription. |
|
Definition at line 136 of file Referenced. Referenced by base::Referenced::reference(), base::Referenced::referenceCount(), base::Referenced::Referenced(), base::Referenced::unreference(), and base::Referenced::~Referenced(). |
|
Definition at line 137 of file Referenced. Referenced by base::Referenced::enableOnUnreferenceCall(), base::Referenced::Referenced(), and base::Referenced::unreference(). |