#include <string>
#include <sdf/sdf.hh>
#include "gazebo/physics/PhysicsTypes.hh"
#include "gazebo/util/system.hh"
Go to the source code of this file.
Namespaces | |
gazebo | |
Forward declarations for the common classes. | |
gazebo::physics | |
namespace for physics | |
Functions | |
GAZEBO_VISIBLE WorldPtr | gazebo::physics::create_world (const std::string &_name="") |
Create a world given a name. More... | |
GAZEBO_VISIBLE bool | gazebo::physics::fini () |
Finalize transport by calling gazebo::transport::fini. More... | |
GAZEBO_VISIBLE WorldPtr | gazebo::physics::get_world (const std::string &_name="") |
Returns a pointer to a world by name. More... | |
GAZEBO_VISIBLE uint32_t | gazebo::physics::getUniqueId () |
Get a unique ID. More... | |
GAZEBO_VISIBLE void | gazebo::physics::init_world (WorldPtr _world) |
Init world given a pointer to it. More... | |
GAZEBO_VISIBLE void | gazebo::physics::init_worlds () |
initialize multiple worlds stored in static variable gazebo::g_worlds More... | |
GAZEBO_VISIBLE bool | gazebo::physics::load () |
Setup gazebo::SystemPlugin's and call gazebo::transport::init. More... | |
GAZEBO_VISIBLE void | gazebo::physics::load_world (WorldPtr _world, sdf::ElementPtr _sdf) |
Load world from sdf::Element pointer. More... | |
GAZEBO_VISIBLE void | gazebo::physics::load_worlds (sdf::ElementPtr _sdf) |
load multiple worlds from single sdf::Element pointer More... | |
GAZEBO_VISIBLE void | gazebo::physics::pause_world (WorldPtr _world, bool _pause) |
Pause world by calling World::SetPaused. More... | |
GAZEBO_VISIBLE void | gazebo::physics::pause_worlds (bool pause) |
pause multiple worlds stored in static variable gazebo::g_worlds More... | |
GAZEBO_VISIBLE void | gazebo::physics::remove_worlds () |
remove multiple worlds stored in static variable gazebo::g_worlds More... | |
GAZEBO_VISIBLE void | gazebo::physics::run_world (WorldPtr _world, unsigned int _iterations=0) |
Run world by calling World::Run() given a pointer to it. More... | |
GAZEBO_VISIBLE void | gazebo::physics::run_worlds (unsigned int _iterations=0) |
Run multiple worlds stored in static variable gazebo::g_worlds. More... | |
GAZEBO_VISIBLE void | gazebo::physics::stop_world (WorldPtr _world) |
Stop world by calling World::Stop() given a pointer to it. More... | |
GAZEBO_VISIBLE void | gazebo::physics::stop_worlds () |
stop multiple worlds stored in static variable gazebo::g_worlds More... | |
GAZEBO_VISIBLE bool | gazebo::physics::worlds_running () |
Return true if any world is running. More... | |