Mercurial > traipse_dev
diff orpg/chat/chat_msg.py @ 66:c54768cffbd4 ornery-dev
Traipse Dev 'OpenRPG' {090818-00}
Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc''s main goal is to offer more advanced features and enhance the productivity of the user.
Update Summary:
*Unstable*
This is the first wave of Code Refinement updates. Includes new material from Core Beta; new debugger material (partially implemented), beginnings of switch to etree, TerminalWriter, and a little more. open_rpg has been renamed to component; functioning now as component.get(), component.add(), component.delete(). This version has known bugs, specifically with the gametree and nodes. I think the XML files where not removed during testing of Core and switching back.
author | sirebral |
---|---|
date | Tue, 18 Aug 2009 06:33:37 -0500 |
parents | 4385a7d0efd1 |
children | 449a8900f9ac |
line wrap: on
line diff
--- a/orpg/chat/chat_msg.py Mon Aug 17 06:56:31 2009 -0500 +++ b/orpg/chat/chat_msg.py Tue Aug 18 06:33:37 2009 -0500 @@ -29,7 +29,8 @@ __version__ = "$Id: chat_msg.py,v 1.15 2006/11/04 21:24:19 digitalxero Exp $" -import orpg.orpg_xml +#import orpg.orpg_xml +from orpg.orpgCore import * from chat_version import CHAT_VERSION CHAT_MESSAGE = 1 @@ -40,19 +41,21 @@ WHISPER_EMOTE_MESSAGE = 6 class chat_msg: - def __init__(self,xml_text="<chat type=\"1\" version=\""+CHAT_VERSION+"\" alias=\"\" ></chat>"): + def __init__(self,xml_text="<chat type=\"1\" version=\""+CHAT_VERSION+"\" alias=\"\" ></chat>"): + self.xml = component.get('xml') self.chat_dom = None - self.takexml(xml_text) + self.takexml(xml_text) def __del__(self): if self.chat_dom: self.chat_dom.unlink() def toxml(self): - return orpg.orpg_xml.toxml(self.chat_dom) + return self.xml.toxml(self.chat_dom) - def takexml(self,xml_text): - xml_dom = orpg.orpg_xml.parseXml(xml_text) + def takexml(self,xml_text): + #self.xml = component.get('xml') + xml_dom = self.xml.parseXml(xml_text) node_list = xml_dom.getElementsByTagName("chat") if len(node_list) < 1: print "Warning: no <chat/> elements found in DOM." @@ -66,10 +69,10 @@ self.text_node = None self.chat_dom.unlink() self.chat_dom = xml_dom - self.text_node = orpg.orpg_xml.safe_get_text_node(self.chat_dom) + self.text_node = self.xml.safe_get_text_node(self.chat_dom) def set_text(self,text): - text = orpg.orpg_xml.strip_text(text) + text = self.xml.strip_text(text) self.text_node._set_nodeValue(text) def set_type(self,type):