sep-pm-platformer/project/ui_elements/TextLabel.py

57 lines
2.1 KiB
Python
Raw Normal View History

2023-03-25 15:41:32 +01:00
import pygame
2023-03-27 14:38:52 +02:00
from pygame import Surface
2023-03-25 15:41:32 +01:00
from pygame.font import Font
from physics.TickData import TickData
2023-03-26 11:11:10 +02:00
from sprite.BoundingBox import BoundingBox
2023-03-25 15:41:32 +01:00
from sprite.PositionScale import PositionScale
2023-03-26 09:51:11 +02:00
from ui_elements.UiElement import UiElement
2023-03-25 15:41:32 +01:00
2023-03-26 09:51:11 +02:00
class TextLabel(UiElement):
def tick(self, tick_data: TickData):
2023-03-26 09:51:11 +02:00
pass
def __init__(self, text: str, x_position: float, y_position: float, font_size: int = 50, alignment: str = "left"):
2023-03-26 09:51:11 +02:00
super().__init__()
2023-03-25 15:41:32 +01:00
self.text = text
2023-03-26 09:51:11 +02:00
2023-03-25 15:41:32 +01:00
self.x_position = x_position
self.y_position = y_position
self.current_width = 0
self.current_height = 0
2023-03-26 09:51:11 +02:00
self.alignment = alignment
2023-03-25 15:41:32 +01:00
self.font_size = font_size
2023-03-25 18:11:41 +01:00
self.font = Font('data/font/MilkyNice.ttf', self.font_size)
2023-03-26 09:51:11 +02:00
def render_sprite_image(self) -> pygame.Surface:
return self.font.render(str(self.text), True, pygame.Color('white'))
2023-03-25 15:41:32 +01:00
2023-03-25 16:18:44 +01:00
def draw(self, screen: Surface, screen_transform: PositionScale):
2023-03-25 18:11:41 +01:00
rendered_font = self.font.render(str(self.text), True, pygame.Color('white'))
2023-03-25 15:41:32 +01:00
self.current_width = rendered_font.get_width()
self.current_height = rendered_font.get_height()
if self.alignment == "right":
2023-03-26 09:51:11 +02:00
self.position_scale.position = (self.x_position - self.current_width, self.y_position)
2023-03-25 18:11:41 +01:00
elif self.alignment == "left":
2023-03-26 09:51:11 +02:00
self.position_scale.position = (self.x_position, self.y_position)
2023-03-25 15:41:32 +01:00
elif self.alignment == "center":
2023-03-26 09:51:11 +02:00
self.position_scale.position = (self.x_position - self.current_width / 2, self.y_position)
2023-03-25 18:11:41 +01:00
2023-03-26 09:51:11 +02:00
super().draw(screen, screen_transform)
2023-03-25 15:41:32 +01:00
2023-03-26 09:51:11 +02:00
def set_text(self, new_text: str):
self.text = new_text
2023-03-26 11:11:10 +02:00
def get_bounding_box(self) -> BoundingBox:
return BoundingBox(
self.position_scale.position[0] - self.bounding_box_margin[0],
self.position_scale.position[1] - self.bounding_box_margin[1],
self.current_width * self.position_scale.scale[0] + self.bounding_box_margin[0] * 2,
self.current_height * self.position_scale.scale[1] + self.bounding_box_margin[1] * 2
)