diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2016-06-05 17:08:47 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2016-07-29 00:20:52 +0200 |
commit | 04cc8aa0f57ac3fb3293740d4ffd741231d5925d (patch) | |
tree | 014a1bc9552f182c958595a69e1ae2afbd860796 /src/Simulator/IncrementalRedstoneSimulator/PistonHandler.h | |
parent | Tab completion across worlds (#3270) (diff) | |
download | cuberite-04cc8aa0f57ac3fb3293740d4ffd741231d5925d.tar cuberite-04cc8aa0f57ac3fb3293740d4ffd741231d5925d.tar.gz cuberite-04cc8aa0f57ac3fb3293740d4ffd741231d5925d.tar.bz2 cuberite-04cc8aa0f57ac3fb3293740d4ffd741231d5925d.tar.lz cuberite-04cc8aa0f57ac3fb3293740d4ffd741231d5925d.tar.xz cuberite-04cc8aa0f57ac3fb3293740d4ffd741231d5925d.tar.zst cuberite-04cc8aa0f57ac3fb3293740d4ffd741231d5925d.zip |
Diffstat (limited to 'src/Simulator/IncrementalRedstoneSimulator/PistonHandler.h')
-rw-r--r-- | src/Simulator/IncrementalRedstoneSimulator/PistonHandler.h | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/src/Simulator/IncrementalRedstoneSimulator/PistonHandler.h b/src/Simulator/IncrementalRedstoneSimulator/PistonHandler.h index 1ee68e521..f82ebdf94 100644 --- a/src/Simulator/IncrementalRedstoneSimulator/PistonHandler.h +++ b/src/Simulator/IncrementalRedstoneSimulator/PistonHandler.h @@ -39,14 +39,37 @@ public: virtual cVector3iArray Update(const Vector3i & a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, PoweringData a_PoweringData) override { // LOGD("Evaluating pisty the piston (%d %d %d)", a_Position.x, a_Position.y, a_Position.z); + auto Data = static_cast<cIncrementalRedstoneSimulator *>(m_World.GetRedstoneSimulator())->GetChunkData(); + auto DelayInfo = Data->GetMechanismDelayInfo(a_Position); - if (a_PoweringData.PowerLevel > 0) + // Delay is used here to prevent an infinite loop (#3168) + if (DelayInfo == nullptr) { - cBlockPistonHandler::ExtendPiston(a_Position, &m_World); + bool ShouldBeExtended = (a_PoweringData.PowerLevel != 0); + if (ShouldBeExtended != cBlockPistonHandler::IsExtended(a_Meta)) + { + Data->m_MechanismDelays[a_Position] = std::make_pair(1, ShouldBeExtended); + } } else { - cBlockPistonHandler::RetractPiston(a_Position, &m_World); + int DelayTicks; + bool ShouldBeExtended; + std::tie(DelayTicks, ShouldBeExtended) = *DelayInfo; + + if (DelayTicks == 0) + { + if (ShouldBeExtended) + { + cBlockPistonHandler::ExtendPiston(a_Position, &m_World); + } + else + { + cBlockPistonHandler::RetractPiston(a_Position, &m_World); + } + + Data->m_MechanismDelays.erase(a_Position); + } } return {}; |