Skip to content

Commit

Permalink
refactor: behavior_velocity_planner package renamed to autoware_behav…
Browse files Browse the repository at this point in the history
…ior_velocity_planner . BehaviorVelocityPlannerNode loads, but plugins do not.

Signed-off-by: Esteve Fernandez <[email protected]>
  • Loading branch information
esteve committed May 22, 2024
1 parent 6be897e commit 5a6f5c6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<extra_arg name="use_intra_process_comms" value="false"/>
</composable_node>

<composable_node pkg="behavior_velocity_planner" plugin="behavior_velocity_planner::BehaviorVelocityPlannerNode" name="behavior_velocity_planner" namespace="">
<composable_node pkg="autoware_behavior_velocity_planner" plugin="behavior_velocity_planner::BehaviorVelocityPlannerNode" name="behavior_velocity_planner" namespace="">
<!-- topic remap -->
<remap from="~/input/path_with_lane_id" to="path_with_lane_id"/>
<remap from="~/input/vector_map" to="$(var input_vector_map_topic_name)"/>
Expand Down
2 changes: 1 addition & 1 deletion planning/autoware_behavior_velocity_planner/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
project(behavior_velocity_planner)
project(autoware_behavior_velocity_planner)

find_package(autoware_cmake REQUIRED)
find_package(rosidl_default_generators REQUIRED)
Expand Down
4 changes: 2 additions & 2 deletions planning/autoware_behavior_velocity_planner/package.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>behavior_velocity_planner</name>
<name>autoware_behavior_velocity_planner</name>
<version>0.1.0</version>
<description>The behavior_velocity_planner package</description>
<description>The autoware_behavior_velocity_planner package</description>

<maintainer email="[email protected]">Mamoru Sobue</maintainer>
<maintainer email="[email protected]">Takayuki Murooka</maintainer>
Expand Down
8 changes: 4 additions & 4 deletions planning/autoware_behavior_velocity_planner/src/node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#include "planner_manager.hpp"
#include "tier4_autoware_utils/ros/logger_level_configure.hpp"

#include <behavior_velocity_planner/srv/load_plugin.hpp>
#include <behavior_velocity_planner/srv/unload_plugin.hpp>
#include <autoware_behavior_velocity_planner/srv/load_plugin.hpp>
#include <autoware_behavior_velocity_planner/srv/unload_plugin.hpp>
#include <behavior_velocity_planner_common/planner_data.hpp>
#include <rclcpp/rclcpp.hpp>
#include <tier4_autoware_utils/ros/published_time_publisher.hpp>
Expand Down Expand Up @@ -47,8 +47,8 @@
namespace behavior_velocity_planner
{
using autoware_auto_mapping_msgs::msg::HADMapBin;
using behavior_velocity_planner::srv::LoadPlugin;
using behavior_velocity_planner::srv::UnloadPlugin;
using autoware_behavior_velocity_planner::srv::LoadPlugin;
using autoware_behavior_velocity_planner::srv::UnloadPlugin;
using tier4_planning_msgs::msg::VelocityLimit;

class BehaviorVelocityPlannerNode : public rclcpp::Node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ diagnostic_msgs::msg::DiagnosticStatus makeStopReasonDiag(
} // namespace

BehaviorVelocityPlannerManager::BehaviorVelocityPlannerManager()
: plugin_loader_("behavior_velocity_planner", "behavior_velocity_planner::PluginInterface")
: plugin_loader_("autoware_behavior_velocity_planner", "behavior_velocity_planner::PluginInterface")
{
}

Expand Down
2 changes: 1 addition & 1 deletion planning/autoware_static_centerline_generator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

<test_depend>ament_cmake_gmock</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>behavior_velocity_planner</test_depend>
<test_depend>autoware_behavior_velocity_planner</test_depend>
<test_depend>autoware_lint_common</test_depend>
<test_depend>behavior_path_planner</test_depend>
<test_depend>ros_testing</test_depend>
Expand Down

0 comments on commit 5a6f5c6

Please sign in to comment.