trajectory_planner_ros.h
Go to the documentation of this file.
00001 /*********************************************************************
00002 *
00003 * Software License Agreement (BSD License)
00004 *
00005 *  Copyright (c) 2008, 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 the Willow Garage 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 TRAJECTORY_ROLLOUT_TRAJECTORY_PLANNER_ROS_H_
00038 #define TRAJECTORY_ROLLOUT_TRAJECTORY_PLANNER_ROS_H_
00039 
00040 #include <ros/ros.h>
00041 #include <costmap_2d/costmap_2d.h>
00042 #include <costmap_2d/costmap_2d_publisher.h>
00043 #include <costmap_2d/costmap_2d_ros.h>
00044 #include <base_local_planner/world_model.h>
00045 #include <base_local_planner/point_grid.h>
00046 #include <base_local_planner/costmap_model.h>
00047 #include <base_local_planner/voxel_grid_model.h>
00048 #include <base_local_planner/trajectory_planner.h>
00049 #include <base_local_planner/map_grid_visualizer.h>
00050 
00051 #include <base_local_planner/planar_laser_scan.h>
00052 
00053 #include <tf/transform_datatypes.h>
00054 
00055 #include <nav_msgs/Odometry.h>
00056 #include <geometry_msgs/PoseStamped.h>
00057 #include <geometry_msgs/Twist.h>
00058 #include <geometry_msgs/Point.h>
00059 
00060 #include <tf/transform_listener.h>
00061 
00062 #include <boost/thread.hpp>
00063 
00064 #include <string>
00065 
00066 #include <angles/angles.h>
00067 
00068 #include <nav_core/base_local_planner.h>
00069 
00070 #include <dynamic_reconfigure/server.h>
00071 #include <base_local_planner/BaseLocalPlannerConfig.h>
00072 
00073 #include <base_local_planner/odometry_helper_ros.h>
00074 
00075 namespace base_local_planner {
00080   class TrajectoryPlannerROS : public nav_core::BaseLocalPlanner {
00081     public:
00085       TrajectoryPlannerROS();
00086 
00093       TrajectoryPlannerROS(std::string name,
00094                            tf::TransformListener* tf,
00095                            costmap_2d::Costmap2DROS* costmap_ros);
00096 
00103       void initialize(std::string name, tf::TransformListener* tf,
00104           costmap_2d::Costmap2DROS* costmap_ros);
00105 
00109       ~TrajectoryPlannerROS();
00110       
00117       bool computeVelocityCommands(geometry_msgs::Twist& cmd_vel);
00118 
00124       bool setPlan(const std::vector<geometry_msgs::PoseStamped>& orig_global_plan);
00125 
00130       bool isGoalReached();
00131 
00143       bool checkTrajectory(double vx_samp, double vy_samp, double vtheta_samp, bool update_map = true);
00144 
00156       double scoreTrajectory(double vx_samp, double vy_samp, double vtheta_samp, bool update_map = true);
00157 
00158       bool isInitialized() {
00159         return initialized_;
00160       }
00161 
00162     private:
00166       void reconfigureCB(BaseLocalPlannerConfig &config, uint32_t level);
00167 
00176       bool rotateToGoal(const tf::Stamped<tf::Pose>& global_pose, const tf::Stamped<tf::Pose>& robot_vel, double goal_th, geometry_msgs::Twist& cmd_vel);
00177 
00185       bool stopWithAccLimits(const tf::Stamped<tf::Pose>& global_pose, const tf::Stamped<tf::Pose>& robot_vel, geometry_msgs::Twist& cmd_vel);
00186 
00187       std::vector<double> loadYVels(ros::NodeHandle node);
00188 
00189       double sign(double x){
00190         return x < 0.0 ? -1.0 : 1.0;
00191       }
00192 
00193       WorldModel* world_model_; 
00194       TrajectoryPlanner* tc_; 
00195 
00196       costmap_2d::Costmap2DROS* costmap_ros_; 
00197       costmap_2d::Costmap2D costmap_; 
00198       MapGridVisualizer map_viz_; 
00199       tf::TransformListener* tf_; 
00200       std::string global_frame_; 
00201       double max_sensor_range_; 
00202       nav_msgs::Odometry base_odom_; 
00203       std::string robot_base_frame_; 
00204       double rot_stopped_velocity_, trans_stopped_velocity_;
00205       double xy_goal_tolerance_, yaw_goal_tolerance_, min_in_place_vel_th_;
00206       double inflation_radius_; 
00207       std::vector<geometry_msgs::PoseStamped> global_plan_;
00208       bool prune_plan_;
00209       boost::recursive_mutex odom_lock_;
00210 
00211       double max_vel_th_, min_vel_th_;
00212       double acc_lim_x_, acc_lim_y_, acc_lim_theta_;
00213       double sim_period_;
00214       bool rotating_to_goal_;
00215       bool latch_xy_goal_tolerance_, xy_tolerance_latch_;
00216 
00217       ros::Publisher g_plan_pub_, l_plan_pub_;
00218 
00219       dynamic_reconfigure::Server<BaseLocalPlannerConfig> *dsrv_;
00220       base_local_planner::BaseLocalPlannerConfig default_config_;
00221       bool setup_;
00222 
00223 
00224       bool initialized_;
00225       base_local_planner::OdometryHelperRos odom_helper_;
00226   };
00227 };
00228 #endif


base_local_planner
Author(s): Eitan Marder-Eppstein, Eric Perko
autogenerated on Mon Oct 6 2014 02:45:34