summaryrefslogtreecommitdiff
path: root/src/sliceitoff/game/game.py
blob: 16c42b4ab4bef0646cde8a96a35f7d0930ecea16 (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
import pygame
from pygame.locals import *

class Game:
    def __init__(self, player = None, field = None):
        self.player = player
        self.field = field

    def step(self):
        for event in pygame.event.get():
            match event.type:
                case pygame.KEYDOWN:
                    match event.key:
                        case pygame.K_ESCAPE | pygame.K_q:
                            return True
                        case pygame.K_SPACE:
                            if self.player.fire_lazer():
                                return True
                case pygame.QUIT:
                    return True
                case pygame.MOUSEMOTION:
                    self.player.set_position(pygame.mouse.get_pos())
                case pygame.MOUSEBUTTONDOWN:
                    self.player.set_position(pygame.mouse.get_pos())
                    if event.button == 1:
                        if self.player.fire_lazer():
                            return True
                    if event.button == 3:
                        self.player.set_direction()
        return False