summaryrefslogtreecommitdiff
path: root/src/util/serialize.h
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2015-08-01 01:03:51 -0400
committerkwolekr <kwolekr@minetest.net>2015-08-01 19:30:08 -0400
commit42cf5e972d1e27a92048712bc79806e1a088b96c (patch)
tree06a717e369b1d0ba5a9d5dfb2e628498d724ade1 /src/util/serialize.h
parentbf991bde45b279b40fdfa6c6b6fc6e4dd265c7ee (diff)
downloadminetest-42cf5e972d1e27a92048712bc79806e1a088b96c.tar.gz
minetest-42cf5e972d1e27a92048712bc79806e1a088b96c.tar.bz2
minetest-42cf5e972d1e27a92048712bc79806e1a088b96c.zip
Improve accuracy and safety of float serialization
Multiplying by a factor of 1/1000.f (rather than dividing by 1000.f) directly introduces an error of 1 ULP. With this patch, an exact comparison of a floating point literal with the deserialized F1000 form representing it is now guaranteed to be successful. In addition, the maxmium and minimum safely representible floating point numbers are now well-defined as constants.
Diffstat (limited to 'src/util/serialize.h')
-rw-r--r--src/util/serialize.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/util/serialize.h b/src/util/serialize.h
index 67b10d8fb..bf0d9c863 100644
--- a/src/util/serialize.h
+++ b/src/util/serialize.h
@@ -21,6 +21,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define UTIL_SERIALIZE_HEADER
#include "../irrlichttypes_bloated.h"
+#include "../debug.h" // for assert
#include "config.h"
#if HAVE_ENDIAN_H
#include <endian.h>
@@ -30,7 +31,16 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <string>
#define FIXEDPOINT_FACTOR 1000.0f
-#define FIXEDPOINT_INVFACTOR (1.0f/FIXEDPOINT_FACTOR)
+
+// 0x7FFFFFFF / 1000.0f is not serializable.
+// The limited float precision at this magnitude may cause the result to round
+// to a greater value than can be represented by a 32 bit integer when increased
+// by a factor of FIXEDPOINT_FACTOR. As a result, [F1000_MIN..F1000_MAX] does
+// not represent the full range, but rather the largest safe range, of values on
+// all supported architectures. Note: This definition makes assumptions on
+// platform float-to-int conversion behavior.
+#define F1000_MIN ((float)(s32)((-0x7FFFFFFF - 1) / FIXEDPOINT_FACTOR))
+#define F1000_MAX ((float)(s32)((0x7FFFFFFF) / FIXEDPOINT_FACTOR))
#define STRING_MAX_LEN 0xFFFF
#define WIDE_STRING_MAX_LEN 0xFFFF
@@ -163,7 +173,7 @@ inline s64 readS64(const u8 *data)
inline f32 readF1000(const u8 *data)
{
- return (f32)readS32(data) * FIXEDPOINT_INVFACTOR;
+ return (f32)readS32(data) / FIXEDPOINT_FACTOR;
}
inline video::SColor readARGB8(const u8 *data)
@@ -252,6 +262,7 @@ inline void writeS64(u8 *data, s64 i)
inline void writeF1000(u8 *data, f32 i)
{
+ assert(i >= F1000_MIN && i <= F1000_MAX);
writeS32(data, i * FIXEDPOINT_FACTOR);
}