Base class for most physics classes. More...
#include <physics/physics.hh>
Public Types | |
enum | EntityType { BASE = 0x00000000, ENTITY = 0x00000001, MODEL = 0x00000002, LINK = 0x00000004, COLLISION = 0x00000008, ACTOR = 0x00000016, LIGHT = 0x00000010, VISUAL = 0x00000020, JOINT = 0x00000040, BALL_JOINT = 0x00000080, HINGE2_JOINT = 0x00000100, HINGE_JOINT = 0x00000200, SLIDER_JOINT = 0x00000400, SCREW_JOINT = 0x00000800, UNIVERSAL_JOINT = 0x00001000, SHAPE = 0x00002000, BOX_SHAPE = 0x00004000, CYLINDER_SHAPE = 0x00008000, HEIGHTMAP_SHAPE = 0x00010000, MAP_SHAPE = 0x00020000, MULTIRAY_SHAPE = 0x00040000, RAY_SHAPE = 0x00080000, PLANE_SHAPE = 0x00100000, SPHERE_SHAPE = 0x00200000, TRIMESH_SHAPE = 0x00400000 } |
Unique identifiers for all entity types. More... | |
Public Member Functions | |
Base (BasePtr _parent) | |
Constructor. | |
virtual | ~Base () |
Destructor. | |
void | AddChild (BasePtr _child) |
Add a child to this entity. | |
void | AddType (EntityType _type) |
Add a type specifier. | |
virtual void | Fini () |
Finialize the object. | |
BasePtr | GetById (unsigned int _id) const |
This is an internal function. | |
BasePtr | GetByName (const std::string &_name) |
Get by name. | |
BasePtr | GetChild (unsigned int _i) const |
Get a child by index. | |
BasePtr | GetChild (const std::string &_name) |
Get a child by name. | |
unsigned int | GetChildCount () const |
Get the number of children. | |
unsigned int | GetId () const |
Return the ID of this entity. | |
std::string | GetName () const |
Return the name of the entity. | |
BasePtr | GetParent () const |
Get the parent. | |
int | GetParentId () const |
Return the ID of the parent. | |
bool | GetSaveable () const |
Get whether the object should be "saved", when the user selects to save the world to xml. | |
std::string | GetScopedName () const |
Return the name of this entity with the model scope world::model1::...::modelN::entityName. | |
virtual const sdf::ElementPtr | GetSDF () |
Get the SDF values for the object. | |
unsigned int | GetType () const |
Get the full type definition. | |
const WorldPtr & | GetWorld () const |
Get the World this object is in. | |
bool | HasType (const EntityType &_t) const |
Returns true if this object's type definition has the given type. | |
virtual void | Init () |
Initialize the object. | |
bool | IsSelected () const |
True if the entity is selected by the user. | |
virtual void | Load (sdf::ElementPtr _sdf) |
Load. | |
bool | operator== (const Base &_ent) const |
Returns true if the entities are the same. | |
void | Print (const std::string &_prefix) |
Print this object to screen via gzmsg. | |
virtual void | RemoveChild (unsigned int _id) |
Remove a child from this entity. | |
void | RemoveChild (const std::string &_name) |
Remove a child by name. | |
void | RemoveChildren () |
Remove all children. | |
virtual void | Reset () |
Reset the object. | |
virtual void | Reset (Base::EntityType _resetType) |
Calls recursive Reset on one of the Base::EntityType's. | |
virtual void | SetName (const std::string &_name) |
Set the name of the entity. | |
void | SetParent (BasePtr _parent) |
Set the parent. | |
void | SetSaveable (bool _v) |
Set whether the object should be "saved", when the user selects to save the world to xml. | |
virtual bool | SetSelected (bool _show) |
Set whether this entity has been selected by the user through the gui. | |
void | SetWorld (const WorldPtr &_newWorld) |
Set the world this object belongs to. | |
virtual void | Update () |
Update the object. | |
virtual void | UpdateParameters (sdf::ElementPtr _sdf) |
Update the parameters using new sdf values. | |
Protected Attributes | |
Base_V | children |
Children of this entity. | |
Base_V::iterator | childrenEnd |
End of the children vector. | |
BasePtr | parent |
Parent of this entity. | |
sdf::ElementPtr | sdf |
The SDF values for this object. | |
WorldPtr | world |
Pointer to the world. | |
Base class for most physics classes.
Unique identifiers for all entity types.
BASE |
Base type. |
ENTITY |
Entity type. |
MODEL |
Model type. |
LINK |
Link type. |
COLLISION |
Collision type. |
ACTOR |
Actor type. |
LIGHT |
Light type. |
VISUAL |
Visual type. |
JOINT |
Joint type. |
BALL_JOINT |
BallJoint type. |
HINGE2_JOINT |
Hing2Joint type. |
HINGE_JOINT |
HingeJoint type. |
SLIDER_JOINT |
SliderJoint type. |
SCREW_JOINT |
ScrewJoint type. |
UNIVERSAL_JOINT |
UniversalJoint type. |
SHAPE |
Shape type. |
BOX_SHAPE |
BoxShape type. |
CYLINDER_SHAPE |
CylinderShape type. |
HEIGHTMAP_SHAPE |
HeightmapShape type. |
MAP_SHAPE |
MapShape type. |
MULTIRAY_SHAPE |
MultiRayShape type. |
RAY_SHAPE |
RayShape type. |
PLANE_SHAPE |
PlaneShape type. |
SPHERE_SHAPE |
SphereShape type. |
TRIMESH_SHAPE |
TrimeshShape type. |
|
explicit |
Constructor.
[in] | _parent | Parent of this object |
|
virtual |
Destructor.
void gazebo::physics::Base::AddChild | ( | BasePtr | _child | ) |
Add a child to this entity.
[in] | _child | Child entity. |
void gazebo::physics::Base::AddType | ( | EntityType | _type | ) |
Add a type specifier.
[in] | _type | New type to append to this objects type definition. |
|
virtual |
Finialize the object.
Reimplemented in gazebo::physics::Actor, gazebo::physics::Model, gazebo::physics::Entity, gazebo::physics::Link, and gazebo::physics::Collision.
BasePtr gazebo::physics::Base::GetById | ( | unsigned int | _id | ) | const |
This is an internal function.
Get a child or self by id.
[in] | _id | ID of the object to retreive. |
BasePtr gazebo::physics::Base::GetByName | ( | const std::string & | _name | ) |
Get by name.
[in] | _name | Get a child (or self) object by name |
BasePtr gazebo::physics::Base::GetChild | ( | unsigned int | _i | ) | const |
Get a child by index.
[in] | _i | Index of the child to retreive. |
BasePtr gazebo::physics::Base::GetChild | ( | const std::string & | _name | ) |
Get a child by name.
[in] | _name | Name of the child. |
unsigned int gazebo::physics::Base::GetChildCount | ( | ) | const |
Get the number of children.
unsigned int gazebo::physics::Base::GetId | ( | ) | const |
Return the ID of this entity.
This id is unique.
std::string gazebo::physics::Base::GetName | ( | ) | const |
Return the name of the entity.
BasePtr gazebo::physics::Base::GetParent | ( | ) | const |
Get the parent.
int gazebo::physics::Base::GetParentId | ( | ) | const |
Return the ID of the parent.
bool gazebo::physics::Base::GetSaveable | ( | ) | const |
Get whether the object should be "saved", when the user selects to save the world to xml.
std::string gazebo::physics::Base::GetScopedName | ( | ) | const |
Return the name of this entity with the model scope world::model1::...::modelN::entityName.
|
virtual |
Get the SDF values for the object.
Reimplemented in gazebo::physics::Actor, and gazebo::physics::Model.
unsigned int gazebo::physics::Base::GetType | ( | ) | const |
Get the full type definition.
const WorldPtr& gazebo::physics::Base::GetWorld | ( | ) | const |
bool gazebo::physics::Base::HasType | ( | const EntityType & | _t | ) | const |
Returns true if this object's type definition has the given type.
[in] | _t | Type to check. |
|
inlinevirtual |
Initialize the object.
Reimplemented in gazebo::physics::Joint, gazebo::physics::RayShape, gazebo::physics::Actor, gazebo::physics::Model, gazebo::physics::Link, gazebo::physics::Collision, gazebo::physics::HeightmapShape, gazebo::physics::TrimeshShape, gazebo::physics::MultiRayShape, gazebo::physics::PlaneShape, gazebo::physics::Road, gazebo::physics::Shape, gazebo::physics::SphereShape, gazebo::physics::BoxShape, and gazebo::physics::CylinderShape.
bool gazebo::physics::Base::IsSelected | ( | ) | const |
True if the entity is selected by the user.
|
virtual |
Load.
[in] | node | Pointer to an SDF parameters |
Reimplemented in gazebo::physics::Joint, gazebo::physics::Actor, gazebo::physics::Entity, gazebo::physics::Model, gazebo::physics::Link, gazebo::physics::Collision, gazebo::physics::HeightmapShape, and gazebo::physics::Road.
bool gazebo::physics::Base::operator== | ( | const Base & | _ent | ) | const |
Returns true if the entities are the same.
Checks only the name.
[in] | _ent | Base object to compare with. |
void gazebo::physics::Base::Print | ( | const std::string & | _prefix | ) |
Print this object to screen via gzmsg.
[in] | _prefix | Usually a set of spaces. |
|
virtual |
Remove a child from this entity.
[in] | _id | ID of the child to remove. |
void gazebo::physics::Base::RemoveChild | ( | const std::string & | _name | ) |
Remove a child by name.
[in] | _name | Name of the child. |
void gazebo::physics::Base::RemoveChildren | ( | ) |
Remove all children.
|
virtual |
Reset the object.
Reimplemented in gazebo::physics::Joint, gazebo::physics::Model, gazebo::physics::Entity, and gazebo::physics::Link.
|
virtual |
Calls recursive Reset on one of the Base::EntityType's.
[in] | _resetType | The type of reset operation |
|
virtual |
void gazebo::physics::Base::SetParent | ( | BasePtr | _parent | ) |
Set the parent.
[in] | _parent | Parent object. |
void gazebo::physics::Base::SetSaveable | ( | bool | _v | ) |
Set whether the object should be "saved", when the user selects to save the world to xml.
[in] | _v | Set to True if the object should be saved. |
|
virtual |
Set whether this entity has been selected by the user through the gui.
[in] | _show | True to set this entity as selected. |
Reimplemented in gazebo::physics::Link.
void gazebo::physics::Base::SetWorld | ( | const WorldPtr & | _newWorld | ) |
Set the world this object belongs to.
This will also set the world for all children.
[in] | _newWorld | The new World this object is part of. |
|
inlinevirtual |
Update the object.
Reimplemented in gazebo::physics::Joint, gazebo::physics::MultiRayShape, gazebo::physics::Actor, gazebo::physics::RayShape, gazebo::physics::Link, gazebo::physics::Model, and gazebo::physics::TrimeshShape.
|
virtual |
Update the parameters using new sdf values.
[in] | _sdf | Update the object's parameters based on SDF values. |
Reimplemented in gazebo::physics::Joint, gazebo::physics::Actor, gazebo::physics::Model, gazebo::physics::Link, gazebo::physics::Entity, and gazebo::physics::Collision.
|
protected |
Children of this entity.
|
protected |
End of the children vector.
|
protected |
Parent of this entity.
|
protected |
The SDF values for this object.
|
protected |
Pointer to the world.