Machine_learning_2023/Interface/vacuum_render.py

35 lines
1.0 KiB
Python
Raw Normal View History

2023-03-12 16:22:51 +01:00
from Interface.grid_draw import GridDraw, Colors
2023-03-12 18:19:28 +01:00
import sys
import pygame
from Interface.movement import robot_movement
2023-03-11 19:31:43 +01:00
2023-03-12 19:33:57 +01:00
def initial_draw(grid_dimensions, board_size):
2023-03-16 21:38:42 +01:00
# window name
pygame.display.set_caption("AI Vacuum Cleaner")
# define array for grid
border_array = [["" for j in range(board_size)] for i in range(board_size)]
2023-03-12 19:33:57 +01:00
# set window dimension
grid_width = grid_dimensions
grid_height = grid_dimensions
2023-03-21 20:29:35 +01:00
# FIXME @countingthedots: please tell me what is going on there and why???
#
grid = GridDraw(grid_width, grid_height)
tile_width = grid_width / board_size
tile_height = grid_height / board_size
x = tile_width / 2
y = tile_height / 2
radius = tile_height/3
2023-03-21 20:29:35 +01:00
# rendering loop
2023-03-12 16:22:51 +01:00
while True:
grid.start_draw()
grid.board(board_size, board_size)
(x, y) = robot_movement(grid_width, grid_height, tile_width, tile_height, x, y)
grid.circle(x, y, radius, color=Colors.RED)
grid.end_draw()
pygame.time.delay(10)