The world provides access to all other object within a simulated environment. More...
#include <physics/physics.hh>
Public Member Functions | |
World (const std::string &_name="") | |
Constructor. | |
~World () | |
Destructor. | |
void | Clear () |
Remove all entities from the world. | |
void | DisableAllModels () |
Disable all links in all the models. | |
void | EnableAllModels () |
Enable all links in all the models. | |
void | EnablePhysicsEngine (bool _enable) |
enable/disable physics engine during World::Update. | |
void | Fini () |
Finalize the world. | |
BasePtr | GetByName (const std::string &_name) |
Get an element by name. | |
bool | GetEnablePhysicsEngine () |
check if physics engine is enabled/disabled. | |
EntityPtr | GetEntity (const std::string &_name) |
Get a pointer to an Entity based on a name. | |
EntityPtr | GetEntityBelowPoint (const math::Vector3 &_pt) |
Get the nearest entity below a point. | |
ModelPtr | GetModel (unsigned int _index) const |
Get a model based on an index. | |
ModelPtr | GetModel (const std::string &_name) |
Get a model by name. | |
ModelPtr | GetModelBelowPoint (const math::Vector3 &_pt) |
Get the nearest model below a point. | |
unsigned int | GetModelCount () const |
Get the number of models. | |
Model_V | GetModels () const |
Get a list of all the models. | |
std::string | GetName () const |
Get the name of the world. | |
common::Time | GetPauseTime () const |
Get the amount of time simulation has been paused. | |
PhysicsEnginePtr | GetPhysicsEngine () const |
Return the physics engine. | |
common::Time | GetRealTime () const |
Get the real time (elapsed time). | |
EntityPtr | GetSelectedEntity () const |
Get the selected Entity. | |
boost::mutex * | GetSetWorldPoseMutex () const |
Get the set world pose mutex. | |
common::Time | GetSimTime () const |
Get the world simulation time, note if you want the PC wall clock call common::Time::GetWallTime. | |
common::Time | GetStartTime () const |
Get the wall time simulation was started. | |
void | Init () |
Initialize the world. | |
void | InsertModelFile (const std::string &_sdfFilename) |
Insert a model from an SDF file. | |
void | InsertModelSDF (const sdf::SDF &_sdf) |
Insert a model using SDF. | |
void | InsertModelString (const std::string &_sdfString) |
Insert a model from an SDF string. | |
bool | IsLoaded () const |
Return true if the world has been loaded. | |
bool | IsPaused () const |
Returns the state of the simulation true if paused. | |
void | Load (sdf::ElementPtr _sdf) |
Load the world using SDF parameters. | |
void | LoadPlugin (const std::string &_filename, const std::string &_name, sdf::ElementPtr _sdf) |
Load a plugin. | |
void | PrintEntityTree () |
Print Entity tree. | |
void | PublishModelPose (const std::string &_modelName) |
Publish pose updates for a model. | |
void | RemovePlugin (const std::string &_name) |
Remove a running plugin. | |
void | Reset () |
Reset time and model poses, configurations in simulation. | |
void | ResetEntities (Base::EntityType _type=Base::BASE) |
Reset with options. | |
void | ResetTime () |
Reset simulation time back to zero. | |
void | Run () |
Run the world in a thread. | |
void | Save (const std::string &_filename) |
Save a world to a file. | |
void | SetPaused (bool _p) |
Set whether the simulation is paused. | |
void | SetSimTime (const common::Time &_t) |
Set the sim time. | |
void | SetState (const WorldState &_state) |
Set the current world state. | |
void | StepWorld (int _steps) |
Step callback. | |
void | Stop () |
Stop the world. | |
std::string | StripWorldName (const std::string &_name) const |
Return a version of the name with "<world_name>::" removed. | |
void | UpdateStateSDF () |
Update the state SDF value from the current state. | |
Public Attributes | |
std::list< Entity * > | dirtyPoses |
when physics engine makes an update and changes a link pose, this flag is set to trigger Entity::SetWorldPose on the physics::Link in World::Update. | |
The world provides access to all other object within a simulated environment.
The World is the container for all models and their components (links, joints, sensors, plugins, etc), and WorldPlugin instances. Many core function are also handled in the World, including physics update, model updates, and message processing.
|
explicit |
Constructor.
Constructor for the World. Must specify a unique name.
[in] | _name | Name of the world. |
gazebo::physics::World::~World | ( | ) |
Destructor.
void gazebo::physics::World::Clear | ( | ) |
Remove all entities from the world.
void gazebo::physics::World::DisableAllModels | ( | ) |
Disable all links in all the models.
Disable is a physics concept. Disabling means that the physics engine should not update an entity.
void gazebo::physics::World::EnableAllModels | ( | ) |
Enable all links in all the models.
Enable is a physics concept. Enabling means that the physics engine should update an entity.
|
inline |
enable/disable physics engine during World::Update.
[in] | _enable | True to enable the physics engine. |
void gazebo::physics::World::Fini | ( | ) |
Finalize the world.
Call this function to tear-down the world.
BasePtr gazebo::physics::World::GetByName | ( | const std::string & | _name | ) |
|
inline |
check if physics engine is enabled/disabled.
True | if the physics engine is enabled. |
EntityPtr gazebo::physics::World::GetEntity | ( | const std::string & | _name | ) |
EntityPtr gazebo::physics::World::GetEntityBelowPoint | ( | const math::Vector3 & | _pt | ) |
ModelPtr gazebo::physics::World::GetModel | ( | unsigned int | _index | ) | const |
Get a model based on an index.
Get a Model using an index, where index must be greater than zero and less than World::GetModelCount()
[in] | _index | The index of the model [0..GetModelCount) |
ModelPtr gazebo::physics::World::GetModel | ( | const std::string & | _name | ) |
ModelPtr gazebo::physics::World::GetModelBelowPoint | ( | const math::Vector3 & | _pt | ) |
Get the nearest model below a point.
This function makes use of World::GetEntityBelowPoint.
[in] | _pt | The 3D point to search below. |
unsigned int gazebo::physics::World::GetModelCount | ( | ) | const |
Get the number of models.
Model_V gazebo::physics::World::GetModels | ( | ) | const |
Get a list of all the models.
std::string gazebo::physics::World::GetName | ( | ) | const |
Get the name of the world.
common::Time gazebo::physics::World::GetPauseTime | ( | ) | const |
Get the amount of time simulation has been paused.
PhysicsEnginePtr gazebo::physics::World::GetPhysicsEngine | ( | ) | const |
Return the physics engine.
Get a pointer to the physics engine used by the world.
common::Time gazebo::physics::World::GetRealTime | ( | ) | const |
Get the real time (elapsed time).
EntityPtr gazebo::physics::World::GetSelectedEntity | ( | ) | const |
|
inline |
Get the set world pose mutex.
common::Time gazebo::physics::World::GetSimTime | ( | ) | const |
Get the world simulation time, note if you want the PC wall clock call common::Time::GetWallTime.
common::Time gazebo::physics::World::GetStartTime | ( | ) | const |
Get the wall time simulation was started.
void gazebo::physics::World::Init | ( | ) |
Initialize the world.
This is called after Load.
void gazebo::physics::World::InsertModelFile | ( | const std::string & | _sdfFilename | ) |
Insert a model from an SDF file.
Spawns a model into the world base on and SDF file.
[in] | _sdfFilename | The name of the SDF file (including path). |
void gazebo::physics::World::InsertModelSDF | ( | const sdf::SDF & | _sdf | ) |
Insert a model using SDF.
Spawns a model into the world base on and SDF object.
[in] | _sdf | A reference to an SDF object. |
void gazebo::physics::World::InsertModelString | ( | const std::string & | _sdfString | ) |
Insert a model from an SDF string.
Spawns a model into the world base on and SDF string.
[in] | _sdfString | A string containing valid SDF markup. |
bool gazebo::physics::World::IsLoaded | ( | ) | const |
Return true if the world has been loaded.
bool gazebo::physics::World::IsPaused | ( | ) | const |
Returns the state of the simulation true if paused.
void gazebo::physics::World::Load | ( | sdf::ElementPtr | _sdf | ) |
Load the world using SDF parameters.
Load a world from and SDF pointer.
[in] | _sdf | SDF parameters. |
void gazebo::physics::World::LoadPlugin | ( | const std::string & | _filename, |
const std::string & | _name, | ||
sdf::ElementPtr | _sdf | ||
) |
Load a plugin.
[in] | _filename | The filename of the plugin. |
[in] | _name | A unique name for the plugin. |
[in] | _sdf | The SDF to pass into the plugin. |
void gazebo::physics::World::PrintEntityTree | ( | ) |
Print Entity tree.
Prints alls the entities to stdout.
void gazebo::physics::World::PublishModelPose | ( | const std::string & | _modelName | ) |
Publish pose updates for a model.
This list of models to publish is processed and cleared once every iteration.
[in] | _modelName | Name of the model to publish. |
void gazebo::physics::World::RemovePlugin | ( | const std::string & | _name | ) |
Remove a running plugin.
[in] | _name | The unique name of the plugin to remove. |
void gazebo::physics::World::Reset | ( | ) |
Reset time and model poses, configurations in simulation.
void gazebo::physics::World::ResetEntities | ( | Base::EntityType | _type = Base::BASE | ) |
Reset with options.
The _type parameter specifies which type of eneities to reset. See Base::EntityType.
[in] | _type | The type of reset. |
void gazebo::physics::World::ResetTime | ( | ) |
Reset simulation time back to zero.
void gazebo::physics::World::Run | ( | ) |
Run the world in a thread.
Run the update loop.
void gazebo::physics::World::Save | ( | const std::string & | _filename | ) |
Save a world to a file.
Save the current world and its state to a file.
[in] | _filename | Name of the file to save into. |
void gazebo::physics::World::SetPaused | ( | bool | _p | ) |
Set whether the simulation is paused.
[in] | _p | True pauses the simulation. False runs the simulation. |
void gazebo::physics::World::SetSimTime | ( | const common::Time & | _t | ) |
Set the sim time.
[in] | _t | The new simulation time |
void gazebo::physics::World::SetState | ( | const WorldState & | _state | ) |
Set the current world state.
_state | The state to set the World to. |
void gazebo::physics::World::StepWorld | ( | int | _steps | ) |
Step callback.
[in] | _steps | The number of steps the World should take. |
void gazebo::physics::World::Stop | ( | ) |
Stop the world.
Stop the update loop.
std::string gazebo::physics::World::StripWorldName | ( | const std::string & | _name | ) | const |
Return a version of the name with "<world_name>::" removed.
[in] | _name | Usually the name of an entity. |
void gazebo::physics::World::UpdateStateSDF | ( | ) |
Update the state SDF value from the current state.
std::list<Entity*> gazebo::physics::World::dirtyPoses |
when physics engine makes an update and changes a link pose, this flag is set to trigger Entity::SetWorldPose on the physics::Link in World::Update.