basic_agent

This commit is contained in:
v7eZ3t 2021-03-17 01:02:20 +01:00
parent dcd0a6e06d
commit 47018b05d9

View File

@ -12,7 +12,7 @@ display = pygame.display.set_mode((DISPLAY_SIZE_HORIZONTAL, DISPLAY_SIZE_VERTICA
# program name # program name
pygame.display.set_caption('Tryryryry') pygame.display.set_caption('Tryryryry')
game_over = False working = True
tractor_horizontal_location = TRACTOR_HORIZONTAL_LOCATION tractor_horizontal_location = TRACTOR_HORIZONTAL_LOCATION
tractor_vertical_location = TRACTOR_VERTICAL_LOCATION tractor_vertical_location = TRACTOR_VERTICAL_LOCATION
@ -25,10 +25,10 @@ board = Board.generate()
color = BLACK color = BLACK
clock = pygame.time.Clock() clock = pygame.time.Clock()
while not game_over: while working:
for event in pygame.event.get(): for event in pygame.event.get():
if event.type == pygame.QUIT: if event.type == pygame.QUIT:
game_over = True working = False
if event.type == pygame.KEYDOWN: if event.type == pygame.KEYDOWN:
print(tractor_horizontal_location, " ", tractor_vertical_location) print(tractor_horizontal_location, " ", tractor_vertical_location)
if event.key == pygame.K_LEFT and tractor_horizontal_location > 0: if event.key == pygame.K_LEFT and tractor_horizontal_location > 0: