diff options
author | Derek Qu <qud@umich.edu> | 2020-11-26 01:58:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-26 01:58:35 +0100 |
commit | 280f7a81f4a6ec2c59768036b7e8ad8ebab00b4c (patch) | |
tree | 17db730c88e4f2127a3e07c60817cc8937a287d7 /src/Blocks/BlockNoteBlock.h | |
parent | Added magma block contact damage (#5055) (diff) | |
download | cuberite-280f7a81f4a6ec2c59768036b7e8ad8ebab00b4c.tar cuberite-280f7a81f4a6ec2c59768036b7e8ad8ebab00b4c.tar.gz cuberite-280f7a81f4a6ec2c59768036b7e8ad8ebab00b4c.tar.bz2 cuberite-280f7a81f4a6ec2c59768036b7e8ad8ebab00b4c.tar.lz cuberite-280f7a81f4a6ec2c59768036b7e8ad8ebab00b4c.tar.xz cuberite-280f7a81f4a6ec2c59768036b7e8ad8ebab00b4c.tar.zst cuberite-280f7a81f4a6ec2c59768036b7e8ad8ebab00b4c.zip |
Diffstat (limited to 'src/Blocks/BlockNoteBlock.h')
-rw-r--r-- | src/Blocks/BlockNoteBlock.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/Blocks/BlockNoteBlock.h b/src/Blocks/BlockNoteBlock.h new file mode 100644 index 000000000..ac1ab7238 --- /dev/null +++ b/src/Blocks/BlockNoteBlock.h @@ -0,0 +1,43 @@ + +#pragma once + +#include "BlockEntity.h" +#include "../BlockEntities/NoteEntity.h" + + + + + +class cBlockNoteBlockHandler final : + public cBlockEntityHandler +{ + using Super = cBlockEntityHandler; + +public: + + using Super::Super; + +private: + + virtual void OnDigging( + cChunkInterface & a_ChunkInterface, + cWorldInterface & a_WorldInterface, + cPlayer & a_Player, + const Vector3i a_BlockPos + ) const override + { + a_WorldInterface.DoWithBlockEntityAt(a_BlockPos.x, a_BlockPos.y, a_BlockPos.z, [](cBlockEntity & a_BlockEntity) + { + if (a_BlockEntity.GetBlockType() != E_BLOCK_NOTE_BLOCK) + { + return false; + } + + auto & NoteEntity = static_cast<cNoteEntity &>(a_BlockEntity); + + NoteEntity.MakeSound(); + + return true; + }); + } +}; |