1
0
Fork 0

Wózek się rusza

This commit is contained in:
s481876 2024-04-18 10:01:53 +02:00
parent 9fcded9ddc
commit b7b8be4863
1 changed files with 13 additions and 0 deletions

View File

@ -292,6 +292,7 @@ def game_loop():
path.reverse()
for node in path:
print(node.action)
i=0
running = True
while running:
for event in pygame.event.get():
@ -317,6 +318,18 @@ def game_loop():
draw_forklift_and_freight()
pygame.display.flip()
clock.tick(FPS)
if(i<len(path)):
nod=path[i]
if(nod.action=='FW'):
move_forklift()
elif(nod.action=='L'):
rotate_forklift('L')
load_images()
elif(nod.action=='R'):
rotate_forklift('R')
load_images()
i=i+1
pygame.time.wait(500)
pygame.quit()
sys.exit()