mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
Starbeamrainbowlabs
38e5c81d33
- Don't use wea.sum() on a table full of all the times we've recorded so far - Limit individual stats list lengths to 25 to avoid memory issues when running with a large number of chunks - Tally total times / metrics as we go to avoid memory issues
48 lines
1.4 KiB
Lua
48 lines
1.4 KiB
Lua
--- 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
|
|
|
|
--- SHALLOW ONLY - applies the values in source to overwrite the equivalent keys in target.
|
|
-- 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
|
|
|
|
--- 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
|