I followed your documentation on DSON format and managed to decode the files. However, on encoding JSON files to DSON files, I found a difference with my own Meta2Block and the original Meta2Block, which is further narrow downed to the 1st bit of FieldInfo. For example, from this file, Meta2Entry for base_root (the first field) looks like this:
I don't know what this bit indicates. It might be relevant for something, but it never seemed to make a difference. If you can figure out what it means, please do drop a comment though.
Hi.
I followed your documentation on DSON format and managed to decode the files. However, on encoding JSON files to DSON files, I found a difference with my own
Meta2Block
and the originalMeta2Block
, which is further narrow downed to the 1st bit ofFieldInfo
. For example, from this file,Meta2Entry
forbase_root
(the first field) looks like this:While my own encoding looks like this:
I managed to see that
-2147483607
is equal to2147483689
inuint32
, which can be compared to41
of my own encoding like this:What do you think is the meaning of those first bits?
Thanks!