1
0
cuberite-2a/src/BlockEntities/BlockEntityWithItems.cpp

60 lines
1.1 KiB
C++
Raw Normal View History

2017-06-15 13:32:33 +00:00
// BlockEntityWithItems.cpp
#include "Globals.h"
#include "BlockEntityWithItems.h"
#include "../Simulator/RedstoneSimulator.h"
2017-06-15 13:32:33 +00:00
cBlockEntityWithItems::cBlockEntityWithItems(
BLOCKTYPE a_BlockType,
NIBBLETYPE a_BlockMeta,
Vector3i a_Pos,
2017-06-15 13:32:33 +00:00
int a_ItemGridWidth, int a_ItemGridHeight,
cWorld * a_World
):
2020-04-13 16:38:06 +00:00
Super(a_BlockType, a_BlockMeta, a_Pos, a_World),
2017-06-15 13:32:33 +00:00
cBlockEntityWindowOwner(this),
m_Contents(a_ItemGridWidth, a_ItemGridHeight)
{
m_Contents.AddListener(*this);
}
void cBlockEntityWithItems::CopyFrom(const cBlockEntity & a_Src)
{
2020-04-13 16:38:06 +00:00
Super::CopyFrom(a_Src);
auto & src = static_cast<const cBlockEntityWithItems &>(a_Src);
2017-06-15 13:32:33 +00:00
m_Contents.CopyFrom(src.m_Contents);
}
void cBlockEntityWithItems::OnSlotChanged(cItemGrid * a_Grid, int a_SlotNum)
{
UNUSED(a_SlotNum);
ASSERT(a_Grid == &m_Contents);
if (m_World != nullptr)
{
if (GetWindow() != nullptr)
{
GetWindow()->BroadcastWholeWindow();
}
m_World->MarkChunkDirty(GetChunkX(), GetChunkZ());
m_World->DoWithChunkAt(m_Pos, [&](cChunk & a_Chunk)
{
m_World->GetRedstoneSimulator()->WakeUp(m_Pos, &a_Chunk);
return true;
}
);
2017-06-15 13:32:33 +00:00
}
}