scenario_simulator_v2 C++ API
move_backward_action.hpp
Go to the documentation of this file.
1 // Copyright 2015 TIER IV, Inc. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef BEHAVIOR_TREE_PLUGIN__VEHICLE__FOLLOW_LANE_SEQUENCE__MOVE_BACKWARD_ACTION_HPP_
16 #define BEHAVIOR_TREE_PLUGIN__VEHICLE__FOLLOW_LANE_SEQUENCE__MOVE_BACKWARD_ACTION_HPP_
17 
20 #include <optional>
21 #include <string>
22 #include <vector>
23 
24 namespace entity_behavior
25 {
26 namespace vehicle
27 {
28 namespace follow_lane_sequence
29 {
31 {
32 public:
33  MoveBackwardAction(const std::string & name, const BT::NodeConfiguration & config);
34  BT::NodeStatus tick() override;
35  void getBlackBoardValues();
36  static BT::PortsList providedPorts()
37  {
38  BT::PortsList ports = {};
39  BT::PortsList parent_ports = entity_behavior::VehicleActionNode::providedPorts();
40  for (const auto & parent_port : parent_ports) {
41  ports.emplace(parent_port.first, parent_port.second);
42  }
43  return ports;
44  }
45  const traffic_simulator_msgs::msg::WaypointsArray calculateWaypoints() override;
46  const std::optional<traffic_simulator_msgs::msg::Obstacle> calculateObstacle(
47  const traffic_simulator_msgs::msg::WaypointsArray & waypoints) override;
48 
49 private:
50  std::optional<traffic_simulator::LaneletPose> target_lanelet_pose_;
51 };
52 } // namespace follow_lane_sequence
53 } // namespace vehicle
54 } // namespace entity_behavior
55 
56 #endif // BEHAVIOR_TREE_PLUGIN__VEHICLE__FOLLOW_LANE_SEQUENCE__MOVE_BACKWARD_ACTION_HPP_
Definition: vehicle_action_node.hpp:36
static BT::PortsList providedPorts()
Definition: vehicle_action_node.hpp:41
MoveBackwardAction(const std::string &name, const BT::NodeConfiguration &config)
Definition: move_backward_action.cpp:24
const std::optional< traffic_simulator_msgs::msg::Obstacle > calculateObstacle(const traffic_simulator_msgs::msg::WaypointsArray &waypoints) override
Definition: move_backward_action.cpp:30
void getBlackBoardValues()
Definition: move_backward_action.cpp:63
const traffic_simulator_msgs::msg::WaypointsArray calculateWaypoints() override
Definition: move_backward_action.cpp:36
BT::NodeStatus tick() override
Definition: move_backward_action.cpp:65
static BT::PortsList providedPorts()
Definition: move_backward_action.hpp:36
Definition: action_node.hpp:39
std::string string
Definition: junit5.hpp:26