view mode.py @ 119:2399a8c3da0c

Modified EquipmentSlot to display an image instead of a text. Added EquipmentGui class, which handles the equipment slots of the player screen. An EquipmentGui instance will be created in the InventoryGUI constructor. The initializeInventory method of the Hud class supplies the players inventory and equipment to the InventoryGUI constructor.
author KarstenBock@gmx.net
date Wed, 05 Oct 2011 11:04:39 +0200
parents e856b604b650
children
line wrap: on
line source


from parpg.bGrease.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"""