-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathutility_functions.lua
37 lines (32 loc) · 1.16 KB
/
utility_functions.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
-- Utility functions
function roundn(x)
return x + 0.5 - (x + 0.5) % 1
end
function inrange(position, myplayer)
return ((position[1]-myplayer.position.x)^2+(position[2]-myplayer.position.y)^2) < 36
end
function prettytime()
local tick = game.tick - (global.start_tick or 0)
if settings.global["tas-pretty-time"].value then
local hours = string.format("%02.f", math.floor(tick / 216000))
local minutes = string.format("%02.f", math.floor(tick / 3600) - hours * 60)
local seconds = string.format("%02.f", math.floor(tick / 60) - hours * 3600 - minutes * 60)
local ticks = string.format("%02.f", tick - hours * 216000 - minutes * 3600 - seconds * 60)
if hours == "00" then
return "[" .. minutes .. ":" .. seconds .. ":" .. ticks .. "] "
else
return "[" .. hours .. ":" .. minutes .. ":" .. seconds .. ":" .. ticks .. "] "
end
end
return "[" .. tick .. "] "
end
function debugprint(msg)
for _, player in pairs(game.connected_players) do
if player.mod_settings["tas-verbose-logging"].value then
player.print(prettytime() .. msg)
end
end
end
function errprint(msg)
game.print(prettytime() .. " ___WARNING___ " .. msg)
end