-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathevent.py
106 lines (77 loc) · 2.87 KB
/
event.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
# -*- coding: utf-8 -*-
"""
Created on Sun Aug 16 15:35:16 2020
This example showcases how one might code an event handling system in python,
which could be used in a game written with pygame.
The event is a function with an arbitrary amount of passed arguments, being
executed after a specified time delay. This event-based approach significantly
reduces coupling in game code.
@author: Korean_Crimson
"""
from __future__ import annotations
import functools
import time
from dataclasses import dataclass
from typing import Callable
import pygame
SCREEN_HEIGHT = (800, 600)
# pylint: disable=no-member
@dataclass
class Event:
"""Event class. When the specified delay elapsed, the specified
function will get executed when the event is handled."""
function: Callable
timer: Timer
def __post_init__(self):
self.timer.start()
class Timer:
"""A timer class, which gets started at a time and counts until a specified delay has passed"""
def __init__(self, delay):
self.time = 0
self.delay = delay
def start(self):
"""Starts the timer"""
self.time = time.time()
def get_timer(self):
"""Returns True if time since start time is over the delay, else False"""
return time.time() - self.time > self.delay
class Entity:
"""Simplistic entity class. For this example only has an event_queue attribute"""
def __init__(self):
self.event_queue = []
self.colour = None
def add_event(self, function, delay):
"""Adds an event with the specified function and delay to the event queue"""
self.event_queue.append(Event(function, Timer(delay)))
def handle_events(self):
"""Handles all events in the event queue. Removes handled events from the event queue"""
for event in self.event_queue:
if event.timer.get_timer():
event.function()
self.event_queue.remove(event)
def event_function(entity, colour):
"""Example function linked to the event"""
print(time.time())
entity.colour = colour
colour = (0, 0, 0) if colour != (0, 0, 0) else (255, 255, 255) # black or white
func = functools.partial(event_function, entity, colour)
entity.add_event(func, delay=1)
def main():
"""Main function, initiates an entity with a 1 second cyclic event function"""
pygame.init()
screen = pygame.display.set_mode(SCREEN_HEIGHT)
entity = Entity()
func = functools.partial(event_function, entity, (255, 255, 255))
entity.add_event(func, delay=1)
terminated = False
while not terminated:
for event in pygame.event.get():
if event.type == pygame.QUIT:
terminated = True
entity.handle_events()
if entity.colour is not None:
screen.fill(entity.colour)
pygame.display.update()
pygame.quit()
if __name__ == "__main__":
main()