comparison plugins/xxhiddendice.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 c160f26ecf65
children 4dc11df853bf
comparison
equal deleted inserted replaced
182:4b2884f29a72 195:b633f4c64aae
1 import os 1 import os, re, wx
2 import re
3 import orpg.pluginhandler 2 import orpg.pluginhandler
4 3
5 class Plugin(orpg.pluginhandler.PluginHandler): 4 class Plugin(orpg.pluginhandler.PluginHandler):
6 # Initialization subroutine. 5 # Initialization subroutine.
7 # 6 #
21 #You can set variables below here. Always set them to a blank value in this section. Use plugin_enabled 20 #You can set variables below here. Always set them to a blank value in this section. Use plugin_enabled
22 #to set their proper values. 21 #to set their proper values.
23 self.hiddenrolls = [] 22 self.hiddenrolls = []
24 self.dicere = "\{([0-9]*d[0-9]*.+)\}" 23 self.dicere = "\{([0-9]*d[0-9]*.+)\}"
25 24
25 def plugin_menu(self):
26 self.menu = wx.Menu()
27 self.toggle = self.menu.AppendCheckItem(wx.ID_ANY, 'On')
28 self.topframe.Bind(wx.EVT_MENU, self.plugin_toggle, self.toggle)
29 self.toggle.Check(True)
30
31 def plugin_toggle(self, evt):
32 pass
26 33
27 def plugin_enabled(self): 34 def plugin_enabled(self):
28 pass 35 pass
29 36
30
31 def plugin_disabled(self): 37 def plugin_disabled(self):
32 pass 38 pass
33 39
34
35 def pre_parse(self, text): 40 def pre_parse(self, text):
36 m = re.search(self.dicere, text) 41 if self.toggle.IsChecked() == True:
37 while m:
38 roll = "[" + m.group(1) + "]"
39 self.hiddenrolls += [self.chat.ParseDice(roll)]
40 text = text[:m.start()] + "(hidden roll)" + text[m.end():]
41 m = re.search(self.dicere, text) 42 m = re.search(self.dicere, text)
43 while m:
44 roll = "[" + m.group(1) + "]"
45 self.hiddenrolls += [self.chat.ParseDice(roll)]
46 text = text[:m.start()] + "(hidden roll)" + text[m.end():]
47 m = re.search(self.dicere, text)
42 return text 48 return text
43 49
44 def post_msg(self, text, myself): 50 def post_msg(self, text, myself):
45 c = 0 51 if self.toggle.IsChecked() == True:
46 a = text.find("(hidden roll)") 52 c = 0
47
48 while len(self.hiddenrolls) > c and a > -1:
49 text = text[:a+14].replace("(hidden roll)", self.hiddenrolls[c]) + text[a+14:]
50 a = text.find("(hidden roll)") 53 a = text.find("(hidden roll)")
51 c += 1 54 while len(self.hiddenrolls) > c and a > -1:
52 if c > 0: 55 text = text[:a+14].replace("(hidden roll)", self.hiddenrolls[c]) + text[a+14:]
53 self.hiddenrolls = [] 56 a = text.find("(hidden roll)")
57 c += 1
58 if c > 0:
59 self.hiddenrolls = []
54 return text 60 return text