Public Types | |
enum | ExternalizationType { Input = 1, Output = 2, IO = 3 } |
Public Member Functions | |
Environment (ref< base::VFileSystem > fs, ref< base::Cache > cache, const String &name="") | |
Environment (const Environment &e) | |
virtual String | className () const |
virtual ref< RobotDescription > | newRobotDescription () const=0 |
virtual ref< Robot > | addRobot (ref< const robot::RobotDescription > robotDescription, const base::Point3 &position, const base::Orient &orientation, bool anchored=false)=0 |
add Robot with the given description to the environment at the specified position/orientation (fixed there if anchored is true) | |
virtual void | removeRobot (ref< robot::Robot > robot)=0 |
virtual Int | numRobots () const=0 |
virtual ref< Robot > | getRobot (Int i)=0 |
virtual void | preSimulate ()=0 |
virtual void | simulateForSimTime (const Time &dt)=0 |
void | simulateForRealTime (const Time &dt, Real simTimeStepSize=minSimStepSize) |
virtual bool | isSameKindAs (const ReferencedObject &) const |
virtual bool | isSameKindAs (const Object &) const |
void | reference () const |
bool | unreference () const |
const int | referenceCount () const |
void | enableOnUnreferenceCall (bool enabled) |
virtual void | onUnreference () const |
virtual bool | formatSupported (String format, Real version=1.0, ExternalizationType type=IO) const=0 |
query if specific format is supported (for input, output or both) | |
virtual void | externalize (Externalizer &e, String format="", Real version=1.0)=0 |
read or write object state to Externalizer | |
virtual void | externalize (Externalizer &e, String format="", Real version=1.0) const |
write object state to Externalizer (throws if e is in Input) | |
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 Object & | clone () const=0 |
Static Public Attributes | |
const Real | minSimStepSize |
Protected Attributes | |
int | _refCount |
bool | onUnreferenceEnabled |
Definition at line 50 of file Environment.
|
Definition at line 40 of file Externalizable. |
|
Definition at line 53 of file Environment. |
|
Definition at line 54 of file Environment. |
|
add Robot with the given description to the environment at the specified position/orientation (fixed there if anchored is true)
Implemented in robot::sim::SimulatedBasicEnvironment, and robot::sim::TestBasicEnvironment. |
|
return the name of the object's class type. Must be defined by derived classes. Implements base::Object. Reimplemented in robot::sim::BasicEnvironment, robot::sim::SimulatedBasicEnvironment, and robot::sim::TestBasicEnvironment. Definition at line 56 of file Environment. |
|
return a shallow copy, with Object& return type. Must be defined by derived classes. Implemented in base::LineSegPathRep, base::LineSegTrajectoryRep, base::ParametricPathRep, base::ParametricTrajectoryRep, base::PathComponent, base::PathName, base::WaypointPathRep, base::WaypointTrajectoryRep, gfx::TriangleIteratorState, gfx::VisualTriangles::TriangleArrayIteratorState, physics::ODECollidableBody::BodyState, and robot::sim::SimulatedBasicEnvironment. |
|
If enabled, each call to unreference() will also call virtual method onUnreference() Definition at line 115 of file Referenced. References base::Referenced::onUnreferenceEnabled. |
|
|
|
|
Implemented in robot::sim::SimulatedBasicEnvironment, and robot::sim::TestBasicEnvironment. |
|
|
|
Definition at line 52 of file ReferencedObject. |
|
|
|
Implemented in robot::sim::SimulatedBasicEnvironment, and robot::sim::TestBasicEnvironment. |
|
Implemented in robot::sim::SimulatedBasicEnvironment, and robot::sim::TestBasicEnvironment. |
|
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(). |
|
Implemented in base::Universe, physics::ODESolidSystem, robot::sim::SimulatedBasicEnvironment, and robot::sim::TestBasicEnvironment. |
|
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(). |
|
Implemented in robot::sim::SimulatedBasicEnvironment, and robot::sim::TestBasicEnvironment. |
|
|
|
Reimplemented in base::Universe. |
|
Implemented in base::Universe. |
|
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 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 39 of file Simulatable. |
|
Definition at line 137 of file Referenced. Referenced by base::Referenced::enableOnUnreferenceCall(), base::Referenced::Referenced(), and base::Referenced::unreference(). |