Add bounds check to utils module

This commit is contained in:
Gabriel Tofvesson 2024-11-19 18:57:11 +01:00
parent 4175ea2c8c
commit 86c23b8433

View File

@ -4,4 +4,18 @@ function Util.toHexChar(v)
return ("0123456789ABCDEF"):sub(v, v) return ("0123456789ABCDEF"):sub(v, v)
end end
function Util.fromHexChar(c)
local index = ({("0123456789ABCDEF"):find(c)})[1]
if index ~= nil then
return index - 1
end
return nil
end
function Util.boundCheck(x, y, w, h)
if x < 1 or x > w or y < 1 or y > h then
error(("Index out of range: (%d %d) is not within ([1,%d], [1,%d])"):format(x, y, w, h))
end
end
return Util return Util