Mercurial > traipse_dev
view orpg/tools/pluginui.py @ 26:65c5cb9be59c traipse_dev
This patch fixes the known issue with users not being able to set their name
in the settings menu. This version also cleans up the themes settings in
main.py and preps for Ornery Orc. Some cleaning was done with
orpg_settings.py also
author | sirebral |
---|---|
date | Fri, 31 Jul 2009 00:44:10 -0500 |
parents | 4385a7d0efd1 |
children | c54768cffbd4 |
line wrap: on
line source
from orpg.orpg_wx import * from orpg.orpgCore import * import orpg.plugindb as plugindb import orpg.dirpath sys.path.append(orpg.dirpath.dir_struct["plugins"]) class PluginFrame(wx.Frame): def __init__(self, parent): wx.Frame.__init__(self, parent, wx.ID_ANY, "Plugin Control Panel") self.panel = wx.Panel(self, wx.ID_ANY) self.plugindb = plugindb.PluginDB() self.parent = parent self.startplugs = self.plugindb.GetList("plugincontroller", "startup_plugins", []) self.available_plugins = {} self.enabled_plugins = {} self.pluginNames = [] self.SetMinSize((380, 480)) self._selectedPlugin = None self.Bind(wx.EVT_CLOSE, self._close) #Public Methods def Start(self): self.__buildGUI() self._update(None) self.base_sizer = wx.BoxSizer(wx.VERTICAL) self.base_sizer.Add(self.panel, 1, wx.EXPAND) self.panel.SetSizer(self.main_sizer) self.panel.SetAutoLayout(True) self.panel.Fit() self.SetSizer(self.base_sizer) self.SetAutoLayout(True) self.Fit() def get_activeplugins(self): return self.enabled_plugins def get_startplugins(self): return self.startplugs #Private Methods def __buildGUI(self): self.main_sizer = wx.BoxSizer(wx.VERTICAL) self.btn_sizer = wx.BoxSizer(wx.HORIZONTAL) self.btn_sizer2 = wx.BoxSizer(wx.HORIZONTAL) self.head_sizer = wx.BoxSizer(wx.HORIZONTAL) #pnl = wx.Panel(self.panel, wx.ID_ANY) self.err_sizer = wx.BoxSizer(wx.VERTICAL) self.err_sizer.Add(self.head_sizer, 0, wx.EXPAND) self.errorMessage = wx.StaticText(self.panel, wx.ID_ANY, "") self.err_sizer.Add(self.errorMessage, 0, wx.EXPAND) self.main_sizer.Add(self.err_sizer, 0, wx.EXPAND) self.pluginList = wx.ListCtrl(self.panel, wx.ID_ANY, style=wx.LC_SINGLE_SEL|wx.LC_REPORT|wx.LC_HRULES|wx.LC_SORT_ASCENDING) self.pluginList.InsertColumn(1, "Name") self.pluginList.InsertColumn(2, "Autostart") self.pluginList.InsertColumn(3, "Author") self.Bind(wx.EVT_LIST_ITEM_SELECTED, self._selectPlugin, self.pluginList) self.Bind(wx.EVT_LIST_ITEM_DESELECTED, self._deselectPlugin, self.pluginList) self.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self._togglePlugin, self.pluginList) self.Bind(wx.EVT_LIST_COL_CLICK, self._sort, self.pluginList) self.main_sizer.Add(self.pluginList, 1, wx.EXPAND) self.enableAllBtn = wx.Button(self.panel, wx.ID_ANY, "Enable All") self.enableBtn = wx.Button(self.panel, wx.ID_ANY, "Enable") self.disableAllBtn = wx.Button(self.panel, wx.ID_ANY, "Disable All") self.disableBtn = wx.Button(self.panel, wx.ID_ANY, "Disable") self.autostartBtn = wx.Button(self.panel, wx.ID_ANY, "Autostart") self.helpBtn = wx.Button(self.panel, wx.ID_ANY, "Plugin Info") self.updateBtn = wx.Button(self.panel, wx.ID_ANY, "Update List") self.Bind(wx.EVT_BUTTON, self._enableAll, self.enableAllBtn) self.Bind(wx.EVT_BUTTON, self._enable, self.enableBtn) self.Bind(wx.EVT_BUTTON, self._disableAll, self.disableAllBtn) self.Bind(wx.EVT_BUTTON, self._disable, self.disableBtn) self.Bind(wx.EVT_BUTTON, self._autostart, self.autostartBtn) self.Bind(wx.EVT_BUTTON, self._help, self.helpBtn) self.Bind(wx.EVT_BUTTON, self._update, self.updateBtn) self.btn_sizer.Add(self.enableBtn, 0, wx.EXPAND) self.btn_sizer.Add(self.disableBtn, 0, wx.EXPAND) self.btn_sizer.Add(self.autostartBtn, 0, wx.EXPAND) self.btn_sizer.Add(self.helpBtn, 0, wx.EXPAND) self.btn_sizer2.Add(self.updateBtn, 0, wx.EXPAND) self.btn_sizer2.Add(self.enableAllBtn, 0, wx.EXPAND) self.btn_sizer2.Add(self.disableAllBtn, 0, wx.EXPAND) self.__disablePluginBtns() self.main_sizer.Add(self.btn_sizer, 0, wx.EXPAND) self.main_sizer.Add(self.btn_sizer2, 0, wx.EXPAND) def __disablePluginBtns(self): self.enableBtn.Disable() self.disableBtn.Disable() self.autostartBtn.Disable() self.helpBtn.Disable() def __enablePluginBtns(self): self.autostartBtn.Label = "Autostart" self.enableBtn.Enable() self.disableBtn.Enable() self.autostartBtn.Enable() self.helpBtn.Enable() def __error(self, errMsg): self.errorMessage.Label += "\n" + str(errMsg) self.__doLayout() def __clearError(self): self.errorMessage.Label = "" self.__doLayout() def __checkIdx(self, evt): if isinstance(evt, int): return evt elif self._selectedPlugin is not None: return self._selectedPlugin else: dlg = wx.MessageDialog(None, "You need to select a plugin before you can use this!", 'ERROR', wx.OK) dlg.ShowModal() dlg.Destroy() return None def __impPlugin(self, pname): try: if "plugins." + pname in sys.modules: del sys.modules["plugins." + pname]#to ensure that the newly-imported one will be used correctly. No, reload() is not a better way to do this. mod = __import__("plugins." + pname) plugin = getattr(mod, pname) pdata = plugin.Plugin(self.plugindb, self.parent) self.available_plugins[pdata.name] = [pname, pdata, pdata.author, pdata.help] return plugin except Exception, e: self.__error(e) traceback.print_exc() print e def __doLayout(self): self.Freeze() self.panel.Layout() self.Fit() self.Thaw() def __pluginSort(self, item1, item2): return cmp(self.pluginNames[item1], self.pluginNames[item2]) #Events def _selectPlugin(self, evt): self._selectedPlugin = evt.GetIndex() self.__enablePluginBtns() pname = self.pluginList.GetItem(self._selectedPlugin, 0).GetText() info = self.available_plugins[pname] if info[0] in self.enabled_plugins: self.enableBtn.Disable() else: self.disableBtn.Disable() if self.pluginList.GetItem(self._selectedPlugin, 1).GetText() == "X": self.autostartBtn.Label = "Disable Autostart" self.__doLayout() self.pluginList.SetItemState(self._selectedPlugin, wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED) def _deselectPlugin(self, evt): self.__disablePluginBtns() self._selectedPlugin = None def _togglePlugin(self, evt): idx = evt.GetIndex() pname = self.pluginList.GetItem(idx, 0).GetText() info = self.available_plugins[pname] if info[0] in self.enabled_plugins: self._disable(idx) else: self._enable(idx) self.pluginList.SetItemState(self._selectedPlugin, 0, wx.LIST_STATE_SELECTED) def _enableAll(self, evt): for pname in self.available_plugins.iterkeys(): info = self.available_plugins[pname] if info[0] not in self.enabled_plugins: idx = self.pluginList.FindItem(-1, pname) self._enable(idx) def _enable(self, evt): idx = self.__checkIdx(evt) if idx is None: return pname = self.pluginList.GetItem(idx, 0).GetText() info = self.available_plugins[pname] info[1].menu_start() try: info[1].plugin_enabled() except Exception, e: self.__error(e) traceback.print_exc() print e self.pluginList.SetItemBackgroundColour(idx, (255,0,0)) info[1].menu_cleanup() return self.enabled_plugins[info[0]] = info[1] self.pluginList.SetItemBackgroundColour(idx, (0,255,0)) self.enableBtn.Disable() self.disableBtn.Enable() def _disableAll(self, evt): for entry in self.enabled_plugins.keys(): idx = self.pluginList.FindItem(0, self.enabled_plugins[entry].name) self._disable(idx) def _disable(self, evt): idx = self.__checkIdx(evt) if idx is None: return pname = self.pluginList.GetItem(idx, 0).GetText() info = self.available_plugins[pname] info[1].menu_cleanup() try: info[1].plugin_disabled() del self.enabled_plugins[info[0]] except Exception, e: self.__error(e) traceback.print_exc() print e self.pluginList.SetItemBackgroundColour(idx, (255,0,0)) return self.pluginList.SetItemBackgroundColour(idx, (255,255,255)) self.disableBtn.Disable() self.enableBtn.Enable() def _autostart(self, evt): idx = self.__checkIdx(evt) if idx is None: return if self.pluginList.GetItem(idx, 1).GetText() == "X": self.startplugs.remove(self.pluginList.GetItem(idx, 0).GetText()) self.pluginList.SetStringItem(idx, 1, "") self.autostartBtn.Label = "Autostart" else: self.startplugs.append(self.pluginList.GetItem(idx, 0).GetText()) self.pluginList.SetStringItem(idx, 1, "X") self.autostartBtn.Label = "Disable Autostart" self.plugindb.SetList("plugincontroller", "startup_plugins", self.startplugs) self.__doLayout() def _help(self, evt): if isinstance(evt, int): idx = evt elif self._selectedPlugin is not None: idx = self._selectedPlugin else: dlg = wx.MessageDialog(None, "You need to select a plugin before you can use this!", 'ERROR', wx.OK) dlg.ShowModal() dlg.Destroy() return pname = self.pluginList.GetItem(idx, 0).GetText() info = self.available_plugins[pname] msg = "Author(s):\t" + info[2] + "\n\n" + info[3] dlg = wx.MessageDialog(None, msg, 'Plugin Information: ' + pname, wx.OK) dlg.ShowModal() dlg.Destroy() def _update(self, evt): self.__clearError() self._disableAll(None) self.available_plugins = {} self.errorMessage.Label = "" self.pluginList.DeleteAllItems() self.pluginNames = [] list_of_plugin_dir = os.listdir(orpg.dirpath.dir_struct["plugins"]) for p in list_of_plugin_dir: #print p[:2]; print p[-4:] if p[:2].lower()=="xx" and p[-3:]==".py": self.__impPlugin(p[:-3]) elif p[:2].lower()=="xx" and p[-4:]==".pyc": self.__impPlugin(p[:-4]) i = 0 for plugname, info in self.available_plugins.iteritems(): self.pluginNames.append(plugname) idx = self.pluginList.InsertStringItem(self.pluginList.GetItemCount(), plugname) self.pluginList.SetStringItem(idx, 2, info[2]) if plugname in self.startplugs: self.pluginList.SetStringItem(idx, 1, "X") self._enable(idx) self.pluginList.SetItemData(idx, i) i += 1 self.pluginList.SetColumnWidth(0, wx.LIST_AUTOSIZE) self.__doLayout() self.__disablePluginBtns() def _close(self, evt): self.Hide() def _sort(self, evt): self.pluginList.SortItems(self.__pluginSort)