forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModTools.lua
243 lines (229 loc) · 5.75 KB
/
ModTools.lua
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
-- Path of Building
--
-- Module: Mod Tools
-- Various functions for dealing with modifiers
--
local pairs = pairs
local ipairs = ipairs
local select = select
local type = type
local t_insert = table.insert
local t_sort = table.sort
local m_floor = math.floor
local m_abs = math.abs
local s_format = string.format
local band = bit.band
local bor = bit.bor
modLib = { }
function modLib.createMod(modName, modType, modVal, ...)
local flags = 0
local keywordFlags = 0
local tagStart = 1
local source
if select('#', ...) >= 1 and type(select(1, ...)) == "string" then
source = select(1, ...)
tagStart = 2
end
if select('#', ...) >= 2 and type(select(2, ...)) == "number" then
flags = select(2, ...)
tagStart = 3
end
if select('#', ...) >= 3 and type(select(3, ...)) == "number" then
keywordFlags = select(3, ...)
tagStart = 4
end
return {
name = modName,
type = modType,
value = modVal,
flags = flags,
keywordFlags = keywordFlags,
source = source,
select(tagStart, ...)
}
end
modLib.parseMod, modLib.parseModCache = LoadModule("Modules/ModParser", launch)
function modLib.parseTags(line, currentModType)
-- should parse this correctly instead of string match
if not line then
return "none", {}
end
local extraTags = {}
local modType = currentModType
for line2 in line:gmatch("([^,]*),?") do
if line2:find("type=GlobalEffect/") then
if line2:find("type=GlobalEffect/effectType=AuraDebuff") then
t_insert(extraTags, {
type = "GlobalEffect",
effectType = "AuraDebuff"
})
modType = "AuraDebuff"
elseif line2:find("type=GlobalEffect/effectType=Aura") then
t_insert(extraTags, {
type = "GlobalEffect",
effectType = "Aura"
})
modType = "Aura"
elseif line2:find("type=GlobalEffect/effectType=Curse") then
t_insert(extraTags, {
type = "GlobalEffect",
effectType = "Curse"
})
modType = "Curse"
end
elseif line2:find("type=Condition/") then
if line2:find("type=Condition/neg=true/var=RareOrUnique") then
t_insert(extraTags, {
type = "Condition",
neg = true,
var = "RareOrUnique"
})
elseif line2:find("type=Condition/var=RareOrUnique") then
t_insert(extraTags, {
type = "Condition",
var = "RareOrUnique"
})
end
end
end
return modType, extraTags
end
function modLib.parseFormattedSourceMod(line, currentModType)
local modStrings = {}
for line2 in line:gmatch("([^|]*)|?") do
t_insert(modStrings, line2)
end
if #modStrings >= 4 then
local mod = {
value = (modStrings[1] == "true" and true) or tonumber(modStrings[1]) or 0,
source = modStrings[2],
name = modStrings[3],
type = modStrings[4],
flags = ModFlag[modStrings[5]] or 0,
keywordFlags = KeywordFlag[modStrings[6]] or 0,
}
local modType, Tags = modLib.parseTags(modStrings[7], currentModType)
for _, tag in ipairs(Tags) do
t_insert(mod, tag)
end
return modType, mod
end
return currentModType, nil
end
function modLib.compareModParams(modA, modB)
if modA.name ~= modB.name or modA.type ~= modB.type or modA.flags ~= modB.flags or modA.keywordFlags ~= modB.keywordFlags or #modA ~= #modB then
return false
end
for i, tag in ipairs(modA) do
if tag.type ~= modB[i].type then
return false
end
if modLib.formatTag(tag) ~= modLib.formatTag(modB[i]) then
return false
end
end
return true
end
function modLib.formatFlags(flags, src)
local flagNames = { }
for name, val in pairs(src) do
if band(flags, val) == val then
t_insert(flagNames, name)
end
end
t_sort(flagNames)
local ret
for i, name in ipairs(flagNames) do
ret = (ret and ret.."," or "") .. name
end
return ret or "-"
end
function modLib.formatTag(tag)
local paramNames = { }
local haveType
for name, val in pairs(tag) do
if name == "type" then
haveType = true
else
t_insert(paramNames, name)
end
end
t_sort(paramNames)
if haveType then
t_insert(paramNames, 1, "type")
end
local str = ""
for i, paramName in ipairs(paramNames) do
if i > 1 then
str = str .. "/"
end
local val = tag[paramName]
if type(val) == "table" then
if val[1] then
if type(val[1]) == "table" then
val = modLib.formatTags(val)
else
val = table.concat(val, ",")
end
else
val = modLib.formatTag(tag[paramName])
end
val = "{"..val.."}"
end
str = str .. s_format("%s=%s", paramName, tostring(val))
end
return str
end
function modLib.formatTags(tagList)
local ret
for _, tag in ipairs(tagList) do
ret = (ret and ret.."," or "") .. modLib.formatTag(tag)
end
return ret or "-"
end
function modLib.formatValue(value)
if type(value) ~= "table" then
return tostring(value)
end
local paramNames = { }
local haveType
for name, val in pairs(value) do
if name == "type" then
haveType = true
else
t_insert(paramNames, name)
end
end
t_sort(paramNames)
if haveType then
t_insert(paramNames, 1, "type")
end
local ret = ""
for i, paramName in ipairs(paramNames) do
if i > 1 then
ret = ret .. "/"
end
if paramName == "mod" then
ret = ret .. s_format("%s=[%s]", paramName, modLib.formatMod(value[paramName]))
else
ret = ret .. s_format("%s=%s", paramName, modLib.formatValue(value[paramName]))
end
end
return "{"..ret.."}"
end
function modLib.formatModParams(mod)
return s_format("%s|%s|%s|%s|%s", mod.name, mod.type, modLib.formatFlags(mod.flags, ModFlag), modLib.formatFlags(mod.keywordFlags, KeywordFlag), modLib.formatTags(mod))
end
function modLib.formatMod(mod)
return modLib.formatValue(mod.value) .. " = " .. modLib.formatModParams(mod)
end
function modLib.formatSourceMod(mod)
return s_format("%s|%s|%s", mod.value, mod.source, modLib.formatModParams(mod))
end
function modLib.setSource(mod, source)
mod.source = source
if type(mod.value) == "table" and mod.value.mod then
mod.value.mod.source = source
end
return mod
end