From 96bd4637d7d89e414da57973f729f9b10cbb6557 Mon Sep 17 00:00:00 2001 From: Peter Bell Date: Thu, 16 Apr 2020 22:35:49 +0100 Subject: Implement glowing redstone ore --- src/Blocks/BlockRedstoneOre.h | 79 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 src/Blocks/BlockRedstoneOre.h (limited to 'src/Blocks/BlockRedstoneOre.h') diff --git a/src/Blocks/BlockRedstoneOre.h b/src/Blocks/BlockRedstoneOre.h new file mode 100644 index 000000000..cb6f73733 --- /dev/null +++ b/src/Blocks/BlockRedstoneOre.h @@ -0,0 +1,79 @@ + +#pragma once + +#include "BlockHandler.h" +#include "BlockOre.h" + + + + + +class cBlockRedstoneOreHandler : + public cBlockOreHandler +{ + using Super = cBlockOreHandler; +public: + + using Super::Super; + + virtual bool OnUse( + cChunkInterface & a_ChunkInterface, + cWorldInterface & a_WorldInterface, + cPlayer & a_Player, + int a_BlockX, int a_BlockY, int a_BlockZ, + eBlockFace a_BlockFace, + int a_CursorX, int a_CursorY, int a_CursorZ + ) override + { + Vector3i BlockPos{a_BlockX, a_BlockY, a_BlockZ}; + a_ChunkInterface.SetBlock(BlockPos, E_BLOCK_REDSTONE_ORE_GLOWING, 0); + return false; + } + + virtual void OnDigging( + cChunkInterface & a_ChunkInterface, + cWorldInterface & a_WorldInterface, + cPlayer & a_Player, + int a_BlockX, int a_BlockY, int a_BlockZ + ) override + { + Vector3i BlockPos{a_BlockX, a_BlockY, a_BlockZ}; + a_ChunkInterface.SetBlock(BlockPos, E_BLOCK_REDSTONE_ORE_GLOWING, 0); + } + + virtual bool IsUseable() override + { + return true; + } +}; + + + + + +class cBlockGlowingRedstoneOreHandler: + public cBlockOreHandler +{ + using Super = cBlockOreHandler; +public: + + using Super::Super; + + virtual void OnUpdate( + cChunkInterface & a_ChunkInterface, + cWorldInterface & a_WorldInterface, + cBlockPluginInterface & a_BlockPluginInterface, + cChunk & a_Chunk, + int a_RelX, int a_RelY, int a_RelZ + ) override + { + const Vector3i a_RelPos{a_RelX, a_RelY, a_RelZ}; + auto BlockPos = a_Chunk.RelativeToAbsolute(a_RelPos); + a_ChunkInterface.SetBlock(BlockPos, E_BLOCK_REDSTONE_ORE, 0); + } +}; + + + + + -- cgit v1.2.3