RELOAD
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Serialization |extensions={{ext|reld}} }} RELOAD is a generic binary serialization format, currently used in OHRRPGCE. The nam...") |
|||
Line 10: | Line 10: | ||
== Identification == | == Identification == | ||
The file begins with the four ASCII characters <code>RELD</code>. | The file begins with the four ASCII characters <code>RELD</code>. | ||
+ | |||
+ | == Details == | ||
+ | The structure is a kind of tree structure, with one root node. Each node has a name, value, and list of zero or mode nodes it contains. The names are all stored together, so that each name is stored only once and then are referenced by numbers. The types of values available are: null, integers (up to 64-bits), double-precision floating point, and strings of bytes (and can also include null bytes). | ||
== External links == | == External links == | ||
* [https://rpg.hamsterrepublic.com/ohrrpgce/RELOAD Format specification in OHRRPGCE wiki] | * [https://rpg.hamsterrepublic.com/ohrrpgce/RELOAD Format specification in OHRRPGCE wiki] |
Latest revision as of 23:50, 15 October 2021
RELOAD is a generic binary serialization format, currently used in OHRRPGCE.
The name apparently stands for "Really Efficient List Of Arbitrary Data".
[edit] Identification
The file begins with the four ASCII characters RELD
.
[edit] Details
The structure is a kind of tree structure, with one root node. Each node has a name, value, and list of zero or mode nodes it contains. The names are all stored together, so that each name is stored only once and then are referenced by numbers. The types of values available are: null, integers (up to 64-bits), double-precision floating point, and strings of bytes (and can also include null bytes).