-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cognition.py
233 lines (164 loc) · 7.09 KB
/
Cognition.py
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
230
231
232
233
### get cognition and state space
import math
import numpy as np
import carla
from agents.tools.misc import get_speed
from agents.navigation.EnvironmentState import EnvironmentState,LaneState,Surrounding_vehicle
def distance_between_two_loc(loc1,loc2):
d = (loc1.x-loc2.x)*(loc1.x-loc2.x)+(loc1.y-loc2.y)*(loc1.y-loc2.y)
d = np.sqrt(d)
return d
def location_on_the_path(local_path,location,sensitive_range):
if len(local_path) < 4:
return False
if location is None:
return False
v_loc = location
d_to_waypoints = []
for (waypoint,_) in local_path:
w_loc = waypoint.transform.location
d = distance_between_two_loc(v_loc,w_loc)
d_to_waypoints.append(d)
d_to_waypoints.sort()
if d_to_waypoints[0]+d_to_waypoints[1] < sensitive_range:
return True
return False
def location_on_the_path_decouple(local_path,location,sensitive_range):
if len(local_path) < 4:
return False
v_loc = location
d_to_waypoints = []
for waypoint in local_path:
w_loc = waypoint.transform.location
d = distance_between_two_loc(v_loc,w_loc)
d_to_waypoints.append(d)
d_to_waypoints.sort()
if d_to_waypoints[0]+d_to_waypoints[1] < sensitive_range:
return True
return False
class CognitionState(object):
"""
AV driving cognition state
"""
def __init__(self):
"""
rightest lane = 1
"""
self.follow_path = True
self.ego_y = None
self.lane_list = None
self.target_lane_id = None
self.length_before_follow_lane = None
def scenario_cognition(self,reference_path,EnvironmentInfo):
self.follow_path = True
self.lane_list = None
self.ego_y = None
is_multilane = EnvironmentInfo.is_multilane(EnvironmentInfo.ego_vehicle_location)
if is_multilane:
self._generate_lane_list(EnvironmentInfo,reference_path)
self._locating_vehicles_on_lanes(EnvironmentInfo)
self._find_target_lane_id(reference_path,EnvironmentInfo)
print("target:",self.target_lane_id,self.length_before_follow_lane,"ego:",self.ego_y)
self._should_follow_lane(reference_path,EnvironmentInfo)
def _generate_lane_list(self,EnvironmentInfo,reference_path):
self.lane_list = []
if reference_path is None:
self.ego_y = 1
return
central_lane = EnvironmentInfo.get_lane(0,reference_path)
if central_lane is None:
self.ego_y = 1
return
central_lane.id = 0
self.lane_list.append(central_lane)
left_lane_num = 1
left_lane = EnvironmentInfo.get_lane(left_lane_num,reference_path)
while left_lane is not None:
left_lane.id = left_lane_num
self.lane_list.append(left_lane)
left_lane_num += 1
left_lane = EnvironmentInfo.get_lane(left_lane_num,reference_path)
left_lane_num += -1
right_lane_num = -1
right_lane = EnvironmentInfo.get_lane(right_lane_num,reference_path)
while right_lane is not None:
right_lane.id = right_lane_num
self.lane_list.append(right_lane)
right_lane_num += -1
right_lane = EnvironmentInfo.get_lane(right_lane_num,reference_path)
right_lane_num += 1
for lane in self.lane_list:
lane.id = lane.id - right_lane_num + 1
self.ego_y = 0 - right_lane_num + 1
def _find_target_lane_id(self,reference_path,EnvironmentInfo):
free_driving = True
min_length = 180
for lane in self.lane_list:
if lane.front_vehicle is None:
front_vehicle_speed = -1
else:
front_vehicle_speed = lane.front_vehicle.speed
if lane.rear_vehicle is None:
rear_vehicle_speed = -1
else:
rear_vehicle_speed = lane.rear_vehicle.speed
print(lane.id,lane.length_before_interaction,front_vehicle_speed,rear_vehicle_speed)
if lane.length_before_interaction < min_length:
min_length = lane.length_before_interaction
if min_length < 180:
free_driving = False
if free_driving:
self.target_lane_id = -1
self.length_before_follow_lane = -1
return
self.length_before_follow_lane = min_length
target_id = -2
for lane in self.lane_list:
last_waypoint = lane.central_point_list[-1]
if location_on_the_path(reference_path,last_waypoint.transform.location,6):
target_id = lane.id
break
self.target_lane_id = target_id
self.length_before_follow_lane = min_length
def _should_follow_lane(self,reference_path,EnvironmentInfo):
self.follow_path = False
if len(self.lane_list) < 2:
self.follow_path = True
if self.target_lane_id == -2:
self.follow_path = True
if self.length_before_follow_lane > 0 and self.length_before_follow_lane < 50 and self.ego_y == self.target_lane_id and location_on_the_path(reference_path,EnvironmentInfo.ego_vehicle_location,4):
self.follow_path = True
def get_lane_of_id(self,id):
for lane in self.lane_list:
if lane.id == id:
return lane
return None
def _locating_vehicles_on_lanes(self,EnvironmentInfo):
for lane in self.lane_list:
self._find_front_rear_vehicle_on_target_lane(lane,EnvironmentInfo)
def _find_front_rear_vehicle_on_target_lane(self,lane,EnvironmentInfo):
min_rear_distance = 100
rear_vehicle = None
min_front_distance = 100
front_vehicle = None
for target_vehicle in EnvironmentInfo.surrounding_vehicle_list:
## check if target vehicle is in front
if location_on_the_path_decouple(lane.central_point_list,target_vehicle.location,EnvironmentInfo.lane_step+3):
front_dis = distance_between_two_loc(target_vehicle.location,EnvironmentInfo.ego_vehicle_location)
if front_dis < min_front_distance:
min_front_distance = front_dis
front_vehicle = target_vehicle
continue
## check if target_vehicle is in rear
location_list = EnvironmentInfo.longitudinal_position_after_distance(target_vehicle,EnvironmentInfo.sensor_range+10)
if len(location_list) < 1:
continue
loc_target_vehicle = target_vehicle.location
for target_location in location_list:
if location_on_the_path_decouple(lane.central_point_list,target_location,EnvironmentInfo.lane_step+3):
rear_dis = distance_between_two_loc(loc_target_vehicle,EnvironmentInfo.ego_vehicle_location)
if rear_dis < min_rear_distance:
min_rear_distance = rear_dis
rear_vehicle = target_vehicle
lane.front_vehicle = front_vehicle
lane.rear_vehicle = rear_vehicle