This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
49 lines (38 loc) · 1.47 KB
/
settings.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
41
42
43
44
45
46
47
48
49
class Settings:
"""A class to store all settings for Alien Invasion."""
def __init__(self, caption):
"""Initialize the game's static setings."""
# Screen settings:
self.screen_caption = caption
self.screen_width = 1000
self.screen_height = 650
self.bg_color = (204, 255, 153)
# Ship settings:
self.ship_limit = 2
# Bullet settings:
self.bullet_width = 3
self.bullet_height = 15
self.bullet_color = (0, 0, 0)
self.bullets_allowed = 3
# Alien settings:
self.fleet_drop_speed = 10
# How quickly the game speeds up.
self.speedup_scale = 1.1
# How quickly the alien point values increase.
self.score_scale = 1.5
self.initialize_dynamic_settings()
def initialize_dynamic_settings(self):
"""Initialize the game's dynamic settings."""
self.ship_speed = 1
self.bullet_speed = 1
self.alien_speed = 0.9
# fleet_direction of 1 represents right; -1 represents left.
self.fleet_direction = 1
# Scoring.
self.alien_points = 50
def increase_speed(self):
"""increase speed settings and alien point values."""
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)