diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2014-02-03 20:08:38 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2014-02-03 20:08:38 +0100 |
commit | 5ba46ebc21714c7398e7c1a14e81cb0f00c3f348 (patch) | |
tree | f7895e582c20426908ea9b7b39f7a26991041251 /src/Blocks/BlockWood.h | |
parent | Fixed socket leaking. (diff) | |
download | cuberite-5ba46ebc21714c7398e7c1a14e81cb0f00c3f348.tar cuberite-5ba46ebc21714c7398e7c1a14e81cb0f00c3f348.tar.gz cuberite-5ba46ebc21714c7398e7c1a14e81cb0f00c3f348.tar.bz2 cuberite-5ba46ebc21714c7398e7c1a14e81cb0f00c3f348.tar.lz cuberite-5ba46ebc21714c7398e7c1a14e81cb0f00c3f348.tar.xz cuberite-5ba46ebc21714c7398e7c1a14e81cb0f00c3f348.tar.zst cuberite-5ba46ebc21714c7398e7c1a14e81cb0f00c3f348.zip |
Diffstat (limited to 'src/Blocks/BlockWood.h')
-rw-r--r-- | src/Blocks/BlockWood.h | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/src/Blocks/BlockWood.h b/src/Blocks/BlockWood.h deleted file mode 100644 index cf49d0745..000000000 --- a/src/Blocks/BlockWood.h +++ /dev/null @@ -1,72 +0,0 @@ - -#pragma once - -#include "BlockHandler.h" - - - - - -class cBlockWoodHandler : public cBlockHandler -{ -public: - cBlockWoodHandler(BLOCKTYPE a_BlockType) - : cBlockHandler(a_BlockType) - { - } - - - virtual bool GetPlacementBlockTypeMeta( - cChunkInterface & a_ChunkInterface, cPlayer * a_Player, - int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, - int a_CursorX, int a_CursorY, int a_CursorZ, - BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta - ) override - { - a_BlockType = m_BlockType; - NIBBLETYPE Meta = (NIBBLETYPE)(a_Player->GetEquippedItem().m_ItemDamage); - a_BlockMeta = BlockFaceToMetaData(a_BlockFace, Meta); - return true; - } - - - inline static NIBBLETYPE BlockFaceToMetaData(char a_BlockFace, NIBBLETYPE a_WoodMeta) - { - switch (a_BlockFace) - { - case BLOCK_FACE_YM: - case BLOCK_FACE_YP: - { - return a_WoodMeta; // Top or bottom, just return original - } - - case BLOCK_FACE_ZP: - case BLOCK_FACE_ZM: - { - return a_WoodMeta | 0x8; // North or south - } - - case BLOCK_FACE_XP: - case BLOCK_FACE_XM: - { - return a_WoodMeta | 0x4; // East or west - } - - default: - { - ASSERT(!"Unhandled block face!"); - return a_WoodMeta | 0xC; // No idea, give a special meta (all sides bark) - } - } - } - - - virtual const char * GetStepSound(void) override - { - return "step.wood"; - } -} ; - - - - |