forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1312 from tier4/cherry-pick/pr7146
chore(blind_spot): PR7110 and PR7164
- Loading branch information
Showing
7 changed files
with
515 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
154 changes: 154 additions & 0 deletions
154
planning/behavior_velocity_blind_spot_module/src/decisions.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
// Copyright 2024 Tier IV, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include "scene.hpp" | ||
|
||
#include <motion_utils/trajectory/trajectory.hpp> | ||
|
||
namespace behavior_velocity_planner | ||
{ | ||
|
||
/* | ||
* for default | ||
*/ | ||
template <typename T> | ||
void BlindSpotModule::setRTCStatusByDecision( | ||
const T &, const autoware_auto_planning_msgs::msg::PathWithLaneId & path) | ||
{ | ||
static_assert("Unsupported type passed to setRTCStatus"); | ||
return; | ||
} | ||
|
||
template <typename T> | ||
void BlindSpotModule::reactRTCApprovalByDecision( | ||
[[maybe_unused]] const T & decision, | ||
[[maybe_unused]] autoware_auto_planning_msgs::msg::PathWithLaneId * path, | ||
[[maybe_unused]] StopReason * stop_reason) | ||
{ | ||
static_assert("Unsupported type passed to reactRTCApprovalByDecision"); | ||
} | ||
|
||
/* | ||
* for InternalError | ||
*/ | ||
template <> | ||
void BlindSpotModule::setRTCStatusByDecision( | ||
[[maybe_unused]] const InternalError & decision, | ||
[[maybe_unused]] const autoware_auto_planning_msgs::msg::PathWithLaneId & path) | ||
{ | ||
return; | ||
} | ||
|
||
template <> | ||
void BlindSpotModule::reactRTCApprovalByDecision( | ||
[[maybe_unused]] const InternalError & decision, | ||
[[maybe_unused]] autoware_auto_planning_msgs::msg::PathWithLaneId * path, | ||
[[maybe_unused]] StopReason * stop_reason) | ||
{ | ||
return; | ||
} | ||
|
||
/* | ||
* For OverPassJudge | ||
*/ | ||
template <> | ||
void BlindSpotModule::setRTCStatusByDecision( | ||
[[maybe_unused]] const OverPassJudge & decision, | ||
[[maybe_unused]] const autoware_auto_planning_msgs::msg::PathWithLaneId & path) | ||
{ | ||
return; | ||
} | ||
|
||
template <> | ||
void BlindSpotModule::reactRTCApprovalByDecision( | ||
[[maybe_unused]] const OverPassJudge & decision, | ||
[[maybe_unused]] autoware_auto_planning_msgs::msg::PathWithLaneId * path, | ||
[[maybe_unused]] StopReason * stop_reason) | ||
{ | ||
return; | ||
} | ||
|
||
/* | ||
* for Unsafe | ||
*/ | ||
template <> | ||
void BlindSpotModule::setRTCStatusByDecision( | ||
const Unsafe & decision, const autoware_auto_planning_msgs::msg::PathWithLaneId & path) | ||
{ | ||
setSafe(false); | ||
const auto & current_pose = planner_data_->current_odometry->pose; | ||
setDistance( | ||
motion_utils::calcSignedArcLength(path.points, current_pose.position, decision.stop_line_idx)); | ||
return; | ||
} | ||
|
||
template <> | ||
void BlindSpotModule::reactRTCApprovalByDecision( | ||
const Unsafe & decision, autoware_auto_planning_msgs::msg::PathWithLaneId * path, | ||
StopReason * stop_reason) | ||
{ | ||
if (!isActivated()) { | ||
constexpr double stop_vel = 0.0; | ||
planning_utils::setVelocityFromIndex(decision.stop_line_idx, stop_vel, path); | ||
debug_data_.virtual_wall_pose = planning_utils::getAheadPose( | ||
decision.stop_line_idx, planner_data_->vehicle_info_.max_longitudinal_offset_m, *path); | ||
|
||
tier4_planning_msgs::msg::StopFactor stop_factor; | ||
const auto stop_pose = path->points.at(decision.stop_line_idx).point.pose; | ||
stop_factor.stop_pose = stop_pose; | ||
stop_factor.stop_factor_points = planning_utils::toRosPoints(debug_data_.conflicting_targets); | ||
planning_utils::appendStopReason(stop_factor, stop_reason); | ||
velocity_factor_.set( | ||
path->points, planner_data_->current_odometry->pose, stop_pose, VelocityFactor::UNKNOWN); | ||
} | ||
return; | ||
} | ||
|
||
/* | ||
* for Safe | ||
*/ | ||
template <> | ||
void BlindSpotModule::setRTCStatusByDecision( | ||
const Safe & decision, const autoware_auto_planning_msgs::msg::PathWithLaneId & path) | ||
{ | ||
setSafe(true); | ||
const auto & current_pose = planner_data_->current_odometry->pose; | ||
setDistance( | ||
motion_utils::calcSignedArcLength(path.points, current_pose.position, decision.stop_line_idx)); | ||
return; | ||
} | ||
|
||
template <> | ||
void BlindSpotModule::reactRTCApprovalByDecision( | ||
const Safe & decision, autoware_auto_planning_msgs::msg::PathWithLaneId * path, | ||
StopReason * stop_reason) | ||
{ | ||
if (!isActivated()) { | ||
constexpr double stop_vel = 0.0; | ||
planning_utils::setVelocityFromIndex(decision.stop_line_idx, stop_vel, path); | ||
debug_data_.virtual_wall_pose = planning_utils::getAheadPose( | ||
decision.stop_line_idx, planner_data_->vehicle_info_.max_longitudinal_offset_m, *path); | ||
|
||
tier4_planning_msgs::msg::StopFactor stop_factor; | ||
const auto stop_pose = path->points.at(decision.stop_line_idx).point.pose; | ||
stop_factor.stop_pose = stop_pose; | ||
stop_factor.stop_factor_points = planning_utils::toRosPoints(debug_data_.conflicting_targets); | ||
planning_utils::appendStopReason(stop_factor, stop_reason); | ||
velocity_factor_.set( | ||
path->points, planner_data_->current_odometry->pose, stop_pose, VelocityFactor::UNKNOWN); | ||
} | ||
return; | ||
} | ||
|
||
} // namespace behavior_velocity_planner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.