new cobblestone texture, layer transition dithering with buffer layer

This commit is contained in:
minjaesong
2021-02-28 11:30:10 +09:00
parent 6cf8553ac2
commit 37c6ffd062
10 changed files with 70 additions and 25 deletions

View File

@@ -4,7 +4,7 @@ Following code is an example savegame JSON files.
```
{
savename: "Test World 1",
genver: <generator version in integer>,
genver: 4, /* generator version in integer */
terrseed: "84088805e145b555",
randseed: "19b25856e1c150ca834cffc8b59b23ad",
weatseed: "e5e72beb4e3c6926d3dc9e3e2ef7833b",
@@ -12,7 +12,7 @@ Following code is an example savegame JSON files.
creation_t: <creation time in real-world unix time>,
lastplay_t: <creation time in real-world unix time>,
creation_t: <creation time in real-world unix time>,
thumb: <RFC-1924-encoded gzipped thumbnail image in TGA>,
thumb: <Ascii85-encoded gzipped thumbnail image in TGA>,
blocks: <BlockCodex serialised>,
items: <ItemCodex serialised>,
@@ -37,42 +37,42 @@ File is named as `"world"+world_index+".json"`
height: 2048,
spawnx: 4096,
spawny: 248,
genver: <generator version in integer>,
genver: 4, /* generator version in integer */
time_t: <in-game TIME_T of this world>,
terr: {
s: 33554432,
h: "a441b15fe9a3cf56661190a0b93b9dec7d04127288cc87250967cf3b52894d11",
b: <RFC-1924-encoded gzipped terrain layerdata>
b: <Ascii85-encoded gzipped terrain layerdata>
},
wall: {
s: 33554432,
h: <SHA-256 hash of 'b'>,
b: <RFC-1924-encoded gzipped wall layerdata>
b: <Ascii85-encoded gzipped wall layerdata>
},
tdmg: {
s: 8795,
h: <SHA-256 hash of 'b'>,
b: <RFC-1924-encoded gzipped terrain damage in JSON>
b: <Ascii85-encoded gzipped terrain damage in JSON>
},
wdmg: {
s: 2,
h: <SHA-256 hash of 'b'>,
b: <RFC-1924-encoded gzipped wall damage in JSON>
b: <Ascii85-encoded gzipped wall damage in JSON>
},
flui: {
s: 15734
h: <SHA-256 hash of 'b'>,
b: <RFC-1924-encoded gzipped fluids in JSON>
b: <Ascii85-encoded gzipped fluids in JSON>
},
wire: {
s: 2,
h: <SHA-256 hash of 'b'>,
b: <RFC-1924-encoded gzipped wiring nodes in JSON>
b: <Ascii85-encoded gzipped wiring nodes in JSON>
},
tmap: {
s: 4316,
h: <SHA-256 hash of 'b'>,
b: <RFC-1924-encoded gzipped tilenumber-to-tilename map in JSON>
b: <Ascii85-encoded gzipped tilenumber-to-tilename map in JSON>
}
}
```