-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcube_game.py
320 lines (283 loc) · 9.38 KB
/
cube_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
import sys
import pygame
import colour
import random
sizeOfWindow = [2000, 1500]
pygame.init()
win = pygame.display.set_mode(sizeOfWindow)
countOfEnemy = 20
randomSpead = True
randomColor = True
infinity = True
backgroundColor = (0, 0, 0)
enemiesList = []
running = True
score = 0
player = None
wave = 1
defaultStepWave = 20
stepWave = defaultStepWave
defaultLastWaveScore = 1
lastWaveScore = defaultLastWaveScore
gameOver = False
generateEnemy = True
playAgainR = None
quitR = None
iForWave = 0
startingTime = False
endFlagStartingTime = False
class ManagementGame:
@staticmethod
def init():
global playAgainR
global quitR
global player
player = Rect(100, 100, 1000, 1300, "white", False, False, False, False, 8, 0, False, False)
for num in range(countOfEnemy + 1):
Rect
playAgainR = Rect(300, 200, 1450, 1000, "white", False, False, False, False, 0, 5, False, False)
quitR = Rect(300, 200, 250, 1000, "white", False, False, False, False, 0, 5, False, False)
@staticmethod
def gameOver():
global gameOver
gameOver = True
pygame.display.update()
global running
running = False
ManagementGame.claerEnemy()
print('hi')
global player
@staticmethod
def showTitle(score):
global wave
textScore = pygame.font.Font(None, 80)
win.blit(textScore.render(f"Score: {score}", False, (255, 255, 255)), (0, 0))
textScore = pygame.font.Font(None, 60)
win.blit(textScore.render(f"wave: {wave}", False, (255, 0, 255)), (0, 60))
if gameOver:
ManagementGame.GameOverTitle()
@staticmethod
def GameOverTitle():
global playAgainR
global quitR
global player
global running
global generateEnemy
global gameOver
global wave
global lastWaveScore
global score
global defaultStepWave
global defaultStepWave
global stepWave
text = pygame.font.Font(None, 250)
text2 = pygame.font.Font(None, 100)
win.blit(text.render(f"GAME OVER", False, (255, 0, 0)), (460, 650))
win.blit(text2.render(f"final score: {score}", False, (255, 255, 255)), (720, 850))
global playAgainR
global quitR
playAgainR.show()
quitR.show()
if (playAgainR.x < player.x < playAgainR.x + playAgainR.w) or (
player.x < playAgainR.x < player.x + player.w) or (player.x == playAgainR.x):
if (playAgainR.y < player.y < playAgainR.y + playAgainR.h) or (
player.y < playAgainR.y < player.y + player.h):
running = True
generateEnemy = True
gameOver = False
lastWaveScore = defaultLastWaveScore
stepWave = defaultStepWave
score = 0
wave = 1
if (quitR.x < player.x < quitR.x + quitR.w) or (player.x < quitR.x < player.x + player.w) or (
player.x == quitR.x):
if (quitR.y < player.y < quitR.y + quitR.h) or (player.y < quitR.y < player.y + player.h):
pygame.quit()
sys.exit()
playAgainT = pygame.font.Font(None, 100)
quitT = pygame.font.Font(None, 100)
win.blit(playAgainT.render(f"again", False, (255, 255, 255)), (1510, 1060))
win.blit(quitT.render(f"quit", False, (255, 255, 255)), (330, 1060))
@staticmethod
def claerEnemy():
enemiesList.clear()
player.x = 940
player.y = 1100
@staticmethod
def manageWave():
global lastWaveScore
global stepWave
global generateEnemy
global wave
global showTitleWave
global startingTime
global running
global endFlagStartingTime
global countOfEnemy
if ((score - lastWaveScore) - stepWave) > 0:
lastWaveScore = score
wave += 1
countOfEnemy += 2
stepWave += countOfEnemy * 2
startingTime = True
running = False
ManagementGame.claerEnemy()
ManagementGame.checkTime(1000)
if endFlagStartingTime and not gameOver:
generateEnemy = True
running = True
endFlagStartingTime = False
if startingTime:
textWave = pygame.font.Font(None, 80)
win.blit(textWave.render(f"Wave: {wave}", False, (255, 255, 255)), (450, 650))
@staticmethod
def checkTime(count):
global iForWave
global startingTime
global endFlagStartingTime
iForWave += 1
if iForWave - count == 0:
iForWave = 0
startingTime = False
endFlagStartingTime = True
return True
return False
@staticmethod
def intoWhile():
ManagementGame.showTitle(score)
ManagementGame.manageWave()
keys = pygame.key.get_pressed() # checking pressed keys
if keys[pygame.K_UP]:
player.moveY(False)
if keys[pygame.K_DOWN]:
player.moveY()
if keys[pygame.K_LEFT]:
player.moveX(False)
if keys[pygame.K_RIGHT]:
player.moveX()
ManagementGame.checkPlayer()
player.show()
if running:
if generateEnemy:
if len(enemiesList) < countOfEnemy:
Rect()
for item in enemiesList:
item.moveY()
item.check()
pygame.display.update()
win.fill(backgroundColor)
@staticmethod
def checkPlayer():
global player
if player.x + player.w > sizeOfWindow[0]:
player.x = sizeOfWindow[0] - player.w
if player.x < 0:
player.x = 0
if player.y < 0:
player.y = 0
if player.y + player.h > sizeOfWindow[1]:
player.y = sizeOfWindow[1] - player.h
class Color:
colorRGB = None
nameOfSomeColor = ['DarkGreen', 'Green', 'DarkCyan', 'DeepSkyBlue', 'DarkTurquoise', 'MediumSpringGreen', 'Lime',
'SpringGreen', 'Cyan', 'Aqua', 'MidnightBlue', 'DodgerBlue', 'LightSeaGreen', 'ForestGreen',
'SeaGreen', 'DarkSlateGray', 'DarkSlateGrey', 'LimeGreen', 'MediumSeaGreen', 'Turquoise',
'RoyalBlue', 'SteelBlue', 'DarkSlateBlue', 'MediumTurquoise']
def __init__(self, color="white"):
self.getRGB(color)
def getRGB(self, color):
c = list(colour.Color(color).get_rgb())
c[0] = int(c[0] * 255)
c[1] = int(c[1] * 255)
c[2] = int(c[2] * 255)
self.colorRGB = tuple(c)
def getColor(self):
return self.colorRGB
def getRandomColor(self):
self.getRGB(random.choice(self.nameOfSomeColor))
class Rect:
x = None
y = None
w = None
h = None
color = None
spead = None
border = None
randColor = None
randSize = None
randPositionX = None
randSpead = None
randBorder = None
def __init__(self, w=0, h=0, x=0, y=0, color="white", randColor=True, randSize=True, randPositionX=True,
randSpead=True, spead=5,
border=5, append=True, randBorder=True):
self.randColor = randColor
self.x = x
self.y = y
self.spead = spead
self.color = color
self.border = border
self.randSize = randSize
self.w = w
self.h = h
self.randPositionX = randPositionX
self.randSpead = randSpead
self.randBorder = randBorder
self.random()
self.show()
if append:
enemiesList.append(self)
def moveY(self, direction=True):
if direction:
self.y += self.spead
self.show()
self.destroyer()
else:
self.y -= self.spead
self.show()
self.destroyer()
def random(self):
if self.randColor:
color = Color()
color.getRandomColor()
self.color = color.colorRGB
if self.randSize:
self.w = random.randint(30, 150)
self.h = random.randint(30, 150)
if self.randPositionX:
self.x = random.randint(0, sizeOfWindow[0])
if self.randSpead:
self.spead = random.randint(1, 10)
if self.randBorder:
if random.randint(0, 1):
self.border = random.randint(4, 15)
else:
self.border = 0
def moveX(self, direction=True):
if direction:
self.x += self.spead
self.show()
self.destroyer()
else:
self.x -= self.spead
self.show()
self.destroyer()
def show(self):
pygame.draw.rect(win, self.color, ((self.x, self.y), (self.w, self.h)), self.border)
def destroyer(self):
if self.y > (sizeOfWindow[1] + 200):
enemiesList.remove(self)
global score
score += 1
def check(self):
if (self.x < player.x < self.x + self.w) or (player.x < self.x < player.x + player.w) or (player.x == self.x):
if (self.y < player.y < self.y + self.h) or (player.y < self.y < player.y + player.h):
ManagementGame.gameOver()
ManagementGame.init()
while True:
ManagementGame.intoWhile()
events = pygame.event.get()
for item in events:
if item.type == pygame.QUIT:
pygame.quit()
pygame.sys.exit()