206530229waixingren/settings.py

40 lines
1.3 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class Settings: # 所有设置的类
# 屏幕设置
def __init__(self):
self.screen_width = 1280
self.screen_height = 960
self.bg_color = (233, 233, 233)
# 飞船设置
self.ship_speed = 1.5
self.ship_limit = 3
# 子弹设置
self.bullet_speed = 1.5
self.bullet_width = 3
self.bullet_height = 15
self.bullet_color = (60, 60, 60)
self.bullets_allowed = 3
# 外星人设置
self.alien_speed = 1.0
self.fleet_drop_speed = 10
# fleet_direction为1表示向右移为-1表示向左移
self.fleet_direction = 1
# 加快游戏节奏的速度
self.speedup_scale = 1.1
# """初始化随游戏进行而变化的设置"""
def initialize_dynamic_settings(self):
self.ship_speed = 1.5
self.bullet_speed = 3.0
self.alien_speed = 1.0
# fleet_direction为1表示向右为-1表示向左
self.fleet_direction = 1
#计分
self.alien_points = 50
def increase_speed(self):
# """提高速度设置和外星人分数"""
self.ship_speed *= self.speedup_scale
self.bullet_speed *= self.speedup_scale
self.alien_speed *= self.speedup_scale
self.alien_points = int(self.alien_points * self.score_scale)
print(self.alien_points)