Minetest-WorldEditAdditions/worldeditadditions/utils/numbers.lua

93 lines
2.9 KiB
Lua
Raw Normal View History

2020-05-11 01:02:02 +00:00
-- From http://lua-users.org/wiki/SimpleRound
2020-05-11 23:38:42 +00:00
function worldeditadditions.round(num, numDecimalPlaces)
2021-02-26 04:22:39 +00:00
local mult = 10^(numDecimalPlaces or 0)
return math.floor(num * mult + 0.5) / mult
2020-05-11 01:02:02 +00:00
end
function worldeditadditions.hypotenuse(x1, y1, x2, y2)
local xSquare = math.pow(x1 - x2, 2);
local ySquare = math.pow(y1 - y2, 2);
return math.sqrt(xSquare + ySquare);
end
function worldeditadditions.sum(list)
2021-02-26 04:22:39 +00:00
if #list == 0 then return 0 end
local sum = 0
for i,value in ipairs(list) do
sum = sum + value
end
2021-02-26 04:22:39 +00:00
return sum
end
2021-05-29 22:13:10 +00:00
--- Calculates the mean of all the numbers in the given list.
-- @param list number[] The list (table) of numbers to calculate the mean for.
-- @returns The mean of the numbers in the given table.
function worldeditadditions.average(list)
2021-02-26 04:22:39 +00:00
if #list == 0 then return 0 end
return worldeditadditions.sum(list) / #list
end
2021-05-29 22:13:10 +00:00
--- Finds the minimum value in the given list.
-- @param list number[] The list (table) of numbers to find the minimum value of.
-- @returns number The minimum value in the given list.
function worldeditadditions.min(list)
if #list == 0 then return nil end
local min = nil
for i,value in ipairs(list) do
if min == nil or min > value then
min = value
end
end
return min
end
--- Finds the maximum value in the given list.
-- @param list number[] The list (table) of numbers to find the maximum value of.
-- @returns number The maximum value in the given list.
function worldeditadditions.max(list)
if #list == 0 then return nil end
local max = nil
for i,value in ipairs(list) do
if max == nil or max < value then
max = value
end
end
return max
end
--- Returns the minetest.get_us_time() in ms
-- @return float
function worldeditadditions.get_ms_time()
return minetest.get_us_time() / 1000
end
2021-03-20 01:56:14 +00:00
--- Calculates the estimated time remaining from a list of times.
-- Intended to be used where one has a number of works units, and one has a
-- list of how long the most recent units have taken to run.
-- @param existing_times number[] A list of times - in ms - that the most recent work units have taken.
-- @param done_count number The number of work units completed so far.
-- @param total_count number The total number of work units to be completed.
2021-02-07 02:45:34 +00:00
function worldeditadditions.eta(existing_times, done_count, total_count)
local max = 100
local average = worldeditadditions.average(
worldeditadditions.table_get_last(existing_times, max)
)
local times_left = total_count - done_count
if times_left == 0 then return 0 end
return average * times_left
2021-02-26 04:22:39 +00:00
end
--- Returns the sign (+ or -) at the beginning of a string if present.
2021-03-09 19:05:03 +00:00
-- @param src string|int Input string.
-- @return string|int Returns the signed multiplier (1|-1).
function worldeditadditions.getsign(src)
if type(src) == "number" then return src < 0 and -1 or 1
elseif type(src) ~= "string" then return 1
else return src:match('-') and -1 or 1 end
end
2021-02-28 17:59:09 +00:00
-- For Testing:
-- worldeditadditions = {}
-- print(worldeditadditions.getsign('-y'))