From 975e5dca49fb09fe2f762462f1c337c0d63735bf Mon Sep 17 00:00:00 2001 From: Viljami Ilola <+@hix.fi> Date: Wed, 20 Mar 2024 17:46:10 +0200 Subject: exploding text --- src/sliceitoff/__main__.py | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'src/sliceitoff/__main__.py') diff --git a/src/sliceitoff/__main__.py b/src/sliceitoff/__main__.py index 717403e..7d21c7d 100644 --- a/src/sliceitoff/__main__.py +++ b/src/sliceitoff/__main__.py @@ -9,9 +9,9 @@ import pygame from display import Display from images import Images, Fonts -from game import Level +from game import Level, Show from stats import Stats -from screens import Welcome +from screens import welcome_screen def sliceitoff(): @@ -20,22 +20,27 @@ def sliceitoff(): pygame.mouse.set_visible(False) + clock = pygame.time.Clock() + display = Display() current_path = Path(__file__).parent.resolve() Images.load_images( current_path ) Fonts.load_fonts( current_path ) - welcome = Welcome() - display.update( [welcome.sprites] ) - sleep(2) - - clock = pygame.time.Clock() + + welcome = Show(welcome_screen()) dt = 0 + while welcome.step(dt): + dt = clock.tick() + display.update( [welcome.sprites] ) + + Stats.new_game() while Stats.lives: level = Level(display = display) + dt = 0 while level.step(dt): dt = clock.tick() if Stats.lives: -- cgit v1.2.3