00001 /********************************************************************* 00002 * 00003 * Software License Agreement (BSD License) 00004 * 00005 * Copyright (c) 2009, Willow Garage, Inc. 00006 * All rights reserved. 00007 * 00008 * Redistribution and use in source and binary forms, with or without 00009 * modification, are permitted provided that the following conditions 00010 * are met: 00011 * 00012 * * Redistributions of source code must retain the above copyright 00013 * notice, this list of conditions and the following disclaimer. 00014 * * Redistributions in binary form must reproduce the above 00015 * copyright notice, this list of conditions and the following 00016 * disclaimer in the documentation and/or other materials provided 00017 * with the distribution. 00018 * * Neither the name of Willow Garage, Inc. nor the names of its 00019 * contributors may be used to endorse or promote products derived 00020 * from this software without specific prior written permission. 00021 * 00022 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00023 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00024 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00025 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00026 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00027 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00028 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00029 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00030 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00031 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00032 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00033 * POSSIBILITY OF SUCH DAMAGE. 00034 * 00035 * Author: Eitan Marder-Eppstein 00036 *********************************************************************/ 00037 #ifndef DWA_LOCAL_PLANNER_DWA_PLANNER_ROS_H_ 00038 #define DWA_LOCAL_PLANNER_DWA_PLANNER_ROS_H_ 00039 00040 #include <boost/shared_ptr.hpp> 00041 #include <boost/thread.hpp> 00042 00043 #include <tf/transform_listener.h> 00044 00045 #include <dynamic_reconfigure/server.h> 00046 #include <dwa_local_planner/DWAPlannerConfig.h> 00047 00048 #include <angles/angles.h> 00049 00050 #include <nav_msgs/Odometry.h> 00051 00052 #include <costmap_2d/costmap_2d_ros.h> 00053 00054 #include <nav_core/base_local_planner.h> 00055 #include <base_local_planner/latched_stop_rotate_controller.h> 00056 00057 #include <base_local_planner/odometry_helper_ros.h> 00058 00059 #include <dwa_local_planner/dwa_planner.h> 00060 00061 namespace dwa_local_planner { 00067 class DWAPlannerROS : public nav_core::BaseLocalPlanner { 00068 public: 00072 DWAPlannerROS(); 00073 00080 void initialize(std::string name, tf::TransformListener* tf, 00081 costmap_2d::Costmap2DROS* costmap_ros); 00082 00086 ~DWAPlannerROS(); 00087 00094 bool computeVelocityCommands(geometry_msgs::Twist& cmd_vel); 00095 00096 00103 bool dwaComputeVelocityCommands(tf::Stamped<tf::Pose>& global_pose, geometry_msgs::Twist& cmd_vel); 00104 00110 bool setPlan(const std::vector<geometry_msgs::PoseStamped>& orig_global_plan); 00111 00116 bool isGoalReached(); 00117 00118 00119 00120 bool isInitialized() { 00121 return initialized_; 00122 } 00123 00124 private: 00128 void reconfigureCB(DWAPlannerConfig &config, uint32_t level); 00129 00130 void publishLocalPlan(std::vector<geometry_msgs::PoseStamped>& path); 00131 00132 void publishGlobalPlan(std::vector<geometry_msgs::PoseStamped>& path); 00133 00134 tf::TransformListener* tf_; 00135 00136 // for visualisation, publishers of global and local plan 00137 ros::Publisher g_plan_pub_, l_plan_pub_; 00138 00139 base_local_planner::LocalPlannerUtil planner_util_; 00140 00141 boost::shared_ptr<DWAPlanner> dp_; 00142 00143 costmap_2d::Costmap2DROS* costmap_ros_; 00144 costmap_2d::Costmap2D costmap_; 00145 00146 dynamic_reconfigure::Server<DWAPlannerConfig> *dsrv_; 00147 dwa_local_planner::DWAPlannerConfig default_config_; 00148 bool setup_; 00149 tf::Stamped<tf::Pose> current_pose_; 00150 00151 base_local_planner::LatchedStopRotateController latchedStopRotateController_; 00152 00153 00154 bool initialized_; 00155 00156 00157 base_local_planner::OdometryHelperRos odom_helper_; 00158 }; 00159 }; 00160 #endif