Ignition Gazebo

API Reference

6.6.0
SceneManager Class Reference

Scene manager class for loading and managing objects in the scene. More...

#include <SceneManager.hh>

Public Member Functions

 SceneManager ()
 Constructor. More...
 
 ~SceneManager ()
 Destructor. More...
 
AnimationUpdateData ActorAnimationAt (Entity _id, std::chrono::steady_clock::duration _time) const
 Get the actor animation update data given an id. Use this function to let the render engine handle the actor animation. by setting the animation name to be played. More...
 
rendering::MeshPtr ActorMeshById (Entity _id) const
 Get a rendering mesh given an id. More...
 
common::SkeletonPtr ActorSkeletonById (Entity _id) const
 Get a skeleton given an id. More...
 
std::map< std::string, math::Matrix4dActorSkeletonTransformsAt (Entity _id, std::chrono::steady_clock::duration _time) const
 Get the skeleton local transforms of actor mesh given an id. Use this function if you are animating the actor manually by its skeleton node pose. More...
 
bool AddSensor (Entity _gazeboId, const std::string &_sensorName, Entity _parentGazeboId=0)
 Ignition sensors is the one responsible for adding sensors to the scene. Here we just keep track of it and make sure it has the correct parent. More...
 
std::pair< rendering::VisualPtr, std::vector< Entity > > CopyVisual (Entity _id, const std::string &_visual, Entity _parentId=0)
 Copy a visual that currently exists in the scene. More...
 
rendering::VisualPtr CreateActor (Entity _id, const sdf::Actor &_actor, const std::string &_name, Entity _parentId=0)
 Create an actor. More...
 
rendering::VisualPtr CreateCollision (Entity _id, const sdf::Collision &_collision, Entity _parentId=0)
 Create a collision visual. More...
 
rendering::VisualPtr CreateCOMVisual (Entity _id, const math::Inertiald &_inertial, Entity _parentId=0)
 Create a center of mass visual. More...
 
rendering::VisualPtr CreateInertiaVisual (Entity _id, const math::Inertiald &_inertial, Entity _parentId=0)
 Create an inertia visual. More...
 
rendering::VisualPtr CreateJointVisual (Entity _id, const sdf::Joint &_joint, Entity _childId=0, Entity _parentId=0)
 Create a joint visual. More...
 
rendering::LightPtr CreateLight (Entity _id, const sdf::Light &_light, const std::string &_name, Entity _parentId)
 Create a light. More...
 
rendering::VisualPtr CreateLightVisual (Entity _id, const sdf::Light &_light, const std::string &_name, Entity _parentId)
 Create a light. More...
 
rendering::VisualPtr CreateLink (Entity _id, const sdf::Link &_link, Entity _parentId=0)
 Create a link. More...
 
rendering::VisualPtr CreateModel (Entity _id, const sdf::Model &_model, Entity _parentId=0)
 Create a model. More...
 
rendering::ParticleEmitterPtr CreateParticleEmitter (Entity _id, const msgs::ParticleEmitter &_emitter, Entity _parentId)
 Create a particle emitter. More...
 
rendering::VisualPtr CreateVisual (Entity _id, const sdf::Visual &_visual, Entity _parentId=0)
 Create a visual. More...
 
std::vector< rendering::NodePtr > Filter (const std::string &_node, std::function< bool(const rendering::NodePtr _nodeToFilter)> _filter) const
 Filter a node and its children according to specific criteria. More...
 
bool HasEntity (Entity _id) const
 Check if entity exists. More...
 
rendering::NodePtr NodeById (Entity _id) const
 Get a rendering node given an entity id. More...
 
void RemoveEntity (Entity _id)
 Remove an entity by id. More...
 
rendering::ScenePtr Scene () const
 Get the scene. More...
 
void SetScene (rendering::ScenePtr _scene)
 Set the scene to manage. More...
 
void SetWorldId (Entity _id)
 Set the world's ID. More...
 
rendering::NodePtr TopLevelNode (const rendering::NodePtr &_node) const
 Get the top level node for the given node, which is the ancestor which is a direct child to the root visual. Usually, this will be a model or a light. More...
 
rendering::VisualPtr TopLevelVisual (const rendering::VisualPtr &_visual) const
 Get the top level visual for the given visual, which is the ancestor which is a direct child to the root visual. Usually, this will be a model or a light. More...
 
Entity UniqueId () const
 Create a unique entity ID. More...
 
void UpdateJointParentPose (Entity _jointId)
 Updates the world pose of joint parent visual according to its child. More...
 
rendering::ParticleEmitterPtr UpdateParticleEmitter (Entity _id, const msgs::ParticleEmitter &_emitter)
 Update an existing particle emitter. More...
 
void UpdateTransparency (const rendering::NodePtr &_node, bool _makeTransparent)
 Updates the node to increase its transparency or reset back to its original transparency value, an opaque call requires a previous transparent call, otherwise, no action will be taken Usually, this will be a link visual. More...
 
rendering::VisualPtr VisualById (Entity _id)
 Retrieve visual. More...
 
Entity WorldId () const
 Get the world's ID. More...
 

Detailed Description

Scene manager class for loading and managing objects in the scene.

Constructor & Destructor Documentation

◆ SceneManager()

Constructor.

◆ ~SceneManager()

Destructor.

Member Function Documentation

◆ ActorAnimationAt()

AnimationUpdateData ActorAnimationAt ( Entity  _id,
std::chrono::steady_clock::duration  _time 
) const

Get the actor animation update data given an id. Use this function to let the render engine handle the actor animation. by setting the animation name to be played.

Parameters
[in]_idEntity's unique id
[in]_timeSimulation time
Returns
Data needed to update the animation, including the name and time of animation to play, and trajectory animation info.

◆ ActorMeshById()

rendering::MeshPtr ActorMeshById ( Entity  _id) const

Get a rendering mesh given an id.

Parameters
[in]_idActor entity's unique id
Returns
Pointer to requested entity's mesh

◆ ActorSkeletonById()

common::SkeletonPtr ActorSkeletonById ( Entity  _id) const

Get a skeleton given an id.

Parameters
[in]_idActor entity's unique id
Returns
Pointer to requested entity's skeleton

◆ ActorSkeletonTransformsAt()

std::map<std::string, math::Matrix4d> ActorSkeletonTransformsAt ( Entity  _id,
std::chrono::steady_clock::duration  _time 
) const

Get the skeleton local transforms of actor mesh given an id. Use this function if you are animating the actor manually by its skeleton node pose.

Parameters
[in]_idEntity's unique id
[in]_timeSimulationTime
Returns
Map from the skeleton node name to transforms

◆ AddSensor()

bool AddSensor ( Entity  _gazeboId,
const std::string _sensorName,
Entity  _parentGazeboId = 0 
)

Ignition sensors is the one responsible for adding sensors to the scene. Here we just keep track of it and make sure it has the correct parent.

Parameters
[in]_gazeboIdEntity in Gazebo
[in]_sensorNameName of sensor node in Ignition Rendering.
[in]_parentGazeboIdParent Id on Gazebo.
Returns
True if sensor is successfully handled

◆ CopyVisual()

std::pair<rendering::VisualPtr, std::vector<Entity> > CopyVisual ( Entity  _id,
const std::string _visual,
Entity  _parentId = 0 
)

Copy a visual that currently exists in the scene.

Parameters
[in]_idUnique visual id of the copied visual
[in]_visualName of the visual to copy
[in]_parentIdParent id of the copied visual
Returns
A pair with the first element being the copied visual object, and the second element being a list of the entity IDs for the copied visual's children, in level order. If copying the visual failed, the first element will be nullptr. If the copied visual has no children, the second element will be empty.

◆ CreateActor()

rendering::VisualPtr CreateActor ( Entity  _id,
const sdf::Actor &  _actor,
const std::string _name,
Entity  _parentId = 0 
)

Create an actor.

Parameters
[in]_idUnique actor id
[in]_actorActor sdf dom
[in]_nameActor's name
[in]_parentIdParent id
Returns
Actor object created from the sdf dom

◆ CreateCollision()

rendering::VisualPtr CreateCollision ( Entity  _id,
const sdf::Collision &  _collision,
Entity  _parentId = 0 
)

Create a collision visual.

Parameters
[in]_idUnique visual id
[in]_collisionCollision sdf dom
[in]_parentIdParent id
Returns
Visual (collision) object created from the sdf dom

◆ CreateCOMVisual()

rendering::VisualPtr CreateCOMVisual ( Entity  _id,
const math::Inertiald _inertial,
Entity  _parentId = 0 
)

Create a center of mass visual.

Parameters
[in]_idUnique visual id
[in]_inertialInertial component of the link
[in]_parentIdParent id
Returns
Visual (center of mass) object created from the inertial

◆ CreateInertiaVisual()

rendering::VisualPtr CreateInertiaVisual ( Entity  _id,
const math::Inertiald _inertial,
Entity  _parentId = 0 
)

Create an inertia visual.

Parameters
[in]_idUnique visual id
[in]_inertialInertial component of the link
[in]_parentIdParent id
Returns
Visual (inertia) object created from the inertial

◆ CreateJointVisual()

rendering::VisualPtr CreateJointVisual ( Entity  _id,
const sdf::Joint &  _joint,
Entity  _childId = 0,
Entity  _parentId = 0 
)

Create a joint visual.

Parameters
[in]_idUnique visual id
[in]_jointJoint sdf dom
[in]_childIdJoint child id
[in]_parentIdJoint parent id
Returns
Visual (joint) object created from the sdf dom

◆ CreateLight()

rendering::LightPtr CreateLight ( Entity  _id,
const sdf::Light &  _light,
const std::string _name,
Entity  _parentId 
)

Create a light.

Parameters
[in]_idUnique light id
[in]_lightLight sdf dom
[in]_nameLight's name
[in]_parentIdParent id
Returns
Light object created from the sdf dom

◆ CreateLightVisual()

rendering::VisualPtr CreateLightVisual ( Entity  _id,
const sdf::Light &  _light,
const std::string _name,
Entity  _parentId 
)

Create a light.

Parameters
[in]_idUnique light id
[in]_lightLight sdf dom
[in]_nameLight's name
[in]_parentIdParent id
Returns
Light object created from the sdf dom

◆ CreateLink()

rendering::VisualPtr CreateLink ( Entity  _id,
const sdf::Link &  _link,
Entity  _parentId = 0 
)

Create a link.

Parameters
[in]_idUnique link id
[in]_linkLink sdf dom
[in]_parentIdParent id
Returns
Link visual created from the sdf dom

◆ CreateModel()

rendering::VisualPtr CreateModel ( Entity  _id,
const sdf::Model &  _model,
Entity  _parentId = 0 
)

Create a model.

Parameters
[in]_idUnique model id
[in]_modelModel sdf dom
[in]_parentIdParent id
Returns
Model visual created from the sdf dom

◆ CreateParticleEmitter()

rendering::ParticleEmitterPtr CreateParticleEmitter ( Entity  _id,
const msgs::ParticleEmitter _emitter,
Entity  _parentId 
)

Create a particle emitter.

Parameters
[in]_idUnique particle emitter id
[in]_emitterParticle emitter data
[in]_parentIdParent id
Returns
Default particle emitter object created

◆ CreateVisual()

rendering::VisualPtr CreateVisual ( Entity  _id,
const sdf::Visual &  _visual,
Entity  _parentId = 0 
)

Create a visual.

Parameters
[in]_idUnique visual id
[in]_visualVisual sdf dom
[in]_parentIdParent id
Returns
Visual object created from the sdf dom

◆ Filter()

std::vector<rendering::NodePtr> Filter ( const std::string _node,
std::function< bool(const rendering::NodePtr _nodeToFilter)>  _filter 
) const

Filter a node and its children according to specific criteria.

Parameters
[in]_nodeThe name of the node where filtering should start.
[in]_filterCallback function that defines how _node and its children should be filtered. The function parameter is a node. The callback returns true if the node should be filtered; false otherwise.
Returns
A list of filtered nodes in top level order. This list can contain _node itself, or child nodes of _node. An empty list means no nodes were filtered.

◆ HasEntity()

bool HasEntity ( Entity  _id) const

Check if entity exists.

Parameters
[in]_idUnique entity id
Returns
true if exists, false otherwise

◆ NodeById()

rendering::NodePtr NodeById ( Entity  _id) const

Get a rendering node given an entity id.

Parameters
[in]_idEntity's unique id
Returns
Pointer to requested entity's node

◆ RemoveEntity()

void RemoveEntity ( Entity  _id)

Remove an entity by id.

Parameters
[in]_idEntity's unique id

◆ Scene()

rendering::ScenePtr Scene ( ) const

Get the scene.

Returns
Pointer to scene

◆ SetScene()

void SetScene ( rendering::ScenePtr  _scene)

Set the scene to manage.

Parameters
[in]_sceneScene pointer.

◆ SetWorldId()

void SetWorldId ( Entity  _id)

Set the world's ID.

Parameters
[in]_idWorld ID.

◆ TopLevelNode()

rendering::NodePtr TopLevelNode ( const rendering::NodePtr &  _node) const

Get the top level node for the given node, which is the ancestor which is a direct child to the root visual. Usually, this will be a model or a light.

Parameters
[in]_nodeChild node
Returns
Top level node containing this node

◆ TopLevelVisual()

rendering::VisualPtr TopLevelVisual ( const rendering::VisualPtr &  _visual) const

Get the top level visual for the given visual, which is the ancestor which is a direct child to the root visual. Usually, this will be a model or a light.

Parameters
[in]_visualChild visual
Returns
Top level visual containing this visual

◆ UniqueId()

Entity UniqueId ( ) const

Create a unique entity ID.

Returns
A unique entity ID. kNullEntity is returned if no unique entity IDs are available

◆ UpdateJointParentPose()

void UpdateJointParentPose ( Entity  _jointId)

Updates the world pose of joint parent visual according to its child.

Parameters
[in]_jointIdJoint visual id.

◆ UpdateParticleEmitter()

rendering::ParticleEmitterPtr UpdateParticleEmitter ( Entity  _id,
const msgs::ParticleEmitter _emitter 
)

Update an existing particle emitter.

_id Emitter id to update _emitter Data to update the particle emitter

Returns
Particle emitter updated

◆ UpdateTransparency()

void UpdateTransparency ( const rendering::NodePtr &  _node,
bool  _makeTransparent 
)

Updates the node to increase its transparency or reset back to its original transparency value, an opaque call requires a previous transparent call, otherwise, no action will be taken Usually, this will be a link visual.

Parameters
[in]_nodeThe node to update.
[in]_makeTransparenttrue if updating to increase transparency, false to set back to original transparency values (make more opaque)

◆ VisualById()

rendering::VisualPtr VisualById ( Entity  _id)

Retrieve visual.

Parameters
[in]_idUnique visual (entity) id
Returns
Pointer to requested visual

◆ WorldId()

Entity WorldId ( ) const

Get the world's ID.

Returns
World ID

The documentation for this class was generated from the following file: