annotate plugins/xxgsc.py @ 189:7c1a8b36b729 beta

Traipse Beta 'OpenRPG' {100125-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 (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 Parent Reference for gametree New Gametree Recursion method, mapping, context sensitivity, and effeciency.. New Features node with bonus nodes and Node Referencing help added Dieroller structure from Core New DieRoller portability for odd Dice Added 7th Sea die roller; 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)]. Included for Mythos roller also New Warhammer FRPG Die Roller (Special thanks to Puu-san for the support) New EZ_Tree Reference system. Push a button, Traipse the tree, get a reference (Beta!) 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 Fix to Whiteboard ID to prevent random line or text deleting. Fixes to Server, Remote Server, and Server GUI Fix to Update Manager; cleaner clode for saved repositories Fixes made to Settings Panel and now reactive settings when Ok is pressed Fixes to Alternity roller's attack roll. Uses a simple Tuple instead of a Splice Fix to Use panel of Forms and Tabbers. Now longer enters design mode Fix made Image Fetching. New fetching image and new failed image Modified ID's to prevent non updated clients from ruining the fix. default_manifest.xml renamed to default_upmana.xml
author sirebral
date Mon, 25 Jan 2010 10:03:16 -0600
parents 24d59375aac9
children 15488fe94f52
rev   line source
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
1 import os
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
2 from orpg.orpg_wx import *
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
3 import random
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
4 import orpg.pluginhandler
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
5
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
6
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
7 ID_ROLL = wx.NewId()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
8
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
9 class Plugin(orpg.pluginhandler.PluginHandler):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
10 # Initialization subroutine.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
11 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
12 # !self : instance of self
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
13 # !chat : instance of the chat window to write to
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
14 def __init__(self, plugindb, parent):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
15 orpg.pluginhandler.PluginHandler.__init__(self, plugindb, parent)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
16
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
17 self.name = 'Game Status Controller'
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
18 self.author = 'Woody, updated by mDuo13 and Calchexas'
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
19 self.help = 'This plugin lets you quickly and easily manage a status that includes \n'
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
20 self.help += 'your HP and AC for AD&D 2nd Edition. Type /gsc to open up the manager\n'
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
21 self.help += 'window, and from there just change the values as necessary and the changes\n'
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
22 self.help += 'will be reflected in your status. To revert to your regular status, close\n'
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
23 self.help += 'the GSC window.'
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
24
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
25 self.frame = None
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
26
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
27 def plugin_enabled(self):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
28 self.plugin_addcommand('/gsc', self.on_gsc, '- The GSC command')
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
29 self.frame = RollerFrame(None, -1, "Game Status Controller (GSC)", self)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
30 self.frame.Hide()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
31
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
32 item = wx.MenuItem(self.menu, wx.ID_ANY, "GSC Window", "GSC Window", wx.ITEM_CHECK)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
33 self.topframe.Bind(wx.EVT_MENU, self._toggleWindow, item)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
34 self.menu.AppendItem(item)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
35
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
36 def plugin_disabled(self):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
37 self.plugin_removecmd('/gsc')
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
38 try:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
39 self.frame.TimeToQuit(1)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
40 except:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
41 pass
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
42
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
43 def on_gsc(self, cmdargs):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
44 item = self.menu.FindItemById(self.menu.FindItem("GSC Window"))
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
45 item.Check(True)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
46 self.frame.Show()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
47 self.frame.Raise()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
48
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
49 #Events
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
50 def _toggleWindow(self, evt):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
51 id = evt.GetId()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
52 item = self.menu.FindItemById(id)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
53 if self.frame.IsShown():
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
54 self.frame.Hide()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
55 item.Check(False)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
56 else:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
57 self.frame.Show()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
58 item.Check(True)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
59
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
60
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
61 class RollerFrame(wx.Frame):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
62 def __init__(self, parent, ID, title, plugin):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
63 wx.Frame.__init__(self, parent, ID, title,
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
64 wx.DefaultPosition, wx.Size(250, 110))
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
65
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
66 self.settings = plugin.settings
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
67 self.session = plugin.session
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
68 self.plugin = plugin
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
69
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
70 self.panel = wx.Panel(self,-1)
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
71 sizer = wx.GridBagSizer(1, 2)
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
72 self.panel.SetSizer(sizer)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
73 menu = wx.Menu()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
74 menu.AppendSeparator()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
75 menu.Append(wx.ID_EXIT, "&Close", "Close this window")
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
76 menuBar = wx.MenuBar()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
77 menuBar.Append(menu, "&File");
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
78 self.SetMenuBar(menuBar)
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 self.old_idle = self.settings.get_setting('IdleStatusAlias')
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
81
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
82 ac_text = wx.StaticText(self.panel, -1, "AC:", wx.Point(0, 5))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
83 self.ac = wx.SpinCtrl(self.panel, ID_ROLL, "",
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
84 wx.Point(18, 0), wx.Size(45, -1), min = -100, max = 100, initial = 10)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
85 self.ac.SetValue(10)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
86
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
87 touch_text = wx.StaticText(self.panel, -1, "Touch:", wx.Point(0, 25))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
88 self.touch = wx.SpinCtrl(self.panel, ID_ROLL, "",
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
89 wx.Point(60, 25), wx.Size(45, -1), min = -100, max = 100, initial = 10)
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
90 self.touch.SetValue(10)
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
91
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
92 ff_text = wx.StaticText(self.panel, -1, "FF:", wx.Point(115, 25))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
93 self.ff = wx.SpinCtrl(self.panel, ID_ROLL, "",
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
94 wx.Point(165, 25), wx.Size(45, -1), min = -100, max = 100, initial = 10)
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
95 self.ff.SetValue(10)
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
96
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
97 max_hp_text = wx.StaticText(self.panel, -1, "/", wx.Point(150, 5))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
98 self.max_hp = wx.SpinCtrl(self.panel, ID_ROLL, "",
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
99 wx.Point(158, 0), wx.Size(48, -1), min = -999, max = 999, initial = 10)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
100 self.max_hp.SetValue(10)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
101
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
102 hp_text = wx.StaticText(self.panel, -1, "HP:", wx.Point(80, 5))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
103 self.hp = wx.SpinCtrl(self.panel, ID_ROLL, "",
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
104 wx.Point(98, 0), wx.Size(48, -1), min = -999, max = 999, initial = 10)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
105 self.hp.SetValue(10)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
106
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
107 sizer.Add(ac_text, (1,0), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
108 sizer.Add(self.ac, (1,1), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
109 sizer.Add(touch_text, (1,2), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
110 sizer.Add(self.touch, (1,3), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
111 sizer.Add(ff_text, (1,4), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
112 sizer.Add(self.ff, (1,5), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
113 sizer.Add(hp_text, (0,0), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
114 sizer.Add(self.hp, (0,1), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
115 sizer.Add(max_hp_text, (0,2), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
116 sizer.Add(self.max_hp, (0,3), span=(1,1))
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
117 self.SetMinSize((350,100))
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
118 self.Bind(wx.EVT_SPINCTRL, self.SetStatus, id=ID_ROLL)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
119 self.Bind(wx.EVT_TEXT, self.SetStatus, id=ID_ROLL)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
120 self.Bind(wx.EVT_MENU, self.TimeToQuit, id=wx.ID_EXIT)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
121 self.Bind(wx.EVT_CLOSE, self._close)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
122 self.SetStatus(None)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
123
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
124 def SetStatus(self, evt):
187
24d59375aac9 Traipse Beta 'OpenRPG' {100123-01}
sirebral
parents: 0
diff changeset
125 new_status = "AC: " + str(self.ac.GetValue()) + " (Touch: " + str(self.touch.GetValue()) + " FF: " + str(self.ff.GetValue()) + ")" + " HP: " + str(self.hp.GetValue()) + "/" + str(self.max_hp.GetValue())
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
126 self.settings.set_setting('IdleStatusAlias',new_status)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
127 self.session.set_text_status(new_status)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
128
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
129 def TimeToQuit(self, event):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
130 self.settings.set_setting('IdleStatusAlias',self.old_idle)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
131 self.session.set_text_status(self.old_idle)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
132 self.frame = None
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
133 self.Destroy()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
134
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
135 def _close(self, evt):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
136 self.Hide()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
137 item = self.plugin.menu.FindItemById(self.plugin.menu.FindItem("GSC Window"))
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
138 item.Check(False)