Mercurial > traipse_dev
annotate orpg/dieroller/utils.py @ 163:565ab3d84430 alpha
Traipse Alpha 'OpenRPG' {091202-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 (Keeping up with Beta)
New Features:
Added Bookmarks
Added 'boot' command to remote admin
Added confirmation window for sent nodes
Minor changes to allow for portability to an OpenSUSE linux OS
Miniatures Layer pop up box allows users to turn off Mini labels, from
FlexiRPG
Zoom Mouse plugin added
Images added to Plugin UI
Switching to Element Tree
Map efficiency, from FlexiRPG
Added Status Bar to Update Manager
New TrueDebug Class in orpg_log (See documentation for usage)
Portable Mercurial
Tip of the Day added, from Core and community
New Reference Syntax added for custom PC sheets
New Child Reference for gametree
New Gametree Recursion method, mapping, context sensitivity, and
effeciency..
New Features node with bonus nodes and Node Referencing help added
Added 7th Sea die roller method; ie [7k3] =
[7d10.takeHighest(3).open(10)]
New 'Mythos' System die roller added
Added new vs. die roller method for WoD; ie [3v3] = [3d10.vs(3)].
Includes support for Mythos roller.
Fixes:
Fix to Text based Server
Fix to Remote Admin Commands
Fix to Pretty Print, from Core
Fix to Splitter Nodes not being created
Fix to massive amounts of images loading, from Core
Fix to Map from gametree not showing to all clients
Fix to gametree about menus
Fix to Password Manager check on startup
Fix to PC Sheets from tool nodes. They now use the tabber_panel
Fixed Whiteboard ID to prevent random line or text deleting.
Modified ID's to prevent non updated clients from ruining the fix.
default_manifest.xml renamed to default_upmana.xml
Fix to Update Manager; cleaner clode for saved repositories
Fixes made to Settings Panel and no reactive settings when Ok is
pressed.
author | sirebral |
---|---|
date | Wed, 02 Dec 2009 21:20:44 -0600 |
parents | bf799efe7a8a |
children |
rev | line source |
---|---|
155 | 1 #!/usr/bin/env python |
2 # Copyright (C) 2000-2001 The OpenRPG Project | |
3 # | |
4 # openrpg-dev@lists.sourceforge.net | |
5 # | |
6 # This program is free software; you can redistribute it and/or modify | |
7 # it under the terms of the GNU General Public License as published by | |
8 # the Free Software Foundation; either version 2 of the License, or | |
9 # (at your option) any later version. | |
10 # | |
11 # This program is distributed in the hope that it will be useful, | |
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 # GNU General Public License for more details. | |
15 # | |
16 # You should have received a copy of the GNU General Public License | |
17 # along with this program; if not, write to the Free Software | |
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
19 # -- | |
20 # | |
21 # File: dieroller/utils.py | |
22 # Author: OpenRPG Team | |
23 # Maintainer: | |
24 # Version: | |
25 # $Id: utils.py,v 1.22 2007/05/05 05:30:10 digitalxero Exp $ | |
26 # | |
27 # Description: Classes to help manage the die roller | |
28 # | |
29 | |
30 __version__ = "$Id: utils.py,v 1.22 2007/05/05 05:30:10 digitalxero Exp $" | |
31 | |
32 from die import * | |
33 from wod import * | |
34 from d20 import * | |
35 from hero import * | |
36 from shadowrun import * | |
37 from sr4 import * | |
38 from hackmaster import * | |
39 from wodex import * | |
40 from srex import * | |
41 from gurps import * | |
42 from runequest import * | |
43 from savage import * | |
66 | 44 from trinity import * |
163 | 45 from mythos import * |
155 | 46 import re |
47 | |
163 | 48 rollers = ['std','wod','d20','hero','shadowrun', 'sr4','hackmaster','srex','wodex', 'gurps', 'runequest', 'sw', 'trinity', 'mythos'] |
155 | 49 |
50 class roller_manager: | |
51 | |
52 def __init__(self,roller_class="d20"): | |
53 try: self.setRoller(roller_class) | |
54 except: self.roller_class = "std" | |
55 | |
56 | |
57 def setRoller(self,roller_class): | |
58 try: | |
59 rollers.index(roller_class) | |
60 self.roller_class = roller_class | |
61 except: raise Exception, "Invalid die roller!" | |
62 | |
63 | |
64 def getRoller(self): | |
65 return self.roller_class | |
66 | |
67 | |
68 def listRollers(self): | |
69 return rollers | |
70 | |
71 | |
72 def stdDieToDClass(self,match): | |
73 s = match.group(0) | |
163 | 74 num_sides = s.split('d') |
75 if len(num_sides) > 1: num_sides; num = num_sides[0]; sides = num_sides[1] | |
76 else: return self.non_stdDieToDClass(s) # Use a non standard converter. | |
155 | 77 |
78 if sides.strip().upper() == 'F': sides = "'f'" | |
79 try: | |
163 | 80 if int(num) > 100 or int(sides) > 10000: return None |
155 | 81 except: pass |
82 return "(" + num.strip() + "**" + self.roller_class + "(" + sides.strip() + "))" | |
83 | |
163 | 84 |
85 def non_stdDieToDClass(self, s): | |
86 num_sides = s.split('v') | |
87 if len(num_sides) > 1: | |
88 num_sides; num = num_sides[0]; sides = num_sides[1] | |
89 if self.roller_class == 'stry': sides = '12'; target = num_sides[1] | |
90 elif self.roller_class == 'wod': sides = '10'; target = num_sides[1] | |
91 return "("+num.strip()+"**"+self.roller_class+"("+sides.strip()+")).vs("+target+")" | |
92 num_sides = s.split('k') | |
93 if len(num_sides) > 1: | |
94 num_sides; num = num_sides[0]; sides = '10'; target = num_sides[1] | |
95 return "("+num.strip()+"**"+self.roller_class+"("+sides.strip()+")).takeHighest("+target+").open(10)" | |
96 | |
97 | |
155 | 98 # Use this to convert ndm-style (3d6) dice to d_base format |
99 | |
100 def convertTheDieString(self,s): | |
101 reg = re.compile("(?:\d+|\([0-9\*/\-\+]+\))\s*[a-zA-Z]+\s*[\dFf]+") | |
102 (result, num_matches) = reg.subn(self.stdDieToDClass, s) | |
103 if num_matches == 0 or result is None: | |
104 try: | |
105 s2 = self.roller_class + "(0)." + s | |
106 test = eval(s2) | |
107 return s2 | |
108 except: pass | |
109 return result | |
110 | |
111 | |
112 def proccessRoll(self,s): | |
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
|
113 return str(eval(self.convertTheDieString(s))) |
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
|
114 |
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
|
115 DiceManager = roller_manager |