1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#[cxx::bridge(namespace = "zenoh_flow::autoware_auto::ffi")]
pub mod ffi {
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsComplex32 {
pub real: f32,
pub imag: f32,
}
#[derive(Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsHadmapRoute {
pub header: StdMsgsHeader,
pub start_point: AutowareAutoMsgsRoutePoint,
pub goal_point: AutowareAutoMsgsRoutePoint,
pub segments: Vec<AutowareAutoMsgsHadmapSegment>,
}
#[derive(Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsHadmapSegment {
pub primitives: Vec<AutowareAutoMsgsMapPrimitive>,
pub preferred_primitive_id: i64,
}
#[derive(Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsMapPrimitive {
pub id: i64,
pub primitive_type: String,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsRoutePoint {
pub position: GeometryMsgsPoint,
pub heading: AutowareAutoMsgsComplex32,
}
#[derive(Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsTrajectory {
pub header: StdMsgsHeader,
pub points: Vec<AutowareAutoMsgsTrajectoryPoint>,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsTrajectoryPoint {
pub time_from_start: BuiltinInterfacesDuration,
pub x: f32,
pub y: f32,
pub z: f32,
pub heading: AutowareAutoMsgsComplex32,
pub longitudinal_velocity_mps: f32,
pub lateral_velocity_mps: f32,
pub acceleration_mps2: f32,
pub heading_rate_rps: f32,
pub front_wheel_angle_rad: f32,
pub rear_wheel_angle_rad: f32,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsVehicleControlCommand {
pub stamp: BuiltinInterfacesTime,
pub long_accel_mps2: f32,
pub velocity_mps: f32,
pub front_wheel_angle_rad: f32,
pub rear_wheel_angle_rad: f32,
}
#[derive(Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsVehicleKinematicState {
pub header: StdMsgsHeader,
pub state: AutowareAutoMsgsTrajectoryPoint,
pub delta: GeometryMsgsTransform,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsVehicleStateCommand {
pub stamp: BuiltinInterfacesTime,
pub blinker: u8,
pub headlight: u8,
pub wiper: u8,
pub gear: u8,
pub mode: u8,
pub hand_brake: bool,
pub horn: bool,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct AutowareAutoMsgsVehicleStateReport {
pub stamp: BuiltinInterfacesTime,
pub fuel: u8,
pub blinker: u8,
pub headlight: u8,
pub wiper: u8,
pub gear: u8,
pub mode: u8,
pub hand_brake: bool,
pub horn: bool,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct BuiltinInterfacesDuration {
pub sec: i32,
pub nanosec: u32,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct BuiltinInterfacesTime {
pub sec: i32,
pub nanosec: u32,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct GeometryMsgsTransform {
pub translation: GeometryMsgsVector3,
pub rotation: GeometryMsgsQuaternion,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct GeometryMsgsPoint {
pub x: f64,
pub y: f64,
pub z: f64,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct GeometryMsgsPose {
pub position: GeometryMsgsPoint,
pub orientation: GeometryMsgsQuaternion,
}
#[derive(Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct GeometryMsgsPoseStamped {
pub header: StdMsgsHeader,
pub pose: GeometryMsgsPose,
}
#[derive(Copy, Clone, Debug, ZFData, ZFFakeSerialize)]
pub struct GeometryMsgsPoseWithCovariance {
pub pose: GeometryMsgsPose,
pub covariance: [f64; 36],
}
#[derive(Clone, Debug, ZFData, ZFFakeSerialize)]
pub struct GeometryMsgsPoseWithCovarianceStamped {
pub header: StdMsgsHeader,
pub pose: GeometryMsgsPoseWithCovariance,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct GeometryMsgsQuaternion {
pub x: f64,
pub y: f64,
pub z: f64,
pub w: f64,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct GeometryMsgsVector3 {
pub x: f64,
pub y: f64,
pub z: f64,
}
#[derive(Clone, Debug, Default, Serialize, Deserialize, ZFData, ZFFakeSerialize)]
pub struct StdMsgsHeader {
pub stamp: BuiltinInterfacesTime,
pub frame_id: String,
}
}