-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpood_invnet.py
459 lines (398 loc) · 17.3 KB
/
pood_invnet.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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
from random import choice
import pygame as pg
import maailm
from abi import *
from player import *
from player_lisad import *
from math import *
#pood
def pood():
global poes
poes = True
tere.play()
while poes:
for event in pg.event.get():
if event.type == pg.QUIT:
pg.quit()
quit()
aken.fill((42,45,67))
pg.draw.rect(aken, (148, 82, 74), (446,0,388,104))
pg.draw.rect(aken, (162, 126, 111), (450,0,380,100))
TextSurf, TextRect = text_objects("Mida teile?", mediumText)
TextRect.center = ((laius // 2), (50))
aken.blit(TextSurf, TextRect)
#Registreerime kus on kursor
mouse = pg.mouse.get_pos()
click = pg.mouse.get_pressed()
#Joogid ja ained
pg.draw.rect(aken, (148, 82, 74), (47,127,366,486))
pg.draw.rect(aken, (162, 126, 111), (50,130,360,480))
pg.draw.rect(aken, (148, 82, 74), (100,130,260,100))
TextSurf, TextRect = text_objects("Mmm... maitsev", menu_head2Text)
TextRect.center = (230, 180)
aken.blit(TextSurf, TextRect)
if (not maailm.ritaliin) and maailm.Tom.vel_debuff == 0:
nupp(aken, "Ritaliini! – 5₽", 130 , 250, 200, 70, (100,100,100), (15,113,115), ritaliin_ost)
if maailm.Tom.health < maailm.Tom.max_health:
nupp(aken, "Jõujooki! – 2₽", 130, 340, 200, 70, (100,100,100), (15,113,115), jõujook_ost)
nupp(aken, "Viineripirukas! – 20₽", 130, 430, 200, 70, (100, 100, 100), (15, 113, 115), viineripirukas_ost)
nupp(aken, "Monster! – 10₽", 130, 520, 200, 70, (100, 100, 100), (15, 113, 115), monster_ost)
#Relvade valik
pg.draw.rect(aken, (148, 82, 74), (457,127,366,486))
pg.draw.rect(aken, (162, 126, 111), (460,130,360,480))
pg.draw.rect(aken, (148, 82, 74), (510,130,260,100))
TextSurf, TextRect = text_objects("Põhh põhh...", menu_head2Text)
TextRect.center = (640, 180)
aken.blit(TextSurf, TextRect)
if not maailm.hernepüss.unlocked:
nupp(aken, "Hernepüssi! – 20₽", 540, 250, 200, 70, (100,100,100), (15,113,115), hernepüss_ost)
if not maailm.kartulikahur.unlocked:
nupp(aken, "kartul! – 20₽", 540 , 340, 200, 70, (100,100,100), (15,113,115), kartulikahur_ost)
if not maailm.scar.unlocked:
nupp(aken, "US and A! – 96₽", 540 , 430, 200, 70, (100,100,100), (15,113,115), scar_ost)
#Riiete valik
pg.draw.rect(aken, (148, 82, 74), (867,127,366,486))
pg.draw.rect(aken, (162, 126, 111), (870,130,360,480))
pg.draw.rect(aken, (148, 82, 74), (920,130,260,100))
TextSurf, TextRect = text_objects("Rõivad", menu_head2Text)
TextRect.center = (1050, 180)
aken.blit(TextSurf, TextRect)
if not maailm.kiiver.unlocked:
nupp(aken, "Näomask! – 20₽", 950 , 250, 200, 70, (100,100,100), (15,113,115), kiiver_ost)
if not maailm.kasukas.unlocked:
nupp(aken, "Kasukas! – 100₽", 950 , 340, 200, 70, (100,100,100), (15,113,115), kasukas_ost)
if not maailm.püksid.unlocked:
nupp(aken, "Viigipüksid! – 60₽", 950 , 430, 200, 70, (100,100,100), (15,113,115), püksid_ost)
if not maailm.sandaalid.unlocked:
nupp(aken, "Sandaalid! – 30₽", 950 , 520, 200, 70, (100,100,100), (15,113,115), sandaalid_ost)
#aken rahale ja raha
pg.draw.rect(aken, (148, 82, 74), (1061,0,158,54))
pg.draw.rect(aken, (162, 126, 111), (1065,0,150,50))
raha = veneText.render(str(maailm.Tom.raha)+" рубль", True, (255,215,0))
aken.blit(raha, (laius-200, 20))
#Ostud tehtud
nupp(aken, "Ostud tehtud!", 540, 630, 200, 70, (148, 82, 74), (168, 102, 94), pood_done)
#Joonistame kastid dataga
#relvad
if maailm.hernepüss.unlocked == False:
nupu_hover_txt(maailm.hernepüss, 540, 250, 200, 70, (200,200,200))
if maailm.kartulikahur.unlocked == False:
nupu_hover_txt(maailm.kartulikahur, 540 , 340, 200, 70, (21,244,238))
if maailm.scar.unlocked == False:
nupu_hover_txt(maailm.scar, 540 , 430, 200, 70, (21,244,238))
#riided
if maailm.kiiver.unlocked == False:
rõiva_hover_txt(maailm.kiiver,950 , 250, 200, 70, (200,200,200))
if maailm.kasukas.unlocked == False:
rõiva_hover_txt(maailm.kasukas,950 , 340, 200, 70, (200,200,200))
if maailm.püksid.unlocked == False:
rõiva_hover_txt(maailm.püksid,950 , 430, 200, 70, (200,200,200))
if maailm.sandaalid.unlocked == False:
rõiva_hover_txt(maailm.sandaalid,950 , 520, 200, 70, (200,200,200))
#söök
if maailm.Tom.health < maailm.Tom.max_health:
eat_hover_txt("Jõujook","Annab sulle", "ühe elupukti", 130, 340, 200, 70, (200,200,200))
eat_hover_txt("Viineri pirukas", "Kõtu täis", "nämm!", 130, 430, 200, 70, (200, 200, 200))
if (not maailm.ritaliin) and maailm.Tom.vel_debuff == 0:
eat_hover_txt("Ritalin","KIIRUS!!!", "JÕUD!!!", 130 , 250, 200, 70, (21,244,238))
eat_hover_txt("Monster", "Max-elud", "+5", 130, 520, 200, 70, (21, 244, 238))
pg.display.update()
def ling_equip():
if maailm.ling.unlocked:
maailm.Tom.relv = maailm.ling
def hernepüss_equip():
if maailm.hernepüss.unlocked:
maailm.Tom.relv = maailm.hernepüss
def kartulikahur_equip():
if maailm.kartulikahur.unlocked:
maailm.Tom.relv = maailm.kartulikahur
def railgun_equip():
if maailm.railgun.unlocked:
maailm.Tom.relv = maailm.railgun
def scar_equip():
if maailm.scar.unlocked:
maailm.Tom.relv = maailm.scar
def sau_equip():
if maailm.sau.unlocked:
maailm.Tom.relv = maailm.sau
def pood_done():
global poes
poes = False
headaega = pg.mixer.Sound(helidir+"/shop_l.mp3")
headaega.play()
def jõujook_ost():
if maailm.Tom.raha >= 2:
maailm.Tom.raha -= 2
if maailm.Tom.max_health - maailm.Tom.health >= 1:
maailm.Tom.health += 1
else:
maailm.Tom.health += maailm.Tom.max_health - maailm.Tom.health
ost.play()
def viineripirukas_ost():
if maailm.Tom.raha >= 20 and maailm.Tom.health < maailm.Tom.max_health:
maailm.Tom.raha -= 20
maailm.Tom.health = maailm.Tom.max_health
ost.play()
def monster_ost():
if maailm.Tom.raha >= 10:
maailm.Tom.raha -= 10
maailm.Tom.max_health += 5
ost.play()
def hernepüss_ost():
if maailm.Tom.raha >= 20:
maailm.hernepüss.unlocked = True
maailm.Tom.raha -= 20
ost.play()
def kartulikahur_ost():
if maailm.Tom.raha >= 20:
maailm.kartulikahur.unlocked = True
maailm.Tom.raha -= 20
ost.play()
def scar_ost():
if maailm.Tom.raha >= 96:
maailm.scar.unlocked = True
maailm.Tom.raha -= 96
ost.play()
def ritaliin_ost():
global vh
if maailm.Tom.raha >= 5:
maailm.ritaliin = True
maailm.Tom.vel += 7
maailm.Tom.initial_vh += 1
maailm.Tom.raha -= 5
ost.play()
def kiiver_ost():
if maailm.Tom.raha >= 20:
maailm.Tom.raha -= 20
maailm.kiiver.unlocked = True
ost.play()
def kasukas_ost():
if maailm.Tom.raha >= 100:
maailm.Tom.raha -= 100
maailm.kasukas.unlocked = True
ost.play()
def püksid_ost():
if maailm.Tom.raha >= 60:
maailm.Tom.raha -= 60
maailm.püksid.unlocked = True
ost.play()
def sandaalid_ost():
if maailm.Tom.raha >= 30:
maailm.Tom.raha -= 30
maailm.sandaalid.unlocked = True
ost.play()
#Seljakott
def seljakott():
global sk
sk = True
while sk:
for event in pg.event.get():
if event.type == pg.QUIT:
pg.quit()
quit()
aken.fill((42,45,67))
pg.draw.rect(aken, (148, 82, 74), (466,0,348,104))
pg.draw.rect(aken, (162, 126, 111), (470,0,340,100))
TextSurf, TextRect = text_objects("Seljakott", mediumText)
TextRect.center = ((laius // 2), (50))
aken.blit(TextSurf, TextRect)
#Riided ja relvad eraldi
#riided
pg.draw.rect(aken, (148, 82, 74), (47,127,406,486))
pg.draw.rect(aken, (162, 126, 111), (50,130,400,480))
pg.draw.rect(aken, (148, 82, 74), (150,130,200,100))
TextSurf, TextRect = text_objects("Rõivad", menu_headText)
TextRect.center = (250, 180)
aken.blit(TextSurf, TextRect)
##Riided nupud
if maailm.kiiver.unlocked:
if not maailm.kiiver.equipped:
nupp(aken, maailm.kiiver.nimi, 70, 250, 200, 70, (100,0,0), (200,0,0), kiiver_equip_fun)
aken.blit(pea, (325,250))
if maailm.kiiver.equipped:
nupp(aken, maailm.kiiver.nimi, 70, 250, 200, 70, (0,100,0), (0,200,0), kiiver_unequip_fun)
aken.blit(pea1, (325,250))
else:
aken.blit(pea, (325,250))
if maailm.kasukas.unlocked:
if not maailm.kasukas.equipped:
nupp(aken, maailm.kasukas.nimi, 70, 340, 200, 70, (100,0,0), (200,0,0), kasukas_equip_fun)
aken.blit(keha, (325,340))
if maailm.kasukas.equipped:
nupp(aken, maailm.kasukas.nimi, 70, 340, 200, 70, (0,100,0), (0,200,0), kasukas_unequip_fun)
aken.blit(keha1, (325,340))
else:
aken.blit(keha, (325,340))
if maailm.püksid.unlocked:
if not maailm.püksid.equipped:
nupp(aken, maailm.püksid.nimi, 70, 430, 200, 70, (100,0,0), (200,0,0), püksid_equip_fun)
aken.blit(jalad, (325,430))
if maailm.püksid.equipped:
nupp(aken, maailm.püksid.nimi, 70, 430, 200, 70, (0,100,0), (0,200,0), püksid_unequip_fun)
aken.blit(jalad1, (325,430))
else:
aken.blit(jalad, (325,430))
if maailm.sandaalid.unlocked:
if not maailm.sandaalid.equipped:
nupp(aken, maailm.sandaalid.nimi, 70, 520, 200, 70, (100,0,0), (200,0,0), sandaalid_equip_fun)
aken.blit(tossud, (325,520))
if maailm.sandaalid.equipped:
nupp(aken, maailm.sandaalid.nimi, 70, 520, 200, 70, (0,100,0), (0,200,0), sandaalid_unequip_fun)
aken.blit(tossud1, (325,520))
else:
aken.blit(tossud, (325,520))
#relvad
pg.draw.rect(aken, (148, 82, 74), (527,127,706,486))
pg.draw.rect(aken, (162, 126, 111), (530,130,700,480))
pg.draw.rect(aken, (148, 82, 74), (780,130,200,100))
TextSurf, TextRect = text_objects("Relvad", menu_headText)
TextRect.center = (880, 180)
aken.blit(TextSurf, TextRect)
##Relvad nupp
if maailm.ling.unlocked:
nupp(aken, "Ling", 555, 250, 200, 70, (100,100,100), (15,113,115), ling_equip)
if maailm.hernepüss.unlocked:
nupp(aken, "Hernepüss", 780, 250, 200, 70, (100,100,100), (15,113,115), hernepüss_equip)
if maailm.kartulikahur.unlocked:
nupp(aken, "Kartulikahur", 1005, 250, 200, 70, (100,100,100), (15,113,115), kartulikahur_equip)
if maailm.railgun.unlocked:
nupp(aken, "EMP gun", 1005, 430, 200, 70, (100,100,100), (15,113,115), railgun_equip)
if maailm.scar.unlocked:
nupp(aken, "LF SCAR", 555, 430, 200, 70, (100,100,100), (15,113,115), scar_equip)
if maailm.sau.unlocked:
nupp(aken, "Gandalfi tokk", 780, 430, 200, 70, (100,100,100), (15,113,115), sau_equip)
###joonistame kasti, et infot lugeda
#Relvad
if maailm.ling.unlocked == True:
nupu_hover_txt(maailm.ling, 555, 250, 200, 70, (200,200,200))
if maailm.hernepüss.unlocked == True:
nupu_hover_txt(maailm.hernepüss, 780, 250, 200, 70, (200,200,200))
if maailm.kartulikahur.unlocked == True:
nupu_hover_txt(maailm.kartulikahur, 1005, 250, 200, 70, (21,244,238))
if maailm.railgun.unlocked == True:
nupu_hover_txt(maailm.railgun, 1005, 430, 200, 70, (191,0,255))
if maailm.scar.unlocked == True:
nupu_hover_txt(maailm.scar, 555, 430, 200, 70, (191,0,255))
if maailm.sau.unlocked == True:
nupu_hover_txt(maailm.sau, 780, 430, 200, 70, (191,0,255))
#Riided
if maailm.kiiver.unlocked == True:
rõiva_hover_txt(maailm.kiiver, 70, 250, 200, 70, (200,200,200))
if maailm.kasukas.unlocked == True:
rõiva_hover_txt(maailm.kasukas, 70, 340, 200, 70, (200,200,200))
if maailm.püksid.unlocked == True:
rõiva_hover_txt(maailm.püksid, 70, 430, 200, 70, (200,200,200))
if maailm.sandaalid.unlocked == True:
rõiva_hover_txt(maailm.sandaalid, 70, 520, 200, 70, (200,200,200))
TextSurf, TextRect = text_objects("(Sul on käes "+str(maailm.Tom.relv.nimi)+")", smallText)
TextRect.center = (880, 570)
aken.blit(TextSurf, TextRect)
#Järtkan/tagasi nupp
nupp(aken, "Jätkan!", 590, 630, 100, 70, (148, 82, 74), (168, 102, 94), sk_done)
pg.display.update()
def sk_done():
global sk
sk = False
def kasukas_equip_fun():
maailm.kasukas.equip(maailm.Tom)
def kasukas_unequip_fun():
maailm.kasukas.unequip(maailm.Tom)
def kiiver_equip_fun():
maailm.kiiver.equip(maailm.Tom)
def kiiver_unequip_fun():
maailm.kiiver.unequip(maailm.Tom)
def püksid_equip_fun():
maailm.püksid.equip(maailm.Tom)
def püksid_unequip_fun():
maailm.püksid.unequip(maailm.Tom)
def sandaalid_equip_fun():
maailm.sandaalid.equip(maailm.Tom)
def sandaalid_unequip_fun():
maailm.sandaalid.unequip(maailm.Tom)
global setting
global seaded
def seaded():
global setting
setting = True
while setting:
for event in pg.event.get():
if event.type == pg.QUIT:
pg.quit()
quit()
aken.fill((42, 45, 67))
pg.draw.rect(aken, (148, 82, 74), (466, 0, 348, 104))
pg.draw.rect(aken, (162, 126, 111), (470, 0, 340, 100))
TextSurf, TextRect = text_objects("Seaded", mediumText)
TextRect.center = ((laius // 2), (50))
aken.blit(TextSurf, TextRect)
nupp(aken, "<", laius/2 - 275, 402, 50, 50, (100,100,100), (15,113,115), heli_vaiksem)
nupp(aken, ">", laius/2 + 225, 402, 50, 50, (100, 100, 100), (15, 113, 115), heli_kõvem)
pg.draw.rect(aken, (50, 50, 50), (laius/2 - 200, 400, 400, 46))
pg.draw.rect(aken, (100, 100, 100), (laius/2 - 200, 400, 400 * pg.mixer.music.get_volume(), 46))
TextSurf, TextRect = text_objects(str(int(round(pg.mixer.music.get_volume(), 1)*100)) + "%", smallText)
TextRect.center = ((laius // 2), 423)
aken.blit(TextSurf, TextRect)
TextSurf, TextRect = text_objects("Muusika", smallText)
TextRect.center = ((laius // 2), 380)
aken.blit(TextSurf, TextRect)
nupp(aken, "muusika kinni", laius/2 - 225, 500, 200, 50, (100, 100, 100), (15, 113, 115), mute)
#nupp(aken, "kurt", laius/2 - 225, 300, 200, 50, (100, 100, 100), (15, 113, 115), mute_fx)
nupp(aken, "Vaheta laul", laius / 2 + 25, 500, 200, 50, (100, 100, 100), (15, 113, 115), vaheta_laul)
nupp(aken, "Tagasi", laius/2 - 100, 600, 200, 50, (100, 100, 100), (15, 113, 115), settings_done)
print(pg.mixer.music.get_volume())
pg.display.update()
def heli_vaiksem():
heli = pg.mixer.music.get_volume()
pg.mixer.music.set_volume((round(heli, 1) - 0.1))
if heli <= 0.09:
pg.mixer.music.set_volume(0)
def heli_kõvem():
heli = pg.mixer.music.get_volume()
pg.mixer.music.set_volume((round(heli, 1) + 0.1))
if heli >= 0.95:
pg.mixer.music.set_volume(1)
def mute():
pg.mixer.music.set_volume(0)
#def helifx_vaiksem():
# heli = pg.mixer.music.get_volume()
# pg.mixer.music.set_volume((round(heli, 1) - 0.1))
# if heli <= 0.09:
# pg.mixer.music.set_volume(0)
#def helifx_kõvem():
# for sound in sounds: #mai viitsi seda listi teha
# vol = sound.get_volume()
# sound.set_volume(min(vol*mult,1.0))
#
# heli = pg.mixer.music.get_volume()
# pg.mixer.music.set_volume((round(heli, 1) + 0.1))
# if heli >= 0.95:
# pg.mixer.music.set_volume(1)
#helisees = True
#def mute_fx():
# global helisees
# if helisees:
# pg.mixer.pause()
# helisees = False
# else:
# pg.mixer.unpause()
# helisees = True
global laul
laul = 0
def vaheta_laul():
global laul
if laul == 0:
pg.mixer.music.load(helidir + "/game.mp3")
elif laul == 1:
pg.mixer.music.load(helidir + "/game2.mp3")
elif laul == 2:
pg.mixer.music.load(helidir + "/game3.mp3")
else:
pg.mixer.music.load(helidir + "/game4.mp3")
pg.mixer.music.play()
if laul == 3:
laul = 0
else:
laul += 1
def settings_done():
global setting
setting = False