-
Notifications
You must be signed in to change notification settings - Fork 13
/
race_game.py
478 lines (357 loc) · 13.4 KB
/
race_game.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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
########################################################################
################### author = "Ritheesh Baradwaj" #######
################### project name = "COVID Race" #######
################### credits = "Ritheesh Baradwaj" #######
################### license = "Apache License 2.0" #######
################### version = "1.0.0" #######
################### maintainer = "Ritheesh Baradwaj" #######
################### email = "[email protected]" #######
########################################################################
import random
import time
# import required packages
import pygame
# Initialize
pygame.init()
# Global Variables for the game
FPS = 60
SCREENWIDTH = 800
SCREENHEIGHT = 600
display_width = 800
display_height = 600
pause = True
black = (0, 0, 0)
white = (255, 255, 255)
red = (200, 0, 0)
green = (0, 200, 0)
bright_red = (255, 0, 0)
bright_green = (0, 255, 0)
block_color = (53, 115, 255)
player_width = 68
# set the screen size
gameDisplay = pygame.display.set_mode((SCREENWIDTH, SCREENHEIGHT))
pygame.display.set_caption("COVID Race")
clock = pygame.time.Clock()
# required audio files
crash_sound = pygame.mixer.Sound("gallery/audio/crash.wav")
power_up = pygame.mixer.Sound("gallery/audio/Powerup.wav")
police_hit = pygame.mixer.Sound("gallery/audio/hit.wav")
dead = pygame.mixer.Sound("gallery/audio/dead.wav")
point = pygame.mixer.Sound("gallery/audio/point.wav")
# required sprites
BACKGROUND = pygame.image.load("gallery/sprites/background.jpg").convert()
DC = pygame.image.load("gallery/sprites/Developers_Cosmos.png").convert_alpha()
virus = pygame.image.load("gallery/sprites/virus.png").convert_alpha()
health = pygame.image.load("gallery/sprites/health.png").convert_alpha()
blank = pygame.image.load("gallery/sprites/blank.jpg").convert_alpha()
police = pygame.image.load("gallery/sprites/police.png").convert_alpha()
PLAYER = pygame.image.load("gallery/sprites/user.png").convert_alpha()
gameIcon = pygame.image.load("gallery/sprites/user.png")
pygame.display.set_icon(gameIcon)
# shows PLAYER strength value
def things_dodged(count):
font = pygame.font.SysFont("Britannic Bold", 40)
text = font.render(" STRENGTH " + str(count), True, bright_red)
gameDisplay.blit(text, (12, 5))
# displays any objects if we need
def things(thingx, thingy, thingw, thingh, color):
pass
# virus = pygame.image.load('virus.png').convert()
# pygame.draw.rect(gameDisplay, color, [thingx, thingy, thingw, thingh])
# set the PLAYER position
def player(x, y):
gameDisplay.blit(PLAYER, (x, y))
# display any text objects
def text_objects(text, font, color=black):
textSurface = font.render(text, True, color)
return textSurface, textSurface.get_rect()
# def message_display(text):
# largeText = pygame.font.SysFont("comicsansms",115)
# TextSurf, TextRect = text_objects(text,largeText)
# TextRect.center = ((display_width/2,(display_height/2)))
# gameDisplay.blit(TextSurf,TextRect)
# pygame.display.update()
# time.sleep(2)
# game_loop()
# action when PLAYER touch virus or corners
def crash():
####################################
pygame.mixer.Sound.play(crash_sound)
pygame.mixer.music.stop()
####################################
time.sleep(2)
####################################
pygame.mixer.music.load("gallery/audio/dead.wav")
pygame.mixer.music.play(-1)
####################################
largeText = pygame.font.SysFont("Cooper Black", 88)
TextSurf, TextRect = text_objects("YOU ARE DEAD!!", largeText, black)
TextRect.center = ((display_width / 2), (display_height / 2))
gameDisplay.blit(TextSurf, TextRect)
while True:
for event in pygame.event.get():
# print(event)
if event.type == pygame.QUIT:
pygame.quit()
quit()
# gameDisplay.fill(white)
button("Play Again", 150, 450, 100, 50, green, bright_green, game_loop)
button("Quit", 550, 450, 100, 50, red, bright_red, quitgame)
pygame.display.update()
clock.tick(15)
# required buttons
def button(msg, x, y, w, h, ic, ac, action=None):
mouse = pygame.mouse.get_pos()
click = pygame.mouse.get_pressed()
# print(click)
if x + w > mouse[0] > x and y + h > mouse[1] > y:
pygame.draw.rect(gameDisplay, ac, (x, y, w, h))
if click[0] == 1 and action != None:
action()
else:
pygame.draw.rect(gameDisplay, ic, (x, y, w, h))
smallText = pygame.font.SysFont("comicsansms", 20)
textSurf, textRect = text_objects(msg, smallText)
textRect.center = ((x + (w / 2)), (y + (h / 2)))
gameDisplay.blit(textSurf, textRect)
# close the game
def quitgame():
pygame.quit()
quit()
# unpause the game
def unpause():
global pause
#################
pygame.mixer.music.unpause()
#################
pause = False
# pause the game
def paused():
############
pygame.mixer.music.pause()
#############
largeText = pygame.font.SysFont("comicsansms", 115)
TextSurf, TextRect = text_objects("Paused", largeText)
TextRect.center = ((display_width / 2), (display_height / 2))
gameDisplay.blit(TextSurf, TextRect)
while pause:
for event in pygame.event.get():
# print(event)
if event.type == pygame.QUIT:
quitgame()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_SPACE:
unpause()
# gameDisplay.fill(white)
button("Continue", 150, 450, 100, 50, green, bright_green, unpause)
button("Quit", 550, 450, 100, 50, red, bright_red, quitgame)
pygame.display.update()
clock.tick(15)
# audio when PLAYER touches health
def power():
pygame.mixer.Sound.play(power_up)
pygame.mixer.music.stop()
# audio when PLAYER touches police
def police_fire():
pygame.mixer.Sound.play(police_hit)
pygame.mixer.music.stop()
# game intro section
def game_intro():
intro = True
while intro:
for event in pygame.event.get():
# print(event)
if event.type == pygame.QUIT:
quitgame()
gameDisplay.fill(black)
gameDisplay.blit(DC, (100, 90))
largeText = pygame.font.SysFont("Cooper Black", 95)
TextSurf, TextRect = text_objects("COVID Race", largeText, white)
TextRect.center = ((display_width / 2), (display_height / 2))
gameDisplay.blit(TextSurf, TextRect)
button("GO!", 150, 450, 100, 50, green, bright_green, game_loop)
button("Quit", 550, 450, 100, 50, red, bright_red, quitgame)
pygame.draw.rect(gameDisplay, red, (550, 450, 100, 50))
pygame.display.update()
clock.tick(15)
# GAME SECTION
def game_loop():
global pause
##############################
pygame.mixer.Sound.play(point)
pygame.mixer.music.stop()
##############################
time.sleep(1)
############
pygame.mixer.music.load("gallery/audio/jazz.wav")
pygame.mixer.music.play(-1)
############
x = display_width * 0.45
y = display_height * 0.8
x_change = 0
# virus object details
thing_startx = random.randrange(0, display_width)
thing_starty = -600
thing_speed = 7
thing_width = 90
thing_height = 75
thingCount = 1
# health object details
health_startx = random.randrange(0, display_width)
health_starty = -600
health_width = 52
health_height = 74
health_speed = 3
# police object details
police_startx = random.randrange(0, display_width)
police_starty = -600
police_width = 52
police_height = 74
police_speed = 3
# score
dodged = 0
# required variables
gameExit = False
bgY = 0
player_safe = False
health_checkpoint = 0
health_status = False
police_status = False
# entire game loop
while not gameExit:
for event in pygame.event.get():
if event.type == pygame.QUIT:
quitgame()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_LEFT:
x_change = -5
if event.key == pygame.K_RIGHT:
x_change = 5
if event.key == pygame.K_SPACE:
pause = True
paused()
if event.type == pygame.KEYUP:
if event.key == pygame.K_LEFT or event.key == pygame.K_RIGHT:
x_change = 0
x += x_change
if (
bgY < BACKGROUND.get_width() * -1
): # If our bg is at the -width then reset its position
bgY = 0
gameDisplay.blit(BACKGROUND, (0, bgY))
bgY -= 2 # Move both background images back
# things(thingx, thingy, thingw, thingh, color)
things(thing_startx, thing_starty, thing_width, thing_height, block_color)
gameDisplay.blit(virus, (thing_startx, thing_starty))
thing_starty += thing_speed
# display health object only when user scores a minimum of 7
if dodged % 7 == 0 and dodged != 0 and health_checkpoint == 0:
health_status = True
if health_status:
gameDisplay.blit(health, (health_startx, health_starty))
health_starty += health_speed
# display police object only when user scores a minimum of 12
if dodged % 12 == 0 and dodged != 0:
police_status = True
if police_status:
gameDisplay.blit(police, (police_startx, police_starty))
# police_starty = -600
police_starty += police_speed
# set player poistion
player(x, y)
things_dodged(dodged)
# when user touches the corner
if x > display_width - player_width or x < 0:
crash()
# when virus goes out of the screen
if thing_starty > display_height:
thing_starty = 0 - thing_height
thing_startx = random.randrange(0, display_width)
dodged += 1
thing_speed += 0.5
# thing_width += (dodged * 0.6)
# when health object goes out of the screen
if health_starty > display_height:
health_starty = 0 - health_height
health_startx = random.randrange(0, display_width)
health_speed -= 0.01
if health_speed < 0:
health_speed = 0
# when police object goes out of the screen
if police_starty > display_height:
police_starty = -600
police_startx = random.randrange(0, display_width)
# when PLAYER touch virus
if y < thing_starty + thing_height: # player crossed virus w.r.t to Y-axis
# print('y crossover')
# player crossed virus w.r.t X-axis
if (
x > thing_startx
and x < thing_startx + thing_width
and player_safe == False
or x + player_width > thing_startx
and x + player_width < thing_startx + thing_width
and player_safe == False
):
# print('x crossover')
crash()
# when PLAYER touches police
if y < police_starty + police_height: # player crossed police w.r.t Y-axis
# player crossed police w.r.t X-axis
if (
x > police_startx
and x < police_startx + police_width
and police_status
or x + player_width > police_startx
and x + player_width < police_startx + police_width
and police_status
):
# print('police_x crossover')
police_fire()
############
pygame.mixer.music.load("gallery/audio/jazz.wav")
pygame.mixer.music.play(-1)
############
dodged = int(dodged / 1.5)
police_status = False
# police_starty = -600
# when PLAYER touches health
if y < health_starty + health_height: # player crossed health w.r.t Y-axis
# print('health_y crossover')
# player crossed health w.r.t X-axis
if (
x > health_startx
and x < health_startx + health_width
and health_status
or x + player_width > health_startx
and x + player_width < health_startx + health_width
and health_status
):
# print('health_x crossover')
power()
############
pygame.mixer.music.load("gallery/audio/jazz.wav")
pygame.mixer.music.play(-1)
############
player_safe = True
health_checkpoint = dodged
health_status = False
# when user is in safe mode for next 4 virus objects
if dodged - health_checkpoint > 4:
player_safe = False
health_checkpoint = 0
health_speed = 3
# when user comes to unsafe point
if health_checkpoint > 0:
gameDisplay.blit(blank, (x, y))
pygame.display.flip()
time.sleep(0.01)
gameDisplay.blit(PLAYER, (x, y))
pygame.display.flip()
# update the screen
pygame.display.update()
clock.tick(FPS)
# Let's start our COVID Race Game
game_intro()
game_loop()
quitgame()