00001 /* 00002 * Software License Agreement (BSD License) 00003 * 00004 * Copyright (c) 2018, Locus Robotics 00005 * All rights reserved. 00006 * 00007 * Redistribution and use in source and binary forms, with or without 00008 * modification, are permitted provided that the following conditions 00009 * are met: 00010 * 00011 * * Redistributions of source code must retain the above copyright 00012 * notice, this list of conditions and the following disclaimer. 00013 * * Redistributions in binary form must reproduce the above 00014 * copyright notice, this list of conditions and the following 00015 * disclaimer in the documentation and/or other materials provided 00016 * with the distribution. 00017 * * Neither the name of the copyright holder nor the names of its 00018 * contributors may be used to endorse or promote products derived 00019 * from this software without specific prior written permission. 00020 * 00021 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00022 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00023 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00024 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00025 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00027 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00028 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00029 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00031 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00032 * POSSIBILITY OF SUCH DAMAGE. 00033 */ 00034 00035 #ifndef DLUX_GLOBAL_PLANNER_DLUX_GLOBAL_PLANNER_H 00036 #define DLUX_GLOBAL_PLANNER_DLUX_GLOBAL_PLANNER_H 00037 00038 #include <nav_core2/global_planner.h> 00039 #include <nav_core2/costmap.h> 00040 #include <dlux_global_planner/cost_interpreter.h> 00041 #include <dlux_global_planner/potential_calculator.h> 00042 #include <dlux_global_planner/traceback.h> 00043 #include <nav_2d_msgs/Pose2DStamped.h> 00044 #include <nav_grid_pub_sub/nav_grid_publisher.h> 00045 #include <pluginlib/class_loader.h> 00046 #include <ros/ros.h> 00047 #include <string> 00048 00049 namespace dlux_global_planner 00050 { 00055 class DluxGlobalPlanner: public nav_core2::GlobalPlanner 00056 { 00057 public: 00058 DluxGlobalPlanner(); 00059 00060 // Standard GlobalPlanner Interface 00061 void initialize(const ros::NodeHandle& parent, const std::string& name, 00062 TFListenerPtr tf, nav_core2::Costmap::Ptr costmap) override; 00063 nav_2d_msgs::Path2D makePlan(const nav_2d_msgs::Pose2DStamped& start, 00064 const nav_2d_msgs::Pose2DStamped& goal) override; 00065 00071 virtual bool isPlanValid(const nav_2d_msgs::Path2D& path) const; 00072 00073 protected: 00074 // Path Caching Methods 00075 00089 virtual bool hasValidCachedPath(const geometry_msgs::Pose2D& local_goal, 00090 unsigned int goal_x, unsigned int goal_y); 00091 00096 virtual bool shouldReturnCachedPathImmediately() const; 00097 00104 virtual bool shouldReturnNewPath(const nav_2d_msgs::Path2D& new_path, const double new_path_cost) const; 00105 00106 // Plugins 00107 pluginlib::ClassLoader<PotentialCalculator> calc_loader_; 00108 boost::shared_ptr<PotentialCalculator> calculator_; 00109 pluginlib::ClassLoader<Traceback> traceback_loader_; 00110 boost::shared_ptr<Traceback> traceback_; 00111 00112 // Key members 00113 nav_core2::Costmap::Ptr costmap_; 00114 TFListenerPtr tf_; 00115 PotentialGrid potential_grid_; 00116 CostInterpreter::Ptr cost_interpreter_; 00117 00118 // Path Caching 00119 bool path_caching_; 00120 double improvement_threshold_; 00121 nav_2d_msgs::Path2D cached_path_; 00122 unsigned int cached_goal_x_, cached_goal_y_; 00123 double cached_path_cost_; 00124 00125 // potential publishing 00126 nav_grid_pub_sub::ScaleGridPublisher<float> potential_pub_; 00127 00128 // debug printing 00129 bool print_statistics_; 00130 }; 00131 } // namespace dlux_global_planner 00132 00133 #endif // DLUX_GLOBAL_PLANNER_DLUX_GLOBAL_PLANNER_H