-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_internal_planning_msgs): add msg required by autoware_m…
…otion_utils Signed-off-by: NorahXiong <[email protected]>
- Loading branch information
1 parent
58312fb
commit 4595e77
Showing
7 changed files
with
70 additions
and
0 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
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,4 @@ | ||
geometry_msgs/Pose pose | ||
float32 velocity | ||
float32 shift_length | ||
float32 distance |
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,22 @@ | ||
# constants for behavior | ||
uint16 UNKNOWN = 0 | ||
uint16 NONE = 1 | ||
uint16 SLOW_DOWN = 2 | ||
uint16 STOP = 3 | ||
uint16 SHIFT_LEFT = 4 | ||
uint16 SHIFT_RIGHT = 5 | ||
uint16 TURN_LEFT = 6 | ||
uint16 TURN_RIGHT = 7 | ||
|
||
# variables | ||
string module | ||
|
||
bool is_driving_forward | ||
|
||
autoware_internal_planning_msgs/ControlPoint[] control_points | ||
|
||
uint16 behavior | ||
|
||
string detail | ||
|
||
autoware_internal_planning_msgs/SafetyFactorArray safety_factors |
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,2 @@ | ||
std_msgs/Header header | ||
autoware_internal_planning_msgs/PlanningFactor[] factors |
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,27 @@ | ||
# constants for common use | ||
uint16 UNKNOWN = 0 | ||
|
||
# constants for factor type | ||
uint16 POINTCLOUD = 1 | ||
uint16 OBJECT = 2 | ||
|
||
# variables | ||
uint16 type | ||
|
||
# use only for predicted objects | ||
unique_identifier_msgs/UUID object_id | ||
|
||
# use only for predicted objects | ||
autoware_perception_msgs/PredictedPath predicted_path | ||
|
||
# time to collision in relative to the header time | ||
float32 ttc_begin | ||
|
||
float32 ttc_end | ||
|
||
# type == POINTCLOUD: the position of the each points | ||
# type == OBJECT: the object position | ||
geometry_msgs/Point[] points | ||
|
||
# module's primitive judgement of the safety for its decision | ||
bool is_safe |
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,4 @@ | ||
std_msgs/Header header | ||
autoware_internal_planning_msgs/SafetyFactor[] factors | ||
bool is_safe | ||
string detail |
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