diff options
author | Mattes D <github@xoft.cz> | 2014-02-19 22:12:38 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-02-19 22:12:38 +0100 |
commit | 87db4b6a904f2877919446b8219d659848da89e8 (patch) | |
tree | 617bf18a768a493c2cd428297168f57df0901c26 /src/Chunk.cpp | |
parent | Merge pull request #694 from mc-server/itemframes (diff) | |
parent | Rename SkullEntity to MobHeadEntity (diff) | |
download | cuberite-87db4b6a904f2877919446b8219d659848da89e8.tar cuberite-87db4b6a904f2877919446b8219d659848da89e8.tar.gz cuberite-87db4b6a904f2877919446b8219d659848da89e8.tar.bz2 cuberite-87db4b6a904f2877919446b8219d659848da89e8.tar.lz cuberite-87db4b6a904f2877919446b8219d659848da89e8.tar.xz cuberite-87db4b6a904f2877919446b8219d659848da89e8.tar.zst cuberite-87db4b6a904f2877919446b8219d659848da89e8.zip |
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r-- | src/Chunk.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp index 0587beb9c..4f301c209 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -19,6 +19,7 @@ #include "BlockEntities/JukeboxEntity.h" #include "BlockEntities/NoteEntity.h" #include "BlockEntities/SignEntity.h" +#include "BlockEntities/MobHeadEntity.h" #include "Entities/Pickup.h" #include "Item.h" #include "Noise.h" @@ -1314,6 +1315,7 @@ void cChunk::CreateBlockEntities(void) case E_BLOCK_HOPPER: case E_BLOCK_SIGN_POST: case E_BLOCK_WALLSIGN: + case E_BLOCK_HEAD: case E_BLOCK_NOTE_BLOCK: case E_BLOCK_JUKEBOX: { @@ -1442,6 +1444,7 @@ void cChunk::SetBlock(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, case E_BLOCK_HOPPER: case E_BLOCK_SIGN_POST: case E_BLOCK_WALLSIGN: + case E_BLOCK_HEAD: case E_BLOCK_NOTE_BLOCK: case E_BLOCK_JUKEBOX: { @@ -2341,6 +2344,38 @@ bool cChunk::DoWithCommandBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cCom +bool cChunk::DoWithMobHeadBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cMobHeadBlockCallback & a_Callback) +{ + // The blockentity list is locked by the parent chunkmap's CS + for (cBlockEntityList::iterator itr = m_BlockEntities.begin(), itr2 = itr; itr != m_BlockEntities.end(); itr = itr2) + { + ++itr2; + if (((*itr)->GetPosX() != a_BlockX) || ((*itr)->GetPosY() != a_BlockY) || ((*itr)->GetPosZ() != a_BlockZ)) + { + continue; + } + if ((*itr)->GetBlockType() != E_BLOCK_HEAD) + { + // There is a block entity here, but of different type. No other block entity can be here, so we can safely bail out + return false; + } + + // The correct block entity is here, + if (a_Callback.Item((cMobHeadEntity *)*itr)) + { + return false; + } + return true; + } // for itr - m_BlockEntitites[] + + // Not found: + return false; +} + + + + + bool cChunk::GetSignLines(int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_Line1, AString & a_Line2, AString & a_Line3, AString & a_Line4) { // The blockentity list is locked by the parent chunkmap's CS |