8 #include <boost/shared_ptr.hpp>
9 #include <Eigen/Geometry>
41 typedef std::map<std::string,HumanSettingsPtr>::iterator HumanSettingsIterator;
70 bool setHumanPos(
const std::string &name,
const Eigen::Affine3d &base,
const std::map<std::string, Eigen::Affine3d> &joints);
77 std::vector<std::string>
humanList()
const;
86 bool updateHumanList();
90 std::vector<std::string> _humans;
91 std::map<std::string,HumanSettingsPtr> _humanSettings;
93 std::map<std::string,boost::shared_ptr<BaseHumanUpdater> > _updaters;
94 typedef std::map<std::string,boost::shared_ptr<BaseHumanUpdater> >::iterator UpdaterIterator;
boost::shared_ptr< HumanSettings > HumanSettingsPtr
HumanSettingsPtr.
Definition: humanmgr.h:21
std::vector< std::string > humanList() const
list of humans defined in the ROS parameter server
Definition: humanmgr.cpp:132
HumanSettingsPtr getHumanSettings(const std::string &name)
get the structure representing the settings for a human
Definition: humanmgr.cpp:137
The HumanSettings struct stores data for each human.
Definition: base_human_updater.h:19
The SceneManager class provide interface between ROS and the move3d scene and project. Use it to start libmove3d and place the robots and objects in the environment.
Definition: scenemanager.h:25
Definition: base_human_updater.h:57
bool updateParams()
read the ROS parameter server to find settings
Definition: humanmgr.cpp:26
HumanMgr(ros::NodeHandle *nh, SceneManager *sc)
constructor
Definition: humanmgr.cpp:147
bool loadPlugins()
load the plugins found by the pluginlib ClassLoader
Definition: humanmgr.cpp:67
Definition: humanmgr.h:15
bool setHumanPos(const std::string &name, const Eigen::Affine3d &base, const std::map< std::string, Eigen::Affine3d > &joints)
update a human configuration in move3d
Definition: humanmgr.cpp:82
The HumanMgr class updates human configuration based on plugins.
Definition: humanmgr.h:37