diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2016-07-31 22:54:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-31 22:54:35 +0200 |
commit | d46f7ce2c880026ff4663d89d3e76117219b87a2 (patch) | |
tree | adc5f25d7473b69e49afeb75427949a7eb189384 /src/Simulator/IncrementalRedstoneSimulator/PistonHandler.h | |
parent | Add {} around easyinstall.sh (#3286) (diff) | |
download | cuberite-d46f7ce2c880026ff4663d89d3e76117219b87a2.tar cuberite-d46f7ce2c880026ff4663d89d3e76117219b87a2.tar.gz cuberite-d46f7ce2c880026ff4663d89d3e76117219b87a2.tar.bz2 cuberite-d46f7ce2c880026ff4663d89d3e76117219b87a2.tar.lz cuberite-d46f7ce2c880026ff4663d89d3e76117219b87a2.tar.xz cuberite-d46f7ce2c880026ff4663d89d3e76117219b87a2.tar.zst cuberite-d46f7ce2c880026ff4663d89d3e76117219b87a2.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 {}; |