MIRA
RigidModelObserver.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 by
3  * MetraLabs GmbH (MLAB), GERMANY
4  * and
5  * Neuroinformatics and Cognitive Robotics Labs (NICR) at TU Ilmenau, GERMANY
6  * All rights reserved.
7  *
8  * Contact: info@mira-project.org
9  *
10  * Commercial Usage:
11  * Licensees holding valid commercial licenses may use this file in
12  * accordance with the commercial license agreement provided with the
13  * software or, alternatively, in accordance with the terms contained in
14  * a written agreement between you and MLAB or NICR.
15  *
16  * GNU General Public License Usage:
17  * Alternatively, this file may be used under the terms of the GNU
18  * General Public License version 3.0 as published by the Free Software
19  * Foundation and appearing in the file LICENSE.GPL3 included in the
20  * packaging of this file. Please review the following information to
21  * ensure the GNU General Public License version 3.0 requirements will be
22  * met: http://www.gnu.org/copyleft/gpl.html.
23  * Alternatively you may (at your option) use any later version of the GNU
24  * General Public License if such license has been publicly approved by
25  * MLAB and NICR (or its successors, if any).
26  *
27  * IN NO EVENT SHALL "MLAB" OR "NICR" BE LIABLE TO ANY PARTY FOR DIRECT,
28  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF
29  * THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF "MLAB" OR
30  * "NICR" HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * "MLAB" AND "NICR" SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING,
33  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
34  * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
35  * ON AN "AS IS" BASIS, AND "MLAB" AND "NICR" HAVE NO OBLIGATION TO
36  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS OR MODIFICATIONS.
37  */
38 
47 #ifndef _MIRA_RIGIDMODELOBSERVER_H_
48 #define _MIRA_RIGIDMODELOBSERVER_H_
49 
50 #include <transform/Pose.h>
51 #include <fw/Framework.h>
52 #include <model/RigidModel.h>
53 
54 namespace mira { namespace model {
55 
57 
64 {
65 public:
66 
67  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
68 
70  Authority(parent, parent.getName()+"_ModelObserver", Authority::INTERNAL | Authority::ANONYMOUS),
71  mRigidModel(rigidModel)
72  {
73  start();
74  typedef std::pair<std::string, JointPtr> JointPair;
75  foreach(const JointPair& joint, mRigidModel->joints)
76  {
77  // we are only interested in joints that can be changed
78  if (joint.second->type == Joint::FIXED)
79  continue;
80  bool mustSubscribe = false;
81  // test if we have a link that matches the joints child name
82  foreach(const LinkPtr& link, mRigidModel->links)
83  if (link->name == joint.second->child)
84  {
85  // test if that link has a collision representation
86  if (!link->collisions.empty())
87  mustSubscribe = true;
88  break;
89  }
90  if (mustSubscribe)
91  {
92  Channel<Pose3> pose = subscribe<Pose3>(joint.second->child, &RigidModelObserver::collisionChanged);
93  mLastStates[joint.second->child] = pose.get();
94  }
95  }
96  }
97 
102  void registerCollisionChangedCallback(boost::function<void ()> cb)
103  {
104  mCallback = cb;
105  }
106 
107 protected:
108 
110  {
111  if (mCallback)
112  {
113  // only call callback if transform has changed
114  if (!data->value().isApprox(mLastStates[data.getChannelID()])) {
115  mLastStates[data.getChannelID()] = data->value();
116  mCallback();
117  }
118  } else
119  mLastStates[data.getChannelID()] = data->value();
120  }
121 
122  std::map<std::string, Pose3, std::less<std::string>,
125  boost::function<void ()> mCallback;
126 };
127 
128 typedef boost::shared_ptr<RigidModelObserver> RigidModelObserverPtr;
129 
131 
132 }} // namespace
133 
134 #endif
EIGEN_MAKE_ALIGNED_OPERATOR_NEW RigidModelObserver(Authority &parent, RigidModelPtr rigidModel)
Definition: RigidModelObserver.h:69
A rigid model representation.
boost::function< void()> mCallback
Definition: RigidModelObserver.h:125
boost::shared_ptr< Link > LinkPtr
Definition: Link.h:84
Class that acts as an observer for rigid models.
Definition: RigidModelObserver.h:63
boost::shared_ptr< RigidModel > RigidModelPtr
Definition: RigidModel.h:205
std::string getName() const
boost::shared_ptr< RigidModelObserver > RigidModelObserverPtr
Definition: RigidModelObserver.h:128
const std::string & getChannelID()
virtual void start()
For a fixed joint all degrees of freedom are locked and its state is fixed.
Definition: Joint.h:69
Stamped< T > get()
RigidModelPtr mRigidModel
Definition: RigidModelObserver.h:124
void collisionChanged(ChannelRead< Pose3 > data)
Definition: RigidModelObserver.h:109
void registerCollisionChangedCallback(boost::function< void()> cb)
Register a callback function that gets called whenever the collision shape of the model changes...
Definition: RigidModelObserver.h:102
std::map< std::string, Pose3, std::less< std::string >, Eigen::aligned_allocator< std::pair< std::string, Pose3 > > > mLastStates
Definition: RigidModelObserver.h:123