Files
cuberite-2a/src/BlockEntities/ChestEntity.h
T

108 lines
2.4 KiB
C++
Raw Normal View History

#pragma once
#include "BlockEntityWithItems.h"
#include "../Simulator/RedstoneSimulator.h"
class cClientHandle;
2013-12-16 22:02:28 +01:00
// tolua_begin
class cChestEntity :
2014-02-12 22:01:22 +00:00
public cBlockEntityWithItems
{
2017-06-15 15:32:33 +02:00
typedef cBlockEntityWithItems Super;
2016-02-05 23:45:45 +02:00
public:
2014-07-19 15:23:40 +02:00
enum
{
ContentsHeight = 3,
ContentsWidth = 9,
} ;
2016-02-05 23:45:45 +02:00
// tolua_end
2016-02-05 23:45:45 +02:00
2014-11-27 22:42:08 +01:00
BLOCKENTITY_PROTODEF(cChestEntity)
2016-02-05 23:45:45 +02:00
/** Constructor used for normal operation */
2017-06-15 15:32:33 +02:00
cChestEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);
2016-02-05 23:45:45 +02:00
2017-05-20 08:16:28 +02:00
virtual ~cChestEntity() override;
// cBlockEntity overrides:
2017-06-15 15:32:33 +02:00
virtual void CopyFrom(const cBlockEntity & a_Src) override;
virtual void SendTo(cClientHandle & a_Client) override;
virtual bool UsedBy(cPlayer * a_Player) override;
2016-02-05 23:45:45 +02:00
2017-06-03 20:17:53 +01:00
/** Search horizontally adjacent blocks for neighbouring chests of the same type and links them together. */
2017-05-28 19:07:38 +01:00
void ScanNeighbours();
/** Opens a new chest window where this is the primary chest and any neighbour is the secondary. */
void OpenNewWindow();
/** Forces any players to close the owned window. */
void DestroyWindow();
/** Returns true if the chest should not be accessible by players. */
bool IsBlocked();
2014-07-06 23:50:22 +01:00
/** Gets the number of players who currently have this chest open */
int GetNumberOfPlayers(void) const { return m_NumActivePlayers; }
2014-07-06 23:50:22 +01:00
/** Sets the number of players who currently have this chest open */
void SetNumberOfPlayers(int a_NumActivePlayers) { m_NumActivePlayers = a_NumActivePlayers; }
2014-07-06 23:50:22 +01:00
private:
/** Number of players who currently have this chest open */
int m_NumActivePlayers;
2015-02-08 16:35:10 +00:00
2017-05-28 19:07:38 +01:00
/** Neighbouring chest that links to form a double chest */
cChestEntity * m_Neighbour;
2015-02-08 16:35:10 +00:00
/** cItemGrid::cListener overrides: */
2015-06-15 18:03:54 +01:00
virtual void OnSlotChanged(cItemGrid * a_Grid, int a_SlotNum) override
2015-02-08 16:35:10 +00:00
{
UNUSED(a_SlotNum);
ASSERT(a_Grid == &m_Contents);
if (m_World != nullptr)
{
2017-06-03 20:17:53 +01:00
cWindow * Window = GetWindow();
if (
(Window == nullptr) &&
(m_Neighbour != nullptr)
)
2015-02-08 16:35:10 +00:00
{
2017-06-03 20:17:53 +01:00
// Neighbour might own the window
Window = m_Neighbour->GetWindow();
}
if (Window != nullptr)
{
Window->BroadcastWholeWindow();
2015-02-08 16:35:10 +00:00
}
m_World->MarkChunkDirty(GetChunkX(), GetChunkZ());
auto Pos = Vector3i(m_PosX, m_PosY, m_PosZ);
m_World->DoWithChunkAt(Pos, [&](cChunk & a_Chunk)
{
m_World->GetRedstoneSimulator()->WakeUp(Pos, &a_Chunk);
return true;
}
);
2015-02-08 16:35:10 +00:00
}
}
} ; // tolua_export