view mode.py @ 29:86799b61e5dc

Fixed bug that the game crashes in the main menu after a few seconds.
author KarstenBock@gmx.net
date Sun, 04 Sep 2011 16:37:37 +0200
parents 7b31de1dc964
children ff3e395abf91
line wrap: on
line source


from parpg.grease.mode import *
import abc

class FifeManager(BaseManager):

	def __init__(self):
		self.modes = []
	
	def _pump(self):
		if self.current_mode:
			self.current_mode.pump(self.current_mode.engine.getTimeManager().getTimeDelta() / 1000.0)
	
class FifeMode(BaseMode):
	
	def __init__(self):
		BaseMode.__init__(self)
	
	@abc.abstractmethod
	def pump(self, dt):
		"""Performs actions every frame"""