move3d_ros_lib  0.1.0
move3d/ros API interface
 All Classes Namespaces Functions Variables Typedefs Pages
humanmgr.h
1 #ifndef HUMANMGR_H
2 #define HUMANMGR_H
3 
4 #include <vector>
5 #include <string>
6 #include <map>
7 
8 #include <boost/shared_ptr.hpp>
9 #include <Eigen/Geometry>
10 namespace ros{
11 class NodeHandle;
12 }
13 namespace pluginlib{
14 template<class T>
16 }
17 namespace move3d{
18 
19 class SceneManager;
20 class BaseHumanUpdater;
25 typedef boost::shared_ptr<HumanSettings> HumanSettingsPtr;
26 
37 class HumanMgr
38 {
39 public:
40 
41  typedef std::map<std::string,HumanSettingsPtr>::iterator HumanSettingsIterator;
42 
44  HumanMgr(ros::NodeHandle *nh,SceneManager *sc);
45  ~HumanMgr();
46 
56  bool updateParams();
61  bool loadPlugins();
62 
70  bool setHumanPos(const std::string &name, const Eigen::Affine3d &base, const std::map<std::string, Eigen::Affine3d> &joints);
71 
77  std::vector<std::string> humanList() const;
83  HumanSettingsPtr getHumanSettings(const std::string &name);
84 
85 private:
86  bool updateHumanList();
87 
88  ros::NodeHandle *_nh;
89  SceneManager *_scMgr;
90  std::vector<std::string> _humans;
91  std::map<std::string,HumanSettingsPtr> _humanSettings;
92  pluginlib::ClassLoader<BaseHumanUpdater> *_human_updater_loader;
93  std::map<std::string,boost::shared_ptr<BaseHumanUpdater> > _updaters;
94  typedef std::map<std::string,boost::shared_ptr<BaseHumanUpdater> >::iterator UpdaterIterator;
95 
96 };
97 }
98 
99 #endif // HUMANMGR_H
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