39 #include "nav2_costmap_2d/costmap_2d_publisher.hpp"
40 #include "nav2_costmap_2d/costmap_layer.hpp"
46 #include "nav2_costmap_2d/cost_values.hpp"
51 char * Costmap2DPublisher::cost_translation_table_ = NULL;
54 const nav2::LifecycleNode::WeakPtr & parent,
56 std::string global_frame,
57 std::string topic_name,
58 bool always_send_full_costmap,
61 global_frame_(global_frame),
62 topic_name_(topic_name),
63 always_send_full_costmap_(always_send_full_costmap),
66 auto node = parent.lock();
67 clock_ = node->get_clock();
68 logger_ = node->get_logger();
71 costmap_pub_ = node->create_publisher<nav_msgs::msg::OccupancyGrid>(
74 costmap_raw_pub_ = node->create_publisher<nav2_msgs::msg::Costmap>(
77 costmap_update_pub_ = node->create_publisher<map_msgs::msg::OccupancyGridUpdate>(
79 costmap_raw_update_pub_ = node->create_publisher<nav2_msgs::msg::CostmapUpdate>(
83 costmap_service_ = node->create_service<nav2_msgs::srv::GetCostmap>(
84 std::string(
"get_") + topic_name,
86 &Costmap2DPublisher::costmap_service_callback,
this,
87 std::placeholders::_1, std::placeholders::_2, std::placeholders::_3));
89 if (cost_translation_table_ == NULL) {
90 cost_translation_table_ =
new char[256];
93 cost_translation_table_[0] = 0;
94 cost_translation_table_[253] = 99;
95 cost_translation_table_[254] = 100;
96 cost_translation_table_[255] = -1;
100 for (
int i = 1; i < 253; i++) {
101 cost_translation_table_[i] =
static_cast<char>(1 + (97 * (i - 1)) / 251);
121 void Costmap2DPublisher::updateGridParams()
131 void Costmap2DPublisher::prepareGrid()
133 std::unique_lock<Costmap2D::mutex_t> lock(*(costmap_->getMutex()));
135 grid_ = std::make_unique<nav_msgs::msg::OccupancyGrid>();
137 grid_->header.frame_id = global_frame_;
138 grid_->header.stamp = clock_->now();
140 grid_->info.resolution = grid_resolution_;
142 grid_->info.width = grid_width_;
143 grid_->info.height = grid_height_;
147 grid_->info.origin.position.x = wx - grid_resolution_ / 2;
148 grid_->info.origin.position.y = wy - grid_resolution_ / 2;
149 grid_->info.origin.position.z = map_vis_z_;
150 grid_->info.origin.orientation.w = 1.0;
152 grid_->data.resize(grid_->info.width * grid_->info.height);
154 unsigned char * data = costmap_->
getCharMap();
156 data, data + grid_->data.size(), grid_->data.begin(),
157 [](
unsigned char c) {return cost_translation_table_[c];});
160 void Costmap2DPublisher::prepareCostmap()
162 std::unique_lock<Costmap2D::mutex_t> lock(*(costmap_->getMutex()));
165 costmap_raw_ = std::make_unique<nav2_msgs::msg::Costmap>();
167 costmap_raw_->header.frame_id = global_frame_;
168 costmap_raw_->header.stamp = clock_->now();
170 costmap_raw_->metadata.layer =
"master";
171 costmap_raw_->metadata.resolution = resolution;
178 costmap_raw_->metadata.origin.position.x = wx - resolution / 2;
179 costmap_raw_->metadata.origin.position.y = wy - resolution / 2;
180 costmap_raw_->metadata.origin.position.z = 0.0;
181 costmap_raw_->metadata.origin.orientation.w = 1.0;
183 costmap_raw_->data.resize(costmap_raw_->metadata.size_x * costmap_raw_->metadata.size_y);
185 unsigned char * data = costmap_->
getCharMap();
186 memcpy(costmap_raw_->data.data(), data, costmap_raw_->data.size());
189 std::unique_ptr<map_msgs::msg::OccupancyGridUpdate> Costmap2DPublisher::createGridUpdateMsg()
191 auto update = std::make_unique<map_msgs::msg::OccupancyGridUpdate>();
193 update->header.stamp = clock_->now();
194 update->header.frame_id = global_frame_;
197 update->width = xn_ - x0_;
198 update->height = yn_ - y0_;
199 update->data.resize(update->width * update->height);
201 unsigned char * costmap_data = costmap_->
getCharMap();
203 for (std::uint32_t y = y0_; y < yn_; y++) {
204 std::uint32_t row_start = y * map_width + x0_;
206 costmap_data + row_start, costmap_data + row_start + update->width,
207 update->data.begin() + i,
208 [](
unsigned char c) {return cost_translation_table_[c];});
214 std::unique_ptr<nav2_msgs::msg::CostmapUpdate> Costmap2DPublisher::createCostmapUpdateMsg()
216 auto msg = std::make_unique<nav2_msgs::msg::CostmapUpdate>();
218 msg->header.stamp = clock_->now();
219 msg->header.frame_id = global_frame_;
222 msg->size_x = xn_ - x0_;
223 msg->size_y = yn_ - y0_;
224 msg->data.resize(msg->size_x * msg->size_y);
226 unsigned char * costmap_data = costmap_->
getCharMap();
229 for (std::uint32_t y = y0_; y < yn_; y++) {
230 std::uint32_t row_start = y * map_width + x0_;
231 std::copy_n(costmap_data + row_start, msg->size_x, msg->data.begin() + i);
239 auto const costmap_layer =
dynamic_cast<CostmapLayer *
>(costmap_);
240 if (costmap_layer !=
nullptr && !costmap_layer->isEnabled()) {
245 if (always_send_full_costmap_ || grid_resolution_ != resolution ||
252 if (costmap_pub_->get_subscription_count() > 0) {
254 costmap_pub_->publish(std::move(grid_));
256 if (costmap_raw_pub_->get_subscription_count() > 0) {
258 costmap_raw_pub_->publish(std::move(costmap_raw_));
260 }
else if (x0_ < xn_) {
262 std::unique_lock<Costmap2D::mutex_t> lock(*(costmap_->getMutex()));
263 if (costmap_update_pub_->get_subscription_count() > 0) {
264 costmap_update_pub_->publish(createGridUpdateMsg());
266 if (costmap_raw_update_pub_->get_subscription_count() > 0) {
267 costmap_raw_update_pub_->publish(createCostmapUpdateMsg());
277 Costmap2DPublisher::costmap_service_callback(
278 const std::shared_ptr<rmw_request_id_t>,
279 const std::shared_ptr<nav2_msgs::srv::GetCostmap::Request>,
280 const std::shared_ptr<nav2_msgs::srv::GetCostmap::Response> response)
282 RCLCPP_DEBUG(logger_,
"Received costmap service request");
285 tf2::Quaternion quaternion;
286 quaternion.setRPY(0.0, 0.0, 0.0);
290 auto data_length = size_x * size_y;
291 unsigned char * data = costmap_->
getCharMap();
292 auto current_time = clock_->now();
294 response->map.header.stamp = current_time;
295 response->map.header.frame_id = global_frame_;
296 response->map.metadata.size_x = size_x;
297 response->map.metadata.size_y = size_y;
298 response->map.metadata.resolution = costmap_->
getResolution();
299 response->map.metadata.layer =
"master";
300 response->map.metadata.map_load_time = current_time;
301 response->map.metadata.update_time = current_time;
302 response->map.metadata.origin.position.x = costmap_->
getOriginX();
303 response->map.metadata.origin.position.y = costmap_->
getOriginY();
304 response->map.metadata.origin.position.z = 0.0;
305 response->map.metadata.origin.orientation = tf2::toMsg(quaternion);
306 response->map.data.resize(data_length);
307 response->map.data.assign(data, data + data_length);
A QoS profile for latched, reliable topics with a history of 1 messages.
~Costmap2DPublisher()
Destructor.
Costmap2DPublisher(const nav2::LifecycleNode::WeakPtr &parent, Costmap2D *costmap, std::string global_frame, std::string topic_name, bool always_send_full_costmap=false, double map_vis_z=0.0)
Constructor for the Costmap2DPublisher.
void publishCostmap()
Publishes the visualization data over ROS.
A 2D costmap provides a mapping between points in the world and their associated "costs".
void mapToWorld(unsigned int mx, unsigned int my, double &wx, double &wy) const
Convert from map coordinates to world coordinates.
unsigned char * getCharMap() const
Will return a pointer to the underlying unsigned char array used as the costmap.
double getResolution() const
Accessor for the resolution of the costmap.
unsigned int getSizeInCellsX() const
Accessor for the x size of the costmap in cells.
double getOriginY() const
Accessor for the y origin of the costmap.
unsigned int getSizeInCellsY() const
Accessor for the y size of the costmap in cells.
double getOriginX() const
Accessor for the x origin of the costmap.
A costmap layer base class for costmap plugin layers. Rather than just a layer, this object also cont...