2021-06-11 20:47:29 +02:00
|
|
|
-- Localize globals
|
2021-07-07 12:52:37 +02:00
|
|
|
local assert, math_huge, math_frexp, math_floor
|
|
|
|
= assert, math.huge, math.frexp, math.floor
|
2021-06-11 20:47:29 +02:00
|
|
|
|
2021-06-17 19:45:08 +02:00
|
|
|
-- Set environment
|
|
|
|
local _ENV = {}
|
|
|
|
setfenv(1, _ENV)
|
|
|
|
|
2021-03-13 16:55:21 +01:00
|
|
|
-- All little endian
|
|
|
|
|
|
|
|
--+ Reads doubles (f64) or floats (f32)
|
|
|
|
--: double reads an f64 if true, f32 otherwise
|
|
|
|
function read_float(read_byte, double)
|
2021-03-27 20:10:49 +01:00
|
|
|
-- First read the mantissa
|
|
|
|
local mantissa = 0
|
|
|
|
for _ = 1, double and 6 or 2 do
|
|
|
|
mantissa = (mantissa + read_byte()) / 0x100
|
|
|
|
end
|
|
|
|
-- Second and first byte in big endian: last bit of exponent + 7 bits of mantissa, sign bit + 7 bits of exponent
|
|
|
|
local byte_2, byte_1 = read_byte(), read_byte()
|
|
|
|
local sign = 1
|
|
|
|
if byte_1 >= 0x80 then
|
|
|
|
sign = -1
|
|
|
|
byte_1 = byte_1 - 0x80
|
|
|
|
end
|
|
|
|
local exponent = byte_1 * 2
|
|
|
|
if byte_2 >= 0x80 then
|
|
|
|
exponent = exponent + 1
|
|
|
|
byte_2 = byte_2 - 0x80
|
|
|
|
end
|
|
|
|
mantissa = (mantissa + byte_2) / 0x80
|
|
|
|
if exponent == 0xFF then
|
|
|
|
if mantissa == 0 then
|
2021-07-07 12:52:37 +02:00
|
|
|
return sign * math_huge
|
2021-03-27 20:10:49 +01:00
|
|
|
end
|
|
|
|
-- Differentiating quiet and signalling nan is not possible in Lua, hence we don't have to do it
|
|
|
|
-- HACK ((0/0)^1) yields nan, 0/0 yields -nan
|
|
|
|
return sign == 1 and ((0/0)^1) or 0/0
|
|
|
|
end
|
|
|
|
assert(mantissa < 1)
|
|
|
|
if exponent == 0 then
|
|
|
|
-- subnormal value
|
|
|
|
return sign * 2^-126 * mantissa
|
|
|
|
end
|
|
|
|
return sign * 2 ^ (exponent - 127) * (1 + mantissa)
|
2021-03-13 16:55:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
--+ Reads a single floating point number (f32)
|
|
|
|
function read_single(read_byte)
|
2021-03-27 20:10:49 +01:00
|
|
|
return read_float(read_byte)
|
2021-03-13 16:55:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
--+ Reads a double (f64)
|
|
|
|
function read_double(read_byte)
|
2021-03-27 20:10:49 +01:00
|
|
|
return read_float(read_byte, true)
|
2021-03-13 16:55:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function read_uint(read_byte, bytes)
|
2021-03-27 20:10:49 +01:00
|
|
|
local factor = 1
|
|
|
|
local uint = 0
|
|
|
|
for _ = 1, bytes do
|
|
|
|
uint = uint + read_byte() * factor
|
|
|
|
factor = factor * 0x100
|
|
|
|
end
|
|
|
|
return uint
|
2021-03-13 16:55:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function write_uint(write_byte, uint, bytes)
|
2021-03-27 20:10:49 +01:00
|
|
|
for _ = 1, bytes do
|
|
|
|
write_byte(uint % 0x100)
|
2021-07-07 12:52:37 +02:00
|
|
|
uint = math_floor(uint / 0x100)
|
2021-03-27 20:10:49 +01:00
|
|
|
end
|
|
|
|
assert(uint == 0)
|
2021-03-13 16:55:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
--: on_write function(double)
|
|
|
|
--: double set to true to force f64, false for f32, nil for auto
|
|
|
|
function write_float(write_byte, number, on_write, double)
|
2021-03-27 20:10:49 +01:00
|
|
|
local sign = 0
|
|
|
|
if number < 0 then
|
|
|
|
number = -number
|
|
|
|
sign = 0x80
|
|
|
|
end
|
2021-07-07 12:52:37 +02:00
|
|
|
local mantissa, exponent = math_frexp(number)
|
2021-03-27 20:10:49 +01:00
|
|
|
exponent = exponent + 127
|
|
|
|
if exponent > 1 then
|
|
|
|
-- TODO ensure this deals properly with subnormal numbers
|
|
|
|
mantissa = mantissa * 2 - 1
|
|
|
|
exponent = exponent - 1
|
|
|
|
end
|
2021-07-07 12:52:37 +02:00
|
|
|
local sign_byte = sign + math_floor(exponent / 2)
|
2021-03-27 20:10:49 +01:00
|
|
|
mantissa = mantissa * 0x80
|
2021-07-07 12:52:37 +02:00
|
|
|
local exponent_byte = (exponent % 2) * 0x80 + math_floor(mantissa)
|
2021-03-27 20:10:49 +01:00
|
|
|
mantissa = mantissa % 1
|
|
|
|
local mantissa_bytes = {}
|
|
|
|
-- TODO ensure this check is proper
|
|
|
|
if double == nil then
|
|
|
|
double = mantissa % 2^-23 > 0
|
|
|
|
end
|
|
|
|
if on_write then
|
|
|
|
on_write(double)
|
|
|
|
end
|
|
|
|
local len = double and 6 or 2
|
|
|
|
for index = len, 1, -1 do
|
|
|
|
mantissa = mantissa * 0x100
|
2021-07-07 12:52:37 +02:00
|
|
|
mantissa_bytes[index] = math_floor(mantissa)
|
2021-03-27 20:10:49 +01:00
|
|
|
mantissa = mantissa % 1
|
|
|
|
end
|
|
|
|
assert(mantissa == 0)
|
|
|
|
for index = 1, len do
|
|
|
|
write_byte(mantissa_bytes[index])
|
|
|
|
end
|
|
|
|
write_byte(exponent_byte)
|
|
|
|
write_byte(sign_byte)
|
2021-03-13 16:55:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function write_single(write_byte, number)
|
2021-03-27 20:10:49 +01:00
|
|
|
return write_float(write_byte, number, nil, false)
|
2021-03-13 16:55:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function write_double(write_byte, number)
|
2021-03-27 20:10:49 +01:00
|
|
|
return write_float(write_byte, number, nil, true)
|
2021-06-17 19:45:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Export environment
|
|
|
|
return _ENV
|