-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.py
454 lines (381 loc) · 20.3 KB
/
classes.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
import os
import pygame
from const import *
import random
random.seed()
def find_ennemy_at(ennemies, pos):
ennemy_at = []
for ennemy in ennemies:
if ennemy.pos == pos :
ennemy_at.append(ennemy)
return ennemy_at
def find_ennemy_at_with_type(ennemies, ennemy_type, pos):
ennemy_at_with = []
for ennemy in ennemies:
if (ennemy.pos == pos) and (ennemy_type == ennemy.type):
ennemy_at_with.append(ennemy)
return ennemy_at_with
class Back:
def __init__(self, image_name, coord, screen, surfaces, mode):
self.image_name = image_name
self.image_path = os.path.join(mode, "background", image_name)
self.surface = pygame.image.load(self.image_path).convert_alpha()
self.screen = screen
self.rect = self.surface.get_rect()
self.coord = coord
self.rect = self.rect.move(coord[0], coord[1])
surfaces.append(self)
def maj_mode(self, mode):
self.image_path = os.path.join(mode, "background", self.image_name)
self.surface = pygame.image.load(self.image_path).convert_alpha()
class Personnage():
def __init__(self, coord, niveau, image_name, life, ennemies, mode):
self.surface = pygame.image.load(os.path.join(mode, "case", image_name)).convert_alpha()
self.struct = niveau.structure
self.struct_size = niveau.size
self.pos = coord
self.life = life
self.ennemies = ennemies
self.image_name = image_name
self.mode = mode
def maj_mode(self, mode):
self.mode = mode
self.image_path = os.path.join(mode, "case", self.image_name)
self.surface = pygame.image.load(self.image_path).convert_alpha()
class Hero(Personnage):
def __init__(self, coord, niveau, image_name, life, ennemies, mode):
super().__init__(coord, niveau, image_name, life, ennemies, mode)
self.level = 1
def maj_image(self, dir):
self.image_name = 'hero-'+ dir + '.png'
self.image_path = os.path.join(self.mode, 'case', self.image_name)
self.surface = pygame.image.load(self.image_path).convert_alpha()
def move(self, dir):
if (dir == DOWN) and (self.pos[0] < self.struct_size-1):
# si rien n'est tangible sur la case où on veut aller
if [chose for chose in self.struct[self.pos[0]+1][self.pos[1]] if chose in TANGIBLE] == []:
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(HERO,"")
self.pos[0] += 1
self.struct[self.pos[0]][self.pos[1]] += HERO
# (si y a un mur on le casse un peu)
elif MUR in self.struct[self.pos[0]+1][self.pos[1]]:
self.struct[self.pos[0] + 1][self.pos[1]] = self.struct[self.pos[0]+1][self.pos[1]].replace(MUR,MUR_CASSE)
# si extoplasme dans le mur
ennemies_at = find_ennemy_at_with_type(self.ennemies, GHOST, [self.pos[0] + 1, self.pos[1]]) +\
find_ennemy_at_with_type(self.ennemies, STUPID_GHOST, [self.pos[0]+1,self.pos[1]])
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
elif MUR_CASSE in self.struct[self.pos[0]+1][self.pos[1]]:
self.struct[self.pos[0] + 1][self.pos[1]] = self.struct[self.pos[0]+1][self.pos[1]].replace(MUR_CASSE,"")
# si extoplasme dans le mur
ennemies_at = find_ennemy_at_with_type(self.ennemies, GHOST, [self.pos[0] + 1, self.pos[1]]) +\
find_ennemy_at_with_type(self.ennemies, STUPID_GHOST, [self.pos[0]+1, self.pos[1]])
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
# si il y a un ennemy
else:
ennemies_at = [ennemy for ennemy in self.ennemies if ennemy.pos == [self.pos[0] + 1, self.pos[1]]]
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
elif (dir == UP) and (self.pos[0] > 0):
if [chose for chose in self.struct[self.pos[0]-1][self.pos[1]] if chose in TANGIBLE] == []:
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(HERO, "")
self.pos[0] -= 1
self.struct[self.pos[0]][self.pos[1]] += HERO
elif MUR in self.struct[self.pos[0]-1][self.pos[1]]:
self.struct[self.pos[0] - 1][self.pos[1]] = self.struct[self.pos[0]-1][self.pos[1]].replace(MUR,MUR_CASSE)
# si extoplasme dans le mur
ennemies_at = find_ennemy_at_with_type(self.ennemies, GHOST, [self.pos[0] - 1, self.pos[1]]) +\
find_ennemy_at_with_type(self.ennemies, STUPID_GHOST, [self.pos[0]-1,self.pos[1]])
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
elif MUR_CASSE in self.struct[self.pos[0]-1][self.pos[1]]:
self.struct[self.pos[0] - 1][self.pos[1]] = self.struct[self.pos[0]-1][self.pos[1]].replace(MUR_CASSE,"")
# si extoplasme dans le mur
ennemies_at = find_ennemy_at_with_type(self.ennemies, GHOST, [self.pos[0] - 1, self.pos[1]]) +\
find_ennemy_at_with_type(self.ennemies, STUPID_GHOST, [self.pos[0]-1,self.pos[1]])
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
else:
# si il y a un ennemy
ennemies_at = [ennemy for ennemy in self.ennemies if ennemy.pos == [self.pos[0] - 1, self.pos[1]]]
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
elif (dir == RIGHT) and (self.pos[1] < self.struct_size-1):
if [chose for chose in self.struct[self.pos[0]][self.pos[1]+1] if chose in TANGIBLE] == []:
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(HERO, "")
self.pos[1] += 1
self.struct[self.pos[0]][self.pos[1]] += HERO
elif MUR in self.struct[self.pos[0]][self.pos[1]+1]:
self.struct[self.pos[0]][self.pos[1] + 1] = self.struct[self.pos[0]][self.pos[1]+1].replace(MUR,MUR_CASSE)
# si extoplasme dans le mur
ennemies_at = find_ennemy_at_with_type(self.ennemies, GHOST, [self.pos[0], self.pos[1]+1]) +\
find_ennemy_at_with_type(self.ennemies, STUPID_GHOST, [self.pos[0], self.pos[1]+1])
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
elif MUR_CASSE in self.struct[self.pos[0]][self.pos[1]+1]:
self.struct[self.pos[0]][self.pos[1] + 1] = self.struct[self.pos[0]][self.pos[1]+1].replace(MUR_CASSE,"")
# si extoplasme dans le mur
ennemies_at = find_ennemy_at_with_type(self.ennemies, GHOST, [self.pos[0], self.pos[1]+1]) +\
find_ennemy_at_with_type(self.ennemies, STUPID_GHOST, [self.pos[0], self.pos[1]+1])
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
else:
# si il y a un ennemy
ennemies_at = [ennemy for ennemy in self.ennemies if ennemy.pos == [self.pos[0], self.pos[1]+1]]
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
elif (dir == LEFT) and (self.pos[1] > 0):
if [chose for chose in self.struct[self.pos[0]][self.pos[1]-1] if chose in TANGIBLE] == []:
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(HERO,"")
self.pos[1] -= 1
self.struct[self.pos[0]][self.pos[1]] += HERO
elif MUR in self.struct[self.pos[0]][self.pos[1]-1]:
self.struct[self.pos[0]][self.pos[1] - 1] = self.struct[self.pos[0]][self.pos[1]-1].replace(MUR,MUR_CASSE)
# si extoplasme dans le mur
ennemies_at = find_ennemy_at_with_type(self.ennemies, GHOST, [self.pos[0], self.pos[1]-1]) +\
find_ennemy_at_with_type(self.ennemies, STUPID_GHOST, [self.pos[0], self.pos[1]-1])
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
elif MUR_CASSE in self.struct[self.pos[0]][self.pos[1]-1]:
self.struct[self.pos[0]][self.pos[1] - 1] = self.struct[self.pos[0]][self.pos[1]-1].replace(MUR_CASSE,"")
# si extoplasme dans le mur
ennemies_at = find_ennemy_at_with_type(self.ennemies, GHOST, [self.pos[0], self.pos[1] - 1]) + \
find_ennemy_at_with_type(self.ennemies, STUPID_GHOST, [self.pos[0], self.pos[1] - 1])
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
else:
# si il y a un ennemy
ennemies_at = [ennemy for ennemy in self.ennemies if ennemy.pos == [self.pos[0], self.pos[1]-1]]
if ennemies_at != []:
for ennemy in ennemies_at:
ennemy.update_life(-1)
self.maj_image(dir)
if SORTIE in self.struct[self.pos[0]][self.pos[1]]:
self.level += 1
print("hero level:",self.level)
def update_life(self, diff):
self.life += diff
if self.life > 5:
self.life = 5
if self.life < 0:
self.life = 0
print("VIE :", self.life)
class StupidGhost(Personnage):
def __init__(self, coord, niveau, image_name, life, ennemies, mode):
super().__init__(coord, niveau, image_name, life, ennemies, mode)
self.type = STUPID_GHOST
self.ennemies.append(self)
def move(self, hero):
mvt_possible = [(0, 1), (0, -1), (1, 0), (-1, 0)]
if self.pos[0] == 0:
mvt_possible.remove((-1, 0))
elif self.pos[0] == self.struct_size - 1:
mvt_possible.remove((1, 0))
if self.pos[1] == 0:
mvt_possible.remove((0, -1))
elif self.pos[1] == self.struct_size - 1:
mvt_possible.remove((0, 1))
if mvt_possible:
mvt = mvt_possible[random.randrange(len(mvt_possible))]
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(STUPID_GHOST, "")
if hero.pos == [self.pos[0]+mvt[0], self.pos[1]+mvt[1]]:
hero.update_life(-1)
# on maj si y a vraiment rien de tangible en face
elif [chose for chose in self.struct[self.pos[0] + mvt[0]][self.pos[1] + mvt[1]] if chose in TANGIBLE_FOR_GHOST] == []:
self.pos[0] += mvt[0]
self.pos[1] += mvt[1]
self.struct[self.pos[0]][self.pos[1]] += STUPID_GHOST
def update_life(self, diff):
self.life += diff
if self.life <= 0:
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(STUPID_GHOST, "")
self.ennemies.remove(self)
class Ghost(Personnage):
def __init__(self, coord, niveau, image_name, life, ennemies, mode):
super().__init__(coord, niveau, image_name, life, ennemies, mode)
self.type = GHOST
self.ennemies.append(self)
def move(self, hero):
mvt = [0,0]
if self.pos[0] < hero.pos[0]:
mvt = [1, 0]
elif self.pos[0] > hero.pos[0]:
mvt = [-1, 0]
elif self.pos[1] < hero.pos[1]:
mvt = [0, 1]
elif self.pos[1] > hero.pos[1]:
mvt = [0, -1]
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(GHOST, "")
if hero.pos == [self.pos[0]+mvt[0], self.pos[1]+mvt[1]]:
hero.update_life(-1)
# on maj si y a vraiment rien de tangible en face
elif [chose for chose in self.struct[self.pos[0]+mvt[0]][self.pos[1]+mvt[1]] if chose in TANGIBLE_FOR_GHOST] == []:
self.pos[0] += mvt[0]
self.pos[1] += mvt[1]
self.struct[self.pos[0]][self.pos[1]] += GHOST
def update_life(self, diff):
self.life += diff
if self.life <= 0:
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(self.type, "")
self.ennemies.remove(self)
class Orc(Personnage):
def __init__(self, coord, niveau, image_name, life, ennemies, mode):
super().__init__(coord, niveau, image_name, life, ennemies, mode)
self.type = ORC
self.ennemies.append(self)
def move(self, hero):
if (abs(hero.pos[0]-self.pos[0]) <= 1) and (abs(hero.pos[1]-self.pos[1]) <= 1):
mvt_possible = [(hero.pos[0]-self.pos[0], hero.pos[1]-self.pos[1])]
else:
mvt_possible = [(i,j) for i in range(-1,2) for j in range(-1,2)]
mvt_possible.remove((0,0))
mvt_possible_copy = [m for m in mvt_possible]
tangible_possible = [t for t in TANGIBLE if t != HERO]
for mvt in mvt_possible_copy:
if (self.pos[0]+mvt[0] > self.struct_size-1) or (self.pos[0]+mvt[0] < 0) or (self.pos[1]+mvt[1] < 0) or \
(self.pos[1] + mvt[1] > self.struct_size - 1):
mvt_possible.remove(mvt)
elif [chose for chose in self.struct[self.pos[0]+mvt[0]][self.pos[1]+mvt[1]] if chose in tangible_possible] != []:
mvt_possible.remove(mvt)
# print(mvt_possible)
if mvt_possible:
mvt = mvt_possible[random.randrange(len(mvt_possible))]
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(ORC, "")
if hero.pos == [self.pos[0]+mvt[0], self.pos[1]+mvt[1]]:
hero.update_life(-1)
# on maj si y a vraiment rien de tangible en face
elif [chose for chose in self.struct[self.pos[0] + mvt[0]][self.pos[1] + mvt[1]] if chose in TANGIBLE] == []:
self.pos[0] += mvt[0]
self.pos[1] += mvt[1]
self.struct[self.pos[0]][self.pos[1]] += ORC
def update_life(self, diff):
self.life += diff
if self.life <= 0:
self.struct[self.pos[0]][self.pos[1]] = self.struct[self.pos[0]][self.pos[1]].replace(self.type, "")
self.ennemies.remove(self)
class Niveau:
"""Classe permettant de créer un niveau"""
def __init__(self, ratio_murs, size, direction_in, nb_out, nb_stupid_ghost, nb_ghost, nb_orc):
self.size = size
self.ratio_murs = ratio_murs
self.direction_in = direction_in
self.coord_sorties = []
# choix de la coord de départ
random_depart = random.randrange(1,size-1)
if direction_in == UP:
self.coord_depart = [0, random_depart]
elif direction_in == DOWN:
self.coord_depart = [size-1, random_depart]
elif direction_in == RIGHT:
self.coord_depart = [random_depart, size - 1]
elif direction_in == LEFT:
self.coord_depart = [random_depart, 0]
self.position_busy = [self.coord_depart]
self.set_out(nb_out)
self.generer()
self.set_orc(nb_orc)
self.set_stupid_ghost(nb_stupid_ghost)
self.set_ghost(nb_ghost)
def set_stupid_ghost(self, nb):
for i in range(nb):
coord = self.coord_depart
while coord in self.position_busy:
coord = [random.randrange(self.size), random.randrange(self.size)]
self.position_busy.append(coord)
self.structure[coord[0]][coord[1]] += STUPID_GHOST
def set_ghost(self, nb):
for i in range(nb):
coord = self.coord_depart
while coord in self.position_busy:
coord = [random.randrange(self.size), random.randrange(self.size)]
self.position_busy.append(coord)
self.structure[coord[0]][coord[1]] += GHOST
def set_orc(self, nb):
for i in range(nb):
coord = self.coord_depart
while coord in self.position_busy or (self.structure[coord[0]][coord[1]] == MUR):
coord = [random.randrange(self.size), random.randrange(self.size)]
self.position_busy.append(coord)
self.structure[coord[0]][coord[1]] += ORC
def set_out(self, nb_out):
"""
ajoute nb_out sorties, (1 ou 2)
"""
if nb_out > 0:
random_out1 = random.randrange(1, self.size - 1)
if self.direction_in == UP:
self.coord_sorties.append([self.size - 1, random_out1])
if self.direction_in == DOWN:
self.coord_sorties.append([0, random_out1])
if self.direction_in == RIGHT:
self.coord_sorties.append([random_out1, 0])
if self.direction_in == LEFT:
self.coord_sorties.append([random_out1, self.size - 1])
if nb_out > 1:
random_out2 = random.randrange(1, self.size - 1)
if self.direction_in == RIGHT:
self.coord_sorties.append([self.size - 1, random_out2])
if self.direction_in == LEFT:
self.coord_sorties.append([0, random_out2])
if self.direction_in == DOWN:
self.coord_sorties.append([random_out2, 0])
if self.direction_in == UP:
self.coord_sorties.append([random_out2, self.size - 1])
# print(self.coord_sorties)
def generer(self):
structure_niveau = [["" for i in range(self.size)] for j in range(self.size)]
for i_line in range(self.size):
for i_cell in range(self.size):
if random.randrange(100) <= self.ratio_murs:
structure_niveau[i_line][i_cell] = MUR
if [i_line, i_cell] == self.coord_depart:
structure_niveau[i_line][i_cell] = DEPART + HERO
if [i_line, i_cell] in self.coord_sorties:
structure_niveau[i_line][i_cell] = SORTIE
self.structure = structure_niveau
def afficher(self, fenetre, hero, ennemies, mode):
"""Méthode permettant d'afficher le niveau en fonction
de la liste de structure renvoyée par generer()"""
mur = pygame.image.load(os.path.join(mode, "case", "mur.png")).convert_alpha()
mur_casse = pygame.image.load(os.path.join(mode, "case", "mur_casse.png")).convert_alpha()
depart = pygame.image.load(os.path.join(mode, "case", "depart.png")).convert_alpha()
sortie = pygame.image.load(os.path.join(mode, "case", "sortie.png")).convert_alpha()
# On parcourt la liste du niveau
for i_line, line in enumerate(self.structure):
# On parcourt les listes de lignes
for i_cell, cell in enumerate(line):
x = i_cell * CELL_SIZE[0] + DEP_CASE[0]
y = i_line * CELL_SIZE[1] + DEP_CASE[1]
if MUR in cell: # M = Mur
fenetre.blit(mur, (x, y))
if MUR_CASSE in cell: # m = Mur cassé
fenetre.blit(mur_casse, (x, y))
if DEPART in cell: # D = Départ
fenetre.blit(depart, (x, y))
if SORTIE in cell: # S = Sortie
fenetre.blit(sortie, (x, y))
if HERO in cell: # p = perso
fenetre.blit(hero.surface, (x, y))
if STUPID_GHOST in cell:
for ennemy in find_ennemy_at_with_type(ennemies, STUPID_GHOST, [i_line, i_cell]):
fenetre.blit(ennemy.surface, (x, y))
if GHOST in cell:
for ennemy in find_ennemy_at_with_type(ennemies, GHOST, [i_line, i_cell]):
fenetre.blit(ennemy.surface, (x, y))
if ORC in cell:
for ennemy in find_ennemy_at_with_type(ennemies, ORC, [i_line, i_cell]):
fenetre.blit(ennemy.surface, (x, y))
def __str__(self):
return("\n".join([str(ligne) for ligne in self.structure]))