prepared environment for the subproject

This commit is contained in:
s450026 2020-05-22 00:32:20 +02:00
parent 51fa7c527d
commit 626c471e3e
7 changed files with 26 additions and 11 deletions

3
.gitignore vendored
View File

@ -2,4 +2,5 @@
.idea
bin
venv
.venv
.venv
__pycache__

34
main.py
View File

@ -1,9 +1,8 @@
import sys
import secrets
import sys
from src.graphics import *
from src.waiter import *
from src.decisionTree import *
from src.plateRecognition import *
if __name__ == "__main__":
# SETUP
@ -33,21 +32,36 @@ if __name__ == "__main__":
pygame.quit()
sys.exit()
break
if event.key == pygame.K_s:
tree.TasksList('check', [10,3])
tree.TasksList('eat', [5,12])
tree.TasksList('order', [12,4])
tree.TasksList('goToBar', [10,10])
tree.TasksList('check', [3,4])
tree.TasksList('eat', [10,5])
tree.TasksList('check', [10, 3])
tree.TasksList('eat', [5, 12])
tree.TasksList('order', [12, 4])
tree.TasksList('goToBar', [10, 10])
tree.TasksList('check', [3, 4])
tree.TasksList('eat', [10, 5])
tree.print()
if event.key == pygame.K_m:
tabPos = [[1, 2], [1, 4], [1, 5], [1, 7], [1, 8], [1, 10], [5, 4], [5, 8]]
print(tabPos[0][0], tabPos[0][1])
if not [waiter.X, waiter.Y] in tabPos:
x = tabPos[0][0]
y = tabPos[0][1]
goal = (x, y)
path = waiter.findPath(goal)
path = waiter.translatePath(path)
else:
print('hello')
if event.key == pygame.K_r:
temp = False
while not temp:
x = secrets.randbelow(graphics.width)
y = secrets.randbelow(graphics.height)
print(x, y)
if waiter.matrix.matrix[x][y].walk_through == 1:
temp = True

Binary file not shown.

0
src/plateRecognition.py Normal file
View File