Skip to content
Snippets Groups Projects
Commit 424b36d4 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Describe format of nodes in doc/mapformat.txt

parent 8070f948
No related branches found
No related tags found
No related merge requests found
......@@ -271,6 +271,7 @@ zlib-compressed node data:
u8[4096]: param0 fields
u8[4096]: param1 fields
u8[4096]: param2 fields
- The location of a node in each of those arrays is (z*16*16 + y*16 + x).
zlib-compressed node metadata list
- content:
......@@ -316,6 +317,22 @@ foreach num_name_id_mappings
EOF.
Format of nodes
----------------
A node is composed of the u8 fields param0, param1 and param2.
The content id of a node is determined as so:
- If param0 < 0x80,
content_id = param0
- Otherwise
content_id = (param0<<4) + (param2>>4)
The purpose of param1 and param2 depend on the definition of the node.
The name-id-mapping
--------------------
The mapping maps node content ids to node names.
Node metadata format
---------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment