-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscoreboard.py
More file actions
33 lines (26 loc) · 1.13 KB
/
scoreboard.py
File metadata and controls
33 lines (26 loc) · 1.13 KB
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
import pygame.font
class Scoreboard:
'''A class to report scoring information'''
def __init__(self, ai_game):
'''Initialize scorekeeping attributes'''
self.screen = ai_game.screen
self.screen_rect = self.screen.get_rect()
self.settings = ai_game.settings
self.stats = ai_game.stats
# Font settiings for scoring inforamation
self.text_color = (255, 255, 255)
self.font = pygame.font.SysFont(None, 48)
# Prepare the initial score image
self.prep_score()
def prep_score(self):
'''Turn the score into a rendered image'''
rounded_score = round(self.stats.score, -1)
score_str = f"{rounded_score:,}"
self.score_image = self.font.render(score_str, True, self.text_color, self.settings.bg_color)
# Display the score at the top right of the screen
self.score_rect = self.score_image.get_rect()
self.score_rect.right = self.screen_rect.right - 20
self.score_rect.top = 20
def show_score(self):
'''Draw score to the screen'''
self.screen.blit(self.score_image, self.score_rect)