Apollo 10.0
自动驾驶开放平台
stage_pre_cruise.cc
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2019 The Apollo Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *****************************************************************************/
16
18
19#include "cyber/common/log.h"
26
27namespace apollo {
28namespace planning {
29
31
33 const TrajectoryPoint& planning_init_point, Frame* frame) {
34 ADEBUG << "stage: Pre Cruise";
35 CHECK_NOTNULL(frame);
36 CHECK_NOTNULL(context_);
37
38 const ScenarioParkAndGoConfig& scenario_config =
39 GetContextAs<ParkAndGoContext>()->scenario_config;
40
42 StageResult result = ExecuteTaskOnOpenSpace(frame);
43 if (result.HasError()) {
44 AERROR << "ParkAndGoStagePreCruise planning error";
46 }
47 // const bool ready_to_cruise =
48 // CheckADCReadyToCruise(frame, scenario_config_);
49 auto vehicle_status = injector_->vehicle_state();
50 AINFO << "Current steering percentage: "
51 << vehicle_status->steering_percentage();;
52
53 if ((std::fabs(vehicle_status->steering_percentage()) <
54 scenario_config.max_steering_percentage_when_cruise()) &&
55 CheckADCReadyToCruise(injector_->vehicle_state(), frame,
56 scenario_config)) {
57 return FinishStage();
58 }
60}
61
62StageResult ParkAndGoStagePreCruise::FinishStage() {
63 next_stage_ = "PARK_AND_GO_CRUISE";
65}
66
67} // namespace planning
68} // namespace apollo
Frame holds all data for one planning cycle.
Definition frame.h:62
OpenSpaceInfo * mutable_open_space_info()
Definition frame.h:169
void set_is_on_open_space_trajectory(const bool flag)
StageResult Process(const common::TrajectoryPoint &planning_init_point, Frame *frame) override
Each stage does its business logic inside Process function.
const StageResult & SetStageStatus(const StageStatusType &stage_status)
Set the stage status.
bool HasError() const
Check if StageResult contains error.
std::string next_stage_
Definition stage.h:89
StageResult ExecuteTaskOnOpenSpace(Frame *frame)
Definition stage.cc:206
std::shared_ptr< DependencyInjector > injector_
Definition stage.h:91
Planning module main class.
#define ADEBUG
Definition log.h:41
#define AERROR
Definition log.h:44
#define AINFO
Definition log.h:42
bool CheckADCReadyToCruise(const common::VehicleStateProvider *vehicle_state_provider, Frame *frame, const apollo::planning::ScenarioParkAndGoConfig &scenario_config)
Definition util.cc:28
class register implement
Definition arena_queue.h:37