Skip to content

Commit 5a6f5c6

Browse files
committed
refactor: behavior_velocity_planner package renamed to autoware_behavior_velocity_planner . BehaviorVelocityPlannerNode loads, but plugins do not.
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
1 parent 6be897e commit 5a6f5c6

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

launch/tier4_planning_launch/launch/scenario_planning/lane_driving/behavior_planning/behavior_planning.launch.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
<extra_arg name="use_intra_process_comms" value="false"/>
221221
</composable_node>
222222

223-
<composable_node pkg="behavior_velocity_planner" plugin="behavior_velocity_planner::BehaviorVelocityPlannerNode" name="behavior_velocity_planner" namespace="">
223+
<composable_node pkg="autoware_behavior_velocity_planner" plugin="behavior_velocity_planner::BehaviorVelocityPlannerNode" name="behavior_velocity_planner" namespace="">
224224
<!-- topic remap -->
225225
<remap from="~/input/path_with_lane_id" to="path_with_lane_id"/>
226226
<remap from="~/input/vector_map" to="$(var input_vector_map_topic_name)"/>

planning/autoware_behavior_velocity_planner/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.14)
2-
project(behavior_velocity_planner)
2+
project(autoware_behavior_velocity_planner)
33

44
find_package(autoware_cmake REQUIRED)
55
find_package(rosidl_default_generators REQUIRED)

planning/autoware_behavior_velocity_planner/package.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0"?>
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
4-
<name>behavior_velocity_planner</name>
4+
<name>autoware_behavior_velocity_planner</name>
55
<version>0.1.0</version>
6-
<description>The behavior_velocity_planner package</description>
6+
<description>The autoware_behavior_velocity_planner package</description>
77

88
<maintainer email="mamoru.sobue@tier4.jp">Mamoru Sobue</maintainer>
99
<maintainer email="takayuki.murooka@tier4.jp">Takayuki Murooka</maintainer>

planning/autoware_behavior_velocity_planner/src/node.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
#include "planner_manager.hpp"
1919
#include "tier4_autoware_utils/ros/logger_level_configure.hpp"
2020

21-
#include <behavior_velocity_planner/srv/load_plugin.hpp>
22-
#include <behavior_velocity_planner/srv/unload_plugin.hpp>
21+
#include <autoware_behavior_velocity_planner/srv/load_plugin.hpp>
22+
#include <autoware_behavior_velocity_planner/srv/unload_plugin.hpp>
2323
#include <behavior_velocity_planner_common/planner_data.hpp>
2424
#include <rclcpp/rclcpp.hpp>
2525
#include <tier4_autoware_utils/ros/published_time_publisher.hpp>
@@ -47,8 +47,8 @@
4747
namespace behavior_velocity_planner
4848
{
4949
using autoware_auto_mapping_msgs::msg::HADMapBin;
50-
using behavior_velocity_planner::srv::LoadPlugin;
51-
using behavior_velocity_planner::srv::UnloadPlugin;
50+
using autoware_behavior_velocity_planner::srv::LoadPlugin;
51+
using autoware_behavior_velocity_planner::srv::UnloadPlugin;
5252
using tier4_planning_msgs::msg::VelocityLimit;
5353

5454
class BehaviorVelocityPlannerNode : public rclcpp::Node

planning/autoware_behavior_velocity_planner/src/planner_manager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ diagnostic_msgs::msg::DiagnosticStatus makeStopReasonDiag(
5050
} // namespace
5151

5252
BehaviorVelocityPlannerManager::BehaviorVelocityPlannerManager()
53-
: plugin_loader_("behavior_velocity_planner", "behavior_velocity_planner::PluginInterface")
53+
: plugin_loader_("autoware_behavior_velocity_planner", "behavior_velocity_planner::PluginInterface")
5454
{
5555
}
5656

planning/autoware_static_centerline_generator/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
<test_depend>ament_cmake_gmock</test_depend>
4545
<test_depend>ament_lint_auto</test_depend>
46-
<test_depend>behavior_velocity_planner</test_depend>
46+
<test_depend>autoware_behavior_velocity_planner</test_depend>
4747
<test_depend>autoware_lint_common</test_depend>
4848
<test_depend>behavior_path_planner</test_depend>
4949
<test_depend>ros_testing</test_depend>

0 commit comments

Comments
 (0)