1
0
Fork 0
cuberite-2a/src/Simulator/IncrementalRedstoneSimulator/HopperHandler.h

53 lines
1.3 KiB
C
Raw Normal View History

#pragma once
#include "../../BlockEntities/HopperEntity.h"
namespace HopperHandler
{
2021-01-21 22:51:55 +00:00
static PowerLevel GetPowerDeliveredToPosition(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, Vector3i a_QueryPosition, BLOCKTYPE a_QueryBlockType, bool IsLinked)
{
UNUSED(a_Chunk);
UNUSED(a_Position);
UNUSED(a_BlockType);
UNUSED(a_QueryPosition);
UNUSED(a_QueryBlockType);
UNUSED(IsLinked);
return 0;
}
2021-01-21 22:51:55 +00:00
static void Update(cChunk & a_Chunk, cChunk &, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, const PowerLevel Power)
{
// LOGD("Evaluating holey the hopper (%d %d %d)", a_Position.x, a_Position.y, a_Position.z);
const auto Previous = DataForChunk(a_Chunk).ExchangeUpdateOncePowerData(a_Position, Power);
if (Previous == Power)
{
return;
}
a_Chunk.DoWithBlockEntityAt(a_Position, [Power](cBlockEntity & a_BlockEntity)
{
if (a_BlockEntity.GetBlockType() != E_BLOCK_HOPPER)
{
return false;
}
static_cast<cHopperEntity &>(a_BlockEntity).SetLocked(Power != 0);
return false;
});
}
2021-01-21 22:51:55 +00:00
static void ForValidSourcePositions(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, ForEachSourceCallback & Callback)
{
UNUSED(a_Chunk);
UNUSED(a_BlockType);
UNUSED(a_Meta);
InvokeForAdjustedRelatives(Callback, a_Position, RelativeAdjacents);
}
};