Mercurial > parpg-core
annotate src/parpg/mode.py @ 31:ff198b1168af
TimeDelta parameter is now correct
author | KarstenBock@gmx.net |
---|---|
date | Thu, 14 Jul 2011 10:44:51 +0200 |
parents | 94cb5843dcbb |
children | 70738c470ad7 |
rev | line source |
---|---|
27 | 1 |
30
94cb5843dcbb
Modifications to use the grease manager and modes
KarstenBock@gmx.net
parents:
27
diff
changeset
|
2 from parpg.grease.mode import * |
27 | 3 from fife.extensions.basicapplication import ApplicationBase |
4 import abc | |
5 | |
6 class FifeManager(BaseManager, ApplicationBase): | |
7 | |
8 def __init__(self, TDS): | |
9 ApplicationBase.__init__(self, TDS) | |
10 self.modes = [] | |
11 | |
12 def _pump(self): | |
13 if self.current_mode: | |
31 | 14 self.current_mode.pump(self.engine.getTimeManager().getTimeDelta()) |
27 | 15 |
16 class FifeMode(BaseMode): | |
17 | |
30
94cb5843dcbb
Modifications to use the grease manager and modes
KarstenBock@gmx.net
parents:
27
diff
changeset
|
18 def __init__(self): |
94cb5843dcbb
Modifications to use the grease manager and modes
KarstenBock@gmx.net
parents:
27
diff
changeset
|
19 BaseMode.__init__(self) |
94cb5843dcbb
Modifications to use the grease manager and modes
KarstenBock@gmx.net
parents:
27
diff
changeset
|
20 |
27 | 21 @abc.abstractmethod |
22 def pump(self, dt): | |
23 """Performs actions every frame""" |