代码拉取完成,页面将自动刷新
import pygame.font
from pygame.sprite import Group
from ship import Ship
class Scoreboard():
""" A class to report scoring information. """
def __init__(self,ai_settings, screen, stats):
""" Initialize scorekeeping attribute. """
self.screen = screen
self.screen_rect = screen.get_rect()
self.ai_settings = ai_settings
self.stats = stats
# Font settings for scoring information.
self.text_color = (30,30,30)
self.font = pygame.font.SysFont(None, 48)
# Prepare the initial score image.
self.prep_score()
self.prep_high_score()
self.prep_level()
self.prep_ships()
def prep_score(self):
""" Ture the score into a rendered image. """
# To set the score nearest 10,1000,10000 format
rounded_score = int(round(self.stats.score,-1))
# A comma is to print the number at 10,000,0000 format
score_str = "{:,}".format(rounded_score)
self.score_image = self.font.render(score_str, True, self.text_color,
self.ai_settings.bg_color)
# Display the scoreboard 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 prep_high_score(self):
""" Turn the score into a rendered image. """
# To set the score nearest 10,1000,10000 format
rounded_score = int(round(self.stats.high_score,-1))
# A comma is to print the number at 10,000,0000 format
score_str = "{:,}".format(rounded_score)
self.high_score_image = self.font.render(
score_str, True, self.text_color,
self.ai_settings.bg_color)
# Display the scoreboard at the top right of the screen.
self.high_score_rect = self.score_image.get_rect()
self.high_score_rect.centerx = self.screen_rect.centerx
self.high_score_rect.top = 20
def prep_level(self):
""" Turn the score into a rendered image. """
self.level_image = self.font.render(
str(self.stats.level), True,
self.text_color,
self.ai_settings.bg_color
)
# Display the scoreboard at the top right of the screen.
self.level_rect = self.level_image.get_rect()
self.level_rect.right = self.screen_rect.right -20
self.level_rect.top = self.score_rect.bottom + 10
def prep_ships(self):
""" Show how many ships are left. """
self.ships = Group()
for ship_number in range(self.stats.ships_left):
ship = Ship(self.screen, self.ai_settings,)
ship.rect.x = 10 + ship_number*ship.rect.width
ship.rect.y = 10
self.ships.add(ship)
def show_score(self):
""" Draw score to the screen. """
self.screen.blit(self.score_image, self.score_rect)
self.screen.blit(self.high_score_image, self.high_score_rect)
self.screen.blit(self.level_image, self.level_rect)
# To show the ship number left
self.ships.draw(self.screen)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。