-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.lua
37 lines (34 loc) · 1.33 KB
/
test.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
local example = require("gameconf/example")
function print_r(t, name, indent)
local tableList = {}
local function table_r(t, name, indent, full)
local id = not full and name or type(name) ~= "number" and tostring(name) or "[" .. name .. "]"
local tag = indent .. id .. " = "
local out = {} -- result
if type(t) == "table" then
if tableList[t] ~= nil then
table.insert(out, tag .. "{} -- " .. tableList[t] .. " (self reference)")
else
tableList[t] = full and (full .. "." .. id) or id
if next(t) then -- Table not empty
table.insert(out, tag .. "{")
for key, value in pairs(t) do
table.insert(out, table_r(value, key, indent .. "| ", tableList[t]))
end
table.insert(out, indent .. "}")
else
table.insert(out, tag .. "{}")
end
end
else
local val = type(t) ~= "number" and type(t) ~= "boolean" and '"' .. tostring(t) .. '"' or tostring(t)
table.insert(out, tag .. val)
end
return table.concat(out, "\n")
end
return table_r(t, name or "Value", indent or "")
end
function pr(t, name)
print(print_r(t, name))
end
pr(example)