Mercurial > fife-parpg
view demos/rpg/scripts/objects/baseobject.py @ 697:ecaa4d98f05f tip
Abstracted the GUI code and refactored the GUIChan-specific code into its own module.
* Most of the GUIChan code has been refactored into its own gui/guichan module. However, references to the GuiFont class still persist in the Engine and GuiManager code and these will need further refactoring.
* GuiManager is now an abstract base class which specific implementations (e.g. GUIChan) should subclass.
* The GUIChan GUI code is now a concrete implementation of GuiManager, most of which is in the new GuiChanGuiManager class.
* The GUI code in the Console class has been refactored out of the Console and into the GUIChan module as its own GuiChanConsoleWidget class. The rest of the Console class related to executing commands was left largely unchanged.
* Existing client code may need to downcast the GuiManager pointer received from FIFE::Engine::getGuiManager() to GuiChanGuiManager, since not all functionality is represented in the GuiManager abstract base class. Python client code can use the new GuiChanGuiManager.castTo static method for this purpose.
author | M. George Hansen <technopolitica@gmail.com> |
---|---|
date | Sat, 18 Jun 2011 00:28:40 -1000 |
parents | a21915a97237 |
children |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- # #################################################################### # Copyright (C) 2005-2010 by the FIFE team # http://www.fifengine.net # This file is part of FIFE. # # FIFE is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # #################################################################### import sys, os, re, math, random, shutil from fife import fife from fife.extensions.loaders import loadMapFile from scripts.misc.exceptions import * from scripts.misc.serializer import Serializer GameObjectTypes = { "DEFAULT": 0, "ITEM":1, "QUESTGIVER":2, "PLAYER":3, "NPC":4, "ENEMY":5, "GOLD":6, "PORTAL":7 } class ObjectActionListener(fife.InstanceActionListener): def __init__(self, gamecontroller, obj): fife.InstanceActionListener.__init__(self) self._gamecontroller = gamecontroller self._object = obj self._attached = False def detachActionListener(self): if self._attached: self._object.instance.removeActionListener(self) self._attached = False def attachActionListener(self): if not self._attached: self._object.instance.addActionListener(self) self._attached = True def onInstanceActionFinished(self, instance, action): pass class BaseGameObject(Serializer): def __init__(self, gamecontroller, layer, typename, baseobjectname, instancename, instanceid=None, createInstance=False): """ @param gamecontroller: A reference to the master game controller @param instancename: The name of the object to load. The object's XML file must be part of the map file or added with fife.extensions.loaders.loadImportFile @param instanceid: used if you want to give a specific ID to the instance to differenciate it from other instances @param createInstance: If this is True it will attempt to be loaded from disk and not use one that has already been loaded from the map file. See the note about the instancename paramater above. """ self._gamecontroller = gamecontroller self._fifeobject = None self._typename = typename self._type = GameObjectTypes[typename] self._baseobjectname = baseobjectname self._name = instancename if instanceid: self._id = instanceid else: self._id = self._name self._instance = None self._position = fife.DoublePoint(0.0, 0.0) self._actionlistener = None self._layer = layer if createInstance: self._createFIFEInstance(self._layer) else: self._findFIFEInstance(self._layer) self._activated = True def hide(self): """ Marks the FIFE instance as not visible """ if self._instance: self._instance.get2dGfxVisual().setVisible(False) def show(self): """ Marks the FIFE instance as not visible """ if self._instance: self._instance.get2dGfxVisual().setVisible(True) def destroy(self): """ Deletes the FIFE instance from the actor layer on the map. """ if self._actionlistener: self._actionlistener.detachActionListener() if self._instance : self._layer.deleteInstance(self._instance) self._instance = None self._activated = False def spawn(self, x, y): """ Creates a new FIFE instance and spawns it in the specified x y location """ if self._instance: self._setMapPostion(x,y) self.show() else: self._position.x = x self._position.y = y self._createFIFEInstance(self, self._layer) if self._actionlistener and self._instance: self._actionlistener.attachActionListener() self._activated = True def setMapPosition(self, x, y): curloc = self.location self._position = self.location.getExactLayerCoordinates() self._position.x = x self._position.y = y curloc.setExactLayerCoordinates(self._position) self.location = curloc def serialize(self): lvars = {} (x,y) = self.position lvars['posx'] = x lvars['posy'] = y lvars['type'] = self._typename lvars['objectname'] = self._baseobjectname return lvars def deserialize(self, valuedict=None): if not valuedict: return if valuedict.has_key("posx"): x = float(valuedict['posx']) else: x = 0 if valuedict.has_key("posy"): y = float(valuedict['posy']) else: y = 0 self.setMapPosition(x,y) def _createFIFEInstance(self, layer): """ Should not be called directly. Use the constructor! """ mapmodel = self._gamecontroller.engine.getModel() self._fifeobject = mapmodel.getObject(self._name, self._gamecontroller.settings.get("RPG", "ObjectNamespace", "http://www.fifengine.de/xml/rpg")) self._instance = layer.createInstance(self._fifeobject, fife.ExactModelCoordinate(self._position.x,self._position.y), self._id) fife.InstanceVisual.create(self._instance) self._instance.thisown = 0 def _findFIFEInstance(self, layer): """ Throws InstanceNotFound if the instance was not found on the specified layer. """ self._instance = self._layer.getInstance(self._id) if self._instance: self._instance.thisown = 0 else: raise InstanceNotFoundError(self._id + " was not found on the layer!") def _getLocation(self): return self._instance.getLocation() def _setLocation(self, loc): self._instance.setLocation(loc) def _getInstance(self): return self._instance def _getType(self): return self._type def _getId(self): return self._id def _getModelName(self): return self._name def _getPosition(self): #if there isn't a FIFE instance just return last known coordinates if self._instance: self._position = self.location.getExactLayerCoordinates() return (self._position.x, self._position.y) def _setPosition(self, tuplexy): self.setMapPosition(tuplexy[0],tuplexy[1]) def _getActivated(self): return self._activated def _setActivated(self, activate): self._activated = activate location = property(_getLocation, _setLocation) instance = property(_getInstance) type = property(_getType) id = property(_getId) modelname = property(_getModelName) position = property(_getPosition, _setPosition) active = property(_getActivated, _setActivated)