annotate orpg/plugindb.py @ 221:e4a4429c5f85 alpha

Traipse Alpha 'OpenRPG' {100502-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) Moved to Beta!! New Features: New Namespace method with two new syntaxes New Namespace Internal is context sensitive, always! New Namespace External is 'as narrow as you make it' New Namespace FutureCheck helps ensure you don't receive an incorrect node New PluginDB access for URL2Link plugin New to Forms, they now show their content in Design Mode New to Update Manager, checks Repo for updates on software start New to Mini Lin node, change title in design mode New to Game Tree, never lose a node, appends a number to the end of corrupted trees New to Server GUI, Traipse Suite's Debug Console New Namespace plugin, Allows Traipse users to use the Standard syntax !@ :: @! Updates: Update to White Board layer, uses a pencil image for color button Update to Grid Layer, uses a grid image for color button Update to Chat Window, size of drop down menus Update to default lobby message Update to template Text node Update to 4e PC Sheet node 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 Fix to Backgrounds not loading through remote loader Fix to Node name errors Fix to rolling dice in chat Whispers Fix to Splitters Sizing issues Fix to URL2Link plugin, modified regex compilation should remove memory leak Fix to mapy.py, a roll back due to zoomed grid issues Fix to whiteboard_handler, Circles work by you clicking the center of the circle Fix to Servers parse_incoming_dom which was outdated and did not respect XML Fix to a broken link in the server welcome message Fix to InterParse and logger requiring traceback Fix to Update Manager Status Bar Fix to failed image and erroneous pop up Fix to Mini Lib node that was preventing use Fix to plugins that parce dice but did not call InterParse Fix to nodes for name changing by double click Fix to Game Tree, node ordering on drag and drop corrected Fix to Game Tree, corrupted error message was not showing Fix to Update Manager, checks for internet connection Fix to Update Manager, Auto Update corrections
author sirebral
date Sun, 02 May 2010 16:19:29 -0500
parents 565ab3d84430
children
rev   line source
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
1 from __future__ import with_statement
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
2
66
c54768cffbd4 Traipse Dev 'OpenRPG' {090818-00}
sirebral
parents: 23
diff changeset
3 from orpg.dirpath import dir_struct
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
4 from orpg.tools.validate import validate
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
5 from orpg.tools.orpg_log import logger
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
6
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
7 from xml.etree.ElementTree import ElementTree, Element, parse
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
8 from xml.etree.ElementPath import find
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
9
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
10 class PluginDB(object):
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
11 etree = ElementTree()
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
12 filename = dir_struct["user"] + "plugindb.xml"
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
13
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
14 def __new__(cls, *args, **kwargs):
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
15 it = cls.__dict__.get("__it__")
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
16 if it is not None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
17 return it
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
18 cls.__it__ = it = object.__new__(cls)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
19 it._init()
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
20 return it
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
21
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
22 def _init(self):
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
23 validate.config_file("plugindb.xml", "default_plugindb.xml")
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
24 self.LoadDoc()
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
25
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
26 def GetString(self, plugname, strname, defaultval="", verbose=False):
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
27 strname = self.safe(strname)
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
28
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
29 plugin = self.etree.find(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
30 if plugin is None or plugin.find(strname) is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
31 msg = ["plugindb: no value has been stored for", strname, "in",
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
32 plugname, "so the default has been returned"]
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
33 logger.info(' '.join(msg), verbose)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
34 return defaultval
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
35
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
36 logger.debug("successfully found the str value", verbose)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
37 return self.normal(plugin.find(strname).text)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
38
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
39 def SetString(self, plugname, strname, val):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
40 val = self.safe(val)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
41 strname = self.safe(strname)
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
42
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
43 plugin = self.etree.find(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
44 if plugin is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
45 plugin = Element(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
46 self.etree.getroot().append(plugin)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
47
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
48 str_el = plugin.find(strname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
49 if str_el is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
50 str_el = Element(strname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
51 str_el.set('type', 'str')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
52 plugin.append(str_el)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
53 str_el.text = val
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
54 self.SaveDoc()
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
55
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
56 def FetchList(self, parent):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
57 retlist = []
139
8e07c1a2c69b Traipse Alpha 'OpenRPG' {091123-00}
sirebral
parents: 122
diff changeset
58 for litem in parent.find('list').findall('lobject'):
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
59 if litem.get('type') == 'int': retlist.append(int(litem.text))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
60 if litem.get('type') == 'bool': retlist.append(litem.text == 'True')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
61 elif litem.get('type') == 'float': retlist.append(float(litem.text))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
62 elif litem.get('type') == 'list': retlist.append(self.FetchList(litem))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
63 elif litem.get('type') == 'dict': retlist.append(self.FetchDict(litem))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
64 else: retlist.append(str(self.normal(litem.text)))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
65 return retlist
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
66
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
67 def GetList(self, plugname, listname, defaultval=list(), verbose=False):
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
68 listname = self.safe(listname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
69 plugin = self.etree.find(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
70 if plugin is None or plugin.find(listname) is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
71 msg = ["plugindb: no value has been stored for", listname, "in",
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
72 plugname, "so the default has been returned"]
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
73 logger.info(' '.join(msg), verbose)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
74 return defaultval
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
75
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
76 retlist = self.FetchList(plugin.find(listname))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
77 logger.debug("successfully found the list value", verbose)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
78 return retlist
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
79
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
80 def BuildList(self, val):
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
81 list_el = Element('list')
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
82 for item in val:
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
83 i = Element('lobject')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
84 if isinstance(item, bool):
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
85 i.set('type', 'bool')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
86 i.text = str(item)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
87 elif isinstance(item, int):#it's an int
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
88 i.set('type', 'int')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
89 i.text = str(item)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
90 elif isinstance(item, float):#it's a float
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
91 i.set('type', 'float')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
92 i.text = str(item)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
93 elif isinstance(item, (list, tuple)):#it's a list
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
94 i.set('type', 'list')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
95 i.append(self.BuildList(item))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
96 elif isinstance(item, dict):#it's a dictionary
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
97 i.set('type', 'dict')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
98 i.append(self.BuildDict(item))
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
99 else:
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
100 i.set('type', 'str')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
101 i.text = self.safe(item)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
102 list_el.append(i)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
103 return list_el
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
104
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
105 def SetList(self, plugname, listname, val):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
106 listname = self.safe(listname)
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
107 plugin = self.etree.find(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
108 if plugin is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
109 plugin = Element(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
110 self.etree.getroot().append(plugin)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
111 list_el = plugin.find(listname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
112 if list_el is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
113 list_el = Element(listname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
114 list_el.set('type', 'list')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
115 plugin.append(list_el)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
116 else:
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
117 list_el.remove(list_el.find('list'))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
118 list_el.append(self.BuildList(val))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
119 self.SaveDoc()
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
120
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
121 def BuildDict(self, val):
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
122 dict_el = Element('dict')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
123 for key, item in val.iteritems():
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
124 i = Element('dobject')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
125
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
126 if isinstance(item, bool):
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
127 i.set('type', 'bool')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
128 i.set('name', self.safe(key))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
129 i.text = str(item)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
130 elif isinstance(item, int):#it's an int
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
131 i.set('type', 'int')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
132 i.set('name', self.safe(key))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
133 i.text = str(item)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
134 elif isinstance(item, float):#it's a float
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
135 i.set('type', 'float')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
136 i.set('name', self.safe(key))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
137 i.text = str(item)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
138 elif isinstance(item, (list, tuple)):#it's a list
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
139 i.set('type', 'list')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
140 i.set('name', self.safe(key))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
141 i.append(self.BuildList(item))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
142 elif isinstance(item, dict):#it's a dictionary
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
143 i.set('type', 'dict')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
144 i.set('name', self.safe(key))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
145 i.append(self.BuildDict(item))
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
146 else:
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
147 i.set('type', 'str')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
148 i.set('name', self.safe(key))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
149 i.text = self.safe(item)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
150 dict_el.append(i)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
151 return dict_el
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
152
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
153 def SetDict(self, plugname, dictname, val):
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
154 dictname = self.safe(dictname)
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
155 plugin = self.etree.find(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
156 if plugin is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
157 plugin = Element(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
158 self.etree.getroot().append(plugin)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
159 dict_el = plugin.find(dictname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
160 if dict_el is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
161 dict_el = Element(dictname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
162 dict_el.set('type', 'dict')
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
163 plugin.append(dict_el)
163
565ab3d84430 Traipse Alpha 'OpenRPG' {091202-00}
sirebral
parents: 139
diff changeset
164 else:
565ab3d84430 Traipse Alpha 'OpenRPG' {091202-00}
sirebral
parents: 139
diff changeset
165 refs = dict_el.findall('dict')
565ab3d84430 Traipse Alpha 'OpenRPG' {091202-00}
sirebral
parents: 139
diff changeset
166 keys = val.keys()
565ab3d84430 Traipse Alpha 'OpenRPG' {091202-00}
sirebral
parents: 139
diff changeset
167 for r in refs:
565ab3d84430 Traipse Alpha 'OpenRPG' {091202-00}
sirebral
parents: 139
diff changeset
168 if r.find('dobject').get('name') in keys:
565ab3d84430 Traipse Alpha 'OpenRPG' {091202-00}
sirebral
parents: 139
diff changeset
169 logger.debug('Duplicate Dictionary Reference', True); return
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
170 dict_el.append(self.BuildDict(val))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
171 self.SaveDoc()
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
172
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
173 def FetchDict(self, parent):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
174 retdict = {}
163
565ab3d84430 Traipse Alpha 'OpenRPG' {091202-00}
sirebral
parents: 139
diff changeset
175 for ditem in parent.find('dict').findall('dobject'):
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
176 key = self.normal(ditem.get('name'))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
177 if ditem.get('type') == 'int': value = int(ditem.text)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
178 elif ditem.get('type') == 'bool': value = ditem.text == 'True'
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
179 elif ditem.get('type') == 'float': value = float(ditem.text)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
180 elif ditem.get('type') == 'list': value = self.FetchList(ditem)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
181 elif ditem.get('type') == 'dict': value = self.FetchDict(ditem)
163
565ab3d84430 Traipse Alpha 'OpenRPG' {091202-00}
sirebral
parents: 139
diff changeset
182 else: value = str(self.normal(ditem.text))
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
183 retdict[key] = value
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
184 return retdict
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
185
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
186 def GetDict(self, plugname, dictname, defaultval=dict(), verbose=False):
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
187 dictname = self.safe(dictname)
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
188 plugin = self.etree.find(plugname)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
189 if plugin is None or plugin.find(dictname) is None:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
190 msg = ["plugindb: no value has been stored for", dictname, "in",
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
191 plugname, "so the default has been returned"]
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
192 logger.info(' '.join(msg), verbose)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
193 return defaultval
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
194 retdict = self.FetchDict(plugin.find(dictname))
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
195 logger.debug("successfully found dict value", verbose)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
196 return retdict
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
197
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
198 def safe(self, string):
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
199 return string.replace("<", "$$lt$$").replace(">", "$$gt$$")\
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
200 .replace("&","$$amp$$").replace('"',"$$quote$$")
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
201
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
202 def normal(self, string):
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
203 return string.replace("$$lt$$", "<").replace("$$gt$$", ">")\
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
204 .replace("$$amp$$","&").replace("$$quote$$",'"')
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
205
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
206 def SaveDoc(self):
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
207 with open(self.filename, "w") as f:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
208 self.etree.write(f)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
209
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
210 def LoadDoc(self):
122
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
211 with open(self.filename) as f:
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
212 self.etree.parse(f)
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
213
36919b8a3ef9 Traipse Alpha 'OpenRPG' {091031-00}
sirebral
parents: 66
diff changeset
214 plugindb = PluginDB()