diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-15 02:45:25 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-15 02:45:25 +0100 |
commit | 7ac7304c913f9cf82a906589904068a3e7f09d43 (patch) | |
tree | b4eea6cc46781c7c253c44072c1ad446c8633997 /src/Entities/ItemFrame.cpp | |
parent | Add health and age load to pickup's. (diff) | |
download | cuberite-7ac7304c913f9cf82a906589904068a3e7f09d43.tar cuberite-7ac7304c913f9cf82a906589904068a3e7f09d43.tar.gz cuberite-7ac7304c913f9cf82a906589904068a3e7f09d43.tar.bz2 cuberite-7ac7304c913f9cf82a906589904068a3e7f09d43.tar.lz cuberite-7ac7304c913f9cf82a906589904068a3e7f09d43.tar.xz cuberite-7ac7304c913f9cf82a906589904068a3e7f09d43.tar.zst cuberite-7ac7304c913f9cf82a906589904068a3e7f09d43.zip |
Diffstat (limited to 'src/Entities/ItemFrame.cpp')
-rw-r--r-- | src/Entities/ItemFrame.cpp | 39 |
1 files changed, 3 insertions, 36 deletions
diff --git a/src/Entities/ItemFrame.cpp b/src/Entities/ItemFrame.cpp index 8cfa5e18d..9dd909880 100644 --- a/src/Entities/ItemFrame.cpp +++ b/src/Entities/ItemFrame.cpp @@ -10,43 +10,10 @@ cItemFrame::cItemFrame(eBlockFace a_BlockFace, double a_X, double a_Y, double a_Z) - : cEntity(etItemFrame, a_X, a_Y, a_Z, 0.8, 0.8), - m_BlockFace(a_BlockFace), - m_Item(E_BLOCK_AIR), - m_Rotation(0) + : cHangingEntity(etItemFrame, a_BlockFace, a_X, a_Y, a_Z) + , m_Item(E_BLOCK_AIR) + , m_Rotation(0) { - SetMaxHealth(1); - SetHealth(1); -} - - - - - -void cItemFrame::SpawnOn(cClientHandle & a_ClientHandle) -{ - int Dir = 0; - - // The client uses different values for item frame directions and block faces. Our constants are for the block faces, so we convert them here to item frame faces - switch (m_BlockFace) - { - case BLOCK_FACE_ZP: break; // Initialised to zero - case BLOCK_FACE_ZM: Dir = 2; break; - case BLOCK_FACE_XM: Dir = 1; break; - case BLOCK_FACE_XP: Dir = 3; break; - default: ASSERT(!"Unhandled block face when trying to spawn item frame!"); return; - } - - if ((Dir == 0) || (Dir == 2)) // Probably a client bug, but two directions are flipped and contrary to the norm, so we do -180 - { - SetYaw((Dir * 90) - 180); - } - else - { - SetYaw(Dir * 90); - } - - a_ClientHandle.SendSpawnObject(*this, 71, Dir, (Byte)GetYaw(), (Byte)GetPitch()); } |