-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
51 lines (32 loc) · 1.18 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
50
51
class Settings():
def __init__(self):
#Screen Settings
self.screen_width=1200
self.screen_heigth=800
self.bg_color=(0,1,4)
#Ship Settings
self.hero_limit=1
#Rocket Settings
self.bullet_width=5
self.bullet_height=80
self.bullet_color= 220,50,50
self.bullets_allowed = 3
#setting up the DeathStar on screen
self.death_star_location_x=self.screen_width-100
self.death_star_location_y=100
self.fleet_drop_speed=10
self.score_scale = 1.5
self.speedup_scale = 1.2
self.star_speed=1
self.initialize_dynamic_settings()
def initialize_dynamic_settings(self):
self.hero_speed_factor = 1
self.bullet_speed_factor = 3
self.alien_speed_factor = 1
self.fleet_direction = 1
self.tie_points = 50
def increase_speed(self):
self.hero_speed_factor *= self.speedup_scale
self.bullet_speed_factor *= self.speedup_scale
self.alien_speed_factor *= self.speedup_scale
self.tie_points = int(self.tie_points * self.score_scale)