mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-16 07:15:24 +01:00
55 lines
1.5 KiB
Python
55 lines
1.5 KiB
Python
import os
|
|
import imp
|
|
|
|
class PluginLoader():
|
|
path = ""
|
|
plugins = []
|
|
listeners = []
|
|
|
|
def __init__(self, path):
|
|
self.path = path
|
|
|
|
|
|
def loadPlugins(self, parser):
|
|
for item in os.listdir(self.path):
|
|
split = os.path.splitext(item)
|
|
if (split[1] == '.py'):
|
|
name = split[0]
|
|
full_name = split[0].replace(os.path.sep, '.')
|
|
m = imp.load_module(full_name, *imp.find_module(name, [self.path]))
|
|
|
|
pluginClass = None
|
|
try:
|
|
pluginClass = getattr(m, name)()
|
|
self.plugins.append(pluginClass)
|
|
try:
|
|
pluginClass.onEnable(parser)
|
|
except AttributeError:
|
|
pass
|
|
try:
|
|
self.listeners.append(pluginClass.packetReceive)
|
|
except AttributeError:
|
|
pass
|
|
except AttributeError:
|
|
print "Plugin " + name + " is malformed"
|
|
|
|
def disablePlugins(self):
|
|
for plugin in self.plugins:
|
|
try:
|
|
plugin.onDisable()
|
|
except AttributeError:
|
|
pass
|
|
|
|
def notifyOptions(self, options):
|
|
for plugin in self.plugins:
|
|
try:
|
|
plugin.optionsParsed(options)
|
|
except AttributeError:
|
|
pass
|
|
|
|
def getPlugins(self):
|
|
return self.plugins
|
|
|
|
def getPacketListeners(self):
|
|
return self.listeners
|