18#ifndef _GAZEBO_PHYSICS_PRESETMANAGER_HH_
19#define _GAZEBO_PHYSICS_PRESETMANAGER_HH_
21#include <boost/any.hpp>
44 public:
Preset(
const std::string & _name);
51 public: std::string
Name()
const;
57 public:
bool GetParam(
const std::string &_key, boost::any &_value)
const;
62 public:
bool SetParam(
const std::string &_key,
const boost::any &_value);
67 public:
bool HasParam(
const std::string &_key)
const;
86 private:
bool SetAllParamsHelper(
const sdf::ElementPtr _elem);
90 public: sdf::ElementPtr
SDF()
const;
95 public:
bool SDF(
const sdf::ElementPtr _sdfElement);
98 private: PresetPrivate *dataPtr;
101 class PresetManagerPrivate;
111 const sdf::ElementPtr _sdf);
135 const std::string &_key,
const boost::any &_value);
143 const std::string &_key, boost::any &_value)
const;
150 const boost::any &_value);
185 public: sdf::ElementPtr
ProfileSDF(
const std::string &_name)
const;
192 const sdf::ElementPtr _sdf);
198 sdf::ElementPtr &_elem)
const;
203 private:
void GenerateSDFHelper(
const Preset &_preset,
204 sdf::ElementPtr &_elem)
const;
209 private:
void GeneratePresetFromSDF(
const sdf::ElementPtr _elem,
214 private:
Preset *CurrentPreset()
const;
217 private: PresetManagerPrivate *dataPtr;
default namespace for gazebo
Class to manage preset physics profiles.
Definition PresetManager.hh:106
~PresetManager()
Destructor.
bool CurrentProfile(const std::string &_name)
Set the current profile.
bool ProfileSDF(const std::string &_name, const sdf::ElementPtr _sdf)
Set the SDF for a profile.
sdf::ElementPtr ProfileSDF(const std::string &_name) const
Get the SDF for a profile.
bool CreateProfile(const std::string &_name)
Create a new profile.
std::string CurrentProfile() const
Get the name of the current profile.
bool SetProfileParam(const std::string &_profileName, const std::string &_key, const boost::any &_value)
Set a parameter for a certain profile.
void RemoveProfile(const std::string &_name)
Remove a profile.
std::string CreateProfile(const sdf::ElementPtr _sdf)
Create a new profile from SDF.
PresetManager(PhysicsEnginePtr _physicsEngine, const sdf::ElementPtr _sdf)
Constructor.
bool SetCurrentProfileParam(const std::string &_key, const boost::any &_value)
Set a parameter for the current profile.
bool GetCurrentProfileParam(const std::string &_key, boost::any &_value)
Get a parameter for the current profile.
bool HasProfile(const std::string &_name) const
Determine if we have a profile.
bool GetProfileParam(const std::string &_name, const std::string &_key, boost::any &_value) const
Get a parameter for a certain profile.
void GenerateSDFFromPreset(const std::string &_name, sdf::ElementPtr &_elem) const
Generate an SDF element from an Preset object.
std::vector< std::string > AllProfiles() const
Get the name of all profiles.
Representation of a preset physics profile.
Definition PresetManager.hh:37
std::string Name() const
Get the profile name.
bool SetAllParamsFromSDF(const sdf::ElementPtr _elem)
Set all parameters of this preset based on the key/value pairs in the given SDF element.
bool GetParam(const std::string &_key, boost::any &_value) const
Get a profile parameter.
bool SetParam(const std::string &_key, const boost::any &_value)
Set a profile parameter.
sdf::ElementPtr SDF() const
Get this preset profile's SDF.
Preset(const std::string &_name)
Constructor.
bool SDF(const sdf::ElementPtr _sdfElement)
Set this preset profile's SDF.
bool SetAllPhysicsParameters(PhysicsEnginePtr _physicsEngine) const
Set all parameters of this preset in the physics engine.
bool HasParam(const std::string &_key) const
Check if profile parameter is set.
boost::shared_ptr< PhysicsEngine > PhysicsEnginePtr
Definition PhysicsTypes.hh:125
Forward declarations for the common classes.
Definition Animation.hh:27