-
Notifications
You must be signed in to change notification settings - Fork 6
/
representation.py
executable file
·97 lines (84 loc) · 4.67 KB
/
representation.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
import pygame, random
from infoDisplayer import *
from simulation.trafficGenerators import *
import math as mp
class Representation():
def __init__(self, screen, road, simulationManager, data, speedLimit):
self.screen = screen
self.width, self.heigth = screen.get_width(), screen.get_height()
self.road = road
self.updateFrame = simulationManager.updateFrame
self.margins = (10, 10)
self.cellSize = 12 #the height of road
self.acc = 0
self.theta = 0
self.data = data
self.speedLimitData = speedLimit
self.infoDisplayer = InfoDisplayer(screen, road, simulationManager, data)
self.colors = [ (255, 0, 0), (180, 20, 0), (80, 60, 0), (100, 80, 0), (0, 180, 0), (0, 255, 0), (80, 120, 0), (60, 140, 0), (40, 160, 0) ]
self.colors1 = [(39,64,139), (205,0,0)] #hv blue
self.roadColors = [(180,180,180),(130,130,130)]
def draw(self, dt):#updates simulation
self.__updateAcc(dt) #updates infodisplayer
self.screen.fill( (0,100,0) ) #background
self.drawRoad(dt)
self.infoDisplayer.draw() #draws the comments and updates
def batch(self, dt):#updates simulation
self.__updateAcc(dt) #updates infodisplayer
# self.screen.fill( (0,100,0) ) #background
# self.drawRoad(dt)
# self.infoDisplayer.draw() #draws the comments and updates
def drawRoad(self, dt): #determines widht and number of lane geometry
y = 0
for lane in self.road.lanes:
self.__drawLane(lane, y, dt)
y += self.cellSize #number of values depend on the number of lanes
# print("y: " + str(y))
def __drawLane(self, lane, y, dt): #draws the cars and empty road
x = 0
for cell in lane: #cell stores the value (i.e. None if empty or car object if car object!) it is the element
idx = x / self.cellSize, y / self.cellSize #each grid id in coordinates (x,y)
speedLimit = self.road.getSpeedLimitAt(idx)
# self.__drawCell(x, y, speedLimit) #original
self.drawCellSpeedLimits(x,y,speedLimit) #new addition
if cell != None:
self.__drawCar(cell, x, y)
x += self.cellSize #the width of the road
def __drawCell_dedicated(self, x, y, speedLimit): #draws the road cells
if self.road.updates > 10: #include color condition for dedicated lane --> change the current condition and dedicated lane colored only
realPos = self.__getPosOnScreen((x,y)) #needs change
pygame.draw.rect(self.screen, ( 180, 180, 180), (realPos[0], realPos[1], self.cellSize, self.cellSize), 0)
else:
realPos = self.__getPosOnScreen((x,y))
pygame.draw.rect(self.screen, ( 180, 180, 180), (realPos[0], realPos[1], self.cellSize, self.cellSize), 0)
def __drawCell(self, x, y, speedLimit): #draws the road cells
realPos = self.__getPosOnScreen((x,y)) #needs change
pygame.draw.rect(self.screen, ( 180, 180, 180), (realPos[0], realPos[1], self.cellSize, self.cellSize), 0)
def drawCellSpeedLimits(self, x, y, speedLimit):
if (len(self.speedLimitData)>0):
spld = self.speedLimitData[0]
realPos = self.__getPosOnScreen((x,y)) #needs change
factor = 60 + speedLimit*30
pygame.draw.rect(self.screen, (factor,factor,factor) , (realPos[0], realPos[1], self.cellSize, self.cellSize), 0)
else:
self.__drawCell(x, y, speedLimit) #original
def __drawCar(self,car, x, y): #include param for type
invProgress = (1 - self.acc / self.updateFrame)*self.cellSize
offset = (car.prevPos[0] - car.pos[0])*invProgress, (car.prevPos[1] - car.pos[1])*invProgress
realPos = self.__getPosOnScreen((x+offset[0], y+offset[1]))
if car.vtype == 1:
pygame.draw.rect(self.screen, self.colors1[0], (realPos[0],realPos[1],self.cellSize,self.cellSize), 0)
else:
pygame.draw.rect(self.screen, self.colors1[1], (realPos[0],realPos[1],self.cellSize,self.cellSize), 0)
def __updateAcc(self, dt):#updates infodisplayer
self.acc += dt
if self.acc >= self.updateFrame:
self.infoDisplayer.update()
self.acc = self.acc % (self.updateFrame + 0)
# draws the car blocs
def __getPosOnScreen(self, pos):
x, y = pos
while x + self.margins[0] >= self.width - self.margins[0]:
x -= (self.width - 2*self.margins[0])
y += (self.road.getLanesCount() + 1) * self.cellSize + self.cellSize
return (x + self.margins[0], y + self.margins[1])