Package Summary
Tags | No category tags. |
Version | 0.43.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-04-03 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Daniel Sanchez
Authors
Template
A template for behavior velocity modules based on the autoware_behavior_velocity_speed_bump_module.
Autoware Behavior Velocity Module Template
Scene
TemplateModule
Class
The TemplateModule
class serves as a foundation for creating a scene module within the Autoware behavior velocity planner. It defines the core methods and functionality needed for the module’s behavior. You should replace the placeholder code with actual implementations tailored to your specific behavior velocity module.
Constructor
- The constructor for
TemplateModule
takes the essential parameters to create a module:const int64_t module_id
,const rclcpp::Logger & logger
, andconst rclcpp::Clock::SharedPtr clock
. These parameters are supplied by theTemplateModuleManager
when registering a new module. Other parameters can be added to the constructor, if required by your specific module implementation.
modifyPathVelocity
Method
- This method, defined in the
TemplateModule
class, is expected to modify the velocity of the input path based on certain conditions. In the provided code, it logs an informational message once when the template module is executing. - The specific logic for velocity modification should be implemented in this method based on the module’s requirements.
createDebugMarkerArray
Method
- This method, also defined in the
TemplateModule
class, is responsible for creating a visualization of debug markers and returning them as avisualization_msgs::msg::MarkerArray
. In the provided code, it returns an emptyMarkerArray
. - You should implement the logic to generate debug markers specific to your module’s functionality.
createVirtualWalls
Method
- The
createVirtualWalls
method creates virtual walls for the scene and returns them asautoware::motion_utils::VirtualWalls
. In the provided code, it returns an emptyVirtualWalls
object. - You should implement the logic to create virtual walls based on your module’s requirements.
Manager
The managing of your modules is defined in manager.hpp and manager.cpp. The managing is handled by two classes:
- The
TemplateModuleManager
class defines the core logic for managing and launching the behavior_velocity_template scenes (defined in behavior_velocity_template_module/src/scene.cpp/hpp). It inherits essential manager attributes from its parent classSceneModuleManagerInterface
. - The
TemplateModulePlugin
class provides a way to integrate theTemplateModuleManager
into the logic of the Behavior Velocity Planner.
TemplateModuleManager
Class
Constructor TemplateModuleManager
- This is the constructor of the
TemplateModuleManager
class, and it takes anrclcpp::Node
reference as a parameter. - It initializes a member variable
dummy_parameter_
to 0.0.
getModuleName()
Method
- This method is an override of a virtual method from the
SceneModuleManagerInterface
class. - It returns a pointer to a constant character string, which is the name of the module. In this case, it returns “template” as the module name.
launchNewModules()
Method
- This is a private method that takes an argument of type
autoware_internal_planning_msgs::msg::PathWithLaneId
. - It is responsible for launching new modules based on the provided path information (PathWithLaneId). The implementation of this method involves initializing and configuring modules specific to your behavior velocity planner by using the
TemplateModule
class. - In the provided source code, it initializes a
module_id
to 0 and checks if a module with the same ID is already registered. If not, it registers a newTemplateModule
with the module ID. Note that each module managed by theTemplateModuleManager
should have a unique ID. The template code registers a single module, so themodule_id
is set as 0 for simplicity.
getModuleExpiredFunction()
Method
- This is a private method that takes an argument of type
autoware_internal_planning_msgs::msg::PathWithLaneId
. - It returns a
std::function<bool(const std::shared_ptr<SceneModuleInterface>&)>
. This function is used by the behavior velocity planner to determine whether a particular module has expired or not based on the given path. - The implementation of this method is expected to return a function that can be used to check the expiration status of modules.
Please note that the specific functionality of the methods launchNewModules()
and getModuleExpiredFunction()
would depend on the details of your behavior velocity modules and how they are intended to be managed within the Autoware system. You would need to implement these methods according to your module’s requirements.
TemplateModulePlugin
Class
TemplateModulePlugin
Class
- This class inherits from
PluginWrapper<TemplateModuleManager>
. It essentially wraps yourTemplateModuleManager
class within a plugin, which can be loaded and managed dynamically.
Example Usage
In the following example, we take each point of the path, and multiply it by 2. Essentially duplicating the speed. Note that the velocity smoother will further modify the path speed after all the behavior velocity modules are executed.
bool TemplateModule::modifyPathVelocity(
[[maybe_unused]] PathWithLaneId * path, [[maybe_unused]] StopReason * stop_reason)
{
for (auto & p : path->points) {
p.point.longitudinal_velocity_mps *= 2.0;
}
return false;
}
Changelog for package autoware_behavior_velocity_template_module
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- Contributors: Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- feat!: replace tier4_planning_msgs/PathWithLaneId with autoware_internal_planning_msgs/PathWithLaneId (#10023)
- Contributors: Fumiya Watanabe, Ryohsuke Mitsudome, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- chore(planning): move package directory for planning factor
interface
(#9948)
- chore: add new package for planning factor interface
- chore(surround_obstacle_checker): update include file
- chore(obstacle_stop_planner): update include file
- chore(obstacle_cruise_planner): update include file
- chore(motion_velocity_planner): update include file
- chore(bpp): update include file
- chore(bvp-common): update include file
- chore(blind_spot): update include file
- chore(crosswalk): update include file
- chore(detection_area): update include file
- chore(intersection): update include file
- chore(no_drivable_area): update include file
- chore(no_stopping_area): update include file
- chore(occlusion_spot): update include file
- chore(run_out): update include file
- chore(speed_bump): update include file
- chore(stop_line): update include file
- chore(template_module): update include file
- chore(traffic_light): update include file
- chore(vtl): update include file
- chore(walkway): update include file
* chore(motion_utils): remove factor interface ---------
- feat(planning_factor)!: remove velocity_factor, steering_factor and introduce planning_factor (#9927) Co-authored-by: Satoshi OTA <<44889564+satoshi-ota@users.noreply.github.com>> Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>> Co-authored-by: satoshi-ota <<satoshi.ota928@gmail.com>>
- refactor(behavior_velocity_planner_common): add
behavior_velocity_rtc_interface and move RTC-related
implementation
(#9799)
- split into planer_common and rtc_interface
* Update planning/behavior_velocity_planner/autoware_behavior_velocity_planner_common/include/autoware/behavior_velocity_planner_common/scene_module_interface.hpp Co-authored-by: Mamoru Sobue <<mamoru.sobue@tier4.jp>> * Update planning/behavior_velocity_planner/autoware_behavior_velocity_rtc_interface/include/autoware/behavior_velocity_rtc_interface/scene_module_interface_with_rtc.hpp Co-authored-by: Mamoru Sobue <<mamoru.sobue@tier4.jp>> * fix ——
Co-authored-by: Mamoru Sobue <<mamoru.sobue@tier4.jp>>
- Contributors: Fumiya Watanabe, Mamoru Sobue, Satoshi OTA, Takayuki Murooka
0.40.0 (2024-12-12)
- Merge branch 'main' into release-0.40.0
- Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
- fix: fix ticket links in CHANGELOG.rst (#9588)
- chore(package.xml): bump version to 0.39.0
(#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
- fix: fix ticket links in CHANGELOG.rst (#9588)
- feat(behavior_velocity_planner)!: remove stop_reason (#9452)
- 0.39.0
- update changelog
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- chore(package.xml): bump version to 0.38.0
(#9266)
(#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
- Contributors: Esteve Fernandez, Fumiya Watanabe, Mamoru Sobue, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- chore(package.xml): bump version to 0.38.0
(#9266)
(#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
- Contributors: Esteve Fernandez, Yutaka Kondo
0.38.0 (2024-11-08)
- unify package.xml version to 0.37.0
- fix(behavior_velocity_planner): fix cppcheck warnings of virtualCallInConstructor (#8376) Co-authored-by: Ryuta Kambe <<ryuta.kambe@tier4.jp>>
- feat: add [autoware_]{.title-ref} prefix to [lanelet2_extension]{.title-ref} (#7640)
- refactor(autoware_behavior_velocity_speed_bump_module): prefix package and namespace with autoware (#7467)
- refactor(universe_utils/motion_utils)!: add autoware namespace (#7594)
- refactor(motion_utils)!: add autoware prefix and include dir (#7539) refactor(motion_utils): add autoware prefix and include dir
- feat(autoware_universe_utils)!: rename from tier4_autoware_utils (#7538) Co-authored-by: kosuke55 <<kosuke.tnp@gmail.com>>
- chore(behavior_velocity_planner): move packages (#7526)
- Contributors: Esteve Fernandez, Fumiya Watanabe, Kosuke Takeuchi, Takayuki Murooka, Yutaka Kondo, taisa1
0.26.0 (2024-04-03)
Wiki Tutorials
Package Dependencies
System Dependencies
Name |
---|
eigen |
libboost-dev |