-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodelo.py
641 lines (496 loc) · 25.3 KB
/
modelo.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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
import pygame
import random
import time
from math import sqrt
pygame.init()
display_width = 800
display_height = 600
black = (0,0,0)
white = (255,255,255)
gray = (55,55,55)
pink = (200,50,180)
red = (255,0,0)
green = (0,255,0)
blue = (0,0,255)
brightblue = (100,100,255)
darkred = (200,0,0)
darkgreen = (0,200,0)
darkblue = (0,0,200)
yellow = (255,255,0)
savefile_opened_or_created = list()
backgrond_color1 = white
backgrond_color2 = blue
gameDisplay = pygame.display.set_mode((display_width,display_height))
pygame.display.set_caption('bullet hell')
clock = pygame.time.Clock()
def text_objects(text, font):
textSurface = font.render(text, True, black)
return textSurface, textSurface.get_rect()
def game_intro():
game_loop()
def game_loop():
choose_difficulty = True
left_clicked = True
while choose_difficulty:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
gameDisplay.fill(white)
largeText = pygame.font.Font('freesansbold.ttf', 50)
TextSurf, TextRect = text_objects('Amound of bullets difficulty', largeText)
TextRect.center = ((display_width/2),(display_height/7))
gameDisplay.blit(TextSurf, TextRect)
mouse_pos = pygame.mouse.get_pos()
x_mouse = mouse_pos[0]
y_mouse = mouse_pos[1]
mouse_pressed = pygame.mouse.get_pressed()
if x_mouse > 150 and x_mouse < 250 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(150, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'easy'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(150, 175, 100, 50))
if x_mouse > 350 and x_mouse < 450 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(350, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'normal'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(350, 175, 100, 50))
if x_mouse > 550 and x_mouse < 650 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(550, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'hard'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(550, 175, 100, 50))
if x_mouse > 250 and x_mouse < 350 and y_mouse > 375 and y_mouse < 425:
pygame.draw.rect(gameDisplay, green,(250, 375, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'very hard'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(250, 375, 100, 50))
if x_mouse > 450 and x_mouse < 550 and y_mouse > 375 and y_mouse < 425:
pygame.draw.rect(gameDisplay, green,(150, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'extreme'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(450, 375, 100, 50))
if lef_clicked == False and mouse_pressed[0] == 1:
left_clicked = True
elif left_clicked == True and mouse_pressed[0] == 0:
left_clicked == False
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('EASY', smallText)
TextRect.center = ((200),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('NORMAL', smallText)
TextRect.center = ((400),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('HARD', smallText)
TextRect.center = ((600),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 15)
TextSurf, TextRect = text_objects('VERY HARD', smallText)
TextRect.center = ((300),(400))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('EXTREME', smallText)
TextRect.center = ((500),(400))
gameDisplay.blit(TextSurf, TextRect)
pygame.display.update()
clock.tick(60)
choose_difficulty = True
left_clicked = True
while choose_difficulty:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
gameDisplay.fill(white)
largeText = pygame.font.Font('freesansbold.ttf', 50)
TextSurf, TextRect = text_objects('Amount of enemies difficulty', largeText)
TextRect.center = ((display_width/2),(display_height/7))
gameDisplay.blit(TextSurf, TextRect)
mouse_pos = pygame.mouse.get_pos()
x_mouse = mouse_pos[0]
y_mouse = mouse_pos[1]
mouse_pressed = pygame.mouse.get_pressed()
if x_mouse > 150 and x_mouse < 250 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(150, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'easy'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(150, 175, 100, 50))
if x_mouse > 350 and x_mouse < 450 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(350, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'normal'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(350, 175, 100, 50))
if x_mouse > 550 and x_mouse < 650 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(550, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'hard'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(550, 175, 100, 50))
if x_mouse > 250 and x_mouse < 350 and y_mouse > 375 and y_mouse < 425:
pygame.draw.rect(gameDisplay, green,(250, 375, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'very hard'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(250, 375, 100, 50))
if x_mouse > 450 and x_mouse < 550 and y_mouse > 375 and y_mouse < 425:
pygame.draw.rect(gameDisplay, green,(150, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'extreme'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(450, 375, 100, 50))
if lef_clicked == False and mouse_pressed[0] == 1:
left_clicked = True
elif left_clicked == True and mouse_pressed[0] == 0:
left_clicked == False
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('EASY', smallText)
TextRect.center = ((200),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('NORMAL', smallText)
TextRect.center = ((400),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('HARD', smallText)
TextRect.center = ((600),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 15)
TextSurf, TextRect = text_objects('VERY HARD', smallText)
TextRect.center = ((300),(400))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('EXTREME', smallText)
TextRect.center = ((500),(400))
gameDisplay.blit(TextSurf, TextRect)
pygame.display.update()
clock.tick(60)
choose_difficulty = True
left_clicked = True
while choose_difficulty:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
gameDisplay.fill(white)
largeText = pygame.font.Font('freesansbold.ttf', 30)
TextSurf, TextRect = text_objects('Time you have to survive difficulty', largeText)
TextRect.center = ((display_width/2),(display_height/7))
gameDisplay.blit(TextSurf, TextRect)
mouse_pos = pygame.mouse.get_pos()
x_mouse = mouse_pos[0]
y_mouse = mouse_pos[1]
mouse_pressed = pygame.mouse.get_pressed()
if x_mouse > 150 and x_mouse < 250 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(150, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'easy'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(150, 175, 100, 50))
if x_mouse > 350 and x_mouse < 450 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(350, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'normal'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(350, 175, 100, 50))
if x_mouse > 550 and x_mouse < 650 and y_mouse > 175 and y_mouse < 225:
pygame.draw.rect(gameDisplay, green,(550, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'hard'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(550, 175, 100, 50))
if x_mouse > 250 and x_mouse < 350 and y_mouse > 375 and y_mouse < 425:
pygame.draw.rect(gameDisplay, green,(250, 375, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'very hard'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(250, 375, 100, 50))
if x_mouse > 450 and x_mouse < 550 and y_mouse > 375 and y_mouse < 425:
pygame.draw.rect(gameDisplay, green,(150, 175, 100, 50))
if mouse_pressed[0] == 1 and left_clicked == False:
difficulty = 'extreme'
choose_difficulty = False
else:
pygame.draw.rect(gameDisplay, darkgreen,(450, 375, 100, 50))
if lef_clicked == False and mouse_pressed[0] == 1:
left_clicked = True
elif left_clicked == True and mouse_pressed[0] == 0:
left_clicked == False
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('EASY', smallText)
TextRect.center = ((200),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('NORMAL', smallText)
TextRect.center = ((400),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('HARD', smallText)
TextRect.center = ((600),(200))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 15)
TextSurf, TextRect = text_objects('VERY HARD', smallText)
TextRect.center = ((300),(400))
gameDisplay.blit(TextSurf, TextRect)
smallText = pygame.font.Font('freesansbold.ttf', 20)
TextSurf, TextRect = text_objects('EXTREME', smallText)
TextRect.center = ((500),(400))
gameDisplay.blit(TextSurf, TextRect)
pygame.display.update()
clock.tick(60)
x_player = 400
y_player = 300
gameExit = False
screen = 1
walk_left = False
walk_right = False
walk_up = False
walk_down = False
game_over = False
restart = False
time = 0
x_bullet = list()
y_bullet = list()
x_bullet_speed = list()
y_bullet_speed = list()
bullet_color = list()
x_bullet_2 = list()
y_bullet_2 = list()
x_bullet_speed_2 = list()
y_bullet_speed_2 = list()
bullet_color_2 = list()
x_bullet_3 = list()
y_bullet_3 = list()
x_bullet_speed_3 = list()
y_bullet_speed_3 = list()
bullet_color_3 = list()
x_yellow_enemie = list()
y_yellow_enemie = list()
x_green_enemie = list()
y_green_enemie = list()
x_red_enemie = list()
y_red_enemie = list()
x_blue_enemie = list()
y_blue_enemie = list()
yellow_time = 90
green_time = 0
red_time = 0
blue_time = 0
bullet_time = 0
time_survive = 0
time_survive_frames = 0
while not gameExit:
for event in pygame.event.get():
if event.type == 2 and event.key == 276:
walk_left = True
if event.type == 3 and event.key == 276:
walk_left = False
if event.type == 2 and event.key == 275:
walk_right = True
if event.type == 3 and event.key == 275:
walk_right = False
if event.type == 2 and event.key == 273:
walk_up = True
if event.type == 3 and event.key == 273:
walk_up = False
if event.type == 2 and event.key == 274:
walk_down = True
if event.type == 3 and event.key == 274:
walk_down = False
if event.type == 2 and event.key == 114:
restart = True
if event.type == 3 and event.key == 114:
restart = False
mouse_pressed = pygame.mouse.get_pressed()
if event.type == pygame.QUIT:
pygame.quit()
quit()
gameDisplay.fill(white)
mouse_pressed = pygame.mouse.get_pressed()
if mouse_pressed[2] == 1:
gameExit = True
game_intro()
if gameExit == False:
pygame.draw.rect(gameDisplay, red,(0, 0, 30, 600))
pygame.draw.rect(gameDisplay, red,(0, 0, 800, 30))
pygame.draw.rect(gameDisplay, red,(770, 0, 30, 600))
pygame.draw.rect(gameDisplay, red,(770, 0, 30, 600))
pygame.draw.rect(gameDisplay, red,(0, 570, 800, 30))
if x_player >765:
game_over = True
if x_player < 35:
game_over = True
if y_player >565:
game_over = True
if y_player >35:
game_over = True
if time_difficulty == 'easy':
time += 5
if time_difficulty == 'normal':
time += 3
if time_difficulty == 'hard':
time += 2
if time_difficulty == 'very hard':
time += 1.5
if time_difficulty == 'extreme':
time += 1
if enemies_difficulty == 'easy':
yellow_time += 0.15
green_time += 0.15
red_time += 0.15
blue_time += 0.15
if enemies_difficulty == 'normal':
yellow_time += 0.3
green_time += 0.3
red_time += 0.3
blue_time += 0.3
if enemies_difficulty == 'hard':
yellow_time += 0.5
green_time += 0.5
red_time += 0.5
blue_time += 0.5
if enemies_difficulty == 'very hard':
yellow_time += 0.75
green_time += 0.75
red_time += 0.75
blue_time += 0.75
if enemies_difficulty == 'extreme':
yellow_time += 1
green_time += 1
red_time += 1
blue_time += 1
bullet_time += 1
if difficulty == 'easy' and bullet_time > 199:
bullet_time = 0
if difficulty == 'normal' and bullet_time > 109:
bullet_time = 0
if difficulty == 'hard' and bullet_time > 79:
bullet_time = 0
if difficulty == 'very hard' and bullet_time > 44:
bullet_time = 0
if difficulty == 'extreme' and bullet_time > 19:
bullet_time = 0
if yellow_time > 89 and time < 4000:
yellow_time = 0
x_yellow_enemie.append(850)
y_yellow_enemie.append(random.randrange(51,551))
if green_time > 134 and time > 800 and time < 4000:
green_time = 0
x_green_enemie.append(random.randrange(51,751))
y_green_enemie.append(650)
if red_time > 59 and time > 1600 and time < 4000:
red_time = 0
x_green_enemie.append(random.randrange(51,751))
y_green_enemie.append(650)
if blue_time > 99 and time > 2400 and time < 4000:
blue_time = 0
x_green_enemie.append(-50)
y_green_enemie.append(random.randrange(51,551))
if time > 3999 and game_over == False and len(x_bullet) < 1 and len(x_bullet_type_2) < 1 and len(x_bullet_type_3) < 1 and len(x_yellow_enemie) < 1 and len(x_green_enemie) < 1 and len(x_red_enemie) < 1 and len(x_blue_enemie) < 1:
largeText = pygame.font.Font('freesansbold.ttf', 70)
TextSurf, TextRect = text_objects('YOU WON!!!', largeText)
TextRect.center = ((display_width/2),(display_height/2))
gameDisplay.blit(TextSurf, TextRect)
for i in range(len(x_bullet)-1, -1, -1):
x_bullet[i] += x_bullet_speed[i] * 5
y_bullet[i] += y_bullet_speed[i] * 5
pygame.draw.rect(gameDisplay, bullet_color[i],(x_bullet[i] - 5, y_bullet[i] - 5, 10, 10))
if x_player > x_bullet[i] - 10 and x_player < x_bullet[i] + 10 and y_player > y_bullet[i] - 10 and y_player < y_bullet[i] + 10:
game_over = True
if x_bullet[i] < -25 or x_bullet[i] > 825 or y_bullet[i] > 625 or y_bullet[i] < -25:
del x_bullet[i]
del y_bullet[i]
del x_bullet_speed[i]
del y_bullet_speed[i]
del bullet_color[i]
for i in range(len(x_bullet_type_2)-1, -1, -1):
x_bullet_type_2[i] += x_bullet_type_2_speed[i] / 5
y_bullet_type_2[i] += y_bullet_type_2_speed[i] / 2.5
y_bullet_type_2_speed[i] += 0.4
pygame.draw.rect(gameDisplay, red, (x_bullet_type_2[i] - 5, y_bullet_type_2[i] - 5, 10, 10))
if x_player > x_bullet_type_2[i] - 10 and x_player < x_bullet_type_2[i] + 10 and y_player > y_bullet_type_2[i] - 10 and y_player < y_bullet_type_2[i] + 10:
game_over = True
if x_bullet_type_2[i] < -25 or x_bullet_type_2[i] > 825 or y_bullet_type_2[i] > 625:
del x_bullet_type_2[i]
del y_bullet_type_2[i]
del x_bullet_type_2_speed[i]
del y_bullet_type_2_speed[i]
del bullet_type_2_color[i]
for i in range(len(x_bullet_type_3)-1, -1, -1):
x_bullet_type_3[i] += x_bullet_type_3_speed[i] * 5
y_bullet_type_3[i] += y_bullet_type_3_speed[i] * 5
pygame.draw.rect(gameDisplay, yellow, (x_bullet_type_3[i] - 5, y_bullet_type_3[i] - 5, 10, 10))
if x_player > x_bullet_type_3[i] - 10 and x_player < x_bullet_type_3[i] + 10 and y_player > y_bullet_type_3[i] - 10 and y_player < y_bullet_type_3[i] + 10:
game_over = True
if x_bullet_type_3[i] < -25 or x_bullet_type_3[i] > 825 or y_bullet_type_3[i] > 625 or y_bullet_type_3[i] < -25:
del x_bullet_type_3[i]
del y_bullet_type_3[i]
del x_bullet_type_3_speed[i]
del y_bullet_type_3_speed[i]
del bullet_type_3_color[i]
for i in range(len(x_yellow_enemie)-1, -1, -1):
x_yellow_enemie[i] += -3
pygame.draw.rect(gameDisplay, yellow, (x_yellow_enemie[i] - 15, y_yellow_enemie - 15, 30, 30))
pygame.draw.rect(gameDisplay, yellow, (x_yellow_enemie[i] - 25, y_yellow_enemie - 20, 10, 10))
pygame.draw.rect(gameDisplay, yellow, (x_yellow_enemie[i] + 15, y_yellow_enemie - 20, 10, 10))
pygame.draw.rect(gameDisplay, yellow, (x_yellow_enemie[i] - 20, y_yellow_enemie + 15, 10, 10))
pygame.draw.rect(gameDisplay, yellow, (x_yellow_enemie[i] + 10, y_yellow_enemie + 15, 10, 10))
pygame.draw.rect(gameDisplay, black, (x_yellow_enemie[i] - 12, y_yellow_enemie - 12, 6, 6))
pygame.draw.rect(gameDisplay, black, (x_yellow_enemie[i] + 6, y_yellow_enemie - 12, 6, 6))
pygame.draw.rect(gameDisplay, black, (x_yellow_enemie[i] - 12, y_yellow_enemie + 6, 24, 6))
if difficulty == 'easy':
number = 66
if difficulty == 'normal':
number = 46
if difficulty == 'hard':
number = 31
if difficulty == 'very hard':
number = 21
if difficulty == 'extreme':
number = 11
if random.randrange(0,2) == 1:
if random.randrange(0,2) == 1:
x_random = 800
y_random = random.randrange(1,601)
else:
x_random = 0
y_random = random.randrange(1,601)
else:
if random.randrange(0,2) == 1:
x_random = random.randrange(1,801)
y_random = 600
else:
x_random = random.randrange(1,801)
y_random = 0
distance = sqrt((x_random - x)**2 + (y_random - y)**2)
x_speed = (x_random - x) / 240
y_speed = (y_random - y) / 240
x_speed /= distance / 150
y_speed /= distance / 150
x_bullet_speed.append(x_speed)
y_bullet_speed.append(y_speed)
x_bullet.append(x)
y_bullet.append(y)
bullet_color.append(blue)