15 #ifndef CONCEALER__LEGACY_AUTOWARE_STATE_HPP_
16 #define CONCEALER__LEGACY_AUTOWARE_STATE_HPP_
18 #if __has_include(<autoware_system_msgs/msg/autoware_state.hpp>)
19 #include <autoware_system_msgs/msg/autoware_state.hpp>
22 #if __has_include(<autoware_adapi_v1_msgs/msg/localization_initialization_state.hpp>)
23 #include <autoware_adapi_v1_msgs/msg/localization_initialization_state.hpp>
26 #if __has_include(<autoware_adapi_v1_msgs/msg/operation_mode_state.hpp>)
27 #include <autoware_adapi_v1_msgs/msg/operation_mode_state.hpp>
30 #if __has_include(<autoware_adapi_v1_msgs/msg/route_state.hpp>)
31 #include <autoware_adapi_v1_msgs/msg/route_state.hpp>
53 #if __has_include(<autoware_system_msgs/msg/autoware_state.hpp>)
54 explicit LegacyAutowareState(
const autoware_system_msgs::msg::AutowareState & autoware_state)
56 switch (autoware_state.state) {
57 case autoware_system_msgs::msg::AutowareState::INITIALIZING:
59 case autoware_system_msgs::msg::AutowareState::WAITING_FOR_ROUTE:
61 case autoware_system_msgs::msg::AutowareState::PLANNING:
63 case autoware_system_msgs::msg::AutowareState::WAITING_FOR_ENGAGE:
65 case autoware_system_msgs::msg::AutowareState::DRIVING:
67 case autoware_system_msgs::msg::AutowareState::ARRIVED_GOAL:
69 case autoware_system_msgs::msg::AutowareState::FINALIZING:
77 #if __has_include(<autoware_adapi_v1_msgs/msg/localization_initialization_state.hpp>) and \
78 __has_include(<autoware_adapi_v1_msgs/msg/route_state.hpp>) and \
79 __has_include(<autoware_adapi_v1_msgs/msg/operation_mode_state.hpp>)
81 const autoware_adapi_v1_msgs::msg::LocalizationInitializationState & localization_state,
82 const autoware_adapi_v1_msgs::msg::RouteState & route_state,
83 const autoware_adapi_v1_msgs::msg::OperationModeState & operation_mode_state,
84 const rclcpp::Time & now)
91 switch (localization_state.state) {
92 case autoware_adapi_v1_msgs::msg::LocalizationInitializationState::UNKNOWN:
93 case autoware_adapi_v1_msgs::msg::LocalizationInitializationState::UNINITIALIZED:
94 case autoware_adapi_v1_msgs::msg::LocalizationInitializationState::INITIALIZING:
97 case autoware_adapi_v1_msgs::msg::LocalizationInitializationState::INITIALIZED:
98 switch (route_state.state) {
99 case autoware_adapi_v1_msgs::msg::RouteState::UNKNOWN:
102 case autoware_adapi_v1_msgs::msg::RouteState::ARRIVED:
103 if (
const auto duration = now - rclcpp::Time(route_state.stamp);
104 duration.seconds() < 2.0) {
109 case autoware_adapi_v1_msgs::msg::RouteState::UNSET:
112 case autoware_adapi_v1_msgs::msg::RouteState::SET:
113 case autoware_adapi_v1_msgs::msg::RouteState::CHANGING:
114 switch (operation_mode_state.mode) {
115 case autoware_adapi_v1_msgs::msg::OperationModeState::UNKNOWN:
118 case autoware_adapi_v1_msgs::msg::OperationModeState::AUTONOMOUS:
119 case autoware_adapi_v1_msgs::msg::OperationModeState::LOCAL:
120 case autoware_adapi_v1_msgs::msg::OperationModeState::REMOTE:
121 if (operation_mode_state.is_autoware_control_enabled) {
126 case autoware_adapi_v1_msgs::msg::OperationModeState::STOP:
146 constexpr
operator const char *()
const
150 return "INITIALIZING";
152 return "WAITING_FOR_ROUTE";
156 return "WAITING_FOR_ENGAGE";
160 return "ARRIVED_GOAL";
172 return os << static_cast<const char *>(state);
Definition: autoware_universe.hpp:40
std::string string
Definition: junit5.hpp:26
Definition: legacy_autoware_state.hpp:37
value_type value
Definition: legacy_autoware_state.hpp:49
constexpr LegacyAutowareState(value_type value)
Definition: legacy_autoware_state.hpp:51
friend auto operator<<(std::ostream &os, const LegacyAutowareState &state) -> std::ostream &
Definition: legacy_autoware_state.hpp:170
value_type
Definition: legacy_autoware_state.hpp:38
@ initializing
Definition: legacy_autoware_state.hpp:40
@ driving
Definition: legacy_autoware_state.hpp:44
@ planning
Definition: legacy_autoware_state.hpp:42
@ waiting_for_engage
Definition: legacy_autoware_state.hpp:43
@ waiting_for_route
Definition: legacy_autoware_state.hpp:41
@ finalizing
Definition: legacy_autoware_state.hpp:46
@ arrived_goal
Definition: legacy_autoware_state.hpp:45
@ undefined
Definition: legacy_autoware_state.hpp:39