From f03cb2ae232d8349ee95af50d0e2bfd29ceb5491 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Tue, 26 Jul 2022 14:32:03 +0200 Subject: [PATCH 1/3] simple window test --- main.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/main.py b/main.py index e69de29..a639fb4 100644 --- a/main.py +++ b/main.py @@ -0,0 +1,35 @@ +import pygame +from pygame.locals import * + +def main(): + pygame.init() + screen = pygame.display.set_mode((1280, 720), pygame.SCALED) + pygame.display.set_caption("Test Window") + + clock = pygame.time.Clock() + live = True + x = 0 + + while live: + # Set clock tick to 60 fps + clock.tick(60) + + # + for event in pygame.event.get(): + if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: + live = False + + # Change background color + if x == 255: x = 0 + else: x += 1 + screen.fill((x, 0, 0)) + + # Draw Scene + pygame.display.flip() + + # Display current fps + print(float("{0:.2f}".format(clock.get_fps())), 'fps') + + +if __name__ == "__main__": + main() \ No newline at end of file From ac7c1e4c497346fe5adb16d170f3e2217ef871ff Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Tue, 26 Jul 2022 14:32:03 +0200 Subject: [PATCH 2/3] simple window test --- main.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/main.py b/main.py index e69de29..a639fb4 100644 --- a/main.py +++ b/main.py @@ -0,0 +1,35 @@ +import pygame +from pygame.locals import * + +def main(): + pygame.init() + screen = pygame.display.set_mode((1280, 720), pygame.SCALED) + pygame.display.set_caption("Test Window") + + clock = pygame.time.Clock() + live = True + x = 0 + + while live: + # Set clock tick to 60 fps + clock.tick(60) + + # + for event in pygame.event.get(): + if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: + live = False + + # Change background color + if x == 255: x = 0 + else: x += 1 + screen.fill((x, 0, 0)) + + # Draw Scene + pygame.display.flip() + + # Display current fps + print(float("{0:.2f}".format(clock.get_fps())), 'fps') + + +if __name__ == "__main__": + main() \ No newline at end of file From 2d144bf907e27d13707255d10a4b95e899f1b03a Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 09:05:16 +0200 Subject: [PATCH 3/3] Color and text test --- main.py | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/main.py b/main.py index a639fb4..29191fc 100644 --- a/main.py +++ b/main.py @@ -1,14 +1,27 @@ import pygame from pygame.locals import * +RESOLUTION = (1280, 720) +DIFFICULTY = 1 + +Color_white = (255, 255, 255) +Color_Black = (0, 0, 0) + + def main(): pygame.init() screen = pygame.display.set_mode((1280, 720), pygame.SCALED) pygame.display.set_caption("Test Window") + width = screen.get_width() + height = screen.get_height() + + font = pygame.font.SysFont('Corbel', 35) + + test = font.render('quit' , True , Color_Black) + clock = pygame.time.Clock() live = True - x = 0 while live: # Set clock tick to 60 fps @@ -18,12 +31,10 @@ def main(): for event in pygame.event.get(): if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: live = False - - # Change background color - if x == 255: x = 0 - else: x += 1 - screen.fill((x, 0, 0)) + screen.fill(Color_white) + screen.blit(test , (width/2,height/2)) + # Draw Scene pygame.display.flip()