diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-08-19 22:14:40 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-08-21 01:50:09 +0200 |
commit | 3143d6ce679f322ee73d3d70e2d843e9c98cc043 (patch) | |
tree | 8ccc3b6d2a22a848e0c01c667aa10b25c3a5684e /src/Simulator/IncrementalRedstoneSimulator/RedstoneTorchHandler.h | |
parent | Minor typo fixes (diff) | |
download | cuberite-3143d6ce679f322ee73d3d70e2d843e9c98cc043.tar cuberite-3143d6ce679f322ee73d3d70e2d843e9c98cc043.tar.gz cuberite-3143d6ce679f322ee73d3d70e2d843e9c98cc043.tar.bz2 cuberite-3143d6ce679f322ee73d3d70e2d843e9c98cc043.tar.lz cuberite-3143d6ce679f322ee73d3d70e2d843e9c98cc043.tar.xz cuberite-3143d6ce679f322ee73d3d70e2d843e9c98cc043.tar.zst cuberite-3143d6ce679f322ee73d3d70e2d843e9c98cc043.zip |
Diffstat (limited to 'src/Simulator/IncrementalRedstoneSimulator/RedstoneTorchHandler.h')
-rw-r--r-- | src/Simulator/IncrementalRedstoneSimulator/RedstoneTorchHandler.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/Simulator/IncrementalRedstoneSimulator/RedstoneTorchHandler.h b/src/Simulator/IncrementalRedstoneSimulator/RedstoneTorchHandler.h index 77c889aa9..e7f5bf6f1 100644 --- a/src/Simulator/IncrementalRedstoneSimulator/RedstoneTorchHandler.h +++ b/src/Simulator/IncrementalRedstoneSimulator/RedstoneTorchHandler.h @@ -1,20 +1,18 @@ #pragma once -#include "RedstoneHandler.h" - -class cRedstoneTorchHandler final : public cRedstoneHandler +namespace RedstoneTorchHandler { - inline static bool IsOn(BLOCKTYPE a_Block) + inline bool IsOn(BLOCKTYPE a_Block) { return (a_Block == E_BLOCK_REDSTONE_TORCH_ON); } - inline static Vector3i GetOffsetAttachedTo(const NIBBLETYPE a_Meta) + inline Vector3i GetOffsetAttachedTo(const NIBBLETYPE a_Meta) { switch (a_Meta) { @@ -31,7 +29,7 @@ class cRedstoneTorchHandler final : public cRedstoneHandler } } - virtual unsigned char GetPowerDeliveredToPosition(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, Vector3i a_QueryPosition, BLOCKTYPE a_QueryBlockType, bool IsLinked) const override + inline unsigned char GetPowerDeliveredToPosition(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, Vector3i a_QueryPosition, BLOCKTYPE a_QueryBlockType, bool IsLinked) { const auto QueryOffset = a_QueryPosition - a_Position; @@ -47,7 +45,7 @@ class cRedstoneTorchHandler final : public cRedstoneHandler return 15; } - virtual void Update(cChunk & a_Chunk, cChunk & CurrentlyTicking, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, PoweringData a_PoweringData) const override + inline void Update(cChunk & a_Chunk, cChunk & CurrentlyTicking, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, PoweringData a_PoweringData) { // LOGD("Evaluating torchy the redstone torch (%i %i %i)", a_Position.x, a_Position.y, a_Position.z); @@ -88,7 +86,7 @@ class cRedstoneTorchHandler final : public cRedstoneHandler } } - virtual void ForValidSourcePositions(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, SourceCallback Callback) const override + inline void ForValidSourcePositions(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, ForEachSourceCallback & Callback) { UNUSED(a_Chunk); UNUSED(a_BlockType); |