2020-06-09 19:43:29 +00:00
|
|
|
--- Shallow clones a table.
|
|
|
|
-- @source http://lua-users.org/wiki/CopyTable
|
|
|
|
-- @param orig table The table to clone.
|
|
|
|
-- @return table The cloned table.
|
|
|
|
function worldeditadditions.shallowcopy(orig)
|
|
|
|
local orig_type = type(orig)
|
|
|
|
local copy
|
|
|
|
if orig_type == 'table' then
|
|
|
|
copy = {}
|
|
|
|
for orig_key, orig_value in pairs(orig) do
|
|
|
|
copy[orig_key] = orig_value
|
|
|
|
end
|
|
|
|
else -- number, string, boolean, etc
|
|
|
|
copy = orig
|
|
|
|
end
|
|
|
|
return copy
|
|
|
|
end
|
2020-08-20 00:53:26 +00:00
|
|
|
|
2021-02-03 03:04:33 +00:00
|
|
|
--- SHALLOW ONLY - applies the values in source to overwrite the equivalent keys in target.
|
2020-08-20 00:53:26 +00:00
|
|
|
-- Warning: This function mutates target!
|
|
|
|
-- @param source table The source to take values from
|
|
|
|
-- @param target table The target to write values to
|
|
|
|
function worldeditadditions.table_apply(source, target)
|
|
|
|
for key, value in pairs(source) do
|
|
|
|
target[key] = value
|
|
|
|
end
|
|
|
|
end
|
2021-02-03 03:04:33 +00:00
|
|
|
|
|
|
|
--- Polyfill for unpack / table.unpack.
|
|
|
|
-- Calls unpack when available, and looks for table.unpack if unpack() isn't
|
|
|
|
-- found.
|
|
|
|
-- This is needed because in Lua 5.1 it's the global unpack(), but in Lua 5.4
|
|
|
|
-- it's moved to table.unpack().
|
|
|
|
function worldeditadditions.table_unpack(tbl, offset, count)
|
|
|
|
if type(unpack) == "function" then
|
|
|
|
return unpack(tbl, offset, count)
|
|
|
|
else
|
|
|
|
return table.unpack(tbl, offset, count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Returns only the last count items in a given numerical table-based list.
|
|
|
|
function worldeditadditions.table_get_last(tbl, count)
|
|
|
|
return {worldeditadditions.table_unpack(
|
|
|
|
tbl,
|
|
|
|
math.max(0, (#tbl) - (count - 1))
|
|
|
|
)}
|
|
|
|
end
|