File simulatie/connection.py changed (mode: 100644) (index e28c850..d40085a) |
... |
... |
RecieveConnection = pika.BlockingConnection(pika.ConnectionParameters(host=model |
49 |
49 |
channel = SendConnection.channel() |
channel = SendConnection.channel() |
50 |
50 |
recieve = RecieveConnection.channel() |
recieve = RecieveConnection.channel() |
51 |
51 |
|
|
52 |
|
inputEnabled = True |
|
|
52 |
|
inputEnabled = True # Still being used? |
53 |
53 |
|
|
54 |
54 |
recieve.queue_declare( |
recieve.queue_declare( |
55 |
55 |
queue=model.recieveQueue, |
queue=model.recieveQueue, |
|
... |
... |
def sendMsg(msg, index, amount, dirRequests): |
79 |
79 |
|
|
80 |
80 |
print('Msg sent. (' + msg + ')') |
print('Msg sent. (' + msg + ')') |
81 |
81 |
|
|
82 |
|
for i in range(0, amount): |
|
83 |
|
pyg.spawnVehicle(index, dirRequests) |
|
84 |
|
time.sleep(2) |
|
85 |
|
|
|
86 |
82 |
def update(index, addCars, dirRequests): |
def update(index, addCars, dirRequests): |
87 |
83 |
if inputEnabled: |
if inputEnabled: |
88 |
84 |
lights[index][1] += addCars |
lights[index][1] += addCars |
File simulatie/pyg.py changed (mode: 100644) (index c7027e3..f1fb4e2) |
... |
... |
class Vehicle(object): |
79 |
79 |
self.dest = [x,y] |
self.dest = [x,y] |
80 |
80 |
self.speed = [0,0] |
self.speed = [0,0] |
81 |
81 |
self.trafficId = trafficId |
self.trafficId = trafficId |
|
82 |
|
self.dirRequest = dirRequest |
82 |
83 |
|
|
83 |
84 |
self.wp = 1 |
self.wp = 1 |
84 |
85 |
self.waiting = True |
self.waiting = True |
85 |
86 |
self.transform = 0 |
self.transform = 0 |
|
87 |
|
self.firedUpdate = False |
86 |
88 |
|
|
87 |
89 |
self.rect.x = tm.queues[trafficId][0][0] |
self.rect.x = tm.queues[trafficId][0][0] |
88 |
90 |
self.rect.y = tm.queues[trafficId][0][1] |
self.rect.y = tm.queues[trafficId][0][1] |
|
... |
... |
class Vehicle(object): |
125 |
127 |
|
|
126 |
128 |
def anim(self): |
def anim(self): |
127 |
129 |
if self.speed[0] == 0 and self.speed[1] == 0: |
if self.speed[0] == 0 and self.speed[1] == 0: |
128 |
|
if self.waiting and self.wp < len(tm.queues[self.trafficId]): |
|
|
130 |
|
if self.waiting and self.wp < len(tm.queues[self.trafficId]): # Is nog naar het stoplicht aan het rijden.. |
129 |
131 |
if self.wp + 1 == len(tm.queues[self.wp]): |
if self.wp + 1 == len(tm.queues[self.wp]): |
130 |
132 |
if self.trafficId == 3 or self.trafficId == 4 or self.trafficId == 10: |
if self.trafficId == 3 or self.trafficId == 4 or self.trafficId == 10: |
131 |
133 |
self.goto(tm.queues[self.trafficId][self.wp][0] + (connection.lights[self.trafficId][1] * 40), tm.queues[self.trafficId][self.wp][1]) |
self.goto(tm.queues[self.trafficId][self.wp][0] + (connection.lights[self.trafficId][1] * 40), tm.queues[self.trafficId][self.wp][1]) |
|
... |
... |
class Vehicle(object): |
136 |
138 |
elif self.trafficId == 5 or self.trafficId == 6: |
elif self.trafficId == 5 or self.trafficId == 6: |
137 |
139 |
self.goto(tm.queues[self.trafficId][self.wp][0], tm.queues[self.trafficId][self.wp][1] + (connection.lights[self.trafficId][1] * 40)) |
self.goto(tm.queues[self.trafficId][self.wp][0], tm.queues[self.trafficId][self.wp][1] + (connection.lights[self.trafficId][1] * 40)) |
138 |
140 |
else: |
else: |
139 |
|
print("Not a car.") |
|
|
141 |
|
print("Not a car.") |
140 |
142 |
else: |
else: |
141 |
143 |
self.goto(tm.queues[self.trafficId][self.wp][0], tm.queues[self.trafficId][self.wp][1]) |
self.goto(tm.queues[self.trafficId][self.wp][0], tm.queues[self.trafficId][self.wp][1]) |
142 |
144 |
|
|
143 |
145 |
self.wp += 1 |
self.wp += 1 |
144 |
146 |
print("W: " + str(self.wp) + " / " + str(len(tm.queues[self.trafficId]))) |
print("W: " + str(self.wp) + " / " + str(len(tm.queues[self.trafficId]))) |
145 |
147 |
|
|
146 |
|
#elif self.waiting: # Debug |
|
147 |
|
#time.sleep(1) |
|
148 |
|
# tm.lights[self.trafficId]["Status"] = 1 # Debug |
|
|
148 |
|
elif self.waiting and not self.firedUpdate: # Wacht voor het stoplicht. |
|
149 |
|
connection.update(self.trafficId, 1, self.dirRequest) |
|
150 |
|
self.firedUpdate = True |
149 |
151 |
|
|
150 |
|
elif not self.waiting and self.wp < len(tm.waypoints[self.trafficId][self.direction]): |
|
|
152 |
|
elif not self.waiting and self.wp < len(tm.waypoints[self.trafficId][self.direction]): # Al voorbij het stoplicht en nog aan het rijden. |
151 |
153 |
self.goto(tm.waypoints[self.trafficId][self.direction][self.wp][0], tm.waypoints[self.trafficId][self.direction][self.wp][1]) |
self.goto(tm.waypoints[self.trafficId][self.direction][self.wp][0], tm.waypoints[self.trafficId][self.direction][self.wp][1]) |
152 |
154 |
self.wp += 1 |
self.wp += 1 |
153 |
155 |
print("NW: " + str(self.wp) + " / " + str(len(tm.waypoints[self.trafficId][self.direction]))) |
print("NW: " + str(self.wp) + " / " + str(len(tm.waypoints[self.trafficId][self.direction]))) |
File simulatie/traffic.py changed (mode: 100644) (index db87130..9102094) |
... |
... |
import sys |
2 |
2 |
|
|
3 |
3 |
import connection |
import connection |
4 |
4 |
import trafficModel as tm |
import trafficModel as tm |
|
5 |
|
import pyg |
|
6 |
|
|
|
7 |
|
def spawnVehicle(index, amount, dirRequests): |
|
8 |
|
for i in range(0, amount): |
|
9 |
|
pyg.spawnVehicle(index, dirRequests) |
5 |
10 |
|
|
6 |
11 |
while True: |
while True: |
7 |
12 |
print("Vehicle internal ID:") |
print("Vehicle internal ID:") |
|
... |
... |
while True: |
13 |
18 |
#ui = list(ui) |
#ui = list(ui) |
14 |
19 |
if direction == None or direction == "": |
if direction == None or direction == "": |
15 |
20 |
#print([connection.lights[int(vehicle)], connection.lights[1] + 1, 2]) |
#print([connection.lights[int(vehicle)], connection.lights[1] + 1, 2]) |
16 |
|
connection.update(int(vehicle), 1, None) |
|
|
21 |
|
spawnVehicle(int(vehicle), 1, None) |
17 |
22 |
else: |
else: |
18 |
23 |
#print([connection.lights[int(vehicle)], connection.lights[1] + 1, int(direction)]) |
#print([connection.lights[int(vehicle)], connection.lights[1] + 1, int(direction)]) |
19 |
|
connection.update(int(vehicle), 1, [int(direction)]) |
|
|
24 |
|
spawnVehicle(int(vehicle), 1, [int(direction)]) |
20 |
25 |
|
|
21 |
|
sys.exit() |
|
|
26 |
|
sys.exit() |