--16進数を10進数に変換
function hextodec(x)
local n = tonumber(string.sub(x, -1, -1))
if n == nil then n = hextable[string.sub(x, -1, -1)] end
if string.len(x) == 1 then return n
else return hextodec(string.sub(x, 1, -2)) * 16 + n end
end
hextable = { a = 10, b = 11, c = 12, d = 13, e = 14, f = 15 }
使用例
out(1, hextodec("ffffff"))
_SETCOLOR(hextodec("ffcc99")))
色の16進指定にも使える。
-- LongValue() 小数第三位以上の数値を文字列として得る
-- 使用例: out(0,LongValue(_FPS()))
function LongValue(num)
local ret = string.gsub(string.format("%q",num),"%p(%d*)(.*)(%d*)%p","%1 %2%3")
return ret
end