-
Notifications
You must be signed in to change notification settings - Fork 0
/
Making my Money (Beta2).py
310 lines (276 loc) · 12.1 KB
/
Making my Money (Beta2).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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
import pygame
from random import *
pygame.init() #inicializar pygame
clock = pygame.time # velocidade dos eventos
# CRIAR UMA JANELA -----------------------------------------------------------------------------------------------------
window= pygame.display.set_mode((1000,650)) #criar a janela com pixels de altura e comprimento iguais a imagem de fundo
pygame.display.set_caption("Snake") #dar um nome a janela
#SUONI -----------------------------------------------------------------------------------------------------------------
sottofondo = pygame.mixer.music.load("sottofondo.wav")
pygame.mixer.music.play(-1)
suonomorte = pygame.mixer.Sound("morte.wav")
prendimoneta = pygame.mixer.Sound("coin.wav")
gameover = pygame.mixer.Sound("videogame death.wav")
# GRAFICI --------------------------------------------------------------------------------------------------------------
perso = pygame.image.load("io vivo.jpg")
persomorto = pygame.image.load("io morto.jpg")
cattivo = pygame.image.load("enemy.jpg")
hp = pygame.image.load("hp.jpg")
#soldi = [,pygame.image.load("pepita.jpg"),pygame.image.load("diamante.jpg")]
moneta = pygame.image.load("moneta.jpg")
#PROTAGONISTA ----------------------------------------------------------------------------------------------------------
class protagonista (object):
def __init__ (self):
self.x = 465
self.y = 300
self.vel = 12
self.punti = 0
self.vita = 5
self.hitbox = (self.x, self.y, 64, 64) # criar uma caixa que envolve o personagem
def movimento (self,asse,direzione) :
if asse:
if direzione == 1 :
self.x += self.vel
else:
self.x -= self.vel
else :
if direzione == 1:
self.y -= self.vel
else:
self.y += self.vel
def hit (self):
suonomorte.play()
window.blit(persomorto, (self.x, self.y))
self.x = 465
self.y = 300
self.vita -= 1
fonte = pygame.font.SysFont("killer", 60)
text = fonte.render("You Died!!!", 1, (255, 0, 0))
window.blit(text, (450, 300))
pygame.display.update()
i = 0
while i < 100:
pygame.time.delay(10)
if i == 50 and self.vita == 0:
gameover.play()
i += 1
for event in pygame.event.get():
if event.type == pygame.QUIT:
i = 301
pygame.quit()
if self.vita == 0 :
window.fill((0, 0, 0))
text2 = fonte.render("Game Over!!!", 1, (255, 0, 0))
window.blit(text2, (390, 300))
pygame.display.update()
while i < 200:
pygame.time.delay(10)
i += 1
for event in pygame.event.get():
if event.type == pygame.QUIT:
i = 301
pygame.quit()
quit()
def vincere (self):
self.punti += 5
def vitaplus (self):
self.vita = self.vita + 1
def draw (self):
window.blit(perso, (self.x, self.y))
tipolet = pygame.font.SysFont("comicsans", 30, True)
text = tipolet.render("Vite :", 1, (0, 255, 255))
window.blit(text, (300, 0))
for i in range(self.vita):
pygame.draw.rect(window, (0,255,255),(380+25*i, 5,20, 6))
self.hitbox = (self.x, self.y, 64, 64) # atualizar a posicao da caixa
#pygame.draw.rect(window, (255, 0, 0), self.hitbox, 2) # desenhar a caixa
#ANTAGONISTA -----------------------------------------------------------------------------------------------------------
class antagonista (object):
def __init__ (self,x,y,direzione):
self.x = x
self.y = y
self.x0 = x
self.y0 = y
self.direzione= direzione
self.vel = 10
self.cambio = 0
self.max_x = 0
self.max_y = 0
self.hitbox = (self.x, self.y, 64, 64)
def movimento (self) :
deci= randint(1,50)
if self.cambio == 55 :
self.cambio = 0
deci = 1
elif deci == 1:
self.cambio = 0
else:
self.cambio += 1
if deci == 1:
self.direzione= randint(1,4)
if self.direzione == 1:
if self.x + self.vel <= 950:
self.x += self.vel
else :
self.direzione = randint(2,4)
elif self.direzione == 2:
if self.x - self.vel >= 0:
self.x -= self.vel
else :
self.direzione = randint (1,4)
elif self.direzione == 3:
if self.y + self.vel <= 586 :
self.y += self.vel
else:
self.direzione = randint(1,4)
elif self.direzione == 4:
if self.y - self.vel >= 0:
self.y -= self.vel
else:
self.direzione = randint(1,3)
def hit (self):
self.x = self.x0
self.y = self.y0
def draw (self):
window.blit(cattivo, (self.x, self.y))
self.hitbox = (self.x, self.y, 64, 64)
#pygame.draw.rect(window, (255, 0, 0), self.hitbox, 2)
#PREZIOSI --------------------------------------------------------------------------------------------------------------
class preziosi (object):
def __init__ (self,valore,lista):
self.x = randint(0,957)
self.y = randint (0,607)
self.valore = valore
self.disegnare = False
self.lista = lista
#self.probabilita = probabilita
self.tempov = 0
self.tempom = 0
self.visivel = True
self.hitbox = (self.x, self.y, 32, 32) # atualizar a posicao da caixa
def movimento (self) :
if self.tempov == 100 :
if self.tempom == 100 :
self.x = randint(0, 957)
self.y = randint(0, 607)
self.tempov = 0
else :
self.tempom +=4
else :
self.tempov += 2
def hit (self):
prendimoneta.play()
self.x = randint(0,975)-100
self.x = randint(0, 607)-100
self.visivel = False
def draw (self) :
window.blit(moneta, (self.x, self.y))
self.hitbox = (self.x, self.y, 32, 32) # atualizar a posicao da caixa
#pygame.draw.circle(window, (255, 0, 0), (self.x+17, self.y+15), 16,2)
#HP UP -----------------------------------------------------------------------------------------------------------------
class HP_UP (object):
def __init__(self,probabilita,lifetime):
self.x= 2000
self.y = 2000
self.tempo = 5
self.lifetime = lifetime
self.hitbox = (self.x, self.y, 32, 32) # atualizar a posicao da caixa
self.visivel = False
self.probabilita = probabilita
def movimento (self):
if self.visivel:
self.x = randint(0, 975)
self.y = randint(0, 607)
self.visivel= False
def hit (self):
self.x = 2000
self.y= 2000
self.visivel = False
def draw (self):
window.blit(hp, (self.x, self.y))
self.hitbox = (self.x, self.y, 32, 38) # atualizar a posicao da caixa
pygame.draw.circle(window, (255, 0, 0), (self.x+17, self.y+15), 16,2)
#ATTUALIZAZIONE DEL GIOCO ----------------------------------------------------------------------------------------------
def refresh ():
window.fill((0, 0, 0)) # retirar o retangulo da posicao anterior preenchendo esta parte pelo fundo
io.draw()
if hp2.lifetime >= 0: #a vida so aparece durante um certo periudo de vida
hp2.draw()
hp2.lifetime -= 1
else:
hp2.hit()
hp2.lifetime = 130
for nemico in nemici:
nemico.draw()
if soldo.visivel:
soldo.draw()
else:
soldo.visivel = True
tipoleteras = pygame.font.SysFont("comicsans", 30, True)
texto0 = tipoleteras.render("Pontos : %d" %io.punti, 1, (0, 255, 255))
window.blit(texto0, (0, 0))
pygame.display.update()
#PERSONAGGI E ITEM -----------------------------------------------------------------------------------------------------
io = protagonista()
nem1= antagonista(0,0,1)
nem2= antagonista(930,580,2)
nem3= antagonista(0,580,3)
nem4= antagonista(930,0,4)
nem5= antagonista(465,584,randint(1,4))
nemici =[nem1,nem2,nem3,nem4, nem5]
soldo = preziosi(5,0)
hp2= HP_UP(100,130)
#pepita = preziosi(10,1,50)
#diamante = preziosi(25,2,70)
#ricc= [soldo, pepita, diamante]
#EVENTI DEL GIOCO ------------------------------------------------------------------------------------------------------
run = True
while run :
clock.delay(30)
# MORTE DEL PERSONAGGIO
for nem in nemici :
if io.hitbox[1] < nem.hitbox[1] + nem.hitbox[3] and io.hitbox[1] + io.hitbox[3] > nem.hitbox[1]: # verificar que a personagem esta dentro da hitbox no eixo y
if io.hitbox[0] + io.hitbox[2] > nem.hitbox[0] and io.hitbox[0] < nem.hitbox[0] + nem.hitbox[2]: # verificar que a personagem esta dentro da hitbox no eixo x
io.hit() # executa as consequencias do perssonagem ser atingido
nem.hit()
# VINCERE PUNTI --------------------------------------------------------------------------------------------------------
if io.hitbox[1] < soldo.hitbox[1] + soldo.hitbox[3] and io.hitbox[1] + io.hitbox[3] > soldo.hitbox[1]: # verificar que a personagem esta dentro da hitbox no eixo y
if io.hitbox[0] + io.hitbox[2] > soldo.hitbox[0] and io.hitbox[0] < soldo.hitbox[0] + soldo.hitbox[2]: # verificar que a personagem esta dentro da hitbox no eixo x
soldo.hit()
io.vincere() # executa as consequencias do perssonagem atingir o dinheiro
refresh() #para apanhar apenas uma moeda
#INTERROMPERE IL GIOCO -------------------------------------------------------------------------------------------------
for event in pygame.event.get():
if event.type == pygame.QUIT: # parar o jogo se for pressionado o bortao sair
run = False
#APPARIZIONE VITE EXTRA ------------------------------------------------------------------------------------------------
if io.vita <= 2 and hp2.probabilita == randint(0,hp2.probabilita) :
if hp2.tempo == 0 :
hp2.visivel = True
hp2.movimento()
hp2.tempo = 5
else :
hp2.tempo -= 1
#PRENDERE VITE EXTRA ---------------------------------------------------------------------------------------------------
if io.hitbox[1] < hp2.hitbox[1] + hp2.hitbox[3] and io.hitbox[1] + io.hitbox[3] > hp2.hitbox[1]: # verificar que a personagem esta dentro da hitbox no eixo y
if io.hitbox[0] + io.hitbox[2] > hp2.hitbox[0] and io.hitbox[0] < hp2.hitbox[0] + hp2.hitbox[2]: # verificar que a personagem esta dentro da hitbox no eixo x
hp2.hit()
io.vitaplus() # executa as consequencias do perssonagem atingir o dinheiro
refresh() # atualizar para apanhar apenas uma vida
#MOVIMENTO PERSONAGGIO -------------------------------------------------------------------------------------------------
keys = pygame.key.get_pressed() # criar uma lista onde serao colocados os comandos
if keys[pygame.K_LEFT] and io.x > io.vel: # o pesrsonagem move-se naquela direcao MAS SO SE NAO SAIRA DA TELA AO FAZER ISSO
io.movimento(True,-1)
if keys[pygame.K_RIGHT] and io.x < 930: # o pesrsonagem move-se naquela direcao MAS SO SE NAO SAIRA DA TELA AO FAZER ISSO
io.movimento(True, 1)
if keys[pygame.K_DOWN] and io.y+io.vel < 590: # o pesrsonagem move-se naquela direcao MAS SO SE NAO SAIRA DA TELA AO FAZER ISSO
io.movimento(False,-1)
if keys[pygame.K_UP] and io.y > io.vel: # o pesrsonagem move-se naquela direcao MAS SO SE NAO SAIRA DA TELA AO FAZER ISSO
io.movimento(False, 1)
#MOVIMENTO NEMICI ------------------------------------------------------------------------------------------------------
for nemico in nemici :
nemico.movimento()
#APPARIZIONE PREZIOSI ---------------------------------------------------------------------------------------------------
soldo.movimento()
refresh()
pygame.quit() #terminar o pygame