Minetest-WorldEditAdditions/worldeditadditions_core/utils/numbers.lua

131 lines
3.9 KiB
Lua
Raw Normal View History

2022-09-18 16:32:13 +00:00
local wea_c = worldeditadditions_core
2020-05-11 01:02:02 +00:00
-- From http://lua-users.org/wiki/SimpleRound
2022-09-18 16:32:13 +00:00
function wea_c.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
2022-09-18 16:32:13 +00:00
function wea_c.hypotenuse(x1, y1, x2, y2)
2022-09-17 22:42:46 +00:00
local xSquare = (x1 - x2) ^ 2;
local ySquare = (y1 - y2) ^ 2;
return math.sqrt(xSquare + ySquare);
end
2022-09-18 16:32:13 +00:00
function wea_c.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.
2022-09-18 16:32:13 +00:00
function wea_c.average(list)
2021-02-26 04:22:39 +00:00
if #list == 0 then return 0 end
2022-09-18 16:32:13 +00:00
return wea_c.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.
2022-09-18 16:32:13 +00:00
function wea_c.min(list)
2021-05-29 22:13:10 +00:00
if #list == 0 then return nil end
local min = nil
2021-12-27 19:36:57 +00:00
for i,value in pairs(list) do
2021-05-29 22:13:10 +00:00
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.
2022-09-18 16:32:13 +00:00
function wea_c.max(list)
2021-05-29 22:13:10 +00:00
if #list == 0 then return nil end
2021-12-27 19:36:57 +00:00
-- We use pairs() instead of ipairs() here, because then we can support
-- zero-indexed 1D heightmaps too - and we don't care that the order is
-- undefined with pairs().
2021-05-29 22:13:10 +00:00
local max = nil
2021-12-27 19:36:57 +00:00
for i,value in pairs(list) do
2021-05-29 22:13:10 +00:00
if max == nil or max < value then
max = value
end
end
return max
end
--- Returns the minetest.get_us_time() in ms
-- @return float
2022-09-18 16:32:13 +00:00
function wea_c.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.
2022-09-18 16:32:13 +00:00
function wea_c.eta(existing_times, done_count, total_count)
local max = 100
2022-09-18 16:32:13 +00:00
local average = wea_c.average(
wea_c.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).
2022-09-18 16:32:13 +00:00
function wea_c.getsign(src)
2021-08-05 17:40:36 +00:00
if type(src) == "number" then
if src < 0 then return -1 else return 1 end
2021-03-09 19:05:03 +00:00
elseif type(src) ~= "string" then return 1
2021-08-05 17:40:36 +00:00
else
if src:match('-') then return -1 else return 1 end
end
end
2021-02-28 17:59:09 +00:00
--- Clamp a number to ensure it falls within a given range.
-- @param value number The value to clamp.
-- @param min number The minimum allowed value.
-- @param max number The maximum allowed value.
-- @returns number The clamped number.
2022-09-18 16:32:13 +00:00
function wea_c.clamp(value, min, max)
if value < min then return min end
if value > max then return max end
return value
end
2023-01-21 01:32:17 +00:00
--- Return a sequence of numbers as a list.
-- @example
-- local result = worldeditadditions_core.range(0, 10, 1)
-- -- [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]
-- @example
-- local result = worldeditadditions_core.range(6, 12, 2)
-- -- [ 6, 8, 10, 12 ]
-- @param min number The minimum value in the sequence.
-- @param max number The maximum value in the sequence.
-- @param step number The value to increment between each value in the sequence.
-- @returns number[] The list of numbers.
function wea_c.range(min, max, step)
local result = {}
for i = min, max, step do
table.insert(result, i)
end
return result
end
2021-02-28 17:59:09 +00:00
-- For Testing:
2022-09-18 16:32:13 +00:00
-- wea_c = {}
-- print(wea_c.getsign('-y'))