54 lines
1.4 KiB
Python
54 lines
1.4 KiB
Python
import sys
|
|
import secrets
|
|
|
|
from src.graphics import *
|
|
from src.waiter import *
|
|
|
|
if __name__ == "__main__":
|
|
# SETUP
|
|
pygame.init()
|
|
clock = pygame.time.Clock()
|
|
fps = 2
|
|
graphics = Graphics()
|
|
waiter = Waiter(graphics)
|
|
|
|
# init functions
|
|
graphics.drawBackground(waiter.matrix)
|
|
graphics.update(waiter)
|
|
|
|
goal = None
|
|
path = ''
|
|
while True:
|
|
for event in pygame.event.get():
|
|
if event.type == pygame.QUIT:
|
|
pygame.quit()
|
|
sys.exit()
|
|
break
|
|
|
|
if event.type == pygame.KEYDOWN:
|
|
if event.key == pygame.K_ESCAPE:
|
|
pygame.quit()
|
|
sys.exit()
|
|
break
|
|
|
|
if event.key == pygame.K_r:
|
|
temp = False
|
|
while not temp:
|
|
x = secrets.randbelow(graphics.width)
|
|
y = secrets.randbelow(graphics.height)
|
|
|
|
if waiter.matrix.matrix[x][y].walk_through == 1:
|
|
temp = True
|
|
|
|
goal = (x, y)
|
|
path = waiter.findPath(goal)
|
|
path = waiter.translatePath(path)
|
|
|
|
if path != '':
|
|
nextStep = path[0]
|
|
path = path[1:]
|
|
waiter.travel(nextStep, graphics)
|
|
|
|
pygame.display.flip()
|
|
clock.tick(fps)
|