From fdeff9e17fe35e6a237a7405e91250f99ce25fcd Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sat, 6 Aug 2022 11:19:26 +0200 Subject: [PATCH] Add info text on screen --- Snake/src/window.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/Snake/src/window.py b/Snake/src/window.py index a38ad8c..1871b7d 100644 --- a/Snake/src/window.py +++ b/Snake/src/window.py @@ -3,17 +3,35 @@ from pygame.locals import * def init_game(): pygame.init() + pygame.font.init() screen = pygame.display.set_mode((1000, 525), pygame.SCALED) pygame.display.set_caption("Snake") return screen -def draw_level(S, M, difficulty, score, heigh, width): +def draw_level(S, M, difficulty, score, fps, heigh, width): WHITE = (255, 255, 255) # AIR GREEN = (0, 255, 0) # SNAKE BROWN = (255,248,220) # WALL RED = (255, 0, 0) # APPLE + # Reset screen + pygame.draw.rect(S, (0, 0, 0), pygame.Rect(0, 0, 1000, 525)) + + my_font = pygame.font.SysFont('Comic Sans MS', 18) + + # Add FPS counter + text_fps = my_font.render(str(fps) + ' fps', False, (255, 255, 255)) + S.blit(text_fps, (10, 0)) + + # Add Score + text_score = my_font.render('Score : '+ str(score), False, (255, 255, 255)) + S.blit(text_score, (400, 0)) + + # Add Diffucilty + text_difficulty = my_font.render('Difficulty : '+ str(difficulty), False, (255, 255, 255)) + S.blit(text_difficulty, (850, 0)) + Color = WHITE for j in range(heigh):