scenario_simulator_v2 C++ API
api.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 TRAFFIC_SIMULATOR__API__API_HPP_
16 #define TRAFFIC_SIMULATOR__API__API_HPP_
17 
18 #include <simulation_api_schema.pb.h>
19 
20 #include <boost/variant.hpp>
21 #include <cassert>
22 #include <memory>
23 #include <optional>
24 #include <rclcpp/rclcpp.hpp>
25 #include <rosgraph_msgs/msg/clock.hpp>
28 #include <std_msgs/msg/float64.hpp>
29 #include <stdexcept>
30 #include <string>
44 #include <traffic_simulator_msgs/msg/behavior_parameter.hpp>
45 #include <utility>
46 
48 {
50 {
51  static auto autoware() noexcept -> const std::string &
52  {
53  static const std::string name = "Autoware";
54  return name;
55  }
56 };
57 
59 {
60 };
61 
62 class API
63 {
64 public:
65  template <typename NodeT, typename AllocatorT = std::allocator<void>, typename... Ts>
66  explicit API(NodeT && node, const Configuration & configuration, Ts &&... xs)
67  : configuration(configuration),
68  node_parameters_(
69  rclcpp::node_interfaces::get_node_parameters_interface(std::forward<NodeT>(node))),
70  entity_manager_ptr_(
71  std::make_shared<entity::EntityManager>(node, configuration, node_parameters_)),
72  traffic_lights_ptr_(std::make_shared<TrafficLights>(
73  node, entity_manager_ptr_->getHdmapUtils(),
74  getROS2Parameter<std::string>("architecture_type", "awf/universe/20240605"))),
75  traffic_controller_ptr_(std::make_shared<traffic::TrafficController>(
76  entity_manager_ptr_, configuration.auto_sink_entity_types)),
77  clock_pub_(rclcpp::create_publisher<rosgraph_msgs::msg::Clock>(
78  node, "/clock", rclcpp::QoS(rclcpp::KeepLast(1)).best_effort(),
79  rclcpp::PublisherOptionsWithAllocator<AllocatorT>())),
80  debug_marker_pub_(rclcpp::create_publisher<visualization_msgs::msg::MarkerArray>(
81  node, "debug_marker", rclcpp::QoS(100), rclcpp::PublisherOptionsWithAllocator<AllocatorT>())),
82  real_time_factor_subscriber(rclcpp::create_subscription<std_msgs::msg::Float64>(
83  node, "/real_time_factor", rclcpp::QoS(rclcpp::KeepLast(1)).best_effort(),
84  [this](const std_msgs::msg::Float64 & message) {
89  if (message.data >= 0.001) {
90  clock_.realtime_factor = message.data;
91  simulation_api_schema::UpdateStepTimeRequest request;
92  request.set_simulation_step_time(clock_.getStepTime());
93  zeromq_client_.call(request);
94  }
95  })),
96  clock_(node->get_parameter("use_sim_time").as_bool(), std::forward<decltype(xs)>(xs)...),
97  zeromq_client_(
98  simulation_interface::protocol, configuration.simulator_host, getZMQSocketPort(*node))
99  {
100  entity_manager_ptr_->setTrafficLights(traffic_lights_ptr_);
101  setVerbose(configuration.verbose);
102 
103  if (not configuration.standalone_mode) {
104  simulation_api_schema::InitializeRequest request;
105  request.set_initialize_time(clock_.getCurrentSimulationTime());
106  request.set_lanelet2_map_path(configuration.lanelet2_map_path().string());
107  request.set_realtime_factor(clock_.realtime_factor);
108  request.set_step_time(clock_.getStepTime());
110  clock_.getCurrentRosTime(), *request.mutable_initialize_ros_time());
111  if (not zeromq_client_.call(request).result().success()) {
112  throw common::SimulationError("Failed to initialize simulator by InitializeRequest");
113  }
114  }
115  }
116 
117  template <typename ParameterT, typename... Ts>
118  auto getROS2Parameter(Ts &&... xs) const -> decltype(auto)
119  {
120  return getParameter<ParameterT>(node_parameters_, std::forward<Ts>(xs)...);
121  }
122 
123  template <typename Node>
124  int getZMQSocketPort(Node & node)
125  {
126  if (!node.has_parameter("port")) node.declare_parameter("port", 5555);
127  return node.get_parameter("port").as_int();
128  }
129 
130  void closeZMQConnection() { zeromq_client_.closeConnection(); }
131 
132  void setVerbose(const bool verbose);
133 
134  template <typename Pose>
135  auto spawn(
136  const std::string & name, const Pose & pose,
137  const traffic_simulator_msgs::msg::VehicleParameters & parameters,
138  const std::string & behavior = VehicleBehavior::defaultBehavior(),
139  const std::string & model3d = "")
140  {
141  auto register_to_entity_manager = [&]() {
142  if (behavior == VehicleBehavior::autoware()) {
143  return entity_manager_ptr_->entityExists(name) or
144  entity_manager_ptr_->spawnEntity<entity::EgoEntity>(
145  name, pose, parameters, getCurrentTime(), configuration, node_parameters_);
146  } else {
147  return entity_manager_ptr_->spawnEntity<entity::VehicleEntity>(
148  name, pose, parameters, getCurrentTime(), behavior);
149  }
150  };
151 
152  auto register_to_environment_simulator = [&]() {
153  if (configuration.standalone_mode) {
154  return true;
155  } else if (const auto entity = entity_manager_ptr_->getEntity(name); not entity) {
156  throw common::SemanticError(
157  "Entity ", name, " can not be registered in simulator - it has not been spawned yet.");
158  } else {
159  simulation_api_schema::SpawnVehicleEntityRequest req;
160  simulation_interface::toProto(parameters, *req.mutable_parameters());
161  req.mutable_parameters()->set_name(name);
162  req.set_asset_key(model3d);
163  simulation_interface::toProto(entity->getMapPose(), *req.mutable_pose());
164  req.set_is_ego(behavior == VehicleBehavior::autoware());
166  req.set_initial_speed(0.0);
167  return zeromq_client_.call(req).result().success();
168  }
169  };
170 
171  return register_to_entity_manager() and register_to_environment_simulator();
172  }
173 
174  template <typename Pose>
175  auto spawn(
176  const std::string & name, const Pose & pose,
177  const traffic_simulator_msgs::msg::PedestrianParameters & parameters,
179  const std::string & model3d = "")
180  {
181  auto register_to_entity_manager = [&]() {
182  return entity_manager_ptr_->spawnEntity<entity::PedestrianEntity>(
183  name, pose, parameters, getCurrentTime(), behavior);
184  };
185 
186  auto register_to_environment_simulator = [&]() {
187  if (configuration.standalone_mode) {
188  return true;
189  } else if (const auto entity = entity_manager_ptr_->getEntity(name); not entity) {
190  throw common::SemanticError(
191  "Entity ", name, " can not be registered in simulator - it has not been spawned yet.");
192  } else {
193  simulation_api_schema::SpawnPedestrianEntityRequest req;
194  simulation_interface::toProto(parameters, *req.mutable_parameters());
195  req.mutable_parameters()->set_name(name);
196  req.set_asset_key(model3d);
197  simulation_interface::toProto(entity->getMapPose(), *req.mutable_pose());
198  return zeromq_client_.call(req).result().success();
199  }
200  };
201 
202  return register_to_entity_manager() and register_to_environment_simulator();
203  }
204 
205  template <typename Pose>
206  auto spawn(
207  const std::string & name, const Pose & pose,
208  const traffic_simulator_msgs::msg::MiscObjectParameters & parameters,
209  const std::string & model3d = "")
210  {
211  auto register_to_entity_manager = [&]() {
212  return entity_manager_ptr_->spawnEntity<entity::MiscObjectEntity>(
213  name, pose, parameters, getCurrentTime());
214  };
215 
216  auto register_to_environment_simulator = [&]() {
217  if (configuration.standalone_mode) {
218  return true;
219  } else if (const auto entity = entity_manager_ptr_->getEntity(name); not entity) {
220  throw common::SemanticError(
221  "Entity ", name, " can not be registered in simulator - it has not been spawned yet.");
222  } else {
223  simulation_api_schema::SpawnMiscObjectEntityRequest req;
224  simulation_interface::toProto(parameters, *req.mutable_parameters());
225  req.mutable_parameters()->set_name(name);
226  req.set_asset_key(model3d);
227  simulation_interface::toProto(entity->getMapPose(), *req.mutable_pose());
228  return zeromq_client_.call(req).result().success();
229  }
230  };
231 
232  return register_to_entity_manager() and register_to_environment_simulator();
233  }
234 
235  bool despawn(const std::string & name);
236  bool despawnEntities();
237 
238  auto setEntityStatus(const std::string & name, const EntityStatus & status) -> void;
239  auto respawn(
240  const std::string & name, const geometry_msgs::msg::PoseWithCovarianceStamped & new_pose,
241  const geometry_msgs::msg::PoseStamped & goal_pose) -> void;
242  auto setEntityStatus(
243  const std::string & name, const geometry_msgs::msg::Pose & map_pose,
244  const traffic_simulator_msgs::msg::ActionStatus & action_status =
246  auto setEntityStatus(
247  const std::string & name, const LaneletPose & lanelet_pose,
248  const traffic_simulator_msgs::msg::ActionStatus & action_status) -> void;
249  auto setEntityStatus(
250  const std::string & name, const CanonicalizedLaneletPose & canonicalized_lanelet_pose,
251  const traffic_simulator_msgs::msg::ActionStatus & action_status =
253  auto setEntityStatus(
254  const std::string & name, const std::string & reference_entity_name,
255  const geometry_msgs::msg::Pose & relative_pose,
256  const traffic_simulator_msgs::msg::ActionStatus & action_status =
258  auto setEntityStatus(
259  const std::string & name, const std::string & reference_entity_name,
260  const geometry_msgs::msg::Point & relative_position,
261  const geometry_msgs::msg::Vector3 & relative_rpy,
262  const traffic_simulator_msgs::msg::ActionStatus & action_status =
264 
265  std::optional<double> getTimeHeadway(const std::string & from, const std::string & to);
266 
267  auto attachImuSensor(
268  const std::string &, const simulation_api_schema::ImuSensorConfiguration & configuration)
269  -> bool;
270 
272  const simulation_api_schema::PseudoTrafficLightDetectorConfiguration &);
273 
274  bool attachLidarSensor(const simulation_api_schema::LidarConfiguration &);
275  bool attachLidarSensor(
276  const std::string &, const double lidar_sensor_delay,
278 
279  bool attachDetectionSensor(const simulation_api_schema::DetectionSensorConfiguration &);
281  const std::string &, double detection_sensor_range, bool detect_all_objects_in_range,
282  double pos_noise_stddev, int random_seed, double probability_of_lost,
283  double object_recognition_delay);
284 
285  bool attachOccupancyGridSensor(const simulation_api_schema::OccupancyGridSensorConfiguration &);
286 
287  bool updateFrame();
288 
289  double getCurrentTime() const noexcept { return clock_.getCurrentScenarioTime(); }
290 
291  void startNpcLogic();
292 
293  void requestLaneChange(const std::string & name, const lanelet::Id & lanelet_id);
294 
295  void requestLaneChange(const std::string & name, const lane_change::Direction & direction);
296 
297  void requestLaneChange(const std::string & name, const lane_change::Parameter &);
298 
299  void requestLaneChange(
300  const std::string & name, const lane_change::RelativeTarget & target,
301  const lane_change::TrajectoryShape trajectory_shape,
302  const lane_change::Constraint & constraint);
303 
304  void requestLaneChange(
305  const std::string & name, const lane_change::AbsoluteTarget & target,
306  const lane_change::TrajectoryShape trajectory_shape,
307  const lane_change::Constraint & constraint);
308 
327  auto addTrafficSource(
328  const double radius, const double rate, const double speed,
329  const geometry_msgs::msg::Pose & position,
330  const traffic::TrafficSource::Distribution & distribution,
331  const bool allow_spawn_outside_lane = false, const bool require_footprint_fitting = false,
332  const bool random_orientation = false, std::optional<int> random_seed = std::nullopt) -> void;
333 
334  auto getV2ITrafficLights() { return traffic_lights_ptr_->getV2ITrafficLights(); }
335 
337  {
338  return traffic_lights_ptr_->getConventionalTrafficLights();
339  }
340 
341  auto getEntity(const std::string & name) const -> std::shared_ptr<entity::EntityBase>;
342 
343  // clang-format off
344 #define FORWARD_TO_ENTITY_MANAGER(NAME) \
345  \
350  template <typename... Ts> \
351  decltype(auto) NAME(Ts &&... xs) \
352  { \
353  assert(entity_manager_ptr_); \
354  return (*entity_manager_ptr_).NAME(std::forward<decltype(xs)>(xs)...); \
355  } \
356  static_assert(true, "")
357  // clang-format on
358 
400 
401 private:
402  FORWARD_TO_ENTITY_MANAGER(getDefaultMatchingDistanceForLaneletPoseCalculation);
403 
404 public:
405 #undef FORWARD_TO_ENTITY_MANAGER
406 
407 private:
408  bool updateTimeInSim();
409 
410  bool updateEntitiesStatusInSim();
411 
412  bool updateTrafficLightsInSim();
413 
414  const Configuration configuration;
415 
416  const rclcpp::node_interfaces::NodeParametersInterface::SharedPtr node_parameters_;
417 
418  const std::shared_ptr<entity::EntityManager> entity_manager_ptr_;
419 
420  const std::shared_ptr<TrafficLights> traffic_lights_ptr_;
421 
422  const std::shared_ptr<traffic::TrafficController> traffic_controller_ptr_;
423 
424  const rclcpp::Publisher<rosgraph_msgs::msg::Clock>::SharedPtr clock_pub_;
425 
426  const rclcpp::Publisher<visualization_msgs::msg::MarkerArray>::SharedPtr debug_marker_pub_;
427 
428  const rclcpp::Subscription<std_msgs::msg::Float64>::SharedPtr real_time_factor_subscriber;
429 
430  SimulationClock clock_;
431 
432  zeromq::MultiClient zeromq_client_;
433 };
434 } // namespace traffic_simulator
435 
436 #endif // TRAFFIC_SIMULATOR__API__API_HPP_
#define FORWARD_TO_ENTITY_MANAGER(NAME)
Definition: api.hpp:344
Definition: api.hpp:63
auto spawn(const std::string &name, const Pose &pose, const traffic_simulator_msgs::msg::MiscObjectParameters &parameters, const std::string &model3d="")
Definition: api.hpp:206
auto getV2ITrafficLights()
Definition: api.hpp:334
decltype(auto) getCanonicalizedStatusBeforeUpdate(Ts &&... xs)
Forward to arguments to the EntityManager:: getCanonicalizedStatusBeforeUpdate function.
Definition: api.hpp:368
decltype(auto) getHdmapUtils(Ts &&... xs)
Forward to arguments to the EntityManager:: getHdmapUtils function.
Definition: api.hpp:369
decltype(auto) requestFollowTrajectory(Ts &&... xs)
Forward to arguments to the EntityManager:: requestFollowTrajectory function.
Definition: api.hpp:380
double getCurrentTime() const noexcept
Definition: api.hpp:289
decltype(auto) resetBehaviorPlugin(Ts &&... xs)
Forward to arguments to the EntityManager:: resetBehaviorPlugin function.
Definition: api.hpp:385
auto addTrafficSource(const double radius, const double rate, const double speed, const geometry_msgs::msg::Pose &position, const traffic::TrafficSource::Distribution &distribution, const bool allow_spawn_outside_lane=false, const bool require_footprint_fitting=false, const bool random_orientation=false, std::optional< int > random_seed=std::nullopt) -> void
Add a traffic source to the simulation.
Definition: api.cpp:408
API(NodeT &&node, const Configuration &configuration, Ts &&... xs)
Definition: api.hpp:66
decltype(auto) isEgoSpawned(Ts &&... xs)
Forward to arguments to the EntityManager:: isEgoSpawned function.
Definition: api.hpp:373
decltype(auto) getTraveledDistance(Ts &&... xs)
Forward to arguments to the EntityManager:: getTraveledDistance function.
Definition: api.hpp:372
void requestLaneChange(const std::string &name, const lanelet::Id &lanelet_id)
Definition: api.cpp:375
auto setEntityStatus(const std::string &name, const EntityStatus &status) -> void
Definition: api.cpp:124
decltype(auto) setMapPose(Ts &&... xs)
Forward to arguments to the EntityManager:: setMapPose function.
Definition: api.hpp:393
decltype(auto) setBehaviorParameter(Ts &&... xs)
Forward to arguments to the EntityManager:: setBehaviorParameter function.
Definition: api.hpp:389
void startNpcLogic()
Definition: api.cpp:365
auto getConventionalTrafficLights()
Definition: api.hpp:336
decltype(auto) isInLanelet(Ts &&... xs)
Forward to arguments to the EntityManager:: isInLanelet function.
Definition: api.hpp:374
decltype(auto) setDecelerationRateLimit(Ts &&... xs)
Forward to arguments to the EntityManager:: setDecelerationRateLimit function.
Definition: api.hpp:391
decltype(auto) requestWalkStraight(Ts &&... xs)
Forward to arguments to the EntityManager:: requestWalkStraight function.
Definition: api.hpp:383
int getZMQSocketPort(Node &node)
Definition: api.hpp:124
decltype(auto) getBoundingBox(Ts &&... xs)
Forward to arguments to the EntityManager:: getBoundingBox function.
Definition: api.hpp:361
bool attachOccupancyGridSensor(const simulation_api_schema::OccupancyGridSensorConfiguration &)
Definition: api.cpp:249
decltype(auto) getStandStillDuration(Ts &&... xs)
Forward to arguments to the EntityManager:: getStandStillDuration function.
Definition: api.hpp:371
decltype(auto) requestSynchronize(Ts &&... xs)
Forward to arguments to the EntityManager:: requestSynchronize function.
Definition: api.hpp:382
decltype(auto) setAccelerationLimit(Ts &&... xs)
Forward to arguments to the EntityManager:: setAccelerationLimit function.
Definition: api.hpp:387
decltype(auto) requestClearRoute(Ts &&... xs)
Forward to arguments to the EntityManager:: requestClearRoute function.
Definition: api.hpp:384
void setVerbose(const bool verbose)
Definition: api.cpp:31
decltype(auto) checkCollision(Ts &&... xs)
Forward to arguments to the EntityManager:: checkCollision function.
Definition: api.hpp:358
decltype(auto) reachPosition(Ts &&... xs)
Forward to arguments to the EntityManager:: reachPosition function.
Definition: api.hpp:377
decltype(auto) setAcceleration(Ts &&... xs)
Forward to arguments to the EntityManager:: setAcceleration function.
Definition: api.hpp:386
decltype(auto) getCurrentAccel(Ts &&... xs)
Forward to arguments to the EntityManager:: getCurrentAccel function.
Definition: api.hpp:362
auto getROS2Parameter(Ts &&... xs) const -> decltype(auto)
Definition: api.hpp:118
auto spawn(const std::string &name, const Pose &pose, const traffic_simulator_msgs::msg::VehicleParameters &parameters, const std::string &behavior=VehicleBehavior::defaultBehavior(), const std::string &model3d="")
Definition: api.hpp:135
decltype(auto) getLinearJerk(Ts &&... xs)
Forward to arguments to the EntityManager:: getLinearJerk function.
Definition: api.hpp:370
decltype(auto) getEntityStatus(Ts &&... xs)
Forward to arguments to the EntityManager:: getEntityStatus function.
Definition: api.hpp:367
bool attachDetectionSensor(const simulation_api_schema::DetectionSensorConfiguration &)
Definition: api.cpp:226
std::optional< double > getTimeHeadway(const std::string &from, const std::string &to)
Definition: api.cpp:134
decltype(auto) setTwist(Ts &&... xs)
Forward to arguments to the EntityManager:: setTwist function.
Definition: api.hpp:394
decltype(auto) isNpcLogicStarted(Ts &&... xs)
Forward to arguments to the EntityManager:: isNpcLogicStarted function.
Definition: api.hpp:375
decltype(auto) getCurrentAction(Ts &&... xs)
Forward to arguments to the EntityManager:: getCurrentAction function.
Definition: api.hpp:363
auto spawn(const std::string &name, const Pose &pose, const traffic_simulator_msgs::msg::PedestrianParameters &parameters, const std::string &behavior=PedestrianBehavior::defaultBehavior(), const std::string &model3d="")
Definition: api.hpp:175
auto respawn(const std::string &name, const geometry_msgs::msg::PoseWithCovarianceStamped &new_pose, const geometry_msgs::msg::PoseStamped &goal_pose) -> void
Definition: api.cpp:54
decltype(auto) laneMatchingSucceed(Ts &&... xs)
Forward to arguments to the EntityManager:: laneMatchingSucceed function.
Definition: api.hpp:376
void closeZMQConnection()
Definition: api.hpp:130
decltype(auto) getEntityNames(Ts &&... xs)
Forward to arguments to the EntityManager:: getEntityNames function.
Definition: api.hpp:366
decltype(auto) setAccelerationRateLimit(Ts &&... xs)
Forward to arguments to the EntityManager:: setAccelerationRateLimit function.
Definition: api.hpp:388
bool attachPseudoTrafficLightDetector(const simulation_api_schema::PseudoTrafficLightDetectorConfiguration &)
Definition: api.cpp:218
decltype(auto) requestSpeedChange(Ts &&... xs)
Forward to arguments to the EntityManager:: requestSpeedChange function.
Definition: api.hpp:381
decltype(auto) setLinearVelocity(Ts &&... xs)
Forward to arguments to the EntityManager:: setLinearVelocity function.
Definition: api.hpp:392
decltype(auto) cancelRequest(Ts &&... xs)
Forward to arguments to the EntityManager:: cancelRequest function.
Definition: api.hpp:357
decltype(auto) setDecelerationLimit(Ts &&... xs)
Forward to arguments to the EntityManager:: setDecelerationLimit function.
Definition: api.hpp:390
bool despawnEntities()
Definition: api.cpp:47
decltype(auto) setVelocityLimit(Ts &&... xs)
Forward to arguments to the EntityManager:: setVelocityLimit function.
Definition: api.hpp:395
decltype(auto) entityExists(Ts &&... xs)
Forward to arguments to the EntityManager:: entityExists function.
Definition: api.hpp:359
bool despawn(const std::string &name)
Definition: api.cpp:33
decltype(auto) getCurrentTwist(Ts &&... xs)
Forward to arguments to the EntityManager:: getCurrentTwist function.
Definition: api.hpp:364
decltype(auto) activateOutOfRangeJob(Ts &&... xs)
Forward to arguments to the EntityManager:: activateOutOfRangeJob function.
Definition: api.hpp:355
bool attachLidarSensor(const simulation_api_schema::LidarConfiguration &)
Definition: api.cpp:261
decltype(auto) getEgoName(Ts &&... xs)
Forward to arguments to the EntityManager:: getEgoName function.
Definition: api.hpp:365
decltype(auto) asFieldOperatorApplication(Ts &&... xs)
Forward to arguments to the EntityManager:: asFieldOperatorApplication function.
Definition: api.hpp:356
auto getEntity(const std::string &name) const -> std::shared_ptr< entity::EntityBase >
Definition: api.cpp:103
decltype(auto) requestAssignRoute(Ts &&... xs)
Forward to arguments to the EntityManager:: requestAssignRoute function.
Definition: api.hpp:379
auto attachImuSensor(const std::string &, const simulation_api_schema::ImuSensorConfiguration &configuration) -> bool
Definition: api.cpp:210
decltype(auto) getBehaviorParameter(Ts &&... xs)
Forward to arguments to the EntityManager:: getBehaviorParameter function.
Definition: api.hpp:360
bool updateFrame()
Definition: api.cpp:338
decltype(auto) requestAcquirePosition(Ts &&... xs)
Forward to arguments to the EntityManager:: requestAcquirePosition function.
Definition: api.hpp:378
Definition: simulation_clock.hpp:24
auto getCurrentRosTime() -> rclcpp::Time
Definition: simulation_clock.cpp:41
double realtime_factor
Definition: simulation_clock.hpp:49
auto getCurrentScenarioTime() const
Definition: simulation_clock.hpp:32
auto getCurrentSimulationTime() const
Definition: simulation_clock.hpp:37
auto getStepTime() const
Definition: simulation_clock.hpp:39
Definition: traffic_lights.hpp:132
Definition: ego_entity.hpp:35
Definition: misc_object_entity.hpp:27
Definition: pedestrian_entity.hpp:34
Definition: vehicle_entity.hpp:37
Definition: lanelet_pose.hpp:27
std::vector< std::tuple< VehicleOrPedestrianParameter, std::string, std::string, double > > Distribution
Definition: traffic_source.hpp:69
Definition: zmq_multi_client.hpp:33
void closeConnection()
Definition: zmq_multi_client.cpp:33
auto call(const simulation_api_schema::SimulationRequest &) -> simulation_api_schema::SimulationResponse
Definition: zmq_multi_client.cpp:43
void toProto(const geometry_msgs::msg::Point &p, geometry_msgs::Point &proto)
Definition: conversions.cpp:22
const TransportProtocol protocol
Definition: constants.hpp:30
Definition: cache.hpp:27
traffic_simulator_msgs::msg::ActionStatus constructActionStatus(double linear_vel=0, double angular_vel=0, double linear_accel=0, double angular_accel=0)
helper function for constructing action status
Definition: helper.cpp:25
LidarType
Definition: helper.hpp:145
TrajectoryShape
Definition: lane_change.hpp:31
Direction
Definition: lane_change.hpp:29
Definition: api.hpp:48
traffic_simulator_msgs::msg::LaneletPose LaneletPose
Definition: lanelet_pose.hpp:22
traffic_simulator_msgs::msg::EntityStatus EntityStatus
Definition: entity_status.hpp:25
Definition: junit5.hpp:25
std::string string
Definition: junit5.hpp:26
Although there were no syntactic errors in the description of the scenario, differences in meaning an...
Definition: exception.hpp:44
A problem occurred that interfered with the continuation of the simulation.
Definition: exception.hpp:47
Definition: configuration.hpp:30
auto lanelet2_map_path() const
Definition: configuration.hpp:134
bool standalone_mode
Definition: configuration.hpp:39
bool verbose
Definition: configuration.hpp:37
static auto autoware() noexcept -> const std::string &
Definition: api.hpp:51
static auto defaultBehavior() noexcept -> const std::string &
Definition: pedestrian_entity.hpp:56
static auto defaultBehavior() -> const std::string &
Definition: vehicle_entity.hpp:59
Definition: lane_change.hpp:44
parameters for behavior plugin
Definition: lane_change.hpp:75
class definition for the traffic controller