2022-03-24 20:02:21 +01:00
|
|
|
import pygame
|
2022-04-25 17:26:32 +02:00
|
|
|
from Field import Field
|
2022-04-20 18:27:24 +02:00
|
|
|
from Global_variables import Global_variables as G_var
|
2022-04-25 17:26:32 +02:00
|
|
|
from Package_types import Package_types
|
2022-05-08 20:57:20 +02:00
|
|
|
from Types_colors import Types_colors
|
2022-03-24 20:02:21 +01:00
|
|
|
|
2022-04-25 17:26:32 +02:00
|
|
|
|
|
|
|
class Shelf(Field):
|
2022-05-12 21:16:05 +02:00
|
|
|
def __init__(self, window, x, y, type, sector):
|
2022-04-25 17:26:32 +02:00
|
|
|
Field.__init__(self, window, x, y)
|
|
|
|
self.type = type
|
2022-05-08 20:57:20 +02:00
|
|
|
self.color = Types_colors.get_shelf_color(type)
|
2022-05-12 21:16:05 +02:00
|
|
|
self.sector = sector
|
2022-05-08 20:57:20 +02:00
|
|
|
self.rect = pygame.Rect(self.x * G_var().RECT_SIZE, self.y *
|
2022-04-25 17:26:32 +02:00
|
|
|
G_var().RECT_SIZE, G_var().RECT_SIZE, G_var().RECT_SIZE)
|
2022-03-24 20:02:21 +01:00
|
|
|
|
|
|
|
def draw(self):
|
2022-05-08 20:57:20 +02:00
|
|
|
self.rect = pygame.Rect(self.x * G_var().RECT_SIZE, self.y *
|
2022-04-25 17:26:32 +02:00
|
|
|
G_var().RECT_SIZE, G_var().RECT_SIZE, G_var().RECT_SIZE)
|
2022-05-08 20:57:20 +02:00
|
|
|
pygame.draw.rect(self.window, self.color, self.rect)
|