Mercurial > traipse_dev
annotate orpg/chat/chat_msg.py @ 195:b633f4c64aae alpha
Traipse Alpha 'OpenRPG' {100219-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 (Patch-2)
New Features:
New Namespace method with two new syntaxes
Fixes:
Fix to Server GUI startup errors
Fix to Server GUI Rooms tab updating
Fix to Chat and Settings if non existant die roller is picked
Fix to Dieroller and .open() used with .vs(). Successes are correctly calculated
Fix to Alias Lib's Export to Tree, Open, Save features
Fix to alias node, now works properly
Fix to Splitter node, minor GUI cleanup
author | sirebral |
---|---|
date | Sat, 24 Apr 2010 08:37:20 -0500 |
parents | bf799efe7a8a |
children |
rev | line source |
---|---|
155 | 1 # Copyright (C) 2000-2001 The OpenRPG Project |
2 # | |
3 # openrpg-dev@lists.sourceforge.net | |
4 # | |
5 # This program is free software; you can redistribute it and/or modify | |
6 # it under the terms of the GNU General Public License as published by | |
7 # the Free Software Foundation; either version 2 of the License, or | |
8 # (at your option) any later version. | |
9 # | |
10 # This program is distributed in the hope that it will be useful, | |
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 # GNU General Public License for more details. | |
14 # | |
15 # You should have received a copy of the GNU General Public License | |
16 # along with this program; if not, write to the Free Software | |
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 # -- | |
19 # | |
20 # File: chat_msg.py | |
21 # Author: Ted Berg | |
22 # Maintainer: | |
23 # Version: | |
195 | 24 # $Id: chat_msg.py,v Traipse 'Ornery-Orc' prof.ebral Exp $ |
155 | 25 # |
26 # Description: Contains class definitions for manipulating <chat/> messages | |
27 # | |
28 # | |
0
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
29 |
195 | 30 __version__ = "$Id: chat_msg.py,v Traipse 'Ornery-Orc' prof.ebral Exp $" |
155 | 31 |
32 from orpg.orpgCore import * | |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
33 from chat_version import CHAT_VERSION |
133 | 34 from orpg.tools.orpg_log import logger, debug |
35 from xml.etree.ElementTree import tostring, fromstring | |
155 | 36 |
37 CHAT_MESSAGE = 1 | |
38 WHISPER_MESSAGE = 2 | |
39 EMOTE_MESSAGE = 3 | |
40 INFO_MESSAGE = 4 | |
41 SYSTEM_MESSAGE = 5 | |
42 WHISPER_EMOTE_MESSAGE = 6 | |
43 | |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
44 class chat_msg: |
155 | 45 |
133 | 46 def __init__(self, xml_text="<chat type='1' version='"+CHAT_VERSION+"' alias='' ></chat>"): |
47 self.chat_dom = None | |
66 | 48 self.takexml(xml_text) |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
49 |
155 | 50 def __del__(self): |
195 | 51 if self.chat_dom: self.chat_dom.unlink() |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
52 |
133 | 53 def toxml(self): |
155 | 54 return tostring(self.chat_dom) |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
55 |
66 | 56 def takexml(self,xml_text): |
133 | 57 xml_dom = fromstring(xml_text) |
58 self.takedom(xml_dom) | |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
59 |
155 | 60 def takedom(self, xml_dom): |
61 self.chat_dom = xml_dom | |
62 self.text_node = xml_dom.text | |
63 | |
64 def set_text(self, text): | |
65 self.chat_dom.text = text | |
66 | |
67 def set_type(self,type): | |
68 self.chat_dom.set("type", str(type)) | |
69 | |
70 def get_type(self): | |
71 return int(self.chat_dom.get("type")) | |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
72 |
155 | 73 def set_alias(self,alias): |
74 self.chat_dom.set("alias",alias) | |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
75 |
155 | 76 def get_alias(self): |
77 return self.chat_dom.get("alias") | |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
78 |
155 | 79 def get_text(self): |
80 return self.text_node | |
71
449a8900f9ac
Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents:
66
diff
changeset
|
81 |
155 | 82 def get_version(self): |
83 return self.chat_dom.get("version") |