blob: 12daeaf8d419c93fe46343d69c40957abce81853 (
plain)
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
|
""" Reads user input and does actions when game play is on. """
import pygame
from stats import Stats
class Gameplay:
""" Logic of the playfield """
def __init__(
self,
player = None,
field = None,
status = None,
enemies = None):
self.status = status
self.player = player
self.field = field
self.enemies = enemies
def fire(self):
hitbox = self.field.slice(
self.player.position,
self.player.direction,
4_500)
hit = False
if hitbox is not None:
for enemy in self.enemies.sprites():
if hitbox.colliderect(enemy.rect):
hit = True
break
if hit:
if Stats.lose_life():
return True
self.field.kill_if_not_colliding(self.enemies.sprites())
self.field.update_stats()
return Stats.percent < 20
def quit(self):
Stats.lives = 0
return True
def step(self):
""" Processes events for the step (frame) """
for event in pygame.event.get():
match event.type:
case pygame.MOUSEMOTION:
self.player.update(pos = pygame.mouse.get_pos())
case pygame.MOUSEBUTTONDOWN:
self.player.update(pos = pygame.mouse.get_pos())
if event.button == 1:
if self.fire():
return True
if event.button == 3:
self.player.update(direction = True)
case pygame.KEYDOWN:
match event.key:
case pygame.K_ESCAPE | pygame.K_q:
return self.quit()
case pygame.K_SPACE:
if self.fire():
return True
case pygame.QUIT:
return self.quit()
return False
|