Mercurial > fife-parpg
view clients/rio_de_hola/scripts/agents/agent.py @ 199:4ea1e0b56a07
fixes based on the updated SDK from barra. These scripts were still trying to use swig 1.3.35 and in the new SDK swig was updated to 1.3.38
author | vtchill@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Fri, 13 Mar 2009 01:58:04 +0000 |
parents | 9a1529f9625e |
children |
line wrap: on
line source
import fife from scripts.common.common import ProgrammingError class Agent(fife.InstanceActionListener): def __init__(self, model, agentName, layer, uniqInMap=True): fife.InstanceActionListener.__init__(self) self.model = model self.agentName = agentName self.layer = layer if uniqInMap: self.agent = layer.getInstance(agentName) self.agent.addActionListener(self) def onInstanceActionFinished(self, instance, action): raise ProgrammingError('No OnActionFinished defined for Agent') def start(self): raise ProgrammingError('No start defined for Agent') def create_anonymous_agents(model, objectName, layer, agentClass): agents = [] instances = [a for a in layer.getInstances() if a.getObject().getId() == objectName] i = 0 for a in instances: agentName = '%s:i:%d' % (objectName, i) i += 1 agent = agentClass(model, agentName, layer, False) agent.agent = a a.addActionListener(agent) agents.append(agent) return agents