ModelCreator Class Reference

Create and manage 3D visuals of a model with links, nested models and joints. More...

#include <ModelCreator.hh>

Inherits QObject.

Public Types

enum  EntityType {
  ENTITY_NONE, ENTITY_BOX, ENTITY_SPHERE, ENTITY_CYLINDER,
  ENTITY_MESH, ENTITY_POLYLINE, ENTITY_MODEL
}
 
enum  SaveState { NEVER_SAVED, ALL_SAVED, UNSAVED_CHANGES }
 Save states for the model editor. More...
 

Public Slots

void ShowCollisions (const bool _show)
 Show or hide collision visuals. More...
 
void ShowLinkFrames (const bool _show)
 Show or hide link frame visuals. More...
 
void ShowVisuals (const bool _show)
 Show or hide visual visuals. More...
 

Signals

void LinkAdded ()
 Qt signal when the a link has been added. More...
 

Public Member Functions

 ModelCreator (QObject *_parent=NULL)
 Constructor. More...
 
virtual ~ModelCreator ()
 Destructor. More...
 
void AddCustomLink (const EntityType _type, const ignition::math::Vector3d &_size=ignition::math::Vector3d::One, const ignition::math::Pose3d &_pose=ignition::math::Pose3d::Zero, const std::string &_uri="", const unsigned int _samples=5)
 Begin the process of inserting a custom link using the mouse. More...
 
void AddEntity (const sdf::ElementPtr &_sdf)
 Add an entity to the model. More...
 
void AddJoint (const std::string &_type)
 Add a joint to the model. More...
 
void AddLink (const EntityType _type)
 Add a link to the model. More...
 
NestedModelDataAddModel (const sdf::ElementPtr &_sdf)
 Add a nested model to the model. More...
 
void AddModelPlugin (const sdf::ElementPtr &_pluginElem)
 Add a model plugin to the model. More...
 
LinkDataAddShape (const EntityType _type, const ignition::math::Vector3d &_size=ignition::math::Vector3d::One, const ignition::math::Pose3d &_pose=ignition::math::Pose3d::Zero, const std::string &_uri="", const unsigned int _samples=5)
 Add a link to the model. More...
 
enum SaveState CurrentSaveState () const
 Get current save state. More...
 
void DisableEventHandlers ()
 Disable the mouse and key event handlers. More...
 
void EnableEventHandlers ()
 Enable the mouse and key event handlers. More...
 
void FinishModel ()
 Finish the model and create the entity on the gzserver. More...
 
void GenerateSDF ()
 Generate the SDF from model link and joint visuals. More...
 
gui::JointMakerJointMaker () const
 Get joint maker. More...
 
void ModelChanged ()
 Set save state upon a change to the model. More...
 
std::string ModelName () const
 Get the name of the model. More...
 
ModelPluginDataModelPlugin (const std::string &_name)
 Get a model plugin data by its name. More...
 
void OnAddModelPlugin (const std::string &_name, const std::string &_filename, const std::string &_innerxml, const bool _newCmd=true)
 Add a model plugin to the model. More...
 
void RemoveEntity (const std::string &_entityName)
 Remove an entity from the model. More...
 
void RemoveModelPlugin (const std::string &_pluginName, const bool _newCmd=true)
 Remove a model plugin from the model. More...
 
void Reset ()
 Reset the model creator and the SDF. More...
 
void SaveModelFiles ()
 Helper function to manage writing files to disk. More...
 
void SetAutoDisable (const bool _auto)
 Set the model to allow auto disable at rest. More...
 
void SetModelName (const std::string &_modelName)
 Set the name of the model. More...
 
void SetSelected (const std::string &_name, const bool selected)
 Set the select state of an entity. More...
 
void SetSelected (const rendering::VisualPtr &_entityVis, const bool selected)
 Set the select state of a entity visual. More...
 
void SetStatic (const bool _static)
 Set the model to be static. More...
 
void Stop ()
 Stop the process of adding a link or joint to the model. More...
 
ignition::math::Pose3d WorldToLocal (const ignition::math::Pose3d &_world) const
 Convert a given pose from the world frame to the local frame of the model being edited. More...
 

Detailed Description

Create and manage 3D visuals of a model with links, nested models and joints.

Member Enumeration Documentation

enum EntityType
Enumerator
ENTITY_NONE 

none

ENTITY_BOX 

Box.

ENTITY_SPHERE 

Sphere.

ENTITY_CYLINDER 

Cylinder.

ENTITY_MESH 

Imported 3D mesh.

ENTITY_POLYLINE 

Extruded polyline.

ENTITY_MODEL 

Nested model.

enum SaveState

Save states for the model editor.

Enumerator
NEVER_SAVED 

The model has never been saved.

ALL_SAVED 

All changes have been saved.

UNSAVED_CHANGES 

Has been saved before, but has unsaved changes.

Constructor & Destructor Documentation

ModelCreator ( QObject *  _parent = NULL)
explicit

Constructor.

Parameters
[in]_parentParent Qt Object
virtual ~ModelCreator ( )
virtual

Destructor.

Member Function Documentation

void AddCustomLink ( const EntityType  _type,
const ignition::math::Vector3d &  _size = ignition::math::Vector3d::One,
const ignition::math::Pose3d &  _pose = ignition::math::Pose3d::Zero,
const std::string &  _uri = "",
const unsigned int  _samples = 5 
)

Begin the process of inserting a custom link using the mouse.

Parameters
[in]_typeType of link to add: ENTITY_BOX, ENTITY_CYLINDER, ENTITY_SPHERE, ENTITY_MESH or ENTITY_POLYLINE.
[in]_sizeSize of the link.
[in]_posePose of the link.
[in]_samplesNumber of samples for polyline.
void AddEntity ( const sdf::ElementPtr &  _sdf)

Add an entity to the model.

Parameters
[in]_sdfSDF describing the entity.
void AddJoint ( const std::string &  _type)

Add a joint to the model.

Parameters
[in]_typeType of joint to add.
void AddLink ( const EntityType  _type)

Add a link to the model.

Parameters
[in]_typeType of link to be added
NestedModelData* AddModel ( const sdf::ElementPtr &  _sdf)

Add a nested model to the model.

Parameters
[in]_sdfSDF describing the model.
Returns
Nested model data.
void AddModelPlugin ( const sdf::ElementPtr &  _pluginElem)

Add a model plugin to the model.

Parameters
[in]_pluginElemPointer to plugin SDF element
LinkData* AddShape ( const EntityType  _type,
const ignition::math::Vector3d &  _size = ignition::math::Vector3d::One,
const ignition::math::Pose3d &  _pose = ignition::math::Pose3d::Zero,
const std::string &  _uri = "",
const unsigned int  _samples = 5 
)

Add a link to the model.

Parameters
[in]_typeType of link to add: ENTITY_BOX, ENTITY_CYLINDER, ENTITY_SPHERE, ENTITY_MESH or ENTITY_POLYLINE.
[in]_sizeSize of the link.
[in]_posePose of the link.
[in]_samplesNumber of samples for polyline.
Returns
Link data.
enum SaveState CurrentSaveState ( ) const

Get current save state.

Returns
Current save state.
void DisableEventHandlers ( )

Disable the mouse and key event handlers.

void EnableEventHandlers ( )

Enable the mouse and key event handlers.

void FinishModel ( )

Finish the model and create the entity on the gzserver.

void GenerateSDF ( )

Generate the SDF from model link and joint visuals.

Get joint maker.

Returns
Joint maker
void LinkAdded ( )
signal

Qt signal when the a link has been added.

void ModelChanged ( )

Set save state upon a change to the model.

std::string ModelName ( ) const

Get the name of the model.

Returns
Name of model.
ModelPluginData* ModelPlugin ( const std::string &  _name)

Get a model plugin data by its name.

Parameters
[in]_nameName of model plugin
Returns
Model plugin data.
void OnAddModelPlugin ( const std::string &  _name,
const std::string &  _filename,
const std::string &  _innerxml,
const bool  _newCmd = true 
)

Add a model plugin to the model.

Parameters
[in]_nameName of plugin
[in]_filenamePlugin filename
[in]_innerxmlPlugin SDF elements in string
[in]_newCmdFlag indicating whether a new command should be created.
void RemoveEntity ( const std::string &  _entityName)

Remove an entity from the model.

Parameters
[in]_entityNameName of the entity to remove
void RemoveModelPlugin ( const std::string &  _pluginName,
const bool  _newCmd = true 
)

Remove a model plugin from the model.

Parameters
[in]_pluginNameName of the model plugin to remove.
[in]_newCmdFlag indicating whether a new command should be created.
void Reset ( )

Reset the model creator and the SDF.

void SaveModelFiles ( )

Helper function to manage writing files to disk.

void SetAutoDisable ( const bool  _auto)

Set the model to allow auto disable at rest.

Parameters
[in]_autoTrue to allow the model to auto disable.
void SetModelName ( const std::string &  _modelName)

Set the name of the model.

Parameters
[in]_modelNameName of the model to set to.
void SetSelected ( const std::string &  _name,
const bool  selected 
)

Set the select state of an entity.

Parameters
[in]_nameName of the link.
[in]_selectedTrue to select the entity.
void SetSelected ( const rendering::VisualPtr _entityVis,
const bool  selected 
)

Set the select state of a entity visual.

Parameters
[in]_linkVisPointer to the entity visual.
[in]_selectedTrue to select the entity.
void SetStatic ( const bool  _static)

Set the model to be static.

Parameters
[in]_staticTrue to make the model static.
void ShowCollisions ( const bool  _show)
slot

Show or hide collision visuals.

Parameters
[in]_showTrue to show, false to hide.
void ShowLinkFrames ( const bool  _show)
slot

Show or hide link frame visuals.

Parameters
[in]_showTrue to show, false to hide.
void ShowVisuals ( const bool  _show)
slot

Show or hide visual visuals.

Parameters
[in]_showTrue to show, false to hide.
void Stop ( )

Stop the process of adding a link or joint to the model.

ignition::math::Pose3d WorldToLocal ( const ignition::math::Pose3d &  _world) const

Convert a given pose from the world frame to the local frame of the model being edited.

Parameters
[in]_worldPose in world frame.
Returns
Pose in model local frame.

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