Mercurial > parpg-source
view world.py @ 41:ff3e395abf91
Renamed grease to bGrease (Basic Grease) to get rid of conflicts with an already installed grease.
author | KarstenBock@gmx.net |
---|---|
date | Mon, 05 Sep 2011 15:00:34 +0200 |
parents | b30a72c41f90 |
children | 66a06de1bddc |
line wrap: on
line source
from bGrease.world import * from parpg.mode import FifeMode from parpg import components class World(FifeMode, BaseWorld): def __init__(self): FifeMode.__init__(self) BaseWorld.__init__(self) def configure(self): """Configure the game world's components, systems and renderers""" self.components.behaviour = components.Behavior() self.components.characterstats = components.CharacterStatistics() self.components.containable = components.Containable() self.components.container = components.Container() self.components.description = components.Description() self.components.dialog = components.Dialog() self.components.fifeagent = components.FifeAgent() self.components.lockable = components.Lockable() self.components.usable = components.Usable() def pump(self, dt): for component in self.components: if hasattr(component, "step"): component.step(dt) for system in self.systems: if hasattr(system, "step"): system.step(dt)