-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathdisplay.py
40 lines (32 loc) · 1.35 KB
/
display.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import pygame
from settings import WIDTH, HEIGHT, CHAR_SIZE
pygame.font.init()
class Display:
def __init__(self, screen):
self.screen = screen
self.font = pygame.font.SysFont("ubuntumono", CHAR_SIZE)
self.game_over_font = pygame.font.SysFont("dejavusansmono", 48)
self.text_color = pygame.Color("crimson")
def show_life(self, life):
img_path = "assets/life/life.png"
life_image = pygame.image.load(img_path)
life_image = pygame.transform.scale(life_image, (CHAR_SIZE, CHAR_SIZE))
life_x = CHAR_SIZE // 2
if life != 0:
for life in range(life):
self.screen.blit(life_image, (life_x, HEIGHT + (CHAR_SIZE // 2)))
life_x += CHAR_SIZE
def show_level(self, level):
level_x = WIDTH // 3
level = self.font.render(f'Level {level}', True, self.text_color)
self.screen.blit(level, (level_x, (HEIGHT + (CHAR_SIZE // 2))))
def show_score(self, score):
score_x = WIDTH // 3
score = self.font.render(f'{score}', True, self.text_color)
self.screen.blit(score, (score_x * 2, (HEIGHT + (CHAR_SIZE // 2))))
# add game over message
def game_over(self):
message = self.game_over_font.render(f'GAME OVER!!', True, pygame.Color("chartreuse"))
instruction = self.font.render(f'Press "R" to Restart', True, pygame.Color("aqua"))
self.screen.blit(message, ((WIDTH // 4), (HEIGHT // 3)))
self.screen.blit(instruction, ((WIDTH // 4), (HEIGHT // 2)))