forked from intrig-unicamp/mininet-wifi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvanet.py
More file actions
359 lines (295 loc) · 12 KB
/
Copy pathvanet.py
File metadata and controls
359 lines (295 loc) · 12 KB
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
"""
author: Ramon Fontes (ramonrf@dca.fee.unicamp.br)
ramonfontes.com
"""
from __future__ import division
from pylab import math, cos, sin, np
from math import atan2
from pylab import ginput as ginp
from mininet.wifiPlot import plot2d, plot3d
from random import randrange
import warnings
import matplotlib.cbook
import threading
from mininet.wifiMobility import mobility
try:
warnings.filterwarnings("ignore", category=matplotlib.cbook.mplDeprecation)
except:
pass
class vanet(object):
# variables
scatter = 0
com_lines = []
all_points = []
road = []
points = []
totalRoads = []
interX = {}
interY = {}
time_per_iteraiton = 100 * math.pow(10, -3)
def __init__(self, **params):
thread = threading.Thread(name='vanet', target=self.start, kwargs=dict(params,))
thread.daemon = True
thread.start()
def start(self, stations, aps, nroads, connections, MIN_X, MIN_Y, MAX_X, MAX_Y, **params):
'start topology'
cars = stations
mobility.addNodes(cars, aps)
[self.road.append(x) for x in range(0, nroads)]
[self.points.append(x) for x in range(0, nroads)]
[self.totalRoads.append(x) for x in range(0, nroads)]
plot2d.instantiateGraph(MIN_X, MIN_Y, MAX_X, MAX_Y)
try:
self.display_grid(aps, connections, nroads)
self.display_cars(cars)
plot2d.plotGraph(cars, [])
self.setWifiParameters()
while True:
[self.scatter, self.com_lines] = self.simulate_car_movement(cars, aps, self.scatter, self.com_lines)
mobility.continueParams
except:
pass
def setWifiParameters(self):
thread = threading.Thread(name='wifiParameters', target=mobility.parameters)
thread.start()
def get_line(self, x1, y1, x2, y2):
points = []
issteep = abs(y2 - y1) > abs(x2 - x1)
if issteep:
x1, y1 = y1, x1
x2, y2 = y2, x2
rev = False
if x1 > x2:
x1, x2 = x2, x1
y1, y2 = y2, y1
rev = True
deltax = x2 - x1
deltay = abs(y2 - y1)
error = int(deltax / 2)
y = y1
ystep = None
if y1 < y2:
ystep = 1
else:
ystep = -1
for x in range(x1, x2 + 1):
if issteep:
points.append((y, x))
else:
points.append((x, y))
error -= deltay
if error < 0:
y += ystep
error += deltax
# Reverse the list if the coordinates were reversed
if rev:
points.reverse()
return points
def display_grid(self, baseStations, connections, nroads):
for n in range(nroads):
if n == 0:
p = ginp(2)
self.points[n] = p
self.all_points = p
else:
p = ginp(1)
self.points[n] = p
self.all_points.append(p[0])
x1 = [x[0] for x in self.points[n]]
y1 = [x[1] for x in self.points[n]]
if n == 0:
self.points[n] = self.get_line(int(x1[0]), int(y1[0]), int(x1[1]), int(y1[1])) # Get all the points in the line
else:
self.points[n] = self.get_line(int(self.all_points[n][0]), int(self.all_points[n][1]), int(p[0][0]), int(p[0][1])) # Get all the points in the line
x1 = [x[0] for x in self.points[n]]
y1 = [x[1] for x in self.points[n]]
self.interX[n] = x1
self.interY[n] = y1
self.road[n] = plot2d.plotLine2d(x1, y1, color='g') # Create a line object with the x y values of the points in a line
plot2d.plotLine(self.road[n])
for bs in baseStations:
bs.properties = ginp(1)[0]
bs_x = bs.properties[0]
bs_y = bs.properties[1]
self.scatter = plot2d.plotScatter(bs_x, bs_y)
bs.params['position'] = bs_x, bs_y, 0
bs.setPositionWmediumd()
plot2d.instantiateAnnotate(bs)
plot2d.instantiateCircle(bs)
plot2d.text(bs)
plot2d.circle(bs)
plot2d.plotDraw()
if 'src' in connections:
for c in range(0, len(connections['src'])):
line = plot2d.plotLine2d([connections['src'][c].params['position'][0], connections['dst'][c].params['position'][0]], \
[connections['src'][c].params['position'][1], connections['dst'][c].params['position'][1]], 'b', ls='dashed')
plot2d.plotLine(line)
def display_cars(self, cars):
car_lines = []
for n in range(0, len(cars)):
car_lines.append(self.road[n])
for n in range(0, len(self.totalRoads)):
road = self.road[n]
line_data = road.get_data()
x_min, x_max = self.lineX(line_data)
y_min, y_max = self.lineY(line_data)
locX = (x_max - x_min) / 2 + x_min
locY = (y_max - y_min) / 2 + y_min
plot2d.plotLineTxt(locX, locY, n + 1)
# temporal variable to hold values of cars
points = [[], []]
# get X cars in the graph
i = 0
for car in cars:
i += 1
random_index = randrange(len(car_lines))
car.currentRoad = int(random_index)
car_line = car_lines[random_index]
point = car_line.get_xydata()[0] # first point in the graph
# calculate the angle
line_data = car_line.get_data()
ang = self.calculateAngle(line_data)
car.properties = self.carProperties(point, ang, x_min, x_max, y_min, y_max)
# for the even cars shift angle to negative
# so that it goes in opposite direction from car1
car.i = i
if i % 2 == 0:
ang = ang + math.pi
point = car_line.get_xydata()[-1] # for this car get the last point as positions
x_min, x_max = self.lineX(line_data)
y_min, y_max = self.lineY(line_data)
car.initial = self.carPoint(point)
# add scatter
points[0].append(point[0])
points[1].append(point[1])
self.speed(car) # Get Speed
# plot cars
self.scatter = plot2d.plotScatter(points[0], points[1])
def lineX(self, line_data):
""" get the minimum and maximums of the line"""
x_min = min(line_data[0])
x_max = max(line_data[0])
return x_min, x_max
def lineY(self, line_data):
""" get the minimum and maximums of the line"""
y_min = min(line_data[1])
y_max = max(line_data[1])
return y_min, y_max
def speed(self, car):
car.speed = car.max_speed, car.min_speed
def calculateAngle(self, line_data):
"""Calculate Angle"""
xdiff = line_data[0][-1] - line_data[0][0]
ydiff = line_data[1][-1] - line_data[1][0]
ang = atan2(ydiff, xdiff)
return ang
def carProperties(self, point, ang, x_min, x_max, y_min, y_max):
temp = []
temp.append(point[0])
temp.append(point[1])
temp.append(ang)
temp.append(x_min)
temp.append(x_max)
temp.append(y_min)
temp.append(y_max)
return temp
def carPoint(self, point):
temp = []
temp.append(point[0])
temp.append(point[1])
return temp
def line_properties(self, line, car):
line_data = line.get_data() # Get the x and y values of the points in the line
ang = self.calculateAngle(line_data) # Get angle
point = list(line.get_xydata()[0]) # first point in the graph
if car.i % 2 == 0:
ang = ang + math.pi
point = list(line.get_xydata()[-1]) # for this car get the last point as positions
x_min, x_max = self.lineX(line_data)
y_min, y_max = self.lineY(line_data)
car.properties = self.carProperties(point, ang, x_min, x_max, y_min, y_max)
car.initial = self.carPoint(point)
def repeat (self, car):
# Check if it is the last mile
lastRoad = True
if car.i % 2 == 0:
for n in reversed(self.totalRoads):
if n < car.currentRoad:
car.currentRoad = n
self.line_properties(self.road[car.currentRoad], car) # get properties of each line in a path
lastRoad = False
break
if lastRoad:
car.currentRoad = len(self.totalRoads) - 1
self.line_properties(self.road[car.currentRoad], car)
else:
for n in (self.totalRoads):
if n > car.currentRoad:
car.currentRoad = n
self.line_properties(self.road[car.currentRoad], car) # get properties of each line in a path
lastRoad = False
break
if lastRoad:
car.currentRoad = 0
self.line_properties(self.road[car.currentRoad], car)
def findIntersection(self):
# have to work on
list1 = [list(a) for a in zip(self.interX[0], self.interY[0])]
list2 = [list(a) for a in zip(self.interX[2], self.interY[2])]
first_tuple_list = [tuple(lst) for lst in list1]
secnd_tuple_list = [tuple(lst) for lst in list2]
first_set = set(first_tuple_list)
secnd_set = set(secnd_tuple_list)
(element,) = first_set.intersection(secnd_set)
print element[0]
def simulate_car_movement(self, cars, baseStations, scatter, com_lines):
# temporal variables
points = [[], []]
scatter.remove()
nodes = cars + baseStations
while com_lines:
com_lines[0].remove()
del(com_lines[0])
# iterate over each car
for car in cars:
# get all the properties of the car
velocity = round(np.random.uniform(car.speed[0], car.speed[1]))
position_x = car.properties[0]
position_y = car.properties[1]
car.params['position'] = position_x, position_y, 0
car.setPositionWmediumd()
carsta = car.params['carsta']
carsta.setPositionWmediumd()
angle = car.properties[2]
# calculate new position of the car
position_x = position_x + velocity * cos(angle) * self.time_per_iteraiton
position_y = position_y + velocity * sin(angle) * self.time_per_iteraiton
if (position_x < car.properties[3] or position_x > car.properties[4]) \
or (position_y < car.properties[5] or position_y > car.properties[6]):
self.repeat(car)
points[0].append(car.initial[0])
points[1].append(car.initial[1])
else:
car.properties[0] = position_x
car.properties[1] = position_y
points[0].append(position_x)
points[1].append(position_y)
for node in nodes:
if nodes == car:
continue
else:
# compute to see if vehicle is in range
inside = math.pow((node.properties[0] - position_x), 2) + math.pow((node.properties[1] - position_y), 2)
if inside <= math.pow(node.params['range'], 2):
if node.type == 'ap':
color = 'black'
else:
color = 'r'
line = plot2d.plotLine2d([position_x, node.properties[0]], [position_y, node.properties[1]], color=color)
com_lines.append(line)
plot2d.plotLine(line)
plot2d.graphUpdate(car)
eval(mobility.continuePlot)
scatter = plot2d.plotScatter(points[0], points[1])
plot2d.plotDraw()
return [scatter, com_lines]