-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
223 lines (185 loc) · 7.07 KB
/
main.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import pygame
import os
import random
LARGURA_TELA = 500
ALTURA_TELA = 800
IMAGEM_CANO = pygame.transform.scale2x(pygame.image.load(os.path.join('imagens', 'pipe.png')))
IMAGEM_CHAO = pygame.transform.scale2x(pygame.image.load(os.path.join('imagens', 'base.png')))
IMAGEM_FUNDO = pygame.transform.scale2x(pygame.image.load(os.path.join('imagens', 'bg.png')))
IMAGENS_PASSARO = [
pygame.transform.scale2x(pygame.image.load(os.path.join('imagens', 'bird1.png'))),
pygame.transform.scale2x(pygame.image.load(os.path.join('imagens', 'bird2.png'))),
pygame.transform.scale2x(pygame.image.load(os.path.join('imagens', 'bird3.png')))
]
pygame.font.init()
FONTE_PONTO = pygame.font.SysFont('Verdana', 50)
class Passaro:
IMGS = IMAGENS_PASSARO
# animações
ROTACAO_MAXIMA = 25
VELOCIDADE_ROTACAO = 20
TEMPO_ANIMACAO = 5
def __init__(self, x, y):
self.x = x
self.y = y
self.angulo = 0
self.velocidade = 0
self.altura = self.y
self.tempo = 0
self.contagem_imagem = 0
self.imagem = self.IMGS[0]
def pular(self):
self.velocidade = -10.5
self.tempo = 0
self.altura = self.y
def mover(self):
# calcular o deslocamento
self.tempo += 1
# S = So + Vot + at²/2
deslocamento = 1.5 * (self.tempo**2) + self.velocidade * self.tempo
# restigir a velocidade
if deslocamento > 16:
deslocamento = 16
elif deslocamento < 0:
deslocamento -= 2
self.y += deslocamento
# angulo do passaro
if deslocamento < 0 or self.y < (self.altura + 50):
if self.angulo < self.ROTACAO_MAXIMA:
self.angulo = self.ROTACAO_MAXIMA
else:
if self.angulo > -90:
self.angulo -= self.VELOCIDADE_ROTACAO
def desenhar(self, tela):
# qual imagem vai usar
self.contagem_imagem += 1
if self.contagem_imagem < self.TEMPO_ANIMACAO:
self.imagem = self.IMGS[0]
elif self.contagem_imagem < self.TEMPO_ANIMACAO*2:
self.imagem = self.IMGS[1]
elif self.contagem_imagem < self.TEMPO_ANIMACAO*3:
self.imagem = self.IMGS[2]
elif self.contagem_imagem < self.TEMPO_ANIMACAO*4:
self.imagem = self.IMGS[1]
elif self.contagem_imagem >= self.TEMPO_ANIMACAO*4 + 1:
self.imagem = self.IMGS[0]
self.contagem_imagem = 0
# se o passaro estiver caindo, asa parada
if self.angulo <= -80:
self.imagem = self.IMGS[1]
self.contagem_imagem = self.TEMPO_ANIMACAO*2
# desenhar imagem
imagem_rotacionada = pygame.transform.rotate(self.imagem, self.angulo)
pos_centro_img = self.imagem.get_rect(topleft=(self.x, self.y)).center
retangulo = imagem_rotacionada.get_rect(center=pos_centro_img)
tela.blit(imagem_rotacionada, retangulo.topleft)
def get_mask(self):
return pygame.mask.from_surface(self.imagem)
class Cano:
DISTANCIA = 200
VELOCIDADE = 5
def __init__(self, x):
self.x = x
self.altura = 0
self.pos_topo = 0
self.pos_base = 0
self.cano_topo = pygame.transform.flip(IMAGEM_CANO, False, True)
self.cano_base = IMAGEM_CANO
self.passou = False
self.definir_altura()
def definir_altura(self):
self.altura = random.randrange(50, 450)
self.pos_topo = self.altura - self.cano_topo.get_height()
self.pos_base = self.altura + self.DISTANCIA
def mover(self):
self.x -= self.VELOCIDADE
def desenhar(self, tela):
tela.blit(self.cano_topo, (self.x, self.pos_topo))
tela.blit(self.cano_base, (self.x, self.pos_base))
def colidir(self, passaro):
passaro_mask = passaro.get_mask()
topo_mask = pygame.mask.from_surface(self.cano_topo)
base_mask = pygame.mask.from_surface(self.cano_base)
distancia_topo = (self.x - passaro.x, self.pos_topo - round(passaro.y))
distancia_base = (self.x - passaro.x, self.pos_base - round(passaro.y))
topo_ponto = passaro_mask.overlap(topo_mask, distancia_topo)
base_ponto = passaro_mask.overlap(base_mask, distancia_base)
if base_ponto or topo_ponto:
return True
else:
return False
class Chao:
VELOCIDADE = 5
LARGURA = IMAGEM_CHAO.get_width()
IMAGEM = IMAGEM_CHAO
def __init__(self, y):
self.y = y
self.x0 = 0
self.x1 = self.LARGURA
def mover(self):
self.x0 -= self.VELOCIDADE
self.x1 -= self.VELOCIDADE
if self.x0 + self.LARGURA < 0:
self.x0 = self.x1 + self.LARGURA
if self.x1 + self.LARGURA < 0:
self.x1 = self.x0 + self.LARGURA
def desenhar(self, tela):
tela.blit(self.IMAGEM, (self.x0, self.y))
tela.blit(self.IMAGEM, (self.x1, self.y))
def desenhar_tela(tela, passaros, canos, chao, pontos):
tela.blit(IMAGEM_FUNDO, (0, 0))
for passaro in passaros:
passaro.desenhar(tela)
for cano in canos:
cano.desenhar(tela)
texto = FONTE_PONTO.render(f"Pontuação: {pontos}", 1, (255, 255, 255))
tela.blit(texto, (LARGURA_TELA - 10 - texto.get_width(), 10))
chao.desenhar(tela)
pygame.display.update()
def main():
passaros = [Passaro(230, 350)]
chao = Chao(730)
canos = [Cano(700)]
tela = pygame.display.set_mode((LARGURA_TELA, ALTURA_TELA))
pontos = 0
relogio = pygame.time.Clock()
rodando = True
while rodando:
relogio.tick(30)
# interação com o usuário
for evento in pygame.event.get():
if evento.type == pygame.QUIT:
rodando = False
pygame.quit()
quit()
if evento.type == pygame.KEYDOWN:
if evento.key == pygame.K_SPACE:
for passaro in passaros:
passaro.pular()
# mover
for passaro in passaros:
passaro.mover()
chao.mover()
adicionar_cano = False
remover_cano = []
for cano in canos:
for i, passaro in enumerate(passaros):
if cano.colidir(passaro):
passaros.pop(i)
if not cano.passou and passaro.x > cano.x:
cano.passou = True
adicionar_cano = True
cano.mover()
if cano.x + cano.cano_base.get_width() < 0:
remover_cano.append(cano)
if adicionar_cano:
pontos += 1
canos.append(Cano(600))
for cano in remover_cano:
canos.remove(cano)
for i, passaro in enumerate(passaros):
if (passaro.y + passaro.imagem.get_height()) > chao.y:
passaros.pop(i)
desenhar_tela(tela, passaros, canos, chao, pontos)
if __name__ == '__main__':
main()