summaryrefslogtreecommitdiffstats
path: root/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h')
-rw-r--r--src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h433
1 files changed, 233 insertions, 200 deletions
diff --git a/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h b/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
index b40491820..6706e4078 100644
--- a/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
+++ b/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
@@ -10,48 +10,51 @@
namespace RedstoneWireHandler
{
- /** A unified representation of wire direction. */
- enum class TemporaryDirection
- {
- Up,
- Side
- };
-
- /** Invokes Callback with the wire's left, front, and right direction state corresponding to Offset.
- Returns a new block constructed from the directions that the callback may have modified. */
- template <class OffsetCallback>
- static BlockState DoWithDirectionState(const Vector3i Offset, BlockState Block, OffsetCallback Callback)
- {
- auto North = Block::RedstoneWire::North(Block);
- auto South = Block::RedstoneWire::South(Block);
- auto West = Block::RedstoneWire::West(Block);
- auto East = Block::RedstoneWire::East(Block);
-
- if (Offset.x == -1)
- {
- Callback(South, West, North);
- }
- else if (Offset.x == 1)
- {
- Callback(North, East, South);
- }
+/** A unified representation of wire direction. */
+enum class TemporaryDirection
+{
+ Up,
+ Side
+};
- if (Offset.z == -1)
- {
- Callback(West, North, East);
- }
- else if (Offset.z == 1)
- {
- Callback(East, South, West);
- }
+/** Invokes Callback with the wire's left, front, and right direction state corresponding to Offset.
+Returns a new block constructed from the directions that the callback may have modified. */
+template <class OffsetCallback>
+static BlockState DoWithDirectionState(const Vector3i Offset, BlockState Block, OffsetCallback Callback)
+{
+ auto North = Block::RedstoneWire::North(Block);
+ auto South = Block::RedstoneWire::South(Block);
+ auto West = Block::RedstoneWire::West(Block);
+ auto East = Block::RedstoneWire::East(Block);
- return Block::RedstoneWire::RedstoneWire(East, North, 0, South, West);
+ if (Offset.x == -1)
+ {
+ Callback(South, West, North);
+ }
+ else if (Offset.x == 1)
+ {
+ Callback(North, East, South);
}
- /** Adjusts a given wire block so that the direction represented by Offset has state Direction. */
- static void SetDirectionState(const Vector3i Offset, BlockState & Block, TemporaryDirection Direction)
+ if (Offset.z == -1)
+ {
+ Callback(West, North, East);
+ }
+ else if (Offset.z == 1)
{
- Block = DoWithDirectionState(Offset, Block, [Direction](auto, auto & Front, auto)
+ Callback(East, South, West);
+ }
+
+ return Block::RedstoneWire::RedstoneWire(East, North, 0, South, West);
+}
+
+/** Adjusts a given wire block so that the direction represented by Offset has state Direction. */
+static void SetDirectionState(const Vector3i Offset, BlockState & Block, TemporaryDirection Direction)
+{
+ Block = DoWithDirectionState(
+ Offset,
+ Block,
+ [Direction](auto, auto & Front, auto)
{
using FrontState = std::remove_reference_t<decltype(Front)>;
switch (Direction)
@@ -67,169 +70,184 @@ namespace RedstoneWireHandler
return;
}
}
- });
- }
+ }
+ );
+}
- static bool IsDirectlyConnectingMechanism(BLOCKTYPE a_Block, NIBBLETYPE a_BlockMeta, const Vector3i a_Offset)
+static bool IsDirectlyConnectingMechanism(BLOCKTYPE a_Block, NIBBLETYPE a_BlockMeta, const Vector3i a_Offset)
+{
+ switch (a_Block)
{
- switch (a_Block)
+ case E_BLOCK_REDSTONE_REPEATER_ON:
+ case E_BLOCK_REDSTONE_REPEATER_OFF:
{
- case E_BLOCK_REDSTONE_REPEATER_ON:
- case E_BLOCK_REDSTONE_REPEATER_OFF:
+ a_BlockMeta &= E_META_REDSTONE_REPEATER_FACING_MASK;
+ if ((a_BlockMeta == E_META_REDSTONE_REPEATER_FACING_XP) ||
+ (a_BlockMeta == E_META_REDSTONE_REPEATER_FACING_XM))
{
- a_BlockMeta &= E_META_REDSTONE_REPEATER_FACING_MASK;
- if ((a_BlockMeta == E_META_REDSTONE_REPEATER_FACING_XP) || (a_BlockMeta == E_META_REDSTONE_REPEATER_FACING_XM))
- {
- // Wire connects to repeater if repeater is aligned along X
- // and wire is in front or behind it (#4639)
- return a_Offset.x != 0;
- }
-
- return a_Offset.z != 0;
+ // Wire connects to repeater if repeater is aligned along X
+ // and wire is in front or behind it (#4639)
+ return a_Offset.x != 0;
}
- case E_BLOCK_ACTIVE_COMPARATOR:
- case E_BLOCK_BLOCK_OF_REDSTONE:
- case E_BLOCK_INACTIVE_COMPARATOR:
- case E_BLOCK_LEVER:
- case E_BLOCK_REDSTONE_TORCH_OFF:
- case E_BLOCK_REDSTONE_TORCH_ON:
- case E_BLOCK_REDSTONE_WIRE:
- case E_BLOCK_STONE_BUTTON:
- case E_BLOCK_WOODEN_BUTTON: return true;
- default: return false;
+
+ return a_Offset.z != 0;
}
+ case E_BLOCK_ACTIVE_COMPARATOR:
+ case E_BLOCK_BLOCK_OF_REDSTONE:
+ case E_BLOCK_INACTIVE_COMPARATOR:
+ case E_BLOCK_LEVER:
+ case E_BLOCK_REDSTONE_TORCH_OFF:
+ case E_BLOCK_REDSTONE_TORCH_ON:
+ case E_BLOCK_REDSTONE_WIRE:
+ case E_BLOCK_STONE_BUTTON:
+ case E_BLOCK_WOODEN_BUTTON: return true;
+ default: return false;
}
+}
- static bool IsYPTerracingBlocked(const cChunk & a_Chunk, const Vector3i a_Position)
+static bool IsYPTerracingBlocked(const cChunk & a_Chunk, const Vector3i a_Position)
+{
+ const auto Position = a_Position + OffsetYP;
+
+ if (!cChunkDef::IsValidHeight(Position))
{
- const auto Position = a_Position + OffsetYP;
+ // Certainly cannot terrace at the top of the world:
+ return true;
+ }
- if (!cChunkDef::IsValidHeight(Position))
- {
- // Certainly cannot terrace at the top of the world:
- return true;
- }
+ const auto YPTerraceBlock = a_Chunk.GetBlock(Position);
+ return cBlockInfo::IsSolid(YPTerraceBlock) && !cBlockInfo::IsTransparent(YPTerraceBlock);
+}
- const auto YPTerraceBlock = a_Chunk.GetBlock(Position);
- return cBlockInfo::IsSolid(YPTerraceBlock) && !cBlockInfo::IsTransparent(YPTerraceBlock);
- }
+/** Temporary. Discovers a wire's connection state, including terracing, storing the block inside redstone chunk data.
+TODO: once the server supports block states this should go in the block handler, with data saved in the world. */
+static void SetWireState(const cChunk & a_Chunk, const Vector3i a_Position)
+{
+ auto Block = Block::RedstoneWire::RedstoneWire();
+ const bool IsYPTerracingBlocked = RedstoneWireHandler::IsYPTerracingBlocked(a_Chunk, a_Position);
- /** Temporary. Discovers a wire's connection state, including terracing, storing the block inside redstone chunk data.
- TODO: once the server supports block states this should go in the block handler, with data saved in the world. */
- static void SetWireState(const cChunk & a_Chunk, const Vector3i a_Position)
+ // Loop through laterals, discovering terracing connections:
+ for (const auto & Offset : RelativeLaterals)
{
- auto Block = Block::RedstoneWire::RedstoneWire();
- const bool IsYPTerracingBlocked = RedstoneWireHandler::IsYPTerracingBlocked(a_Chunk, a_Position);
+ auto Adjacent = a_Position + Offset;
+ auto NeighbourChunk = a_Chunk.GetRelNeighborChunkAdjustCoords(Adjacent);
- // Loop through laterals, discovering terracing connections:
- for (const auto & Offset : RelativeLaterals)
+ if ((NeighbourChunk == nullptr) || !NeighbourChunk->IsValid())
{
- auto Adjacent = a_Position + Offset;
- auto NeighbourChunk = a_Chunk.GetRelNeighborChunkAdjustCoords(Adjacent);
+ continue;
+ }
- if ((NeighbourChunk == nullptr) || !NeighbourChunk->IsValid())
- {
- continue;
- }
+ BLOCKTYPE LateralBlock;
+ NIBBLETYPE LateralMeta;
+ NeighbourChunk->GetBlockTypeMeta(Adjacent, LateralBlock, LateralMeta);
- BLOCKTYPE LateralBlock;
- NIBBLETYPE LateralMeta;
- NeighbourChunk->GetBlockTypeMeta(Adjacent, LateralBlock, LateralMeta);
+ if (IsDirectlyConnectingMechanism(LateralBlock, LateralMeta, Offset))
+ {
+ // Any direct connections on a lateral means the wire has side connection in that direction:
+ SetDirectionState(Offset, Block, TemporaryDirection::Side);
- if (IsDirectlyConnectingMechanism(LateralBlock, LateralMeta, Offset))
+ // Temporary: this case will eventually be handled when wires are placed, with the state saved as blocks
+ // When a neighbour wire was loaded into its chunk, its neighbour chunks may not have loaded yet
+ // This function is called during chunk load (through AddBlock). Attempt to tell it its new state:
+ if ((NeighbourChunk != &a_Chunk) && (LateralBlock == E_BLOCK_REDSTONE_WIRE))
{
- // Any direct connections on a lateral means the wire has side connection in that direction:
- SetDirectionState(Offset, Block, TemporaryDirection::Side);
+ auto & NeighbourBlock = DataForChunk(*NeighbourChunk).WireStates.find(Adjacent)->second;
+ SetDirectionState(-Offset, NeighbourBlock, TemporaryDirection::Side);
+ }
- // Temporary: this case will eventually be handled when wires are placed, with the state saved as blocks
- // When a neighbour wire was loaded into its chunk, its neighbour chunks may not have loaded yet
- // This function is called during chunk load (through AddBlock). Attempt to tell it its new state:
- if ((NeighbourChunk != &a_Chunk) && (LateralBlock == E_BLOCK_REDSTONE_WIRE))
- {
- auto & NeighbourBlock = DataForChunk(*NeighbourChunk).WireStates.find(Adjacent)->second;
- SetDirectionState(-Offset, NeighbourBlock, TemporaryDirection::Side);
- }
+ continue;
+ }
- continue;
- }
+ if (!IsYPTerracingBlocked && // A block above us blocks all YP terracing, so the check is static in the loop
+ (Adjacent.y < (cChunkDef::Height - 1)) &&
+ (NeighbourChunk->GetBlock(Adjacent + OffsetYP) == E_BLOCK_REDSTONE_WIRE
+ ) // Only terrace YP with another wire
+ )
+ {
+ SetDirectionState(
+ Offset,
+ Block,
+ cBlockInfo::IsTransparent(LateralBlock) ? TemporaryDirection::Side : TemporaryDirection::Up
+ );
- if (
- !IsYPTerracingBlocked && // A block above us blocks all YP terracing, so the check is static in the loop
- (Adjacent.y < (cChunkDef::Height - 1)) &&
- (NeighbourChunk->GetBlock(Adjacent + OffsetYP) == E_BLOCK_REDSTONE_WIRE) // Only terrace YP with another wire
- )
+ if (NeighbourChunk != &a_Chunk)
{
- SetDirectionState(Offset, Block, cBlockInfo::IsTransparent(LateralBlock) ? TemporaryDirection::Side : TemporaryDirection::Up);
+ auto & NeighbourBlock = DataForChunk(*NeighbourChunk).WireStates.find(Adjacent + OffsetYP)->second;
+ SetDirectionState(-Offset, NeighbourBlock, TemporaryDirection::Side);
+ }
- if (NeighbourChunk != &a_Chunk)
- {
- auto & NeighbourBlock = DataForChunk(*NeighbourChunk).WireStates.find(Adjacent + OffsetYP)->second;
- SetDirectionState(-Offset, NeighbourBlock, TemporaryDirection::Side);
- }
+ continue;
+ }
- continue;
- }
+ if (
+ // IsYMTerracingBlocked (i.e. check block above lower terracing position, a.k.a. just the plain adjacent)
+ (!cBlockInfo::IsSolid(LateralBlock) || cBlockInfo::IsTransparent(LateralBlock)) && (Adjacent.y > 0) &&
+ (NeighbourChunk->GetBlock(Adjacent + OffsetYM) == E_BLOCK_REDSTONE_WIRE
+ ) // Only terrace YM with another wire
+ )
+ {
+ SetDirectionState(Offset, Block, TemporaryDirection::Side);
- if (
- // IsYMTerracingBlocked (i.e. check block above lower terracing position, a.k.a. just the plain adjacent)
- (!cBlockInfo::IsSolid(LateralBlock) || cBlockInfo::IsTransparent(LateralBlock)) &&
- (Adjacent.y > 0) &&
- (NeighbourChunk->GetBlock(Adjacent + OffsetYM) == E_BLOCK_REDSTONE_WIRE) // Only terrace YM with another wire
- )
+ if (NeighbourChunk != &a_Chunk)
{
- SetDirectionState(Offset, Block, TemporaryDirection::Side);
-
- if (NeighbourChunk != &a_Chunk)
- {
- auto & NeighbourBlock = DataForChunk(*NeighbourChunk).WireStates.find(Adjacent + OffsetYM)->second;
- SetDirectionState(-Offset, NeighbourBlock, TemporaryDirection::Up);
- }
+ auto & NeighbourBlock = DataForChunk(*NeighbourChunk).WireStates.find(Adjacent + OffsetYM)->second;
+ SetDirectionState(-Offset, NeighbourBlock, TemporaryDirection::Up);
}
}
+ }
- auto & States = DataForChunk(a_Chunk).WireStates;
- const auto FindResult = States.find(a_Position);
- if (FindResult != States.end())
+ auto & States = DataForChunk(a_Chunk).WireStates;
+ const auto FindResult = States.find(a_Position);
+ if (FindResult != States.end())
+ {
+ if (Block != FindResult->second)
{
- if (Block != FindResult->second)
- {
- FindResult->second = Block;
+ FindResult->second = Block;
- // TODO: when state is stored as the block, the block handler updating via SetBlock will do this automatically
- // When a wire changes connection state, it needs to update its neighbours:
- a_Chunk.GetWorld()->WakeUpSimulators(cChunkDef::RelativeToAbsolute(a_Position, a_Chunk.GetPos()));
- }
-
- return;
+ // TODO: when state is stored as the block, the block handler updating via SetBlock will do this
+ // automatically When a wire changes connection state, it needs to update its neighbours:
+ a_Chunk.GetWorld()->WakeUpSimulators(cChunkDef::RelativeToAbsolute(a_Position, a_Chunk.GetPos()));
}
- DataForChunk(a_Chunk).WireStates.emplace(a_Position, Block);
+ return;
}
- static PowerLevel GetPowerDeliveredToPosition(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, Vector3i a_QueryPosition, BLOCKTYPE a_QueryBlockType, bool IsLinked)
- {
- // Starts off as the wire's meta value, modified appropriately and returned
- auto Power = a_Chunk.GetMeta(a_Position);
- const auto QueryOffset = a_QueryPosition - a_Position;
+ DataForChunk(a_Chunk).WireStates.emplace(a_Position, Block);
+}
+
+static PowerLevel GetPowerDeliveredToPosition(
+ const cChunk & a_Chunk,
+ Vector3i a_Position,
+ BLOCKTYPE a_BlockType,
+ Vector3i a_QueryPosition,
+ BLOCKTYPE a_QueryBlockType,
+ bool IsLinked
+)
+{
+ // Starts off as the wire's meta value, modified appropriately and returned
+ auto Power = a_Chunk.GetMeta(a_Position);
+ const auto QueryOffset = a_QueryPosition - a_Position;
- if (
- (QueryOffset == OffsetYP) || // Wires do not power things above them
- (IsLinked && (a_QueryBlockType == E_BLOCK_REDSTONE_WIRE)) // Nor do they link power other wires
- )
- {
- return 0;
- }
+ if ((QueryOffset == OffsetYP) || // Wires do not power things above them
+ (IsLinked && (a_QueryBlockType == E_BLOCK_REDSTONE_WIRE)) // Nor do they link power other wires
+ )
+ {
+ return 0;
+ }
- if (QueryOffset == OffsetYM)
- {
- // Wires always deliver power to the block underneath
- return Power;
- }
+ if (QueryOffset == OffsetYM)
+ {
+ // Wires always deliver power to the block underneath
+ return Power;
+ }
- const auto & Data = DataForChunk(a_Chunk);
- const auto Block = Data.WireStates.find(a_Position)->second;
+ const auto & Data = DataForChunk(a_Chunk);
+ const auto Block = Data.WireStates.find(a_Position)->second;
- DoWithDirectionState(QueryOffset, Block, [a_QueryBlockType, &Power](const auto Left, const auto Front, const auto Right)
+ DoWithDirectionState(
+ QueryOffset,
+ Block,
+ [a_QueryBlockType, &Power](const auto Left, const auto Front, const auto Right)
{
using LeftState = std::remove_reference_t<decltype(Left)>;
using FrontState = std::remove_reference_t<decltype(Front)>;
@@ -252,8 +270,8 @@ namespace RedstoneWireHandler
Okay, we do not directly connect to the wire.
1. If there are no DC mechanisms at all, the wire powers all laterals. Great, left and right are both None.
2. If there is one DC mechanism, the wire "goes straight" along the axis of the wire and mechanism.
- The only possible way for us to be powered is for us to be on the opposite end, with the wire pointing towards us.
- Check that left and right are both None.
+ The only possible way for us to be powered is for us to be on the opposite end, with the wire pointing
+ towards us. Check that left and right are both None.
3. If there is more than one DC, no non-DCs are powered. Left, right, cannot both be None.
*/
if ((Left == LeftState::None) && (Right == RightState::None))
@@ -265,45 +283,62 @@ namespace RedstoneWireHandler
// Case 3
Power = 0;
- });
-
- return Power;
- }
+ }
+ );
+
+ return Power;
+}
+
+static void Update(
+ cChunk & a_Chunk,
+ cChunk & CurrentlyTicking,
+ Vector3i a_Position,
+ BLOCKTYPE a_BlockType,
+ NIBBLETYPE a_Meta,
+ const PowerLevel Power
+)
+{
+ // LOGD("Evaluating dusty the wire (%d %d %d) %i", a_Position.x, a_Position.y, a_Position.z, Power);
- static void Update(cChunk & a_Chunk, cChunk & CurrentlyTicking, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, const PowerLevel Power)
+ if (a_Meta == Power)
{
- // LOGD("Evaluating dusty the wire (%d %d %d) %i", a_Position.x, a_Position.y, a_Position.z, Power);
-
- if (a_Meta == Power)
- {
- return;
- }
+ return;
+ }
- a_Chunk.SetMeta(a_Position, Power);
+ a_Chunk.SetMeta(a_Position, Power);
- // Notify all positions, sans YP, to update:
- UpdateAdjustedRelative(a_Chunk, CurrentlyTicking, a_Position, OffsetYM);
- UpdateAdjustedRelatives(a_Chunk, CurrentlyTicking, a_Position, RelativeLaterals);
- }
+ // Notify all positions, sans YP, to update:
+ UpdateAdjustedRelative(a_Chunk, CurrentlyTicking, a_Position, OffsetYM);
+ UpdateAdjustedRelatives(a_Chunk, CurrentlyTicking, a_Position, RelativeLaterals);
+}
- static void ForValidSourcePositions(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, ForEachSourceCallback & Callback)
- {
- UNUSED(a_BlockType);
- UNUSED(a_Meta);
+static void ForValidSourcePositions(
+ const cChunk & a_Chunk,
+ Vector3i a_Position,
+ BLOCKTYPE a_BlockType,
+ NIBBLETYPE a_Meta,
+ ForEachSourceCallback & Callback
+)
+{
+ UNUSED(a_BlockType);
+ UNUSED(a_Meta);
- Callback(a_Position + OffsetYP);
- Callback(a_Position + OffsetYM);
+ Callback(a_Position + OffsetYP);
+ Callback(a_Position + OffsetYM);
- const auto & Data = DataForChunk(a_Chunk);
- const auto Block = Data.WireStates.find(a_Position)->second;
+ const auto & Data = DataForChunk(a_Chunk);
+ const auto Block = Data.WireStates.find(a_Position)->second;
- // Figure out, based on our pre-computed block, where we connect to:
- for (const auto & Offset : RelativeLaterals)
- {
- const auto Relative = a_Position + Offset;
- Callback(Relative);
+ // Figure out, based on our pre-computed block, where we connect to:
+ for (const auto & Offset : RelativeLaterals)
+ {
+ const auto Relative = a_Position + Offset;
+ Callback(Relative);
- DoWithDirectionState(Offset, Block, [&a_Chunk, &Callback, Relative](auto, const auto Front, auto)
+ DoWithDirectionState(
+ Offset,
+ Block,
+ [&a_Chunk, &Callback, Relative](auto, const auto Front, auto)
{
using FrontState = std::remove_reference_t<decltype(Front)>;
@@ -317,17 +352,15 @@ namespace RedstoneWireHandler
// Have to do a manual check to only accept power from YM diagonal if there's a wire there
const auto YMDiagonalPosition = Relative + OffsetYM;
- if (
- BLOCKTYPE QueryBlock;
- cChunkDef::IsValidHeight(YMDiagonalPosition) &&
+ if (BLOCKTYPE QueryBlock; cChunkDef::IsValidHeight(YMDiagonalPosition) &&
a_Chunk.UnboundedRelGetBlockType(YMDiagonalPosition, QueryBlock) &&
- (QueryBlock == E_BLOCK_REDSTONE_WIRE)
- )
+ (QueryBlock == E_BLOCK_REDSTONE_WIRE))
{
Callback(YMDiagonalPosition);
}
}
- });
- }
+ }
+ );
}
-};
+}
+}; // namespace RedstoneWireHandler