imarker_simple.h
Go to the documentation of this file.
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2017, PickNik Consulting
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of PickNik Consulting nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *********************************************************************/
34 
35 /* Author: Dave Coleman
36  Desc: Use interactive markers in a C++ class
37 */
38 
39 #ifndef RVIZ_VISUAL_TOOLS_IMARKER_SIMPLE_H
40 #define RVIZ_VISUAL_TOOLS_IMARKER_SIMPLE_H
41 
42 // ROS
43 #include <ros/ros.h>
44 
45 #include <geometry_msgs/PoseStamped.h>
46 
48 #include <visualization_msgs/InteractiveMarkerFeedback.h>
49 #include <visualization_msgs/InteractiveMarker.h>
51 #include <Eigen/Geometry>
52 
53 // C++
54 #include <string>
55 
57 {
58 using visualization_msgs::InteractiveMarkerFeedback;
59 using visualization_msgs::InteractiveMarkerControl;
60 
61 typedef std::function<void(const visualization_msgs::InteractiveMarkerFeedbackConstPtr&)> IMarkerCallback;
62 
63 namespace
64 {
65 geometry_msgs::Pose getIdentityPose()
66 {
67  geometry_msgs::Pose pose;
68  pose.orientation.w = 1.0;
69  return pose;
70 }
71 }
72 
74 {
75 public:
76  explicit IMarkerSimple(const std::string& name = "imarker", double scale = 0.2,
77  const geometry_msgs::Pose& initial_pose = getIdentityPose());
78 
79  geometry_msgs::Pose& getPose();
80 
81  void setPose(const Eigen::Affine3d& pose);
82 
83  void setPose(const geometry_msgs::Pose& pose);
84 
85  void iMarkerCallback(const visualization_msgs::InteractiveMarkerFeedbackConstPtr& feedback);
86 
87  void setIMarkerCallback(IMarkerCallback callback)
88  {
89  imarker_callback_ = callback;
90  }
91 
92 private:
94 
95  void make6DofMarker(const geometry_msgs::Pose& pose, double scale = 0.2);
96 
97  // --------------------------------------------------------
98 
99  // The short name of this class
100  std::string name_ = "imarker_simple";
101 
102  // A shared node handle
104 
105  geometry_msgs::Pose latest_pose_;
106 
107  // Interactive markers
108  std::shared_ptr<interactive_markers::InteractiveMarkerServer> imarker_server_;
109 
110  // Interactive markers
111  // interactive_markers::MenuHandler menu_handler_;
112  visualization_msgs::InteractiveMarker int_marker_;
113 
114  // Hook to parent class
115  IMarkerCallback imarker_callback_;
116 }; // end class
117 
118 // Create std pointers for this class
119 typedef std::shared_ptr<IMarkerSimple> IMarkerSimplePtr;
120 typedef std::shared_ptr<const IMarkerSimple> IMarkerSimpleConstPtr;
121 
122 } // namespace rviz_visual_tools
123 #endif // RVIZ_VISUAL_TOOLS_IMARKER_SIMPLE_H
std::function< void(const visualization_msgs::InteractiveMarkerFeedbackConstPtr &)> IMarkerCallback
visualization_msgs::InteractiveMarker int_marker_
geometry_msgs::Pose latest_pose_
std::shared_ptr< interactive_markers::InteractiveMarkerServer > imarker_server_
void setPose(const Eigen::Affine3d &pose)
std::shared_ptr< const IMarkerSimple > IMarkerSimpleConstPtr
void iMarkerCallback(const visualization_msgs::InteractiveMarkerFeedbackConstPtr &feedback)
void setIMarkerCallback(IMarkerCallback callback)
IMarkerSimple(const std::string &name="imarker", double scale=0.2, const geometry_msgs::Pose &initial_pose=getIdentityPose())
geometry_msgs::Pose & getPose()
std::shared_ptr< IMarkerSimple > IMarkerSimplePtr
void make6DofMarker(const geometry_msgs::Pose &pose, double scale=0.2)


rviz_visual_tools
Author(s): Dave Coleman
autogenerated on Mon Feb 25 2019 03:54:12