$search
00001 /* 00002 * Copyright (c) 2011, Willow Garage, Inc. 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are met: 00007 * 00008 * * Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * * Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * * Neither the name of the Willow Garage, Inc. nor the names of its 00014 * contributors may be used to endorse or promote products derived from 00015 * this software without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00021 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00022 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00023 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00024 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00025 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00026 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00027 * POSSIBILITY OF SUCH DAMAGE. 00028 */ 00029 00030 #ifndef RVIZ_INTERACTIVE_MARKER_H_ 00031 #define RVIZ_INTERACTIVE_MARKER_H_ 00032 00033 #include "rviz/selection/forwards.h" 00034 00035 #include "interactive_marker_control.h" 00036 00037 #include <ogre_tools/axes.h> 00038 00039 #include <visualization_msgs/InteractiveMarker.h> 00040 #include <visualization_msgs/InteractiveMarkerPose.h> 00041 #include <visualization_msgs/InteractiveMarkerFeedback.h> 00042 00043 #include <geometry_msgs/Pose.h> 00044 00045 #include <OGRE/OgreVector3.h> 00046 #include <OGRE/OgreQuaternion.h> 00047 00048 #include <boost/shared_ptr.hpp> 00049 00050 #include <ros/publisher.h> 00051 00052 namespace Ogre { 00053 class SceneNode; 00054 } 00055 00056 class QMenu; 00057 00058 namespace rviz 00059 { 00060 class VisualizationManager; 00061 class InteractiveMarkerDisplay; 00062 00063 class InteractiveMarker : public QObject 00064 { 00065 Q_OBJECT 00066 public: 00067 InteractiveMarker( InteractiveMarkerDisplay *owner, VisualizationManager *vis_manager, std::string topic_ns, std::string client_id ); 00068 virtual ~InteractiveMarker(); 00069 00070 // reset contents to reflect the data from a new message 00071 // @return success 00072 bool processMessage( visualization_msgs::InteractiveMarkerConstPtr message ); 00073 00074 // reset contents to reflect the data from a new message 00075 // @return success 00076 void processMessage( visualization_msgs::InteractiveMarkerPoseConstPtr message ); 00077 00078 // called every frame update 00079 void update(float wall_dt); 00080 00081 // set the pose of the parent frame, relative to the fixed frame 00082 void setReferencePose( Ogre::Vector3 position, Ogre::Quaternion orientation ); 00083 00084 // directly set the pose, relative to parent frame 00085 // if publish is set to true, publish the change 00086 void setPose( Ogre::Vector3 position, Ogre::Quaternion orientation, const std::string &control_name ); 00087 00088 void translate( Ogre::Vector3 delta_position, const std::string &control_name ); 00089 void rotate( Ogre::Quaternion delta_orientation, const std::string &control_name ); 00090 00091 // schedule a pose reset once dragging is finished 00092 void requestPoseUpdate( Ogre::Vector3 position, Ogre::Quaternion orientation ); 00093 00094 void startDragging(); 00095 void stopDragging(); 00096 00097 const Ogre::Vector3& getPosition() { return position_; } 00098 const Ogre::Quaternion& getOrientation() { return orientation_; } 00099 00100 float getSize() { return scale_; } 00101 const std::string &getReferenceFrame() { return reference_frame_; } 00102 const std::string& getName() { return name_; } 00103 00104 // show name above marker 00105 void setShowDescription( bool show ); 00106 00107 // show axes in origin 00108 void setShowAxes( bool show ); 00109 00110 // @return true if the mouse event was intercepted, false if it was ignored 00111 bool handleMouseEvent(ViewportMouseEvent& event, const std::string &control_name ); 00112 00113 // fill in current marker pose & name, publish 00114 void publishFeedback(visualization_msgs::InteractiveMarkerFeedback &feedback, 00115 bool mouse_point_valid = false, 00116 const Ogre::Vector3& mouse_point_rel_world = Ogre::Vector3(0,0,0) ); 00117 00118 protected Q_SLOTS: 00119 void handleMenuSelect( int menu_item_id ); 00120 00121 protected: 00122 00123 void publishPose(); 00124 00125 void reset(); 00126 00127 void updateReferencePose(); 00128 00129 QString makeMenuString( const std::string &entry ); 00130 00131 // Recursively append menu and submenu entries to menu, based on a 00132 // vector of menu entry id numbers describing the menu entries at the 00133 // current level. 00134 void populateMenu( QMenu* menu, std::vector<uint32_t>& ids ); 00135 00136 InteractiveMarkerDisplay *owner_; 00137 VisualizationManager *vis_manager_; 00138 00139 // pose of parent coordinate frame 00140 std::string reference_frame_; 00141 ros::Time reference_time_; 00142 bool frame_locked_; 00143 00144 // node representing reference frame in tf, like /map, /base_link, /head, etc. 00145 Ogre::SceneNode *reference_node_; 00146 00147 // pose being controlled, relative to reference frame 00148 Ogre::Vector3 position_; 00149 Ogre::Quaternion orientation_; 00150 00151 // has the pose changed since the last feedback was sent? 00152 bool pose_changed_; 00153 double time_since_last_feedback_; 00154 00155 typedef boost::shared_ptr<InteractiveMarkerControl> InteractiveMarkerControlPtr; 00156 std::list<InteractiveMarkerControlPtr> controls_; 00157 00158 std::string name_; 00159 std::string description_; 00160 00161 bool dragging_; 00162 std::string old_target_frame_; 00163 00164 // pose being controlled 00165 bool pose_update_requested_; 00166 Ogre::Vector3 requested_position_; 00167 Ogre::Quaternion requested_orientation_; 00168 00169 float scale_; 00170 00171 boost::shared_ptr<QMenu> menu_; 00172 00173 // Helper to more simply represent the menu tree. 00174 struct MenuNode 00175 { 00176 visualization_msgs::MenuEntry entry; 00177 std::vector<uint32_t> child_ids; 00178 }; 00179 00180 // maps menu index to menu entry and item 00181 std::map< uint32_t, MenuNode > menu_entries_; 00182 00183 // Helper to store the top level of the menu tree. 00184 std::vector<uint32_t> top_level_menu_ids_; 00185 00186 // which control has popped up the menu 00187 std::string last_control_name_; 00188 00189 double heart_beat_t_; 00190 00191 // visual aids 00192 00193 ogre_tools::Axes *axes_; 00194 Ogre::SceneNode *axes_node_; 00195 00196 InteractiveMarkerControlPtr description_control_; 00197 00198 ros::Publisher feedback_pub_; 00199 std::string topic_ns_; 00200 std::string client_id_; 00201 00202 boost::recursive_mutex mutex_; 00203 00204 boost::shared_ptr< boost::thread > sys_thread_; 00205 00206 bool got_3d_point_for_menu_; 00207 Ogre::Vector3 three_d_point_for_menu_; 00208 }; 00209 00210 00211 } 00212 00213 #endif /* INTERACTIVE_MARKER_H_ */