zaznaczenie celu

This commit is contained in:
andrzej 2020-04-28 01:18:23 +02:00
parent ae4f280246
commit a287dc19c6
2 changed files with 8 additions and 1 deletions

View File

@ -24,5 +24,6 @@ COLORS = {
'darkgray': (60, 60, 60),
'yellow': (235, 235, 0),
'lightgreen': (70, 238, 70),
'red': (255, 0, 0)
'red': (255, 0, 0),
'lightblue': (135, 206, 250)
}

View File

@ -41,6 +41,12 @@ class MainGameFrame:
for x in range(self.warehouse_map.width):
for y in range(self.warehouse_map.height):
self.draw_field(x, y)
self.draw_target(1, 1)
def draw_target(self, x, y):
target_screen_position = (
(x * TILE_WIDTH) + CIRCLE_CENTER_X, (y * TILE_HEIGHT) + CIRCLE_CENTER_Y)
pygame.draw.circle(self.display, COLORS['lightblue'], target_screen_position, 6)
def draw_field(self, x, y):
current_tile = self.warehouse_map.tiles[x][y]