-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScene.py
424 lines (385 loc) · 20.2 KB
/
Scene.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
# Mandatory imports for this game
import pygame
from Person import *
from Building import *
from Enemy import *
from CutScene import *
# Color values
BLACK = (0,0,0)
WHITE = (255,255,255)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)
#Font
basicFont = pygame.font.SysFont(None, 24)
largeFont = pygame.font.SysFont(None, 36)
#images
heartImg = pygame.image.load("heart.png")
FPS = 30
fpsClock = pygame.time.Clock()
'''
The scene is the second highest (as of now highest) clas of the game. In this class, the hero is dropped in
and the needed sprites around the hero are initialized. The hero would be in this scene and interact with sprites
that are within the same scene. When we leave a scene, we cross the entrance point and then we should return out and move
into the new scene.
'''
class Scene:
'''
Transition positions such that if we enter by surpassing the Y or X values, then we must move on to a different scene into
the level
'''
# Scenes are initialized with the main pygame surface, sprites in the scene and a background drop for the room
def __init__(self, mainSurface, spriteGroup ,hero, enemyList = None, background = None, transition_points = None, entranceTrigger = None):
self.entrancePointsX = []
self.entrancePointsY = []
self.talkingTo = None
self.level = None
self.spriteGroup = spriteGroup.copy()
self.hero = hero
self.background = background
self.mainSurface = mainSurface
if not enemyList:
self.enemies = []
else:
self.enemies = enemyList
self.transition_points = transition_points
self.pause = False
#dictionary of lists of transition points {1:[left_x, right_x, top_y, bottom_y]}
#where the key in the dictioary is which side the hero transitioned on:
#1 = top of screen, 2 = left of screen, 3 = bottom of screen, 4 = right of screen
self.sceneTrigger = entranceTrigger
def identifyGame(self,l):
self.level = l
# initialize the background and resize according to window size
def drawBackground(self):
if self.background:
bg = pygame.transform.scale(self.background, (self.mainSurface.get_width(), self.mainSurface.get_height()))
self.mainSurface.blit(bg, (0,0))
else:
self.mainSurface.fill(WHITE)
# set the entry points for this scene
def setEntryPoint(point):
entrancePoints.append(point)
def addSprite(self, newPerson, name):
if name not in self.spriteGroup:
self.spriteGroup[name] = newPerson
def addEnemy(self, enemy):
self.enemies.append(enemy)
def paused(self):
if self.pause:
#self.mainSurface.fill(WHITE)
pygame.draw.rect(self.mainSurface, BLACK, (100,100,400,300),0)
#Title
meterLabel = largeFont.render('Hero Meter', True, WHITE)
self.mainSurface.blit(meterLabel, (235,150))
#Athens's bar
pygame.draw.rect(self.mainSurface, BLUE, (230,200,(self.hero.athensPoints +10) * 10,25), 0)
pygame.draw.rect(self.mainSurface, BLUE, (230,200,200,25), 5)
athensLabel = basicFont.render('Athens', True, BLUE)
self.mainSurface.blit(athensLabel, (160,205))
#Sparta's bar
pygame.draw.rect(self.mainSurface, RED, (230,240,(self.hero.spartaPoints +10) * 10,25), 0)
pygame.draw.rect(self.mainSurface, RED, (230,240,200,25), 5)
spartaLabel = basicFont.render('Sparta', True, RED)
self.mainSurface.blit(spartaLabel, (160,245))
#Delphi's bar
pygame.draw.rect(self.mainSurface, GREEN, (230,280,(self.hero.delphiPoints +10) * 10,25), 0)
pygame.draw.rect(self.mainSurface, GREEN, (230,280,200,25), 5)
delphiLabel = basicFont.render('Delphi', True, GREEN)
self.mainSurface.blit(delphiLabel, (160,285))
def unpaused(self):
self.pause = False
print("pause no more")
def setTrigger(self, trigger):
self.sceneTrigger = trigger
# This is the function that runs the current scene
def run(self, hero_coords):
self.hero.setPosition(hero_coords)
#talk = False
talk = False
enemyChase = 0
while True:
if not self.pause:
self.drawBackground()
if self.enemies is not None:
enemyChase += 1
if enemyChase == 3:
for enemy in self.enemies:
enemy.chasePlayer(self.hero)
enemyChase = 0
self.mainSurface.blit(self.hero.image, self.hero.rect)
#health
if(self.hero.health == 3):
self.mainSurface.blit(heartImg,(535,0))
self.mainSurface.blit(heartImg,(555,0))
self.mainSurface.blit(heartImg,(575,0))
elif self.hero.health == 2:
self.mainSurface.blit(heartImg,(555,0))
self.mainSurface.blit(heartImg,(575,0))
elif self.hero.health == 1:
self.mainSurface.blit(heartImg,(575,0))
elif self.hero.health == 0:
return "Dead", None
talk, change = self.checkMovement(talk)
if change[0] > 0:
return change
self.drawAll()
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
elif event.type == KEYUP:
if event.key == pygame.K_p:
if not self.pause:
self.pause = True
print("pause is now True")
self.paused()
else:
self.unpaused()
if event.key == K_SPACE and talk and self.talkingTo:
if self.hero.direction == 1:
self.talkingTo.turn("down")
elif self.hero.direction == 2:
self.talkingTo.turn("left")
elif self.hero.direction == 3:
self.talkingTo.turn("up")
elif self.hero.direction == 4:
self.talkingTo.turn("right")
pygame.display.update()
self.drawBackground()
self.mainSurface.blit(self.hero.image, self.hero.rect)
self.drawAll()
trigger = self.talkingTo.getTextBox(self.mainSurface)
if trigger:
self.level.reaction(trigger)
trigger = None
self.hero.checkHero()
elif event.key == K_LSHIFT:
weapon = self.hero.getAction()
if weapon:
self.hitCollision(weapon)
pygame.display.update()
if self.sceneTrigger:
self.level.reaction(self.sceneTrigger)
self.sceneTrigger = None
fpsClock.tick(FPS)
def getReaction(self, reaction):
if reaction:
if isinstance(reaction, tuple):
self.hero.increaseAthena(reaction[0])
self.level.modifyScene(1,0)
# This is just a function to control movement of the hero in the scene
def checkMovement(self, t):
keys = pygame.key.get_pressed()
talkingTo = None
change = 0
talk = t
keys = pygame.key.get_pressed()
if keys[pygame.K_UP] :
self.hero.rect.y -= 5
self.hero.direction = 1
talk = False
if self.wallCollide() or self.walkCollision():
self.hero.rect.y += 5
self.hero.moveImage("up")
talkingTo = self.talkCollisions()
if talkingTo:
talk = True
self.hero.rect.y += 5
self.talkingTo = talkingTo
elif keys[pygame.K_DOWN]:
self.hero.rect.y += 5
self.hero.direction = 3
talk = False
if self.wallCollide() or self.walkCollision():
self.hero.rect.y -= 5
self.hero.moveImage("down")
talkingTo = self.talkCollisions()
if talkingTo:
talk = True
self.hero.rect.y -= 5
self.talkingTo = talkingTo
elif keys[pygame.K_RIGHT]:
self.hero.rect.x += 5
self.hero.direction = 2
talk = False
if self.wallCollide() or self.walkCollision():
self.hero.rect.x -= 5
self.hero.moveImage("right")
talkingTo = self.talkCollisions()
if talkingTo:
talk = True
self.hero.rect.x -= 5
self.talkingTo = talkingTo
elif keys[pygame.K_LEFT]:
self.hero.rect.x -= 5
self.hero.direction = 4
talk = False
if self.wallCollide() or self.walkCollision():
self.hero.rect.x += 5
self.hero.moveImage("left")
talkingTo = self.talkCollisions()
if talkingTo:
talk = True
self.hero.rect.x += 5
self.talkingTo = talkingTo
#print(self.hero.rect.bottom, self.hero.rect.x)
change = self.transistion()
return talk, change
def drawAll(self):
for i in self.spriteGroup:
self.spriteGroup[i].update()
self.mainSurface.blit(self.spriteGroup[i].image,self.spriteGroup[i].rect)
if self.enemies:
for enemy in self.enemies:
enemy.update()
self.mainSurface.blit(enemy.image,enemy.rect)
def transistion(self):
if self.transition_points == None:
if self.hero.rect.bottom > 550 and self.hero.rect.x > 290 and self.hero.rect.x < 310:
print("Transition Occurs")
return (1, (self.hero.rect.x, self.hero.rect.y))
return (0, None)
else:
for transition_point_key in self.transition_points:
transition_point_list = self.transition_points[transition_point_key]
#[left_x, right_x, top_y, bottom_y]
left_x = transition_point_list[0] - 5
right_x = transition_point_list[1]
top_y = transition_point_list[2] - 5
bottom_y = transition_point_list[3] + 5
if self.hero.rect.x >= left_x and self.hero.rect.x <= right_x and self.hero.rect.y >= top_y and self.hero.rect.y <= bottom_y:
#print("Transition Occurs", transition_point_key)
#print(self.hero.rect.x, self.hero.rect.y)
return (transition_point_key, (self.hero.rect.x, self.hero.rect.y))
return (0, None)
def hitCollision(self, weapon):
remove = []
if self.enemies:
for enemy in self.enemies:
if(pygame.sprite.collide_rect(weapon, enemy)):
dead = enemy.changeHealth(2)
enemy.pushBack(self.hero.direction)
if dead:
remove.append(enemy)
for e in remove:
self.enemies.remove(e)
def walkCollision(self):
if self.enemies:
for enemy in self.enemies:
if pygame.sprite.collide_rect(self.hero, enemy):
return True
return False
def talkCollisions(self):
for sprite in self.spriteGroup:
if pygame.sprite.collide_rect(self.hero, self.spriteGroup[sprite]):
return self.spriteGroup[sprite]
return None
def wallCollide(self):
return self.hero.rect.left < 0 or self.hero.rect.right > self.mainSurface.get_width() or self.hero.rect.top < 0 or self.hero.rect.bottom > self.mainSurface.get_height()
def remove(self,sprite):
del self.spriteGroup[sprite]
def getNextScene(current_scene, border, last_hero_coords):
#current_scene is the number of the current scene
#border = 1 if the hero crossed the top border, 2 for left, 3 for bottom, 4 for right
#returns number of next scene 1-12
if current_scene==1:
if border==1:
return (11, (last_hero_coords[0], 550))
elif border==2:
return (10, (565, last_hero_coords[1]))
elif border==3:
return "error in scene 1 transition"
elif border==4:
return (2, (35, last_hero_coords[1]))
elif current_scene==2:
if border==1:
return "error in scene 2 transition"
elif border==2:
return (1, (565, last_hero_coords[1]))
elif border==3:
return (5, (last_hero_coords[0], 50))
elif border==4:
return (3, (35, last_hero_coords[1]))
elif current_scene==3:
if border==1:
return "error in scene 3 transition"
elif border==2:
return (2, (565, last_hero_coords[1]))
elif border==3:
return (4, (last_hero_coords[0], 50))
elif border==4:
return "error in scene 3 transition"
elif current_scene==4:
if border==1:
return (3, (last_hero_coords[0], 550))
elif border==2:
return (5, (565, last_hero_coords[1]))
elif border==3:
return "error in scene 4 transition"
elif border==4:
return "error in scene 4 transition"
elif current_scene==5:
if border==1:
return (2, (last_hero_coords[0], 550))
elif border==2:
return (6, (565, last_hero_coords[1]))
elif border==3:
return "error in scene 5 transition"
elif border==4:
return (4, (35, last_hero_coords[1]))
elif current_scene==7:
if border==1:
return (10, (last_hero_coords[0], 550))
elif border==2:
return (8, (565, last_hero_coords[1]))
elif border==3:
return "error in scene 7 transition"
elif border==4:
return (6, (35, last_hero_coords[1]))
elif current_scene==8:
if border==1:
return (9, (last_hero_coords[0], 550))
elif border==2:
return "error in scene 8 transition"
elif border==3:
return "error in scene 8 transition"
elif border==4:
return (7, (35, last_hero_coords[1]))
elif current_scene==9:
if border==1:
return "error in scene 9 transition"
elif border==2:
return "error in scene 9 transition"
elif border==3:
return (8, (last_hero_coords[0], 50))
elif border==4:
return (10, (35, last_hero_coords[1]))
elif current_scene==10:
if border==1:
return "error in scene 10 transition"
elif border==2:
return (9, (565, last_hero_coords[1]))
elif border==3:
return (7, (last_hero_coords[0], 50))
elif border==4:
return (1, (35, last_hero_coords[1]))
elif current_scene==11:
if border==1:
return (12, (last_hero_coords[0], 550))
elif border==2:
return "error in scene 11 transition"
elif border==3:
return (1, (last_hero_coords[0], 50))
elif border==4:
return "error in scene 11 transition"
elif current_scene==12:
if border==1:
return "error in scene 12 transition"
elif border==2:
return "error in scene 12 transition"
elif border==3:
return (11, (last_hero_coords[0], 50))
elif border==4:
return "error in scene 12 transition"
return "error in scene transition"