X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fevents.py;h=4d3fb07f80a94bc5502edfa048b3e0e017c80393;hb=e3f865facdb9c4b3b94c1b89d0734ed09fd6b205;hp=b2cdee1e5a748e614c604af3b5913ff167db1874;hpb=1436eedb964abfa4d1c3b06813b832133812c7a5;p=naja.git diff --git a/naja/events.py b/naja/events.py index b2cdee1..4d3fb07 100644 --- a/naja/events.py +++ b/naja/events.py @@ -3,26 +3,35 @@ Custom Pygame events. """ import pygame.event as pge +import pygame.locals as pgl -class NajaEvent(pge.Event): +class NajaEvent(object): TYPE = "UNKNOWN" @classmethod def post(cls, **attributes): - event = pge.Event(pge.USEREVENT, naja_event_type=cls.TYPE, + event = pge.Event(pgl.USEREVENT, naja_event_type=cls.TYPE, **attributes) pge.post(event) @classmethod def matches(cls, ev): - return ev.type == pge.USEREVENT and ev.naja_event_type == cls.TYPE + return ev.type == pgl.USEREVENT and ev.naja_event_type == cls.TYPE class SceneChangeEvent(NajaEvent): TYPE = "SCENE_CHANGE" @classmethod - def post(cls, scene): - super(SceneChangeEvent, cls).post(scene=scene) + def post(cls, scene_cls): + super(SceneChangeEvent, cls).post(scene_cls=scene_cls) + + +class QuitGameEvent(NajaEvent): + TYPE = "QUIT_GAME" + + @classmethod + def post(cls): + super(QuitGameEvent, cls).post()