Source code for miniworldmaker.appearances.costume

from typing import Union

import miniworldmaker.appearances.appearance as appear
import miniworldmaker.appearances.managers.transformations_costume_manager as transformations_costume_manager
import pygame
import miniworldmaker.boards.board_templates.pixel_board.board as board


[docs]class Costume(appear.Appearance): """A costume contains one or multiple images Every token has a costume which defines the "look" of the token. You can switch the images in a costume to animate the token. A costume is created if you add an image to an actor with token.add_image(path_to_image) """ def __init__(self, token): super().__init__() self.parent = token #: the parent of a costume is the associated token. self.token = self.parent self.info_overlay = False self.is_rotatable = False self.fill_color = None self.border_color = None self.transformations_manager = transformations_costume_manager.TransformationsCostumeManager(self) @property def board(self) -> "board.Board": return self.parent.board
[docs] def after_init(self): # Called in metaclass self._set_default_color_values() super().after_init()
def _set_default_color_values(self): self._set_token_default_values() self._set_board_default_values() def _set_token_default_values(self): self._info_overlay = False self._is_rotatable = True self.fill_color = (255, 0, 255, 255) self.border_color = (100, 100, 255) def _set_board_default_values(self): if self.token.board.default_fill_color: self.fill_color = self.board.default_fill_color if self.token.board.default_is_filled: self.is_filled = self.board.default_is_filled if self.token.board.default_stroke_color: self.border_color = self.board.default_stroke_color if self.token.board.default_border_color: self.border_color = self.board.default_border_color if self.token.board.default_border: self.border = self.token.board.default_border @property def info_overlay(self): """Shows info overlay (Rectangle around the token and Direction marker) """ return self._info_overlay @info_overlay.setter def info_overlay(self, value): self._info_overlay = value self.set_dirty("all", Costume.RELOAD_ACTUAL_IMAGE )
[docs] def set_image(self, source: Union[int, "appear.Appearance, tuple"]) -> bool: """ :param source: index, Appearance or color. :return: True if image exists """ return super().set_image(source)
def _inner_shape(self) -> tuple: """Returns inner shape of costume Returns: pygame.Rect: Inner shape (Rectangle with size of token) """ size = self.parent.position_manager.get_size() return pygame.draw.rect, [ pygame.Rect(0, 0, size[0], size[1]), 0] def _outer_shape(self) -> tuple: """Returns outer shape of costume Returns: pygame.Rect: Outer shape (Rectangle with size of tokens without filling.) """ size = self.parent.position_manager.get_size() return pygame.draw.rect, [ pygame.Rect(0, 0, size[0], size[1]), self.border]
[docs] def rotated(self): if self.board.camera.is_token_repainted(self.token): self.set_dirty("rotate", self.RELOAD_ACTUAL_IMAGE)
[docs] def resized(self): self.set_dirty("scale", self.RELOAD_ACTUAL_IMAGE)
[docs] def visible(self): if self.board.camera.is_token_repainted(self.token): self.set_dirty("all", self.RELOAD_ACTUAL_IMAGE)
[docs] def set_dirty(self, value="all", status=1): super().set_dirty(value, status) if hasattr(self, "token") and self.token and self.token.collision_type == "mask": self.token.mask = pygame.mask.from_surface(self.token.image)