2020-03-27 08:03:28 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../../BlockEntities/HopperEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-08-19 16:14:40 -04:00
|
|
|
namespace HopperHandler
|
2020-03-27 08:03:28 -04:00
|
|
|
{
|
2021-01-21 17:51:55 -05:00
|
|
|
static PowerLevel GetPowerDeliveredToPosition(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, Vector3i a_QueryPosition, BLOCKTYPE a_QueryBlockType, bool IsLinked)
|
2020-03-27 08:03:28 -04:00
|
|
|
{
|
2020-07-26 09:15:00 -04:00
|
|
|
UNUSED(a_Chunk);
|
2020-03-27 08:03:28 -04:00
|
|
|
UNUSED(a_Position);
|
|
|
|
UNUSED(a_BlockType);
|
|
|
|
UNUSED(a_QueryPosition);
|
|
|
|
UNUSED(a_QueryBlockType);
|
2020-08-08 13:22:16 -04:00
|
|
|
UNUSED(IsLinked);
|
2020-03-27 08:03:28 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-01-21 17:51:55 -05:00
|
|
|
static void Update(cChunk & a_Chunk, cChunk &, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, const PowerLevel Power)
|
2020-03-27 08:03:28 -04:00
|
|
|
{
|
2020-07-26 09:15:00 -04:00
|
|
|
// LOGD("Evaluating holey the hopper (%d %d %d)", a_Position.x, a_Position.y, a_Position.z);
|
2020-03-27 08:03:28 -04:00
|
|
|
|
2021-04-10 12:17:15 -04:00
|
|
|
const bool ShouldBeLocked = Power != 0;
|
|
|
|
const bool PreviouslyLocked = (a_Meta & 0x8) == 0x8;
|
|
|
|
|
|
|
|
if (ShouldBeLocked == PreviouslyLocked)
|
2020-03-27 08:03:28 -04:00
|
|
|
{
|
2020-07-26 09:15:00 -04:00
|
|
|
return;
|
2020-03-27 08:03:28 -04:00
|
|
|
}
|
|
|
|
|
2021-04-10 12:17:15 -04:00
|
|
|
if (ShouldBeLocked)
|
|
|
|
{
|
|
|
|
a_Chunk.SetMeta(a_Position, a_Meta | 0x8);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
a_Chunk.SetMeta(a_Position, a_Meta & ~0x8);
|
|
|
|
}
|
|
|
|
|
|
|
|
a_Chunk.DoWithBlockEntityAt(a_Position, [ShouldBeLocked](cBlockEntity & a_BlockEntity)
|
2020-07-26 09:15:00 -04:00
|
|
|
{
|
2021-04-30 09:23:46 -04:00
|
|
|
ASSERT(a_BlockEntity.GetBlockType() == E_BLOCK_HOPPER);
|
2021-03-28 09:40:57 -04:00
|
|
|
|
2021-04-10 12:17:15 -04:00
|
|
|
static_cast<cHopperEntity &>(a_BlockEntity).SetLocked(ShouldBeLocked);
|
2020-07-26 09:15:00 -04:00
|
|
|
return false;
|
|
|
|
});
|
2020-03-27 08:03:28 -04:00
|
|
|
}
|
|
|
|
|
2021-01-21 17:51:55 -05:00
|
|
|
static void ForValidSourcePositions(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, ForEachSourceCallback & Callback)
|
2020-03-27 08:03:28 -04:00
|
|
|
{
|
2020-07-26 09:15:00 -04:00
|
|
|
UNUSED(a_Chunk);
|
2020-03-27 08:03:28 -04:00
|
|
|
UNUSED(a_BlockType);
|
|
|
|
UNUSED(a_Meta);
|
2020-07-26 09:15:00 -04:00
|
|
|
InvokeForAdjustedRelatives(Callback, a_Position, RelativeAdjacents);
|
2020-03-27 08:03:28 -04:00
|
|
|
}
|
|
|
|
};
|