1 #ifndef BASEHUMANUPDATER_H
2 #define BASEHUMANUPDATER_H
4 #include <boost/shared_ptr.hpp>
5 #include <Eigen/Geometry>
16 class BaseHumanUpdater;
30 bool getData(std::string key,
float &v)
const{
31 std::map<std::string,float>::const_iterator it=
data.find(key);
41 boost::shared_ptr<BaseHumanUpdater>
updater;
43 std::map<std::string,float>
data;
70 virtual bool update(Robot *h,
const Eigen::Affine3d &base,
const std::map<std::string,Eigen::Affine3d> &joints,
const HumanSettings &settings)=0;
80 virtual bool computeConf(Robot *h,
const Eigen::Affine3d &base,
const std::map<std::string,Eigen::Affine3d> &joints,
const HumanSettings &settings, RobotState &q)=0;
virtual bool computeConf(Robot *h, const Eigen::Affine3d &base, const std::map< std::string, Eigen::Affine3d > &joints, const HumanSettings &settings, RobotState &q)=0
compute the configuration without updating the human in move3d
boost::shared_ptr< HumanSettings > HumanSettingsPtr
HumanSettingsPtr.
Definition: humanmgr.h:21
virtual bool update(Robot *h, const Eigen::Affine3d &base, const std::map< std::string, Eigen::Affine3d > &joints, const HumanSettings &settings)=0
update the robot with the given elements
std::string policy
name of the plugin to use
Definition: base_human_updater.h:39
bool getData(std::string key, float &v) const
handler to access to the data in the data map
Definition: base_human_updater.h:30
The HumanSettings struct stores data for each human.
Definition: base_human_updater.h:19
HumanSettings()
default constructor
Definition: base_human_updater.h:21
boost::shared_ptr< BaseHumanUpdater > updater
pointer to the updater object (plugin)
Definition: base_human_updater.h:41
Definition: base_human_updater.h:57
std::string move3d_name
name of the human in move3d (i.e. in the p3d file)
Definition: base_human_updater.h:45
HumanSettings(const std::map< std::string, float > &settings, const std::string &policy, const std::string &move3d_name)
constructor
Definition: base_human_updater.h:23
std::map< std::string, float > data
specific data passed to the updater
Definition: base_human_updater.h:43