Minetest-WorldEditAdditions/worldeditadditions/utils/numbers.lua

43 lines
1.1 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)
2020-05-11 01:02:02 +00:00
local mult = 10^(numDecimalPlaces or 0)
return math.floor(num * mult + 0.5) / mult
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)
if #list == 0 then return 0 end
local sum = 0
for i,value in ipairs(list) do
sum = sum + value
end
return sum
end
function worldeditadditions.average(list)
if #list == 0 then return 0 end
return worldeditadditions.sum(list) / #list
end
--- Returns the minetest.get_us_time() in ms
-- @return float
function worldeditadditions.get_ms_time()
return minetest.get_us_time() / 1000
end
function worldeditadditions.eta(existing_times, times_total_count)
2021-02-07 01:37:50 +00:00
local max = 100
local average = worldeditadditions.average(
2021-02-07 01:37:50 +00:00
worldeditadditions.table_get_last(existing_times, max)
)
2021-02-07 01:37:50 +00:00
local times_left = times_total_count - math.min(100, #existing_times)
if times_left == 0 then return 0 end
return average * times_left
end