Mercurial > parpg-core
view src/parpg/mode.py @ 30:94cb5843dcbb
Modifications to use the grease manager and modes
author | KarstenBock@gmx.net |
---|---|
date | Tue, 12 Jul 2011 12:31:53 +0200 |
parents | 09b581087d68 |
children | ff198b1168af |
line wrap: on
line source
from parpg.grease.mode import * from fife.extensions.basicapplication import ApplicationBase import abc class FifeManager(BaseManager, ApplicationBase): def __init__(self, TDS): ApplicationBase.__init__(self, TDS) self.modes = [] def _pump(self): if self.current_mode: self.current_mode.pump(self.engine.getTimeManager().getTimeDelta() / 1000) class FifeMode(BaseMode): def __init__(self): BaseMode.__init__(self) @abc.abstractmethod def pump(self, dt): """Performs actions every frame"""