forked from Dpeta/pesterchum-alt-servers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluaquirks.py
95 lines (77 loc) · 2.98 KB
/
luaquirks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
"""
Okay so, this definitely doesn't work in its current state-
Probably broke when transitioning to Python 3? Might've been broken for longer-
Hard for me to work on this since I know absolutely nothing about lua, plus I'm not sure what 'lua' library this was originally supposed to work with.
+ I asked and there doesn't seem to be a single person who actually used this 💀
import logging
import os
import sys
import re
from PyQt6 import QtCore, QtGui, QtWidgets
import ostools
from quirks import ScriptQuirks
PchumLog = logging.getLogger('pchumLogger')
try:
try:
import lua
except ImportError:
import lupa
from lupa import LuaRuntime
lua = LuaRuntime(unpack_returned_tuples=True)
PchumLog.info("Lua \"successfully\" imported.")
except ImportError as e:
PchumLog.warning("No lua library. " + str(e))
lua = None
class LuaQuirks(ScriptQuirks):
def loadModule(self, name, filename):
if lua is None:
return None
lua.globals().package.loaded[name] = None
CurrentDir = os.getcwd()
os.chdir('quirks')
lua.globals().package.path = filename.replace(name+".lua", "?.lua")
try:
return lua.require(name)
except Exception as e:
PchumLog.warning(e)
return None
finally:
os.chdir(CurrentDir)
def getExtension(self):
return '.lua'
def modHas(self, module, attr):
return attr in module
def register(self, module):
class Wrapper(object):
def __init__(self, module, name):
self.module = module
self.name = name
def __call__(self, text):
CurrentDir = os.getcwd()
os.chdir('quirks')
try:
return self.module.commands[self.name](lua.globals().tostring(text))
except Exception as e:
PchumLog.warning(e)
return None
finally:
os.chdir(CurrentDir)
for name in module.commands:
CommandWrapper = Wrapper(module,name)
try:
if not isinstance(CommandWrapper("test"), str):
raise Exception
except:
#print("Quirk malformed: %s" % (name))
PchumLog.error("Quirk malformed: %s" % (name))
# Since this is executed before QApplication is constructed,
# This prevented pesterchum from starting entirely when a quirk was malformed :/
# (QWidget: Must construct a QApplication before a QWidget)
if QtWidgets.QApplication.instance() != None:
msgbox = QtWidgets.QMessageBox()
msgbox.setWindowTitle("Error!")
msgbox.setText("Quirk malformed: %s" % (name))
msgbox.exec_()
else:
self.quirks[name] = CommandWrapper
"""