MTC
compute_ik.h
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2017, Bielefeld University
5  * Copyright (c) 2017, Hamburg University
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * * Neither the name of Bielefeld University nor the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  *********************************************************************/
35 /* Authors: Robert Haschke, Michael Goerner */
36 
37 #pragma once
38 
39 #include <moveit/task_constructor/container.h>
40 #include <moveit/task_constructor/cost_queue.h>
41 #include <geometry_msgs/PoseStamped.h>
42 #include <Eigen/Geometry>
43 
44 namespace moveit {
45 namespace core {
46 MOVEIT_CLASS_FORWARD(RobotState);
47 MOVEIT_CLASS_FORWARD(JointModelGroup);
48 } // namespace core
49 } // namespace moveit
50 
51 namespace moveit {
52 namespace task_constructor {
53 namespace stages {
54 
68 class ComputeIK : public WrapperBase
69 {
70 public:
71  ComputeIK(const std::string& name = "IK", Stage::pointer&& child = Stage::pointer());
72 
73  void reset() override;
74  void init(const core::RobotModelConstPtr& robot_model) override;
75  void onNewSolution(const SolutionBase& s) override;
76 
77  bool canCompute() const override;
78 
79  void compute() override;
80 
81  void setEndEffector(const std::string& eef) { setProperty("eef", eef); }
82  void setGroup(const std::string& group) { setProperty("group", group); }
83 
85  void setIKFrame(const geometry_msgs::PoseStamped& pose) { setProperty("ik_frame", pose); }
86  void setIKFrame(const Eigen::Isometry3d& pose, const std::string& link);
87  template <typename T>
88  void setIKFrame(const T& p, const std::string& link) {
89  Eigen::Isometry3d pose;
90  pose = p;
91  setIKFrame(pose, link);
92  }
93  void setIKFrame(const std::string& link) { setIKFrame(Eigen::Isometry3d::Identity(), link); }
94 
100  void setTargetPose(const geometry_msgs::PoseStamped& pose) { setProperty("target_pose", pose); }
101  void setTargetPose(const Eigen::Isometry3d& pose, const std::string& frame = "");
102  template <typename T>
103  void setTargetPose(const T& p, const std::string& frame = "") {
104  Eigen::Isometry3d pose;
105  pose = p;
106  setTargetPose(pose, frame);
107  }
108 
109  void setMaxIKSolutions(uint32_t n) { setProperty("max_ik_solutions", n); }
110  void setIgnoreCollisions(bool flag) { setProperty("ignore_collisions", flag); }
111  void setMinSolutionDistance(double distance) { setProperty("min_solution_distance", distance); }
112 
113 protected:
114  ordered<const SolutionBase*> upstream_solutions_;
115 };
116 } // namespace stages
117 } // namespace task_constructor
118 } // namespace moveit
abstract base class for solutions (primitive and sequences)
Definition: storage.h:269
void setProperty(const std::string &name, const boost::any &value)
Set a previously declared property to a new value.
Definition: stage.cpp:443
Definition: container.h:214
void onNewSolution(const SolutionBase &s) override
called by a (direct) child when a new solution becomes available
Definition: compute_ik.cpp:219
void setTargetPose(const geometry_msgs::PoseStamped &pose)
Definition: compute_ik.h:100
void setIKFrame(const geometry_msgs::PoseStamped &pose)
setters for IK frame
Definition: compute_ik.h:85
void reset() override
reset stage, clearing all solutions, interfaces, inherited properties.
Definition: compute_ik.cpp:190
ordered<ValueType> provides an adapter for a std::list to allow sorting.
Definition: cost_queue.h:30