diff options
author | madmaxoft <github@xoft.cz> | 2014-08-09 14:25:49 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-08-09 14:25:49 +0200 |
commit | 4b1505f39d6a77b0fd389d1170a1dcc901f602cd (patch) | |
tree | 036067995500e4d770eeecbf3e3b9b791d604bb5 /src/Chunk.cpp | |
parent | Debuggers: Simple cRankManager test case. (diff) | |
parent | Merge pull request #1295 from mc-server/crystal (diff) | |
download | cuberite-4b1505f39d6a77b0fd389d1170a1dcc901f602cd.tar cuberite-4b1505f39d6a77b0fd389d1170a1dcc901f602cd.tar.gz cuberite-4b1505f39d6a77b0fd389d1170a1dcc901f602cd.tar.bz2 cuberite-4b1505f39d6a77b0fd389d1170a1dcc901f602cd.tar.lz cuberite-4b1505f39d6a77b0fd389d1170a1dcc901f602cd.tar.xz cuberite-4b1505f39d6a77b0fd389d1170a1dcc901f602cd.tar.zst cuberite-4b1505f39d6a77b0fd389d1170a1dcc901f602cd.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 cd7dc698c..a79a485a6 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -2127,6 +2127,41 @@ bool cChunk::DoWithBlockEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBloc +bool cChunk::DoWithRedstonePoweredEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cRedstonePoweredCallback & 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; + } + switch ((*itr)->GetBlockType()) + { + case E_BLOCK_DROPPER: + case E_BLOCK_DISPENSER: + case E_BLOCK_NOTE_BLOCK: + break; + default: + // 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; + } + + if (a_Callback.Item((cRedstonePoweredEntity *)*itr)) + { + return false; + } + return true; + } // for itr - m_BlockEntitites[] + + // Not found: + return false; +} + + + + bool cChunk::DoWithBeaconAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBeaconCallback & a_Callback) { // The blockentity list is locked by the parent chunkmap's CS |