-
Notifications
You must be signed in to change notification settings - Fork 2
/
mod2lua.py
145 lines (111 loc) · 4.79 KB
/
mod2lua.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import sys
import shutil
import os
import re
import time
import traceback
doubleQuot = 'TMP_DOUBLE_QUOT'
newline = 'TMP_NEWLINE'
tab = 'TMP_TAB'
spaceDict = ['Default', 'Server Only', 'Client Only', 'Unknown Space 3',
'Unknown Space 4', 'Server', 'Client', 'Unknown Space 7', 'Unknown Space 8', 'Multicast']
def ModToTxt(modFileName):
txtFileName = modFileName.replace('.mod', '.txt')
with open(modFileName, 'r', encoding='utf-8', errors='ignore') as mod, \
open(txtFileName, 'w', encoding='utf-8') as txt:
for line in mod:
line = ''.join(c for c in line if 0 < ord(c) < 127 or ord(c) > 160)
txt.write(line)
return txtFileName
def parseProperties(properties):
content = '--Properties--\n\n'
for property in re.findall('{.*?"Name".*?}', properties):
type = re.search('"Type":"(.*?)"', property).group(1)
name = re.search('"Name":"(.*?)"', property).group(1)
value = re.search('"DefaultValue":"(.*?)"', property).group(1)
if type == 'array' or type == 'dictionary':
value = value.replace('|', ', ')
type += f'<{value}>'
value = ''
elif type == 'table' or type == 'Entity' or type == 'Component':
value = ''
else:
value = f' = {value}'
content += f'{type} {name}{value}\n'
return content
def parseMethods(methods):
content = '--Methods--\n\n'
for method in re.findall('{"Return".*?"Scope".*?}', methods):
space = re.search('"ExecSpace":(.*?),', method).group(1)
execSpace = spaceDict[int(space)]
type = re.search('"Type":"(.*?)"', method).group(1)
name = re.search('"Scope".*?"Name":"(.*?)"', method).group(1)
arguments = ""
if method.find('"Arguments":[') != -1:
args = re.search(
'"Arguments":\[(.*?)\],"Code"', method).group(1)
for arg in re.findall('{.*?"Name".*?}', args):
argType = re.search('"Type":"(.*?)"', arg).group(1)
argName = re.search('"Name":"(.*?)"', arg).group(1)
arguments += f', {argType} {argName}'
arguments = arguments.replace(', ', '', 1)
code = re.search('"Code":"(.*?)"', method).group(1)
code = code.replace(newline, newline + tab)
content += f'[{execSpace}]\n{type} {name}({arguments})\n{{\n{tab}{code}\n}}\n\n'
return content
def parseEvents(events):
content = '--Events--\n\n'
for event in re.findall('{"Name".*?"ExecSpace".*?}', events):
space = re.search('"ExecSpace":(.*?)}', event).group(1)
execSpace = spaceDict[int(space)]
type = re.search('"Name":"(.*?)"', event).group(1)
argType = re.search('"EventName":"(.*?)"', event).group(1)
code = re.search('"Code":"(.*?)"', event).group(1)
code = code.replace(newline, newline+tab)
content += f'[{execSpace}]\n{type}({argType} event)\n{{\n{tab}{code}\n}}\n\n'
return content
def parseScript(folderName, line):
scriptName = re.search('"Name":"(.*?)"', line).group(1)
properties = re.search('"Properties".*"Methods"', line).group(0)
parsedProperties = parseProperties(properties)
methods = re.search('"Methods".*"EntityEventHandlers"', line).group(0)
parsedMethods = parseMethods(methods)
events = re.search('"EntityEventHandlers".*', line).group(0)
parsedEvents = parseEvents(events)
content = f'{parsedProperties}\n\n{parsedMethods}\n{parsedEvents}'
content = content.replace(doubleQuot, '"')
content = content.replace(newline, '\n')
content = content.replace(tab, '\t')
file = f'{folderName}/{scriptName}.lua'
with open(file, 'w', encoding='utf-8') as script:
script.write(content)
def TxtToLua(txtFileName):
with open(txtFileName, 'r', encoding='utf-8') as txt:
folderName = txtFileName.replace('.txt', '')
tmpFolderName = folderName + '.tmp'
if os.path.exists(tmpFolderName):
shutil.rmtree(tmpFolderName)
os.mkdir(tmpFolderName)
for line in txt:
line = line.replace('\\"', doubleQuot)
line = line.replace('\\n', newline)
line = line.replace('\\t', tab)
if '"ScriptVersion"' in line:
parseScript(tmpFolderName, line)
if os.path.exists(folderName):
shutil.rmtree(folderName)
os.rename(tmpFolderName, folderName)
def ModToLua(modFileName):
txtFileName = ModToTxt(modFileName)
TxtToLua(txtFileName)
def logError(err):
current_time = time.strftime(
"%Y.%m.%d/%H:%M:%S", time.localtime(time.time()))
with open("log.txt", "a") as f:
f.write(f"[{current_time}] - {err}\n")
try:
modFileName = sys.argv[1]
ModToLua(modFileName)
except Exception:
err = traceback.format_exc()
logError(str(err))