-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.py
141 lines (98 loc) · 3.44 KB
/
script.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
import pygame
import time
from random import *
pygame.init()
black = (0, 0, 0)
white = (255, 255, 255)
surfaceWidth = 1200
surfaceHeight = 800
imageHeight = 150
imageWidth = 500
surface = pygame.display.set_mode((surfaceWidth, surfaceHeight))
pygame.display.set_caption('Helicopter')
clock = pygame.time.Clock()
img = pygame.image.load('heli.png')
def blocks(x_block, y_block, block_width, block_height, gap):
pygame.draw.rect(surface, white, [x_block, y_block, block_width, block_height])
pygame.draw.rect(surface, white, [x_block, y_block+block_height+gap, block_width, surfaceHeight])
def replay_or_quit():
for event in pygame.event.get([pygame.KEYDOWN, pygame.KEYUP, pygame.QUIT]):
if event.type == pygame.QUIT:
pygame.quit()
quit()
elif event.type == pygame.KEYDOWN:
continue
return event.key
return None
def makeTextObjs(text, font):
textSurface = font.render(text, True, white)
return textSurface, textSurface.get_rect()
def helicopter(x, y, image):
surface.blit(img, (x, y))
def msgSurface(text):
smallText = pygame.font.Font('freesansbold.ttf', 20)
largeText = pygame.font.Font('freesansbold.ttf', 150)
titleTextSurf, titleTextReact = makeTextObjs(text, largeText)
titleTextReact.center = surfaceWidth/2, surfaceHeight/2
surface.blit(titleTextSurf, titleTextReact)
typeTextSurf, typeTextReact = makeTextObjs('press any key to continue', smallText)
typeTextReact.center = surfaceWidth / 2, ((surfaceHeight / 2) + 100)
surface.blit(typeTextSurf, titleTextReact)
pygame.display.update()
time.sleep(1)
while replay_or_quit() == None:
clock.tick()
main()
def gameover():
msgSurface('Kaboom!')
def main():
x = 150
y = 150
y_move = 0
x_block = surfaceWidth
y_block = 0
block_width = 75
block_height = randint(0, (surfaceHeight / 2))
gap = imageHeight * 3
block_move = 3
game_over = False
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
game_over = True
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_UP:
y_move = -5
if event.type == pygame.KEYUP:
if event.key == pygame.K_UP:
y_move = 5
y += y_move
surface.fill(black)
helicopter(x, y, img)
blocks(x_block, y_block, block_width, block_height, gap)
x_block -= block_move
if y > surfaceHeight-185 or y < 0:
gameover()
if x_block < (-1*block_width):
x_block = surfaceWidth
block_height = randint(0, (surfaceHeight / 2))
if x + imageWidth > x_block:
if x < x_block + block_width:
print("possibly within the boundries of x upper")
if y < block_height:
print("y crossover Upper")
if x - imageWidth < block_width + x_block:
print("game over hit Upper")
gameover()
if x + imageWidth > x_block:
print("x crossover")
if y + imageHeight > block_height + gap:
print("y crossover lower")
if x < block_width + x_block:
print("game over touching lower")
gameover()
pygame.display.update()
clock.tick(90)
main()
pygame.quit()
quit()