Skip to content

Commit f5145d6

Browse files
committedApr 21, 2013
Horrible, vile, disgusting hack. But it works.
1 parent 0317deb commit f5145d6

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed
 

‎worldedit/serialization.lua

+16-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,22 @@ worldedit.deserialize = function(originpos, value)
214214
count = count + 1
215215
end
216216
elseif version == 4 then --current nested table format
217-
local nodes = minetest.deserialize(value)
217+
--wip: this is a filthy hack that works surprisingly well
218+
value = value:gsub("return%s*{", "", 1):gsub("}%s*$", "", 1)
219+
local escaped = value:gsub("\\\\", "@@"):gsub("\\\"", "@@"):gsub("(\"[^\"]+\")", function(s) return string.rep("@", #s) end)
220+
local startpos, startpos1, endpos = 1, 1
221+
local nodes = {}
222+
while true do
223+
startpos, endpos = escaped:find("},%s*{", startpos)
224+
if not startpos then
225+
break
226+
end
227+
local current = value:sub(startpos1, startpos)
228+
table.insert(nodes, minetest.deserialize("return " .. current))
229+
startpos, startpos1 = endpos, endpos
230+
end
231+
232+
--local nodes = minetest.deserialize(value) --wip: this is broken for larger tables in the current version of LuaJIT
218233
count = #nodes
219234
for index = 1, count do
220235
local entry = nodes[index]

0 commit comments

Comments
 (0)
Please sign in to comment.