Skip to content
Snippets Groups Projects

Resolve "Score of order depends on remaining time"

Merged Fabian Heinrich requested to merge 128-score-of-order-depends-on-remaining-time into dev
@@ -97,6 +97,8 @@ class Visualizer:
if "Gui" in config and "show_counter_centers" in config["Gui"]
else False
)
pygame.font.init()
self.font = pygame.font.SysFont("Arial", 20)
def create_player_colors(self, n) -> None:
"""Create different colors for the players. The color hues are sampled uniformly in HSV-Space,
@@ -822,11 +824,7 @@ class Visualizer:
config: Visualization configuration (loaded from yaml file) given as a dict.
"""
orders_width = width - 100
orders_height = height
# order_screen = pygame.Surface(
# (orders_width, orders_height),
# )
bg_color = colors[config["GameWindow"]["background_color"]]
pygame.draw.rect(screen, bg_color, screen.get_rect())
@@ -879,6 +877,11 @@ class Visualizer:
attention=percentage < 0.25,
)
self.font.set_bold(True)
text_surface = self.font.render(str(order["score"]), True, (0, 0, 0))
screen.blit(text_surface, center)
def save_state_image(
self, grid_size: int, state: dict, filename: str | Path
) -> None:
Loading