mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
fully implemented the sign with the new framework
This commit is contained in:
parent
fa08294d09
commit
fa736e138c
8 changed files with 158 additions and 8 deletions
|
@ -1878,8 +1878,6 @@ void MapBlock::serialize(std::ostream &os, u8 version)
|
|||
flags |= 0x02;
|
||||
if(m_lighting_expired)
|
||||
flags |= 0x04;
|
||||
/*if(m_not_fully_generated)
|
||||
flags |= 0x08;*/
|
||||
os.write((char*)&flags, 1);
|
||||
|
||||
u32 nodecount = MAP_BLOCKSIZE*MAP_BLOCKSIZE*MAP_BLOCKSIZE;
|
||||
|
@ -1913,6 +1911,14 @@ void MapBlock::serialize(std::ostream &os, u8 version)
|
|||
*/
|
||||
|
||||
compress(databuf, os, version);
|
||||
|
||||
/*
|
||||
NodeMetadata
|
||||
*/
|
||||
if(version >= 14)
|
||||
{
|
||||
m_node_metadata.serialize(os);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2002,7 +2008,6 @@ void MapBlock::deSerialize(std::istream &is, u8 version)
|
|||
is_underground = (flags & 0x01) ? true : false;
|
||||
m_day_night_differs = (flags & 0x02) ? true : false;
|
||||
m_lighting_expired = (flags & 0x04) ? true : false;
|
||||
//m_not_fully_generated = (flags & 0x08) ? true : false;
|
||||
|
||||
// Uncompress data
|
||||
std::ostringstream os(std::ios_base::binary);
|
||||
|
@ -2027,6 +2032,14 @@ void MapBlock::deSerialize(std::istream &is, u8 version)
|
|||
{
|
||||
data[i].param2 = s[i+nodecount*2];
|
||||
}
|
||||
|
||||
/*
|
||||
NodeMetadata
|
||||
*/
|
||||
if(version >= 14)
|
||||
{
|
||||
m_node_metadata.deSerialize(is);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue