-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(simple_planning_simulator): apply `autoware_` prefix (see below): Note: * In this commit, I did not organize a folder structure. The folder structure will be organized in the next some commits. * The changes will follow the Autoware's guideline as below: - https://autowarefoundation.github.io/autoware-documentation/main/contributing/coding-guidelines/ros-nodes/directory-structure/#package-folder Signed-off-by: Junya Sasaki <[email protected]> * rename(simple_planning_simulator): move headers under `include/autoware`: * Fixes due to this changes for .hpp/.cpp files will be applied in the next commit Signed-off-by: Junya Sasaki <[email protected]> * fix(simple_planning_simulator): fix include header paths * To follow the previous commit Signed-off-by: Junya Sasaki <[email protected]> * rename: `simple_planning_simulator` => `autoware_simple_planning_simulator` Signed-off-by: Junya Sasaki <[email protected]> * bug(autoware_simple_planning_simulator): fix missing changes Signed-off-by: Junya Sasaki <[email protected]> * style(pre-commit): autofix * bug(autoware_simple_planning_simulator): fix errors in build and tests * I had to run after `rm -rf install build`, ... sorry Signed-off-by: Junya Sasaki <[email protected]> * style(pre-commit): autofix * Fixed NOLINT Signed-off-by: Shintaro Sakoda <[email protected]> * Added NOLINT Signed-off-by: Shintaro Sakoda <[email protected]> * Fixed to autoware_simple_planning_simulator Signed-off-by: Shintaro Sakoda <[email protected]> --------- Signed-off-by: Junya Sasaki <[email protected]> Signed-off-by: Shintaro Sakoda <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Shintaro Sakoda <[email protected]>
- Loading branch information
1 parent
cacab80
commit 1a1a18a
Showing
56 changed files
with
297 additions
and
181 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -204,7 +204,7 @@ simulator/autoware_carla_interface/** [email protected] mradityagio@gmail. | |
simulator/dummy_perception_publisher/** [email protected] | ||
simulator/fault_injection/** [email protected] | ||
simulator/learning_based_vehicle_model/** [email protected] [email protected] | ||
simulator/simple_planning_simulator/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] | ||
simulator/autoware_simple_planning_simulator/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] kotaro.yoshimoto@tier4.jp junya.sasaki@tier4.jp | ||
simulator/tier4_dummy_object_rviz_plugin/** [email protected] | ||
simulator/autoware_vehicle_door_simulator/** [email protected] [email protected] | ||
system/autoware_component_monitor/** [email protected] [email protected] [email protected] | ||
|
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
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
...lator/simple_planning_simulator/README.md → ...oware_simple_planning_simulator/README.md
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# simple_planning_simulator | ||
# autoware_simple_planning_simulator | ||
|
||
## Purpose / Use cases | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
30 changes: 30 additions & 0 deletions
30
...planning_simulator/include/autoware/simple_planning_simulator/vehicle_model/sim_model.hpp
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,30 @@ | ||
// Copyright 2025 The Autoware Foundation. | ||
// | ||
// 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. | ||
|
||
#ifndef AUTOWARE__SIMPLE_PLANNING_SIMULATOR__VEHICLE_MODEL__SIM_MODEL_HPP_ | ||
#define AUTOWARE__SIMPLE_PLANNING_SIMULATOR__VEHICLE_MODEL__SIM_MODEL_HPP_ | ||
|
||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_actuation_cmd.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_delay_steer_acc.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_delay_steer_acc_geared.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_delay_steer_acc_geared_wo_fall_guard.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_delay_steer_map_acc_geared.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_delay_steer_vel.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_ideal_steer_acc.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_ideal_steer_acc_geared.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_ideal_steer_vel.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_interface.hpp" | ||
#include "autoware/simple_planning_simulator/vehicle_model/sim_model_learned_steer_vel.hpp" | ||
|
||
#endif // AUTOWARE__SIMPLE_PLANNING_SIMULATOR__VEHICLE_MODEL__SIM_MODEL_HPP_ |
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
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.