1
0

Fixed a bug in writting zeros to a non-allocated section

This commit is contained in:
Tycho 2014-05-11 15:52:02 +01:00
parent 009f749962
commit 9278bb732d
3 changed files with 134 additions and 93 deletions

View File

@ -295,3 +295,14 @@ void cChunkBuffer::Free(cChunkBuffer::sChunkSection * ptr) const
void cChunkBuffer::ZeroSection(cChunkBuffer::sChunkSection * ptr) const
{
memset(ptr->m_BlockTypes,0x00,sizeof(ptr->m_BlockTypes));
memset(ptr->m_BlockMeta,0x00,sizeof(ptr->m_BlockMeta));
memset(ptr->m_BlockLight,0x00,sizeof(ptr->m_BlockLight));
memset(ptr->m_BlockSkyLight,0x00,sizeof(ptr->m_BlockSkyLight));
}

View File

@ -121,12 +121,17 @@ public:
int Section = a_RelY / CHUNK_SECTION_HEIGHT; int Section = a_RelY / CHUNK_SECTION_HEIGHT;
if(!m_Sections[Section]) if(!m_Sections[Section])
{ {
if(a_Block == 0x00)
{
return;
}
m_Sections[Section] = Allocate(); m_Sections[Section] = Allocate();
if(!m_Sections[Section]) if(!m_Sections[Section])
{ {
ASSERT(!"Failed to allocate a new section in Chunkbuffer"); ASSERT(!"Failed to allocate a new section in Chunkbuffer");
return; return;
} }
ZeroSection(m_Sections[Section]);
} }
int Index = cChunkDef::MakeIndexNoCheck(a_RelX, a_RelY - (Section * CHUNK_SECTION_HEIGHT), a_RelZ); int Index = cChunkDef::MakeIndexNoCheck(a_RelX, a_RelY - (Section * CHUNK_SECTION_HEIGHT), a_RelZ);
m_Sections[Section]->m_BlockTypes[Index] = a_Block; m_Sections[Section]->m_BlockTypes[Index] = a_Block;
@ -166,12 +171,17 @@ public:
int Section = a_RelY / CHUNK_SECTION_HEIGHT; int Section = a_RelY / CHUNK_SECTION_HEIGHT;
if(!m_Sections[Section]) if(!m_Sections[Section])
{ {
if((a_Nibble & 0xf) == 0x00)
{
return;
}
m_Sections[Section] = Allocate(); m_Sections[Section] = Allocate();
if(!m_Sections[Section]) if(!m_Sections[Section])
{ {
ASSERT(!"Failed to allocate a new section in Chunkbuffer"); ASSERT(!"Failed to allocate a new section in Chunkbuffer");
return; return;
} }
ZeroSection(m_Sections[Section]);
} }
int Index = cChunkDef::MakeIndexNoCheck(a_RelX, a_RelY - (Section * CHUNK_SECTION_HEIGHT), a_RelZ); int Index = cChunkDef::MakeIndexNoCheck(a_RelX, a_RelY - (Section * CHUNK_SECTION_HEIGHT), a_RelZ);
m_Sections[Section]->m_BlockMeta[Index / 2] = static_cast<NIBBLETYPE>( m_Sections[Section]->m_BlockMeta[Index / 2] = static_cast<NIBBLETYPE>(
@ -247,6 +257,8 @@ private:
sChunkSection * Allocate() const; sChunkSection * Allocate() const;
void Free(sChunkSection * ptr) const; void Free(sChunkSection * ptr) const;
void ZeroSection(sChunkSection * ptr) const;
}; };

View File

@ -5,6 +5,7 @@
int main(int argc, char** argv) int main(int argc, char** argv)
{
{ {
cChunkBuffer buffer; cChunkBuffer buffer;
@ -101,6 +102,23 @@ int main(int argc, char** argv)
CheckAsserts( CheckAsserts(
buffer.GetMeta(0, 0, 256); buffer.GetMeta(0, 0, 256);
); );
}
{
cChunkBuffer buffer;
// Zero's
buffer.SetBlock(0,0,0, 0x0);
buffer.SetBlock(0,0,1, 0xAB);
testassert(buffer.GetBlock(0,0,0) == 0x0);
testassert(buffer.GetBlock(0,0,1) == 0xAB);
buffer.SetMeta(0,16,0, 0x0);
buffer.SetMeta(0,16,1, 0xC);
testassert(buffer.GetMeta(0,16,0) == 0x0);
testassert(buffer.GetMeta(0,16,1) == 0xC);
}
return 0; return 0;
} }