summaryrefslogtreecommitdiff
path: root/src/sliceitoff/game/show.py
blob: 50ed0baedce9fe828be32c705a3229dbb6306fe9 (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
""" Reads user input and does actions when game play is on. """
import pygame
from .anykey import anykey

class Show:
    """ To show some sprites and quit on any key """
    def __init__(self, sprites = []):
        self.sprites = sprites
        self.fadeout = 1_000
        self.timeout = 5_000
        
    def step(self, dt):
        if self.fadeout < 0:
            return False
        
        if self.timeout < 0:
            if anykey():
                return False
            self.fadeout -= dt
            self.sprites.update(explode=dt)
            return True
            
        if anykey():
            self.timeout = 0
        self.timeout -= dt
        return True