-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrick.py
137 lines (95 loc) · 3.83 KB
/
Brick.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import pygame as pg
from pygame.locals import *
from pygame.math import Vector2 as Pos
from pygame.rect import Rect
from pygame.color import Color
import random as r
from pygame.surface import Surface
from Bonus import Bonus
from Colors import Colors
from CommonResources import CommonResources
now = lambda : pg.time.get_ticks() / 1000
class Brick :
def __init__( self, rect: Rect, color: Color, health ) :
self.events = CommonResources.event_holder
self.colors = CommonResources.colors
self.assets = CommonResources.assets
self.window = CommonResources.window
self.rect = rect
self.color = color
self.bonus = None
self.health = health
self.edge_size = 0
self.font_time_interval = 5
self.font_time = 0
@property
def sound( self ) -> pg.mixer.Sound:
return r.choice(self.assets.hit_sounds)
@property
def ball( self ):
return CommonResources.game.ball
@property
def mfont( self ) :
target_color = Colors.WHITE
if sum(self.color) > 255 * 3 * 0.5 :
target_color = Colors.BLACK
return self.assets.font.render(f"{self.health}", False, self.color.lerp(target_color, 0.7))
def hit( self,gun=False ) :
self.health -= 1
self.font_time = now()
v = self.ball.volumes
if gun:
CommonResources.gun_brick_channel.stop()
CommonResources.gun_brick_channel.set_volume(v[0]*0.5, v[1]*0.5)
CommonResources.gun_brick_channel.play(r.choice(self.assets.shoot_hit_sounds))
return
CommonResources.bricks_channel.stop()
CommonResources.bricks_channel.set_volume(v[0],v[1])
CommonResources.bricks_channel.play(self.sound)
def set_bonus( self, chance_percent: int = None, bonus_name: str = None ) :
l = []
if chance_percent is not None :
l = [0] * (100 - chance_percent)
l += [1] * chance_percent
if chance_percent is None or r.choice(l) :
if bonus_name is None :
bonus_name = r.choice(Bonus.names_list)
self.bonus = Bonus(bonus_name, self.rect.center,
min([self.rect.width, self.rect.height]) / 4, Bonus.all_[bonus_name])
def render_font( self, surface: Surface ) :
if not now() > self.font_time + self.font_time_interval :
m_rect = self.rect.copy()
m_rect.width, m_rect.height = self.mfont.get_size()
m_rect.center = self.rect.center
surface.blit(self.mfont, m_rect)
def render_debug( self, surface: Surface ) :
m_rect = self.rect.copy()
m_rect.width, m_rect.height = self.mfont.get_size()
m_rect.center = self.rect.center
surface.blit(self.mfont, m_rect)
def render( self, surface: Surface ) :
rect = self.rect.copy()
rect.x -= 1
rect.y -= 1
rect.w += 1
rect.h += 1
edge = self.edge_size
pg.draw.rect(surface, self.color, rect, border_top_left_radius=edge,
border_top_right_radius=edge, border_bottom_left_radius=edge,
border_bottom_right_radius=edge)
pg.draw.rect(surface, self.color.lerp(Colors.WHITE, 0.5), rect, width=2,
border_top_left_radius=edge, border_top_right_radius=edge,
border_bottom_left_radius=edge, border_bottom_right_radius=edge
)
rect.x += 2
rect.y += 2
rect.w -= 4
rect.h -= 4
pg.draw.rect(surface, self.color.lerp(Colors.BLACK, 0.3), rect, width=2,
border_top_left_radius=edge, border_top_right_radius=edge,
border_bottom_left_radius=edge, border_bottom_right_radius=edge
)
if self.events.should_render_debug :
self.render_debug(surface)
else :
self.render_font(surface)