2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "ChunkMap.h"
|
|
|
|
#include "World.h"
|
|
|
|
#include "Root.h"
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "Entities/Player.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "Item.h"
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "Entities/Pickup.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "Chunk.h"
|
2012-09-23 16:14:04 -04:00
|
|
|
#include "Generating/Trees.h" // used in cChunkMap::ReplaceTreeBlocks() for tree block discrimination
|
2012-10-06 12:58:31 -04:00
|
|
|
#include "BlockArea.h"
|
2013-12-08 06:17:54 -05:00
|
|
|
#include "Bindings/PluginManager.h"
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "Entities/TNTEntity.h"
|
2013-10-23 18:40:59 -04:00
|
|
|
#include "Blocks/BlockHandler.h"
|
2013-09-07 16:19:56 -04:00
|
|
|
#include "MobCensus.h"
|
2013-09-07 18:11:38 -04:00
|
|
|
#include "MobSpawner.h"
|
2014-02-02 14:16:38 -05:00
|
|
|
#include "BoundingBox.h"
|
2014-07-24 12:32:05 -04:00
|
|
|
#include "SetChunkData.h"
|
2014-09-26 13:13:19 -04:00
|
|
|
#include "Blocks/ChunkInterface.h"
|
2014-02-02 14:16:38 -05:00
|
|
|
#include "Entities/Pickup.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
2014-07-17 13:13:23 -04:00
|
|
|
#include <cstdlib> // abs
|
2012-06-14 09:06:06 -04:00
|
|
|
#endif
|
|
|
|
|
2013-11-27 02:40:59 -05:00
|
|
|
#include "zlib/zlib.h"
|
2013-11-27 03:17:25 -05:00
|
|
|
#include "json/json.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cChunkMap:
|
|
|
|
|
2014-07-17 13:13:23 -04:00
|
|
|
cChunkMap::cChunkMap(cWorld * a_World) :
|
|
|
|
m_World(a_World),
|
2014-06-16 10:12:50 -04:00
|
|
|
m_Pool(
|
|
|
|
new cListAllocationPool<cChunkData::sChunkSection, 1600>(
|
|
|
|
std::auto_ptr<cAllocationPool<cChunkData::sChunkSection>::cStarvationCallbacks>(
|
2014-07-17 13:13:23 -04:00
|
|
|
new cStarvationCallbacks()
|
2014-06-16 10:12:50 -04:00
|
|
|
)
|
|
|
|
)
|
2014-07-17 13:13:23 -04:00
|
|
|
)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-06-16 10:12:50 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cChunkMap::~cChunkMap()
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2013-04-27 15:40:57 -04:00
|
|
|
while (!m_Layers.empty())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-04-27 15:40:57 -04:00
|
|
|
delete m_Layers.back();
|
|
|
|
m_Layers.pop_back(); // Must pop, because further chunk deletions query the chunkmap for entities and that would touch deleted data
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-09 05:16:56 -04:00
|
|
|
void cChunkMap::RemoveLayer(cChunkLayer * a_Layer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
m_Layers.remove(a_Layer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cChunkMap::cChunkLayer * cChunkMap::GetLayer(int a_LayerX, int a_LayerZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
|
|
|
if (((*itr)->GetX() == a_LayerX) && ((*itr)->GetZ() == a_LayerZ))
|
|
|
|
{
|
|
|
|
return *itr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not found, create new:
|
2014-06-16 10:12:50 -04:00
|
|
|
cChunkLayer * Layer = new cChunkLayer(a_LayerX, a_LayerZ, this, *m_Pool);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Layer == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
LOGERROR("cChunkMap: Cannot create new layer, server out of memory?");
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
m_Layers.push_back(Layer);
|
|
|
|
return Layer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-14 17:38:30 -05:00
|
|
|
cChunkMap::cChunkLayer * cChunkMap::FindLayerForChunk(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
2013-02-27 05:01:20 -05:00
|
|
|
const int LayerX = FAST_FLOOR_DIV(a_ChunkX, LAYER_SIZE);
|
|
|
|
const int LayerZ = FAST_FLOOR_DIV(a_ChunkZ, LAYER_SIZE);
|
2012-12-14 17:38:30 -05:00
|
|
|
return FindLayer(LayerX, LayerZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cChunkMap::cChunkLayer * cChunkMap::FindLayer(int a_LayerX, int a_LayerZ)
|
|
|
|
{
|
|
|
|
ASSERT(m_CSLayers.IsLockedByCurrentThread());
|
|
|
|
|
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
|
|
|
if (((*itr)->GetX() == a_LayerX) && ((*itr)->GetZ() == a_LayerZ))
|
|
|
|
{
|
|
|
|
return *itr;
|
|
|
|
}
|
|
|
|
} // for itr - m_Layers[]
|
|
|
|
|
|
|
|
// Not found
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-12-14 17:38:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cChunkMap::cChunkLayer * cChunkMap::GetLayerForChunk(int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-02-27 05:01:20 -05:00
|
|
|
const int LayerX = FAST_FLOOR_DIV(a_ChunkX, LAYER_SIZE);
|
2013-02-27 06:58:02 -05:00
|
|
|
const int LayerZ = FAST_FLOOR_DIV(a_ChunkZ, LAYER_SIZE);
|
2013-02-27 05:01:20 -05:00
|
|
|
return GetLayer(LayerX, LayerZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr cChunkMap::GetChunk(int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-09-05 16:16:48 -04:00
|
|
|
ASSERT(m_CSLayers.IsLockedByCurrentThread()); // m_CSLayers should already be locked by the operation that called us
|
2012-12-14 17:38:30 -05:00
|
|
|
|
2014-09-05 16:16:48 -04:00
|
|
|
cChunkLayer * Layer = GetLayerForChunk(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Layer == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// An error must have occurred, since layers are automatically created if they don't exist
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = Layer->GetChunk(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2014-09-05 16:16:48 -04:00
|
|
|
if (!Chunk->IsValid() && !Chunk->IsQueued())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-09-05 16:16:48 -04:00
|
|
|
Chunk->SetPresence(cChunk::cpQueued);
|
|
|
|
Chunk->SetShouldGenerateIfLoadFailed(true);
|
2014-09-05 17:26:00 -04:00
|
|
|
m_World->GetStorage().QueueLoadChunk(a_ChunkX, a_ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
return Chunk;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-05 16:16:48 -04:00
|
|
|
cChunkPtr cChunkMap::GetChunkNoGen(int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-09-05 16:16:48 -04:00
|
|
|
ASSERT(m_CSLayers.IsLockedByCurrentThread()); // m_CSLayers should already be locked by the operation that called us
|
|
|
|
|
|
|
|
cChunkLayer * Layer = GetLayerForChunk(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Layer == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// An error must have occurred, since layers are automatically created if they don't exist
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = Layer->GetChunk(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2014-09-05 16:16:48 -04:00
|
|
|
if (!Chunk->IsValid() && !Chunk->IsQueued())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-09-05 16:16:48 -04:00
|
|
|
Chunk->SetPresence(cChunk::cpQueued);
|
2014-09-05 17:26:00 -04:00
|
|
|
m_World->GetStorage().QueueLoadChunk(a_ChunkX, a_ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return Chunk;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr cChunkMap::GetChunkNoLoad( int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-09-05 16:16:48 -04:00
|
|
|
ASSERT(m_CSLayers.IsLockedByCurrentThread()); // m_CSLayers should already be locked by the operation that called us
|
|
|
|
|
2014-07-21 09:19:48 -04:00
|
|
|
cChunkLayer * Layer = GetLayerForChunk( a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Layer == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// An error must have occurred, since layers are automatically created if they don't exist
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
return Layer->GetChunk(a_ChunkX, a_ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::LockedGetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta)
|
|
|
|
{
|
|
|
|
// We already have m_CSLayers locked since this can be called only from within the tick thread
|
2013-05-28 08:05:23 -04:00
|
|
|
ASSERT(m_CSLayers.IsLockedByCurrentThread());
|
|
|
|
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-05-28 08:05:23 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-04-26 13:50:23 -04:00
|
|
|
a_BlockType = Chunk->GetBlock(a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
a_BlockMeta = Chunk->GetMeta(a_BlockX, a_BlockY, a_BlockZ);
|
2013-05-28 08:05:23 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::LockedGetBlockType(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE & a_BlockType)
|
|
|
|
{
|
|
|
|
// We already have m_CSLayers locked since this can be called only from within the tick thread
|
|
|
|
ASSERT(m_CSLayers.IsLockedByCurrentThread());
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-04-26 13:50:23 -04:00
|
|
|
a_BlockType = Chunk->GetBlock(a_BlockX, a_BlockY, a_BlockZ);
|
2013-05-28 08:05:23 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::LockedGetBlockMeta(int a_BlockX, int a_BlockY, int a_BlockZ, NIBBLETYPE & a_BlockMeta)
|
|
|
|
{
|
|
|
|
// We already have m_CSLayers locked since this can be called only from within the tick thread
|
|
|
|
ASSERT(m_CSLayers.IsLockedByCurrentThread());
|
|
|
|
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-05-28 08:05:23 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-04-26 13:50:23 -04:00
|
|
|
a_BlockMeta = Chunk->GetMeta(a_BlockX, a_BlockY, a_BlockZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::LockedSetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta)
|
|
|
|
{
|
|
|
|
// We already have m_CSLayers locked since this can be called only from within the tick thread
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Chunk->SetBlock(a_BlockX, a_BlockY, a_BlockZ, a_BlockType, a_BlockMeta);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::LockedFastSetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta)
|
|
|
|
{
|
|
|
|
// We already have m_CSLayers locked since this can be called only from within the tick thread
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Chunk->FastSetBlock(a_BlockX, a_BlockY, a_BlockZ, a_BlockType, a_BlockMeta);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-14 17:38:30 -05:00
|
|
|
cChunk * cChunkMap::FindChunk(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
ASSERT(m_CSLayers.IsLockedByCurrentThread());
|
|
|
|
|
|
|
|
cChunkLayer * Layer = FindLayerForChunk(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Layer == nullptr)
|
2012-12-14 17:38:30 -05:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-12-14 17:38:30 -05:00
|
|
|
}
|
|
|
|
return Layer->FindChunk(a_ChunkX, a_ChunkZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-03 14:05:11 -05:00
|
|
|
void cChunkMap::BroadcastAttachEntity(const cEntity & a_Entity, const cEntity * a_Vehicle)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-03-03 14:05:11 -05:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
|
|
|
Chunk->BroadcastAttachEntity(a_Entity, a_Vehicle);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
|
|
|
|
void cChunkMap::BroadcastBlockAction(int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2, BLOCKTYPE a_BlockType, const cClientHandle * a_Exclude)
|
2012-08-19 07:51:17 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-04-25 21:18:46 -04:00
|
|
|
int x, z, ChunkX, ChunkZ;
|
2013-07-07 09:06:06 -04:00
|
|
|
x = a_BlockX;
|
|
|
|
z = a_BlockZ;
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(x, z, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 07:51:17 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastBlockAction(a_BlockX, a_BlockY, a_BlockZ, a_Byte1, a_Byte2, a_BlockType, a_Exclude);
|
2012-08-19 07:51:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-03-21 10:18:17 -04:00
|
|
|
void cChunkMap::BroadcastBlockBreakAnimation(UInt32 a_EntityID, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Stage, const cClientHandle * a_Exclude)
|
2012-08-19 07:51:17 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2013-07-07 09:06:06 -04:00
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
|
2015-03-21 10:18:17 -04:00
|
|
|
cChunkDef::BlockToChunk(a_BlockX, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 07:51:17 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2015-03-21 10:18:17 -04:00
|
|
|
Chunk->BroadcastBlockBreakAnimation(a_EntityID, a_BlockX, a_BlockY, a_BlockZ, a_Stage, a_Exclude);
|
2012-08-19 07:51:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastBlockEntity(int a_BlockX, int a_BlockY, int a_BlockZ, const cClientHandle * a_Exclude)
|
2013-03-17 22:51:55 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2013-07-07 09:06:06 -04:00
|
|
|
int ChunkX, ChunkZ;
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(a_BlockX, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-03-17 22:51:55 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastBlockEntity(a_BlockX, a_BlockY, a_BlockZ, a_Exclude);
|
2013-03-17 22:51:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer, const cClientHandle * a_Exclude)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastChunkData(a_Serializer, a_Exclude);
|
2012-08-19 15:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-06-27 14:56:29 -04:00
|
|
|
void cChunkMap::BroadcastCollectEntity(const cEntity & a_Entity, const cPlayer & a_Player, const cClientHandle * a_Exclude)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2014-06-27 14:56:29 -04:00
|
|
|
Chunk->BroadcastCollectEntity(a_Entity, a_Player, a_Exclude);
|
2012-08-19 15:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastDestroyEntity(const cEntity & a_Entity, const cClientHandle * a_Exclude)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastDestroyEntity(a_Entity, a_Exclude);
|
2012-08-19 15:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-15 04:51:46 -05:00
|
|
|
void cChunkMap::BroadcastEntityEffect(const cEntity & a_Entity, int a_EffectID, int a_Amplifier, short a_Duration, const cClientHandle * a_Exclude)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-12-15 04:51:46 -05:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
|
|
|
Chunk->BroadcastEntityEffect(a_Entity, a_EffectID, a_Amplifier, a_Duration);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastEntityEquipment(const cEntity & a_Entity, short a_SlotNum, const cItem & a_Item, const cClientHandle * a_Exclude)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastEntityEquipment(a_Entity, a_SlotNum, a_Item, a_Exclude);
|
2012-08-19 15:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastEntityHeadLook(const cEntity & a_Entity, const cClientHandle * a_Exclude)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastEntityHeadLook(a_Entity, a_Exclude);
|
2012-08-19 15:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastEntityLook(const cEntity & a_Entity, const cClientHandle * a_Exclude)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 15:42:32 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastEntityLook(a_Entity, a_Exclude);
|
2012-08-19 15:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastEntityMetadata(const cEntity & a_Entity, const cClientHandle * a_Exclude)
|
2012-08-19 17:14:45 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 17:14:45 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastEntityMetadata(a_Entity, a_Exclude);
|
2012-08-19 17:14:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastEntityRelMove(const cEntity & a_Entity, char a_RelX, char a_RelY, char a_RelZ, const cClientHandle * a_Exclude)
|
2012-08-19 17:14:45 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-19 17:14:45 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastEntityRelMove(a_Entity, a_RelX, a_RelY, a_RelZ, a_Exclude);
|
2012-08-19 17:14:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastEntityRelMoveLook(const cEntity & a_Entity, char a_RelX, char a_RelY, char a_RelZ, const cClientHandle * a_Exclude)
|
2012-08-24 03:58:26 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-24 03:58:26 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastEntityRelMoveLook(a_Entity, a_RelX, a_RelY, a_RelZ, a_Exclude);
|
2012-08-24 03:58:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastEntityStatus(const cEntity & a_Entity, char a_Status, const cClientHandle * a_Exclude)
|
2012-08-24 05:49:00 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-24 05:49:00 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastEntityStatus(a_Entity, a_Status, a_Exclude);
|
2012-08-24 05:49:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastEntityVelocity(const cEntity & a_Entity, const cClientHandle * a_Exclude)
|
2012-08-25 17:46:18 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-25 17:46:18 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastEntityVelocity(a_Entity, a_Exclude);
|
2012-08-25 17:46:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-06 18:47:07 -05:00
|
|
|
void cChunkMap::BroadcastEntityAnimation(const cEntity & a_Entity, char a_Animation, const cClientHandle * a_Exclude)
|
2012-09-11 08:01:34 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-09-11 08:01:34 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-12-06 18:47:07 -05:00
|
|
|
Chunk->BroadcastEntityAnimation(a_Entity, a_Animation, a_Exclude);
|
2012-09-11 08:01:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-11 11:03:09 -04:00
|
|
|
void cChunkMap::BroadcastParticleEffect(const AString & a_ParticleName, float a_SrcX, float a_SrcY, float a_SrcZ, float a_OffsetX, float a_OffsetY, float a_OffsetZ, float a_ParticleData, int a_ParticleAmount, cClientHandle * a_Exclude)
|
2013-12-22 08:45:25 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
|
2013-12-22 09:30:47 -05:00
|
|
|
cChunkDef::BlockToChunk((int) a_SrcX, (int) a_SrcZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-12-22 08:45:25 -05:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2014-09-11 11:03:09 -04:00
|
|
|
Chunk->BroadcastParticleEffect(a_ParticleName, a_SrcX, a_SrcY, a_SrcZ, a_OffsetX, a_OffsetY, a_OffsetZ, a_ParticleData, a_ParticleAmount, a_Exclude);
|
2013-12-22 08:45:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-15 04:51:46 -05:00
|
|
|
void cChunkMap::BroadcastRemoveEntityEffect(const cEntity & a_Entity, int a_EffectID, const cClientHandle * a_Exclude)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-12-15 04:51:46 -05:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
|
|
|
Chunk->BroadcastRemoveEntityEffect(a_Entity, a_EffectID, a_Exclude);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-12 20:08:02 -04:00
|
|
|
void cChunkMap::BroadcastSoundEffect(const AString & a_SoundName, double a_X, double a_Y, double a_Z, float a_Volume, float a_Pitch, const cClientHandle * a_Exclude)
|
2012-10-21 03:46:28 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
|
2014-07-13 07:31:09 -04:00
|
|
|
cChunkDef::BlockToChunk((int)std::floor(a_X), (int)std::floor(a_Z), ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-10-21 03:46:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2014-07-12 20:08:02 -04:00
|
|
|
Chunk->BroadcastSoundEffect(a_SoundName, a_X, a_Y, a_Z, a_Volume, a_Pitch, a_Exclude);
|
2012-10-21 03:46:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastSoundParticleEffect(int a_EffectID, int a_SrcX, int a_SrcY, int a_SrcZ, int a_Data, const cClientHandle * a_Exclude)
|
2012-09-25 05:54:36 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
|
2013-11-10 17:20:25 -05:00
|
|
|
cChunkDef::BlockToChunk(a_SrcX, a_SrcZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-09-25 05:54:36 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastSoundParticleEffect(a_EffectID, a_SrcX, a_SrcY, a_SrcZ, a_Data, a_Exclude);
|
2012-09-25 05:54:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastSpawnEntity(cEntity & a_Entity, const cClientHandle * a_Exclude)
|
2012-09-29 16:43:42 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity.GetChunkX(), a_Entity.GetChunkZ());
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-09-29 16:43:42 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastSpawnEntity(a_Entity, a_Exclude);
|
2012-09-29 16:43:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-07 09:06:06 -04:00
|
|
|
void cChunkMap::BroadcastThunderbolt(int a_BlockX, int a_BlockY, int a_BlockZ, const cClientHandle * a_Exclude)
|
2012-08-26 17:01:07 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2013-07-07 09:06:06 -04:00
|
|
|
int ChunkX, ChunkZ;
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(a_BlockX, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-26 17:01:07 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
2013-07-07 09:06:06 -04:00
|
|
|
Chunk->BroadcastThunderbolt(a_BlockX, a_BlockY, a_BlockZ, a_Exclude);
|
2012-08-26 17:01:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-21 09:19:48 -04:00
|
|
|
void cChunkMap::BroadcastUseBed(const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-08-24 03:58:26 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
2013-07-07 09:06:06 -04:00
|
|
|
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(a_BlockX, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-08-24 03:58:26 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-07-07 09:06:06 -04:00
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
|
|
|
Chunk->BroadcastUseBed(a_Entity, a_BlockX, a_BlockY, a_BlockZ);
|
2012-08-24 03:58:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::SendBlockEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cClientHandle & a_Client)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(a_BlockX, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-08-24 03:58:26 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->SendBlockEntity(a_BlockX, a_BlockY, a_BlockZ, a_Client);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-06 16:10:16 -04:00
|
|
|
void cChunkMap::UseBlockEntity(cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// a_Player rclked block entity at the coords specified, handle it
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(a_BlockX, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2012-08-06 16:10:16 -04:00
|
|
|
Chunk->UseBlockEntity(a_Player, a_BlockX, a_BlockY, a_BlockZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-03 14:26:50 -04:00
|
|
|
bool cChunkMap::DoWithChunk(int a_ChunkX, int a_ChunkZ, cChunkCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-08-03 14:26:50 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return a_Callback.Item(Chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-21 13:17:26 -04:00
|
|
|
bool cChunkMap::DoWithChunkAt(Vector3i a_BlockPos, std::function<bool(cChunk &)> a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::BlockToChunk(a_BlockPos.x, a_BlockPos.z, ChunkX, ChunkZ);
|
|
|
|
struct cCallBackWrapper : cChunkCallback
|
|
|
|
{
|
|
|
|
cCallBackWrapper(std::function<bool(cChunk &)> a_InnerCallback) :
|
|
|
|
m_Callback(a_InnerCallback)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool Item(cChunk * a_Chunk)
|
|
|
|
{
|
|
|
|
return m_Callback(*a_Chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::function<bool(cChunk &)> m_Callback;
|
|
|
|
} callback(a_Callback);
|
|
|
|
return DoWithChunk(ChunkX, ChunkZ, callback);
|
|
|
|
}
|
|
|
|
|
2013-08-03 14:26:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-28 02:42:45 -05:00
|
|
|
void cChunkMap::WakeUpSimulators(int a_BlockX, int a_BlockY, int a_BlockZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(a_BlockX, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-02-28 02:42:45 -05:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_World->GetSimulatorManager()->WakeUp(a_BlockX, a_BlockY, a_BlockZ, Chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-21 16:47:58 -04:00
|
|
|
/// Wakes up the simulators for the specified area of blocks
|
|
|
|
void cChunkMap::WakeUpSimulatorsInArea(int a_MinBlockX, int a_MaxBlockX, int a_MinBlockY, int a_MaxBlockY, int a_MinBlockZ, int a_MaxBlockZ)
|
|
|
|
{
|
2014-02-23 10:30:49 -05:00
|
|
|
// Limit the Y coords:
|
|
|
|
a_MinBlockY = std::max(a_MinBlockY, 0);
|
|
|
|
a_MaxBlockY = std::min(a_MaxBlockY, cChunkDef::Height - 1);
|
|
|
|
|
2013-06-21 16:47:58 -04:00
|
|
|
cSimulatorManager * SimMgr = m_World->GetSimulatorManager();
|
|
|
|
int MinChunkX, MinChunkZ, MaxChunkX, MaxChunkZ;
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(a_MinBlockX, a_MinBlockZ, MinChunkX, MinChunkZ);
|
|
|
|
cChunkDef::BlockToChunk(a_MaxBlockX, a_MaxBlockZ, MaxChunkX, MaxChunkZ);
|
2014-10-31 14:23:47 -04:00
|
|
|
cCSLock Lock(m_CSLayers);
|
2013-06-21 16:47:58 -04:00
|
|
|
for (int z = MinChunkZ; z <= MaxChunkZ; z++)
|
|
|
|
{
|
|
|
|
int MinZ = std::max(a_MinBlockZ, z * cChunkDef::Width);
|
|
|
|
int MaxZ = std::min(a_MaxBlockZ, z * cChunkDef::Width + cChunkDef::Width - 1);
|
|
|
|
for (int x = MinChunkX; x <= MaxChunkX; x++)
|
|
|
|
{
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(x, z);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-06-21 16:47:58 -04:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int MinX = std::max(a_MinBlockX, x * cChunkDef::Width);
|
|
|
|
int MaxX = std::min(a_MaxBlockX, x * cChunkDef::Width + cChunkDef::Width - 1);
|
|
|
|
for (int BlockY = a_MinBlockY; BlockY <= a_MaxBlockY; BlockY++)
|
|
|
|
{
|
|
|
|
for (int BlockZ = MinZ; BlockZ <= MaxZ; BlockZ++)
|
|
|
|
{
|
|
|
|
for (int BlockX = MinX; BlockX <= MaxX; BlockX++)
|
|
|
|
{
|
|
|
|
SimMgr->WakeUp(BlockX, BlockY, BlockZ, Chunk);
|
|
|
|
} // for BlockX
|
|
|
|
} // for BlockZ
|
|
|
|
} // for BlockY
|
|
|
|
} // for x - chunks
|
|
|
|
} // for z = chunks
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-06 18:50:22 -04:00
|
|
|
void cChunkMap::MarkRedstoneDirty(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2014-07-06 18:50:22 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->SetIsRedstoneDirty(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::MarkChunkDirty(int a_ChunkX, int a_ChunkZ, bool a_MarkRedstoneDirty)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkDirty();
|
2014-07-06 18:50:22 -04:00
|
|
|
if (a_MarkRedstoneDirty)
|
|
|
|
{
|
|
|
|
Chunk->SetIsRedstoneDirty(true);
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
void cChunkMap::MarkChunkSaving(int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkSaving();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
void cChunkMap::MarkChunkSaved (int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkSaved();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-24 12:32:05 -04:00
|
|
|
void cChunkMap::SetChunkData(cSetChunkData & a_SetChunkData)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-07-24 12:32:05 -04:00
|
|
|
int ChunkX = a_SetChunkData.GetChunkX();
|
|
|
|
int ChunkZ = a_SetChunkData.GetChunkZ();
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-02-08 15:55:21 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2014-02-08 15:55:21 -05:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-07-24 12:32:05 -04:00
|
|
|
Chunk->SetAllData(a_SetChunkData);
|
2014-02-08 15:55:21 -05:00
|
|
|
|
2014-07-24 12:32:05 -04:00
|
|
|
if (a_SetChunkData.ShouldMarkDirty())
|
2014-02-08 15:55:21 -05:00
|
|
|
{
|
|
|
|
Chunk->MarkDirty();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Notify relevant ChunkStays:
|
2014-04-12 16:15:09 -04:00
|
|
|
cChunkStays ToBeDisabled;
|
|
|
|
for (cChunkStays::iterator itr = m_ChunkStays.begin(), end = m_ChunkStays.end(); itr != end; ++itr)
|
2014-02-08 15:55:21 -05:00
|
|
|
{
|
2014-07-24 12:32:05 -04:00
|
|
|
if ((*itr)->ChunkAvailable(ChunkX, ChunkZ))
|
2014-02-10 16:47:10 -05:00
|
|
|
{
|
2014-04-12 16:15:09 -04:00
|
|
|
// The chunkstay wants to be disabled, add it to a list of to-be-disabled chunkstays for later processing:
|
|
|
|
ToBeDisabled.push_back(*itr);
|
2014-02-10 16:47:10 -05:00
|
|
|
}
|
2014-02-08 15:55:21 -05:00
|
|
|
} // for itr - m_ChunkStays[]
|
2014-04-12 16:15:09 -04:00
|
|
|
|
|
|
|
// Disable (and possibly remove) the chunkstays that chose to get disabled:
|
|
|
|
for (cChunkStays::iterator itr = ToBeDisabled.begin(), end = ToBeDisabled.end(); itr != end; ++itr)
|
|
|
|
{
|
|
|
|
(*itr)->Disable();
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2013-02-05 14:57:22 -05:00
|
|
|
|
|
|
|
// Notify plugins of the chunk becoming available
|
2014-10-15 13:01:55 -04:00
|
|
|
cPluginManager::Get()->CallHookChunkAvailable(*m_World, ChunkX, ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::ChunkLighted(
|
|
|
|
int a_ChunkX, int a_ChunkZ,
|
|
|
|
const cChunkDef::BlockNibbles & a_BlockLight,
|
|
|
|
const cChunkDef::BlockNibbles & a_SkyLight
|
|
|
|
)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->SetLight(a_BlockLight, a_SkyLight);
|
|
|
|
Chunk->MarkDirty();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
bool cChunkMap::GetChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataCallback & a_Callback)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Chunk->GetAllData(a_Callback);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
bool cChunkMap::GetChunkBlockTypes(int a_ChunkX, int a_ChunkZ, BLOCKTYPE * a_BlockTypes)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Chunk->GetBlockTypes(a_BlockTypes);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-05 16:16:48 -04:00
|
|
|
bool cChunkMap::IsChunkQueued(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
return (Chunk != nullptr) && Chunk->IsQueued();
|
2014-09-05 16:16:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
bool cChunkMap::IsChunkValid(int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
return (Chunk != nullptr) && Chunk->IsValid();
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
bool cChunkMap::HasChunkAnyClients(int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
return (Chunk != nullptr) && Chunk->HasAnyClients();
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int cChunkMap::GetHeight(int a_BlockX, int a_BlockZ)
|
|
|
|
{
|
2014-01-07 10:00:19 -05:00
|
|
|
for (;;)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ, BlockY = 0;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return Chunk->GetHeight(a_BlockX, a_BlockZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The chunk is not valid, wait for it to become valid:
|
|
|
|
cCSUnlock Unlock(Lock);
|
|
|
|
m_evtChunkValid.Wait();
|
|
|
|
} // while (true)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::TryGetHeight(int a_BlockX, int a_BlockZ, int & a_Height)
|
|
|
|
{
|
|
|
|
// Returns false if chunk not loaded / generated
|
2012-06-14 09:06:06 -04:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ, BlockY = 0;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-04-13 17:02:10 -04:00
|
|
|
return false;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2013-04-13 17:02:10 -04:00
|
|
|
a_Height = Chunk->GetHeight(a_BlockX, a_BlockZ);
|
|
|
|
return true;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::FastSetBlocks(sSetBlockList & a_BlockList)
|
|
|
|
{
|
|
|
|
sSetBlockList Failed;
|
|
|
|
|
|
|
|
// Process all items from a_BlockList, either successfully or by placing into Failed
|
|
|
|
while (!a_BlockList.empty())
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
int ChunkX = a_BlockList.front().m_ChunkX;
|
|
|
|
int ChunkZ = a_BlockList.front().m_ChunkZ;
|
2012-06-14 09:06:06 -04:00
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
for (sSetBlockList::iterator itr = a_BlockList.begin(); itr != a_BlockList.end();)
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
if ((itr->m_ChunkX == ChunkX) && (itr->m_ChunkZ == ChunkZ))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
Chunk->FastSetBlock(itr->m_RelX, itr->m_RelY, itr->m_RelZ, itr->m_BlockType, itr->m_BlockMeta);
|
2012-06-14 09:06:06 -04:00
|
|
|
itr = a_BlockList.erase(itr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++itr;
|
|
|
|
}
|
|
|
|
} // for itr - a_BlockList[]
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The chunk is not valid, move all blocks within this chunk to Failed
|
|
|
|
for (sSetBlockList::iterator itr = a_BlockList.begin(); itr != a_BlockList.end();)
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
if ((itr->m_ChunkX == ChunkX) && (itr->m_ChunkZ == ChunkZ))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
Failed.push_back(*itr);
|
|
|
|
itr = a_BlockList.erase(itr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++itr;
|
|
|
|
}
|
|
|
|
} // for itr - a_BlockList[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the failed:
|
|
|
|
std::swap(Failed, a_BlockList);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
void cChunkMap::SetBlocks(const sSetBlockVector & a_Blocks)
|
|
|
|
{
|
|
|
|
cCSLock lock(m_CSLayers);
|
|
|
|
cChunkPtr chunk = nullptr;
|
|
|
|
int lastChunkX = 0x7fffffff; // Bogus coords so that chunk is updated on first pass
|
|
|
|
int lastChunkZ = 0x7fffffff;
|
|
|
|
for (auto block: a_Blocks)
|
|
|
|
{
|
|
|
|
// Update the chunk, if different from last time:
|
|
|
|
if ((block.m_ChunkX != lastChunkX) || (block.m_ChunkZ != lastChunkZ))
|
|
|
|
{
|
|
|
|
lastChunkX = block.m_ChunkX;
|
|
|
|
lastChunkZ = block.m_ChunkZ;
|
|
|
|
chunk = GetChunk(lastChunkX, lastChunkZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the chunk is valid, set the block:
|
|
|
|
if (chunk != nullptr)
|
|
|
|
{
|
|
|
|
chunk->SetBlock(block.m_RelX, block.m_RelY, block.m_RelZ, block.m_BlockType, block.m_BlockMeta);
|
|
|
|
}
|
|
|
|
} // for block - a_Blocks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-15 13:01:55 -04:00
|
|
|
void cChunkMap::CollectPickupsByPlayer(cPlayer & a_Player)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-10-15 13:01:55 -04:00
|
|
|
int BlockX = (int)(a_Player.GetPosX()); // Truncating doesn't matter much; we're scanning entire chunks anyway
|
|
|
|
int BlockY = (int)(a_Player.GetPosY());
|
|
|
|
int BlockZ = (int)(a_Player.GetPosZ());
|
2014-08-28 05:36:35 -04:00
|
|
|
int ChunkX = 0, ChunkZ = 0;
|
2012-06-14 09:06:06 -04:00
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
int OtherChunkX = ChunkX + ((BlockX > 8) ? 1 : -1);
|
|
|
|
int OtherChunkZ = ChunkZ + ((BlockZ > 8) ? 1 : -1);
|
|
|
|
|
|
|
|
// We suppose that each player keeps their chunks in memory, therefore it makes little sense to try to re-load or even generate them.
|
|
|
|
// The only time the chunks are not valid is when the player is downloading the initial world and they should not call this at that moment
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
GetChunkNoLoad(ChunkX, ChunkZ)->CollectPickupsByPlayer(a_Player);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Check the neighboring chunks as well:
|
2014-08-28 05:36:35 -04:00
|
|
|
GetChunkNoLoad(OtherChunkX, ChunkZ)->CollectPickupsByPlayer (a_Player);
|
|
|
|
GetChunkNoLoad(OtherChunkX, OtherChunkZ)->CollectPickupsByPlayer(a_Player);
|
|
|
|
GetChunkNoLoad(ChunkX, ChunkZ)->CollectPickupsByPlayer (a_Player);
|
|
|
|
GetChunkNoLoad(ChunkX, OtherChunkZ)->CollectPickupsByPlayer(a_Player);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-20 07:40:34 -04:00
|
|
|
BLOCKTYPE cChunkMap::GetBlock(int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
int X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ);
|
|
|
|
|
2014-01-26 09:20:39 -05:00
|
|
|
// First check if it isn't queued in the m_FastSetBlockQueue:
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSFastSetBlock);
|
|
|
|
for (sSetBlockList::iterator itr = m_FastSetBlockQueue.begin(); itr != m_FastSetBlockQueue.end(); ++itr)
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
if ((itr->m_RelX == X) && (itr->m_RelY == Y) && (itr->m_RelZ == Z) && (itr->m_ChunkX == ChunkX) && (itr->m_ChunkZ == ChunkZ))
|
2014-01-26 09:20:39 -05:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
return itr->m_BlockType;
|
2014-01-26 09:20:39 -05:00
|
|
|
}
|
|
|
|
} // for itr - m_FastSetBlockQueue[]
|
|
|
|
}
|
2014-12-24 01:20:17 -05:00
|
|
|
|
|
|
|
// Not in the queue, query the chunk, if loaded:
|
2012-06-14 09:06:06 -04:00
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
return Chunk->GetBlock(X, Y, Z);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-20 07:40:34 -04:00
|
|
|
NIBBLETYPE cChunkMap::GetBlockMeta(int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
int X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ);
|
|
|
|
|
2014-01-26 09:20:39 -05:00
|
|
|
// First check if it isn't queued in the m_FastSetBlockQueue:
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSFastSetBlock);
|
|
|
|
for (sSetBlockList::iterator itr = m_FastSetBlockQueue.begin(); itr != m_FastSetBlockQueue.end(); ++itr)
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
if ((itr->m_RelX == X) && (itr->m_RelY == Y) && (itr->m_RelZ == Z) && (itr->m_ChunkX == ChunkX) && (itr->m_ChunkZ == ChunkZ))
|
2014-01-26 09:20:39 -05:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
return itr->m_BlockMeta;
|
2014-01-26 09:20:39 -05:00
|
|
|
}
|
|
|
|
} // for itr - m_FastSetBlockQueue[]
|
|
|
|
}
|
2014-12-24 01:20:17 -05:00
|
|
|
|
|
|
|
// Not in the queue, query the chunk, if loaded:
|
2012-06-14 09:06:06 -04:00
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-12-24 01:20:17 -05:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
return Chunk->GetMeta(X, Y, Z);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-20 07:40:34 -04:00
|
|
|
NIBBLETYPE cChunkMap::GetBlockSkyLight(int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
2014-07-21 09:19:48 -04:00
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-10-20 07:40:34 -04:00
|
|
|
return Chunk->GetSkyLight(a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NIBBLETYPE cChunkMap::GetBlockBlockLight(int a_BlockX, int a_BlockY, int a_BlockZ)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
2014-07-21 09:19:48 -04:00
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2012-10-20 07:40:34 -04:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-10-20 07:40:34 -04:00
|
|
|
{
|
|
|
|
return Chunk->GetBlockLight(a_BlockX, a_BlockY, a_BlockZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-14 14:30:16 -04:00
|
|
|
void cChunkMap::SetBlockMeta(int a_BlockX, int a_BlockY, int a_BlockZ, NIBBLETYPE a_BlockMeta)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
2012-10-14 14:30:16 -04:00
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
|
|
|
// a_BlockXYZ now contains relative coords!
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-10-14 14:30:16 -04:00
|
|
|
Chunk->SetMeta(a_BlockX, a_BlockY, a_BlockZ, a_BlockMeta);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-12 13:07:20 -04:00
|
|
|
void cChunkMap::SetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, bool a_SendToClients)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-01-31 18:17:41 -05:00
|
|
|
cChunkInterface ChunkInterface(this);
|
2015-02-08 16:21:48 -05:00
|
|
|
BlockHandler(GetBlock(a_BlockX, a_BlockY, a_BlockZ))->OnDestroyed(ChunkInterface, *m_World, a_BlockX, a_BlockY, a_BlockZ);
|
2014-01-26 09:20:39 -05:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
int ChunkX, ChunkZ, X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
2014-07-21 09:19:48 -04:00
|
|
|
cChunkDef::AbsoluteToRelative( X, Y, Z, ChunkX, ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-05-25 08:46:34 -04:00
|
|
|
Chunk->SetBlock(X, Y, Z, a_BlockType, a_BlockMeta, a_SendToClients);
|
2013-02-28 02:42:45 -05:00
|
|
|
m_World->GetSimulatorManager()->WakeUp(a_BlockX, a_BlockY, a_BlockZ, Chunk);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2014-09-12 13:07:20 -04:00
|
|
|
BlockHandler(a_BlockType)->OnPlaced(ChunkInterface, *m_World, a_BlockX, a_BlockY, a_BlockZ, a_BlockType, a_BlockMeta);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-12 18:51:42 -04:00
|
|
|
void cChunkMap::QueueSetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Int64 a_Tick, BLOCKTYPE a_PreviousBlockType)
|
2013-08-18 16:44:22 -04:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ, X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ);
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2013-08-18 16:44:22 -04:00
|
|
|
{
|
2013-12-06 17:29:15 -05:00
|
|
|
Chunk->QueueSetBlock(X, Y, Z, a_BlockType, a_BlockMeta, a_Tick, a_PreviousBlockType);
|
2013-08-18 16:44:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-26 04:47:30 -04:00
|
|
|
bool cChunkMap::GetBlockTypeMeta(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ, X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
2014-07-21 09:19:48 -04:00
|
|
|
cChunkDef::AbsoluteToRelative( X, Y, Z, ChunkX, ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
Chunk->GetBlockTypeMeta(X, Y, Z, a_BlockType, a_BlockMeta);
|
2012-10-26 04:47:30 -04:00
|
|
|
return true;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2012-10-26 04:47:30 -04:00
|
|
|
return false;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-26 04:47:30 -04:00
|
|
|
bool cChunkMap::GetBlockInfo(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_Meta, NIBBLETYPE & a_SkyLight, NIBBLETYPE & a_BlockLight)
|
2012-10-20 07:40:34 -04:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ, X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
2014-07-21 09:19:48 -04:00
|
|
|
cChunkDef::AbsoluteToRelative( X, Y, Z, ChunkX, ChunkZ);
|
2012-10-20 07:40:34 -04:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-10-20 07:40:34 -04:00
|
|
|
{
|
|
|
|
Chunk->GetBlockInfo(X, Y, Z, a_BlockType, a_Meta, a_SkyLight, a_BlockLight);
|
2012-10-26 04:47:30 -04:00
|
|
|
return true;
|
2012-10-20 07:40:34 -04:00
|
|
|
}
|
2012-10-26 04:47:30 -04:00
|
|
|
return false;
|
2012-10-20 07:40:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
void cChunkMap::ReplaceBlocks(const sSetBlockVector & a_Blocks, BLOCKTYPE a_FilterBlockType)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (sSetBlockVector::const_iterator itr = a_Blocks.begin(); itr != a_Blocks.end(); ++itr)
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
cChunkPtr Chunk = GetChunk(itr->m_ChunkX, itr->m_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2014-12-24 01:20:17 -05:00
|
|
|
if (Chunk->GetBlock(itr->m_RelX, itr->m_RelY, itr->m_RelZ) == a_FilterBlockType)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
Chunk->SetBlock(itr->m_RelX, itr->m_RelY, itr->m_RelZ, itr->m_BlockType, itr->m_BlockMeta);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::ReplaceTreeBlocks(const sSetBlockVector & a_Blocks)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (sSetBlockVector::const_iterator itr = a_Blocks.begin(); itr != a_Blocks.end(); ++itr)
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
cChunkPtr Chunk = GetChunk(itr->m_ChunkX, itr->m_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2014-12-24 01:20:17 -05:00
|
|
|
switch (Chunk->GetBlock(itr->m_RelX, itr->m_RelY, itr->m_RelZ))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
CASE_TREE_OVERWRITTEN_BLOCKS:
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
Chunk->SetBlock(itr->m_RelX, itr->m_RelY, itr->m_RelZ, itr->m_BlockType, itr->m_BlockMeta);
|
2012-06-14 09:06:06 -04:00
|
|
|
break;
|
|
|
|
}
|
2012-07-02 15:54:47 -04:00
|
|
|
case E_BLOCK_LEAVES:
|
2014-03-16 09:01:22 -04:00
|
|
|
case E_BLOCK_NEW_LEAVES:
|
2012-07-02 15:54:47 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
if ((itr->m_BlockType == E_BLOCK_LOG) || (itr->m_BlockType == E_BLOCK_NEW_LOG))
|
2012-07-02 15:54:47 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
Chunk->SetBlock(itr->m_RelX, itr->m_RelY, itr->m_RelZ, itr->m_BlockType, itr->m_BlockMeta);
|
2012-07-02 15:54:47 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
} // for itr - a_Blocks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EMCSBiome cChunkMap::GetBiomeAt (int a_BlockX, int a_BlockZ)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ, X = a_BlockX, Y = 0, Z = a_BlockZ;
|
2014-02-18 07:06:18 -05:00
|
|
|
cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return Chunk->GetBiomeAt(X, Z);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return m_World->GetGenerator().GetBiomeAt(a_BlockX, a_BlockZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-18 07:06:18 -05:00
|
|
|
bool cChunkMap::SetBiomeAt(int a_BlockX, int a_BlockZ, EMCSBiome a_Biome)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ, X = a_BlockX, Y = 0, Z = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ);
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2014-02-18 07:06:18 -05:00
|
|
|
{
|
|
|
|
Chunk->SetBiomeAt(X, Z, a_Biome);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::SetAreaBiome(int a_MinX, int a_MaxX, int a_MinZ, int a_MaxZ, EMCSBiome a_Biome)
|
|
|
|
{
|
|
|
|
// Translate coords to relative:
|
|
|
|
int Y = 0;
|
|
|
|
int MinChunkX, MinChunkZ, MinX = a_MinX, MinZ = a_MinZ;
|
|
|
|
int MaxChunkX, MaxChunkZ, MaxX = a_MaxX, MaxZ = a_MaxZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(MinX, Y, MinZ, MinChunkX, MinChunkZ);
|
|
|
|
cChunkDef::AbsoluteToRelative(MaxX, Y, MaxZ, MaxChunkX, MaxChunkZ);
|
|
|
|
|
|
|
|
// Go through all chunks, set:
|
|
|
|
bool res = true;
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (int x = MinChunkX; x <= MaxChunkX; x++)
|
|
|
|
{
|
|
|
|
int MinRelX = (x == MinChunkX) ? MinX : 0;
|
|
|
|
int MaxRelX = (x == MaxChunkX) ? MaxX : cChunkDef::Width - 1;
|
|
|
|
for (int z = MinChunkZ; z <= MaxChunkZ; z++)
|
|
|
|
{
|
|
|
|
int MinRelZ = (z == MinChunkZ) ? MinZ : 0;
|
|
|
|
int MaxRelZ = (z == MaxChunkZ) ? MaxZ : cChunkDef::Width - 1;
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(x, z);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && Chunk->IsValid())
|
2014-02-18 07:06:18 -05:00
|
|
|
{
|
|
|
|
Chunk->SetAreaBiome(MinRelX, MaxRelX, MinRelZ, MaxRelZ, a_Biome);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res = false;
|
|
|
|
}
|
|
|
|
} // for z
|
|
|
|
} // for x
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
bool cChunkMap::GetBlocks(sSetBlockVector & a_Blocks, bool a_ContinueOnFailure)
|
|
|
|
{
|
|
|
|
bool res = true;
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (sSetBlockVector::iterator itr = a_Blocks.begin(); itr != a_Blocks.end(); ++itr)
|
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
cChunkPtr Chunk = GetChunk(itr->m_ChunkX, itr->m_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
if (!a_ContinueOnFailure)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
res = false;
|
|
|
|
continue;
|
|
|
|
}
|
2014-12-24 01:20:17 -05:00
|
|
|
itr->m_BlockType = Chunk->GetBlock(itr->m_RelX, itr->m_RelY, itr->m_RelZ);
|
|
|
|
itr->m_BlockMeta = Chunk->GetMeta(itr->m_RelX, itr->m_RelY, itr->m_RelZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
bool cChunkMap::DigBlock(int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-12-24 01:20:17 -05:00
|
|
|
int PosX = a_BlockX, PosY = a_BlockY, PosZ = a_BlockZ, ChunkX, ChunkZ;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
cChunkDef::AbsoluteToRelative(PosX, PosY, PosZ, ChunkX, ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr DestChunk = GetChunk( ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((DestChunk == nullptr) || !DestChunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-21 09:19:48 -04:00
|
|
|
DestChunk->SetBlock(PosX, PosY, PosZ, E_BLOCK_AIR, 0);
|
2014-12-24 01:20:17 -05:00
|
|
|
m_World->GetSimulatorManager()->WakeUp(a_BlockX, a_BlockY, a_BlockZ, DestChunk);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::SendBlockTo(int a_X, int a_Y, int a_Z, cPlayer * a_Player)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_X, a_Y, a_Z, ChunkX, ChunkZ);
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk != nullptr) && (Chunk->IsValid()))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
Chunk->SendBlockTo(a_X, a_Y, a_Z, a_Player->GetClientHandle());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
void cChunkMap::CompareChunkClients(int a_ChunkX1, int a_ChunkZ1, int a_ChunkX2, int a_ChunkZ2, cClientDiffCallback & a_Callback)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk1 = GetChunkNoGen(a_ChunkX1, a_ChunkZ1);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk1 == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk2 = GetChunkNoGen(a_ChunkX2, a_ChunkZ2);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk2 == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-04-13 17:02:10 -04:00
|
|
|
|
|
|
|
CompareChunkClients(Chunk1, Chunk2, a_Callback);
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::CompareChunkClients(cChunk * a_Chunk1, cChunk * a_Chunk2, cClientDiffCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cClientHandleList Clients1(a_Chunk1->GetAllClients());
|
|
|
|
cClientHandleList Clients2(a_Chunk2->GetAllClients());
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Find "removed" clients:
|
|
|
|
for (cClientHandleList::iterator itr1 = Clients1.begin(); itr1 != Clients1.end(); ++itr1)
|
|
|
|
{
|
|
|
|
bool Found = false;
|
|
|
|
for (cClientHandleList::iterator itr2 = Clients2.begin(); itr2 != Clients2.end(); ++itr2)
|
|
|
|
{
|
|
|
|
if (*itr1 == *itr2)
|
|
|
|
{
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // for itr2 - Clients2[]
|
|
|
|
if (!Found)
|
|
|
|
{
|
|
|
|
a_Callback.Removed(*itr1);
|
|
|
|
}
|
|
|
|
} // for itr1 - Clients1[]
|
|
|
|
|
|
|
|
// Find "added" clients:
|
|
|
|
for (cClientHandleList::iterator itr2 = Clients2.begin(); itr2 != Clients2.end(); ++itr2)
|
|
|
|
{
|
|
|
|
bool Found = false;
|
|
|
|
for (cClientHandleList::iterator itr1 = Clients1.begin(); itr1 != Clients1.end(); ++itr1)
|
|
|
|
{
|
|
|
|
if (*itr1 == *itr2)
|
|
|
|
{
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // for itr1 - Clients1[]
|
|
|
|
if (!Found)
|
|
|
|
{
|
|
|
|
a_Callback.Added(*itr2);
|
|
|
|
}
|
|
|
|
} // for itr2 - Clients2[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
bool cChunkMap::AddChunkClient(int a_ChunkX, int a_ChunkZ, cClientHandle * a_Client)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->AddClient(a_Client);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
void cChunkMap::RemoveChunkClient(int a_ChunkX, int a_ChunkZ, cClientHandle * a_Client)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->RemoveClient(a_Client);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::RemoveClientFromChunks(cClientHandle * a_Client)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
|
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
|
|
|
(*itr)->RemoveClient(a_Client);
|
|
|
|
} // for itr - m_Layers[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:28:55 -04:00
|
|
|
void cChunkMap::AddEntity(cEntity * a_Entity)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity->GetChunkX(), a_Entity->GetChunkZ());
|
2014-04-27 17:11:21 -04:00
|
|
|
if (
|
2014-10-20 16:55:07 -04:00
|
|
|
(Chunk == nullptr) || // Chunk not present at all
|
2014-04-27 17:11:21 -04:00
|
|
|
(!Chunk->IsValid() && !a_Entity->IsPlayer()) // Chunk present, but no valid data; players need to spawn in such chunks (#953)
|
|
|
|
)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-06-25 02:48:17 -04:00
|
|
|
LOGWARNING("Entity at %p (%s, ID %d) spawning in a non-existent chunk, the entity is lost.",
|
|
|
|
a_Entity, a_Entity->GetClass(), a_Entity->GetUniqueID()
|
|
|
|
);
|
2013-04-13 17:28:55 -04:00
|
|
|
return;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2013-04-13 17:28:55 -04:00
|
|
|
Chunk->AddEntity(a_Entity);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-06-10 12:25:53 -04:00
|
|
|
void cChunkMap::AddEntityIfNotPresent(cEntity * a_Entity)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity->GetChunkX(), a_Entity->GetChunkZ());
|
2014-06-10 12:25:53 -04:00
|
|
|
if (
|
2014-10-20 16:55:07 -04:00
|
|
|
(Chunk == nullptr) || // Chunk not present at all
|
2014-06-10 12:25:53 -04:00
|
|
|
(!Chunk->IsValid() && !a_Entity->IsPlayer()) // Chunk present, but no valid data; players need to spawn in such chunks (#953)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
LOGWARNING("Entity at %p (%s, ID %d) spawning in a non-existent chunk, the entity is lost.",
|
|
|
|
a_Entity, a_Entity->GetClass(), a_Entity->GetUniqueID()
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!Chunk->HasEntity(a_Entity->GetUniqueID()))
|
|
|
|
{
|
|
|
|
Chunk->AddEntity(a_Entity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-03-21 10:18:17 -04:00
|
|
|
bool cChunkMap::HasEntity(UInt32 a_UniqueID)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2013-04-13 17:28:55 -04:00
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-04-13 17:28:55 -04:00
|
|
|
if ((*itr)->HasEntity(a_UniqueID))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2013-04-13 17:28:55 -04:00
|
|
|
return false;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:28:55 -04:00
|
|
|
void cChunkMap::RemoveEntity(cEntity * a_Entity)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_Entity->GetChunkX(), a_Entity->GetChunkZ());
|
2014-07-17 08:54:28 -04:00
|
|
|
|
|
|
|
// Even if a chunk is not valid, it may still contain entities such as players; make sure to remove them (#1190)
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-04-13 17:28:55 -04:00
|
|
|
Chunk->RemoveEntity(a_Entity);
|
2013-04-13 17:02:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::ForEachEntity(cEntityCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
2013-05-19 11:44:21 -04:00
|
|
|
if (!(*itr)->ForEachEntity(a_Callback))
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-16 04:35:07 -04:00
|
|
|
bool cChunkMap::ForEachEntityInChunk(int a_ChunkX, int a_ChunkZ, cEntityCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-16 04:35:07 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->ForEachEntity(a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-03 11:00:26 -04:00
|
|
|
bool cChunkMap::ForEachEntityInBox(const cBoundingBox & a_Box, cEntityCallback & a_Callback)
|
|
|
|
{
|
|
|
|
// Calculate the chunk range for the box:
|
|
|
|
int MinChunkX = (int)floor(a_Box.GetMinX() / cChunkDef::Width);
|
|
|
|
int MinChunkZ = (int)floor(a_Box.GetMinZ() / cChunkDef::Width);
|
|
|
|
int MaxChunkX = (int)floor((a_Box.GetMaxX() + cChunkDef::Width) / cChunkDef::Width);
|
|
|
|
int MaxChunkZ = (int)floor((a_Box.GetMaxZ() + cChunkDef::Width) / cChunkDef::Width);
|
|
|
|
|
|
|
|
// Iterate over each chunk in the range:
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (int z = MinChunkZ; z <= MaxChunkZ; z++)
|
|
|
|
{
|
|
|
|
for (int x = MinChunkX; x <= MaxChunkX; x++)
|
|
|
|
{
|
2014-09-04 08:05:42 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(x, z);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2014-09-03 11:00:26 -04:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!Chunk->ForEachEntityInBox(a_Box, a_Callback))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} // for x
|
|
|
|
} // for z
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-07 12:12:22 -04:00
|
|
|
void cChunkMap::DoExplosionAt(double a_ExplosionSize, double a_BlockX, double a_BlockY, double a_BlockZ, cVector3iArray & a_BlocksAffected)
|
2013-05-04 02:25:58 -04:00
|
|
|
{
|
2013-06-21 17:19:02 -04:00
|
|
|
// Don't explode if outside of Y range (prevents the following test running into unallocated memory):
|
Added OnExploding() and OnExploded() hooks.
As requested in FS 413, with extra parameters:
World, BlockX, BlockY, BlockZ, Size, CanCauseFire, Source, SourceData
OnExploding() can return 3 values:
StopHook, CanCauseFire, ExplosionSize
2013-08-09 08:58:43 -04:00
|
|
|
if ((a_BlockY < 0) || (a_BlockY > cChunkDef::Height - 1))
|
2013-06-21 17:19:02 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-02-02 14:16:38 -05:00
|
|
|
|
|
|
|
bool ShouldDestroyBlocks = true;
|
|
|
|
|
2013-06-19 16:21:26 -04:00
|
|
|
// Don't explode if the explosion center is inside a liquid block:
|
2014-02-02 14:16:38 -05:00
|
|
|
if (IsBlockLiquid(m_World->GetBlock((int)floor(a_BlockX), (int)floor(a_BlockY), (int)floor(a_BlockZ))))
|
2013-06-18 16:32:22 -04:00
|
|
|
{
|
2014-02-02 14:16:38 -05:00
|
|
|
ShouldDestroyBlocks = false;
|
2013-06-18 16:32:22 -04:00
|
|
|
}
|
2014-02-02 14:16:38 -05:00
|
|
|
|
|
|
|
int ExplosionSizeInt = (int)ceil(a_ExplosionSize);
|
|
|
|
int ExplosionSizeSq = ExplosionSizeInt * ExplosionSizeInt;
|
|
|
|
|
Added OnExploding() and OnExploded() hooks.
As requested in FS 413, with extra parameters:
World, BlockX, BlockY, BlockZ, Size, CanCauseFire, Source, SourceData
OnExploding() can return 3 values:
StopHook, CanCauseFire, ExplosionSize
2013-08-09 08:58:43 -04:00
|
|
|
int bx = (int)floor(a_BlockX);
|
|
|
|
int by = (int)floor(a_BlockY);
|
|
|
|
int bz = (int)floor(a_BlockZ);
|
2014-02-02 14:16:38 -05:00
|
|
|
|
Added OnExploding() and OnExploded() hooks.
As requested in FS 413, with extra parameters:
World, BlockX, BlockY, BlockZ, Size, CanCauseFire, Source, SourceData
OnExploding() can return 3 values:
StopHook, CanCauseFire, ExplosionSize
2013-08-09 08:58:43 -04:00
|
|
|
int MinY = std::max((int)floor(a_BlockY - ExplosionSizeInt), 0);
|
|
|
|
int MaxY = std::min((int)ceil(a_BlockY + ExplosionSizeInt), cChunkDef::Height - 1);
|
2014-02-02 14:16:38 -05:00
|
|
|
|
|
|
|
if (ShouldDestroyBlocks)
|
2013-05-04 02:25:58 -04:00
|
|
|
{
|
2014-02-02 14:16:38 -05:00
|
|
|
cBlockArea area;
|
|
|
|
a_BlocksAffected.reserve(8 * ExplosionSizeInt * ExplosionSizeInt * ExplosionSizeInt);
|
2015-04-26 14:17:08 -04:00
|
|
|
if (!area.Read(m_World, bx - ExplosionSizeInt, (int)ceil(a_BlockX + ExplosionSizeInt), MinY, MaxY, bz - ExplosionSizeInt, (int)ceil(a_BlockZ + ExplosionSizeInt)))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-02 14:16:38 -05:00
|
|
|
for (int x = -ExplosionSizeInt; x < ExplosionSizeInt; x++)
|
2013-05-04 02:25:58 -04:00
|
|
|
{
|
2014-02-02 14:16:38 -05:00
|
|
|
for (int y = -ExplosionSizeInt; y < ExplosionSizeInt; y++)
|
2013-06-18 04:24:34 -04:00
|
|
|
{
|
2014-02-02 14:16:38 -05:00
|
|
|
if ((by + y >= cChunkDef::Height) || (by + y < 0))
|
2013-05-04 02:25:58 -04:00
|
|
|
{
|
2014-02-02 14:16:38 -05:00
|
|
|
// Outside of the world
|
2013-06-18 15:09:51 -04:00
|
|
|
continue;
|
|
|
|
}
|
2014-02-02 14:16:38 -05:00
|
|
|
for (int z = -ExplosionSizeInt; z < ExplosionSizeInt; z++)
|
2013-06-18 15:09:51 -04:00
|
|
|
{
|
2014-02-02 14:16:38 -05:00
|
|
|
if ((x * x + y * y + z * z) > ExplosionSizeSq)
|
|
|
|
{
|
|
|
|
// Too far away
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
BLOCKTYPE Block = area.GetBlockType(bx + x, by + y, bz + z);
|
|
|
|
switch (Block)
|
|
|
|
{
|
2014-03-16 17:00:28 -04:00
|
|
|
case E_BLOCK_TNT:
|
|
|
|
{
|
|
|
|
// Activate the TNT, with a random fuse between 10 to 30 game ticks
|
|
|
|
int FuseTime = 10 + m_World->GetTickRandomNumber(20);
|
|
|
|
m_World->SpawnPrimedTNT(a_BlockX + x + 0.5, a_BlockY + y + 0.5, a_BlockZ + z + 0.5, FuseTime);
|
2014-07-14 13:07:31 -04:00
|
|
|
area.SetBlockTypeMeta(bx + x, by + y, bz + z, E_BLOCK_AIR, 0);
|
2014-03-16 17:00:28 -04:00
|
|
|
a_BlocksAffected.push_back(Vector3i(bx + x, by + y, bz + z));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case E_BLOCK_OBSIDIAN:
|
2014-07-30 15:59:35 -04:00
|
|
|
case E_BLOCK_BEACON:
|
2014-03-16 17:00:28 -04:00
|
|
|
case E_BLOCK_BEDROCK:
|
2014-09-27 15:07:52 -04:00
|
|
|
case E_BLOCK_BARRIER:
|
2014-03-16 17:00:28 -04:00
|
|
|
case E_BLOCK_WATER:
|
|
|
|
case E_BLOCK_LAVA:
|
|
|
|
{
|
|
|
|
// These blocks are not affected by explosions
|
|
|
|
break;
|
|
|
|
}
|
2014-02-02 14:16:38 -05:00
|
|
|
|
2014-03-16 17:00:28 -04:00
|
|
|
case E_BLOCK_STATIONARY_WATER:
|
|
|
|
{
|
|
|
|
// Turn into simulated water:
|
|
|
|
area.SetBlockType(bx + x, by + y, bz + z, E_BLOCK_WATER);
|
|
|
|
break;
|
|
|
|
}
|
2014-02-02 14:16:38 -05:00
|
|
|
|
2014-03-16 17:00:28 -04:00
|
|
|
case E_BLOCK_STATIONARY_LAVA:
|
2013-10-23 18:40:59 -04:00
|
|
|
{
|
2014-03-16 17:00:28 -04:00
|
|
|
// Turn into simulated lava:
|
|
|
|
area.SetBlockType(bx + x, by + y, bz + z, E_BLOCK_LAVA);
|
|
|
|
break;
|
|
|
|
}
|
2013-11-01 06:14:55 -04:00
|
|
|
|
2014-03-16 17:00:28 -04:00
|
|
|
case E_BLOCK_AIR:
|
2013-10-23 18:40:59 -04:00
|
|
|
{
|
2014-03-16 17:00:28 -04:00
|
|
|
// No pickups for air
|
|
|
|
break;
|
2013-10-23 18:40:59 -04:00
|
|
|
}
|
2013-11-01 06:14:55 -04:00
|
|
|
|
2014-03-16 17:00:28 -04:00
|
|
|
default:
|
2014-03-05 17:12:48 -05:00
|
|
|
{
|
2014-07-17 13:13:23 -04:00
|
|
|
if (m_World->GetTickRandomNumber(100) <= 25) // 25% chance of pickups
|
2014-03-05 17:12:48 -05:00
|
|
|
{
|
2014-03-16 17:00:28 -04:00
|
|
|
cItems Drops;
|
|
|
|
cBlockHandler * Handler = BlockHandler(Block);
|
|
|
|
|
2014-07-17 13:13:23 -04:00
|
|
|
Handler->ConvertToPickups(Drops, area.GetBlockMeta(bx + x, by + y, bz + z)); // Stone becomes cobblestone, coal ore becomes coal, etc.
|
2014-03-16 17:00:28 -04:00
|
|
|
m_World->SpawnItemPickups(Drops, bx + x, by + y, bz + z);
|
2014-03-05 17:12:48 -05:00
|
|
|
}
|
2014-07-17 13:13:23 -04:00
|
|
|
else if ((m_World->GetTNTShrapnelLevel() > slNone) && (m_World->GetTickRandomNumber(100) < 20)) // 20% chance of flinging stuff around
|
2014-03-18 16:45:10 -04:00
|
|
|
{
|
2014-08-30 16:24:04 -04:00
|
|
|
// If the block is shrapnel-able, make a falling block entity out of it:
|
2014-08-29 08:44:10 -04:00
|
|
|
if (
|
|
|
|
((m_World->GetTNTShrapnelLevel() == slAll) && cBlockInfo::FullyOccupiesVoxel(Block)) ||
|
|
|
|
((m_World->GetTNTShrapnelLevel() == slGravityAffectedOnly) && ((Block == E_BLOCK_SAND) || (Block == E_BLOCK_GRAVEL)))
|
2014-08-30 16:24:04 -04:00
|
|
|
)
|
2014-03-18 16:49:08 -04:00
|
|
|
{
|
2014-08-29 08:44:10 -04:00
|
|
|
m_World->SpawnFallingBlock(bx + x, by + y + 5, bz + z, Block, area.GetBlockMeta(bx + x, by + y, bz + z));
|
2014-03-18 16:49:08 -04:00
|
|
|
}
|
2014-03-18 16:45:10 -04:00
|
|
|
}
|
2014-03-18 16:49:08 -04:00
|
|
|
|
2014-07-14 13:07:31 -04:00
|
|
|
area.SetBlockTypeMeta(bx + x, by + y, bz + z, E_BLOCK_AIR, 0);
|
2014-03-16 17:00:28 -04:00
|
|
|
a_BlocksAffected.push_back(Vector3i(bx + x, by + y, bz + z));
|
2014-08-30 16:24:04 -04:00
|
|
|
break;
|
2014-03-05 17:12:48 -05:00
|
|
|
}
|
2014-02-02 14:16:38 -05:00
|
|
|
} // switch (BlockType)
|
|
|
|
} // for z
|
|
|
|
} // for y
|
|
|
|
} // for x
|
|
|
|
area.Write(m_World, bx - ExplosionSizeInt, MinY, bz - ExplosionSizeInt);
|
|
|
|
}
|
|
|
|
|
|
|
|
class cTNTDamageCallback :
|
|
|
|
public cEntityCallback
|
|
|
|
{
|
|
|
|
public:
|
2014-03-05 17:12:48 -05:00
|
|
|
cTNTDamageCallback(cBoundingBox & a_bbTNT, Vector3d a_ExplosionPos, int a_ExplosionSize) :
|
2014-02-02 14:16:38 -05:00
|
|
|
m_bbTNT(a_bbTNT),
|
|
|
|
m_ExplosionPos(a_ExplosionPos),
|
2014-03-05 17:12:48 -05:00
|
|
|
m_ExplosionSize(a_ExplosionSize)
|
2014-02-02 14:16:38 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool Item(cEntity * a_Entity) override
|
|
|
|
{
|
2014-08-29 08:44:10 -04:00
|
|
|
if (a_Entity->IsPickup() && (a_Entity->GetTicksAlive() < 20))
|
2014-02-02 14:16:38 -05:00
|
|
|
{
|
2014-08-29 08:44:10 -04:00
|
|
|
// If pickup age is smaller than one second, it is invincible (so we don't kill pickups that were just spawned)
|
2014-02-03 09:01:47 -05:00
|
|
|
return false;
|
|
|
|
}
|
2014-02-02 14:16:38 -05:00
|
|
|
|
2014-08-29 08:44:10 -04:00
|
|
|
Vector3d DistanceFromExplosion = a_Entity->GetPosition() - m_ExplosionPos;
|
|
|
|
|
2014-07-17 13:13:23 -04:00
|
|
|
if (!a_Entity->IsTNT() && !a_Entity->IsFallingBlock()) // Don't apply damage to other TNT entities and falling blocks, they should be invincible
|
2014-02-03 09:01:47 -05:00
|
|
|
{
|
2014-08-29 08:44:10 -04:00
|
|
|
cBoundingBox bbEntity(a_Entity->GetPosition(), a_Entity->GetWidth() / 2, a_Entity->GetHeight());
|
2014-02-02 14:16:38 -05:00
|
|
|
|
2014-08-29 08:44:10 -04:00
|
|
|
if (!m_bbTNT.IsInside(bbEntity)) // If bbEntity is inside bbTNT, not vice versa!
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-02 14:16:38 -05:00
|
|
|
|
2014-08-29 08:44:10 -04:00
|
|
|
// Ensure that the damage dealt is inversely proportional to the distance to the TNT centre - the closer a player is, the harder they are hit
|
2014-10-20 16:55:07 -04:00
|
|
|
a_Entity->TakeDamage(dtExplosion, nullptr, (int)((1 / DistanceFromExplosion.Length()) * 6 * m_ExplosionSize), 0);
|
2014-02-02 14:16:38 -05:00
|
|
|
}
|
2014-08-29 08:44:10 -04:00
|
|
|
|
|
|
|
// Apply force to entities around the explosion - code modified from World.cpp DoExplosionAt()
|
|
|
|
DistanceFromExplosion.Normalize();
|
|
|
|
DistanceFromExplosion *= m_ExplosionSize * m_ExplosionSize;
|
|
|
|
a_Entity->AddSpeed(DistanceFromExplosion);
|
2014-02-03 09:01:47 -05:00
|
|
|
|
2014-02-02 14:16:38 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cBoundingBox & m_bbTNT;
|
|
|
|
Vector3d m_ExplosionPos;
|
|
|
|
int m_ExplosionSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
cBoundingBox bbTNT(Vector3d(a_BlockX, a_BlockY, a_BlockZ), 0.5, 1);
|
|
|
|
bbTNT.Expand(ExplosionSizeInt * 2, ExplosionSizeInt * 2, ExplosionSizeInt * 2);
|
|
|
|
|
|
|
|
|
2014-03-05 17:12:48 -05:00
|
|
|
cTNTDamageCallback TNTDamageCallback(bbTNT, Vector3d(a_BlockX, a_BlockY, a_BlockZ), ExplosionSizeInt);
|
2014-02-02 14:16:38 -05:00
|
|
|
ForEachEntity(TNTDamageCallback);
|
2013-06-21 16:47:58 -04:00
|
|
|
|
|
|
|
// Wake up all simulators for the area, so that water and lava flows and sand falls into the blasted holes (FS #391):
|
|
|
|
WakeUpSimulatorsInArea(
|
2013-11-28 13:24:25 -05:00
|
|
|
bx - ExplosionSizeInt - 1, bx + ExplosionSizeInt + 1,
|
2013-06-21 16:47:58 -04:00
|
|
|
MinY, MaxY,
|
2013-11-28 13:24:25 -05:00
|
|
|
bz - ExplosionSizeInt - 1, bz + ExplosionSizeInt + 1
|
2013-06-21 16:47:58 -04:00
|
|
|
);
|
2013-05-04 02:25:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-03-21 10:18:17 -04:00
|
|
|
bool cChunkMap::DoWithEntityByID(UInt32 a_UniqueID, cEntityCallback & a_Callback)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
bool res = false;
|
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
|
|
|
if ((*itr)->DoWithEntityByID(a_UniqueID, a_Callback, res))
|
|
|
|
{
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-20 15:53:29 -05:00
|
|
|
bool cChunkMap::ForEachBlockEntityInChunk(int a_ChunkX, int a_ChunkZ, cBlockEntityCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-11-20 15:53:29 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->ForEachBlockEntity(a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-17 15:58:39 -04:00
|
|
|
bool cChunkMap::ForEachChestInChunk(int a_ChunkX, int a_ChunkZ, cChestCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-17 15:58:39 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->ForEachChest(a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-26 12:16:33 -05:00
|
|
|
bool cChunkMap::ForEachDispenserInChunk(int a_ChunkX, int a_ChunkZ, cDispenserCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-12-26 12:16:33 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->ForEachDispenser(a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-05-26 10:39:04 -04:00
|
|
|
bool cChunkMap::ForEachDropperInChunk(int a_ChunkX, int a_ChunkZ, cDropperCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-05-26 10:39:04 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->ForEachDropper(a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::ForEachDropSpenserInChunk(int a_ChunkX, int a_ChunkZ, cDropSpenserCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-05-26 10:39:04 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->ForEachDropSpenser(a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-17 15:58:39 -04:00
|
|
|
bool cChunkMap::ForEachFurnaceInChunk(int a_ChunkX, int a_ChunkZ, cFurnaceCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-17 15:58:39 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->ForEachFurnace(a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-20 15:53:29 -05:00
|
|
|
bool cChunkMap::DoWithBlockEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBlockEntityCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-11-20 15:53:29 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithBlockEntityAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-30 16:19:51 -04:00
|
|
|
bool cChunkMap::DoWithBeaconAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBeaconCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2014-07-30 16:19:51 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithBeaconAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-17 15:58:39 -04:00
|
|
|
bool cChunkMap::DoWithChestAt(int a_BlockX, int a_BlockY, int a_BlockZ, cChestCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-17 15:58:39 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithChestAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-26 12:16:33 -05:00
|
|
|
bool cChunkMap::DoWithDispenserAt(int a_BlockX, int a_BlockY, int a_BlockZ, cDispenserCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-12-26 12:16:33 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithDispenserAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-05-26 10:39:04 -04:00
|
|
|
bool cChunkMap::DoWithDropperAt(int a_BlockX, int a_BlockY, int a_BlockZ, cDropperCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-05-26 10:39:04 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithDropperAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::DoWithDropSpenserAt(int a_BlockX, int a_BlockY, int a_BlockZ, cDropSpenserCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-05-26 10:39:04 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithDropSpenserAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-17 15:58:39 -04:00
|
|
|
bool cChunkMap::DoWithFurnaceAt(int a_BlockX, int a_BlockY, int a_BlockZ, cFurnaceCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-17 15:58:39 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithFurnaceAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-14 11:52:22 -05:00
|
|
|
bool cChunkMap::DoWithNoteBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cNoteBlockCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-12-14 11:52:22 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithNoteBlockAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-18 08:16:47 -05:00
|
|
|
bool cChunkMap::DoWithCommandBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cCommandBlockCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2014-01-18 08:16:47 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithCommandBlockAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-17 15:58:39 -04:00
|
|
|
|
2014-03-07 05:44:16 -05:00
|
|
|
bool cChunkMap::DoWithMobHeadAt(int a_BlockX, int a_BlockY, int a_BlockZ, cMobHeadCallback & a_Callback)
|
2014-02-18 15:40:02 -05:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2014-02-18 15:40:02 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-07 05:44:16 -05:00
|
|
|
return Chunk->DoWithMobHeadAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
2014-02-18 15:40:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-06 19:30:34 -05:00
|
|
|
bool cChunkMap::DoWithFlowerPotAt(int a_BlockX, int a_BlockY, int a_BlockZ, cFlowerPotCallback & a_Callback)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2014-03-06 19:30:34 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->DoWithFlowerPotAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
|
2014-02-18 15:40:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-17 15:58:39 -04:00
|
|
|
bool cChunkMap::GetSignLines(int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_Line1, AString & a_Line2, AString & a_Line3, AString & a_Line4)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
int BlockX = a_BlockX, BlockY = a_BlockY, BlockZ = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-17 15:58:39 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->GetSignLines(a_BlockX, a_BlockY, a_BlockZ, a_Line1, a_Line2, a_Line3, a_Line4);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
void cChunkMap::TouchChunk(int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
GetChunk(a_ChunkX, a_ChunkZ);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-30 06:11:17 -04:00
|
|
|
void cChunkMap::PrepareChunk(int a_ChunkX, int a_ChunkZ, std::unique_ptr<cChunkCoordCallback> a_Callback)
|
2014-12-10 16:35:16 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
|
|
|
|
|
|
|
// If the chunk is not prepared, queue it in the lighting thread, that will do all the needed processing:
|
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid() || !Chunk->IsLightValid())
|
|
|
|
{
|
2015-05-30 06:11:17 -04:00
|
|
|
m_World->GetLightingThread().QueueChunk(a_ChunkX, a_ChunkZ, std::move(a_Callback));
|
2014-12-10 16:35:16 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The chunk is present and lit, just call the callback:
|
|
|
|
if (a_Callback != nullptr)
|
|
|
|
{
|
|
|
|
a_Callback->Call(a_ChunkX, a_ChunkZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::GenerateChunk(int a_ChunkX, int a_ChunkZ, cChunkCoordCallback * a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
|
|
|
if (Chunk == nullptr)
|
|
|
|
{
|
|
|
|
// Generic error while getting the chunk - out of memory?
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try loading the chunk:
|
|
|
|
if ((Chunk == nullptr) || (!Chunk->IsValid()))
|
|
|
|
{
|
2015-04-21 17:12:47 -04:00
|
|
|
Chunk->SetPresence(cChunk::cpQueued);
|
2014-12-10 16:35:16 -05:00
|
|
|
class cPrepareLoadCallback: public cChunkCoordCallback
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cPrepareLoadCallback(cWorld & a_World, cChunkMap & a_ChunkMap, cChunkCoordCallback * a_Callback):
|
|
|
|
m_World(a_World),
|
|
|
|
m_ChunkMap(a_ChunkMap),
|
|
|
|
m_Callback(a_Callback)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// cChunkCoordCallback override:
|
|
|
|
virtual void Call(int a_CBChunkX, int a_CBChunkZ) override
|
|
|
|
{
|
|
|
|
// The chunk has been loaded or an error occurred, check if it's valid now:
|
2015-04-21 17:12:47 -04:00
|
|
|
cCSLock Lock(m_ChunkMap.m_CSLayers);
|
2014-12-10 16:35:16 -05:00
|
|
|
cChunkPtr CBChunk = m_ChunkMap.GetChunkNoLoad(a_CBChunkX, a_CBChunkZ);
|
|
|
|
|
|
|
|
if (CBChunk == nullptr)
|
|
|
|
{
|
|
|
|
// An error occurred, but we promised to call the callback, so call it even when there's no real chunk data:
|
|
|
|
if (m_Callback != nullptr)
|
|
|
|
{
|
|
|
|
m_Callback->Call(a_CBChunkX, a_CBChunkZ);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the chunk is not valid, queue it in the generator:
|
|
|
|
if (!CBChunk->IsValid())
|
|
|
|
{
|
|
|
|
m_World.GetGenerator().QueueGenerateChunk(a_CBChunkX, a_CBChunkZ, false, m_Callback);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The chunk was loaded, call the callback:
|
|
|
|
if (m_Callback != nullptr)
|
|
|
|
{
|
|
|
|
m_Callback->Call(a_CBChunkX, a_CBChunkZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cWorld & m_World;
|
|
|
|
cChunkMap & m_ChunkMap;
|
|
|
|
cChunkCoordCallback * m_Callback;
|
|
|
|
};
|
|
|
|
m_World->GetStorage().QueueLoadChunk(a_ChunkX, a_ChunkZ, new cPrepareLoadCallback(*m_World, *this, a_Callback));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The chunk is valid, just call the callback:
|
|
|
|
if (a_Callback != nullptr)
|
|
|
|
{
|
|
|
|
a_Callback->Call(a_ChunkX, a_ChunkZ);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
void cChunkMap::ChunkLoadFailed(int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkLoadFailed();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-12 03:14:06 -04:00
|
|
|
bool cChunkMap::SetSignLines(int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
2013-08-03 14:05:07 -04:00
|
|
|
cChunkDef::BlockToChunk(a_BlockX, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-06-12 03:14:06 -04:00
|
|
|
return false;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2013-06-12 03:14:06 -04:00
|
|
|
return Chunk->SetSignLines(a_BlockX, a_BlockY, a_BlockZ, a_Line1, a_Line2, a_Line3, a_Line4);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::MarkChunkRegenerating(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// Not present
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkRegenerating();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cChunkMap::IsChunkLighted(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// Not present
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->IsLightValid();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-02 12:30:17 -04:00
|
|
|
bool cChunkMap::ForEachChunkInRect(int a_MinChunkX, int a_MaxChunkX, int a_MinChunkZ, int a_MaxChunkZ, cChunkDataCallback & a_Callback)
|
|
|
|
{
|
|
|
|
bool Result = true;
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (int z = a_MinChunkZ; z <= a_MaxChunkZ; z++)
|
|
|
|
{
|
|
|
|
for (int x = a_MinChunkX; x <= a_MaxChunkX; x++)
|
|
|
|
{
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(x, z);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || (!Chunk->IsValid()))
|
2012-07-02 12:30:17 -04:00
|
|
|
{
|
|
|
|
// Not present / not valid
|
|
|
|
Result = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!a_Callback.Coords(x, z))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Chunk->GetAllData(a_Callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-06 12:58:31 -04:00
|
|
|
bool cChunkMap::WriteBlockArea(cBlockArea & a_Area, int a_MinBlockX, int a_MinBlockY, int a_MinBlockZ, int a_DataTypes)
|
|
|
|
{
|
|
|
|
// Convert block coords to chunks coords:
|
|
|
|
int MinChunkX, MaxChunkX;
|
|
|
|
int MinChunkZ, MaxChunkZ;
|
|
|
|
int MinBlockX = a_MinBlockX;
|
|
|
|
int MinBlockY = a_MinBlockY;
|
|
|
|
int MinBlockZ = a_MinBlockZ;
|
|
|
|
int MaxBlockX = a_MinBlockX + a_Area.GetSizeX();
|
|
|
|
int MaxBlockY = a_MinBlockY + a_Area.GetSizeY();
|
|
|
|
int MaxBlockZ = a_MinBlockZ + a_Area.GetSizeZ();
|
|
|
|
cChunkDef::AbsoluteToRelative(MinBlockX, MinBlockY, MinBlockZ, MinChunkX, MinChunkZ);
|
|
|
|
cChunkDef::AbsoluteToRelative(MaxBlockX, MaxBlockY, MaxBlockZ, MaxChunkX, MaxChunkZ);
|
|
|
|
|
|
|
|
// Iterate over chunks, write data into each:
|
|
|
|
bool Result = true;
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (int z = MinChunkZ; z <= MaxChunkZ; z++)
|
|
|
|
{
|
|
|
|
for (int x = MinChunkX; x <= MaxChunkX; x++)
|
|
|
|
{
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(x, z);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || (!Chunk->IsValid()))
|
2012-10-06 12:58:31 -04:00
|
|
|
{
|
|
|
|
// Not present / not valid
|
|
|
|
Result = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Chunk->WriteBlockArea(a_Area, a_MinBlockX, a_MinBlockY, a_MinBlockZ, a_DataTypes);
|
|
|
|
} // for x
|
|
|
|
} // for z
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
void cChunkMap::GetChunkStats(int & a_NumChunksValid, int & a_NumChunksDirty)
|
|
|
|
{
|
|
|
|
a_NumChunksValid = 0;
|
|
|
|
a_NumChunksDirty = 0;
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
|
|
|
int NumValid = 0, NumDirty = 0;
|
|
|
|
(*itr)->GetChunkStats(NumValid, NumDirty);
|
|
|
|
a_NumChunksValid += NumValid;
|
|
|
|
a_NumChunksDirty += NumDirty;
|
|
|
|
} // for itr - m_Layers[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::GrowMelonPumpkin(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, MTRand & a_Rand)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk != nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
Chunk->GrowMelonPumpkin(a_BlockX, a_BlockY, a_BlockZ, a_BlockType, a_Rand);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::GrowSugarcane(int a_BlockX, int a_BlockY, int a_BlockZ, int a_NumBlocksToGrow)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk != nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
Chunk->GrowSugarcane(a_BlockX, a_BlockY, a_BlockZ, a_NumBlocksToGrow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::GrowCactus(int a_BlockX, int a_BlockY, int a_BlockZ, int a_NumBlocksToGrow)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk != nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
Chunk->GrowCactus(a_BlockX, a_BlockY, a_BlockZ, a_NumBlocksToGrow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::SetNextBlockTick(int a_BlockX, int a_BlockY, int a_BlockZ)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk != nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
Chunk->SetNextBlockTick(a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-09 05:16:56 -04:00
|
|
|
void cChunkMap::CollectMobCensus(cMobCensus & a_ToFill)
|
2013-09-07 16:19:56 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2015-05-09 05:16:56 -04:00
|
|
|
for (auto && layer: m_Layers)
|
2013-09-07 16:19:56 -04:00
|
|
|
{
|
2015-05-09 05:16:56 -04:00
|
|
|
layer->CollectMobCensus(a_ToFill);
|
2013-09-07 16:19:56 -04:00
|
|
|
} // for itr - m_Layers
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2015-05-09 05:16:56 -04:00
|
|
|
void cChunkMap::SpawnMobs(cMobSpawner & a_MobSpawner)
|
2013-09-07 18:11:38 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2015-05-09 05:16:56 -04:00
|
|
|
for (auto && layer: m_Layers)
|
2013-09-07 18:11:38 -04:00
|
|
|
{
|
2015-05-09 05:16:56 -04:00
|
|
|
layer->SpawnMobs(a_MobSpawner);
|
2013-09-07 18:11:38 -04:00
|
|
|
} // for itr - m_Layers
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-01-11 16:12:26 -05:00
|
|
|
void cChunkMap::Tick(std::chrono::milliseconds a_Dt)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
2013-04-13 17:02:10 -04:00
|
|
|
(*itr)->Tick(a_Dt);
|
2012-06-14 09:06:06 -04:00
|
|
|
} // for itr - m_Layers
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-30 09:58:27 -05:00
|
|
|
void cChunkMap::TickBlock(int a_BlockX, int a_BlockY, int a_BlockZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((Chunk == nullptr) || !Chunk->IsValid())
|
2013-11-30 09:58:27 -05:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->TickBlock(a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::UnloadUnusedChunks(void)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
|
|
|
(*itr)->UnloadUnusedChunks();
|
|
|
|
} // for itr - m_Layers
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::SaveAllChunks(void)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
|
|
|
(*itr)->Save();
|
|
|
|
} // for itr - m_Layers[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-14 14:30:16 -04:00
|
|
|
int cChunkMap::GetNumChunks(void)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int NumChunks = 0;
|
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
|
|
|
{
|
|
|
|
NumChunks += (*itr)->GetNumChunksLoaded();
|
|
|
|
}
|
|
|
|
return NumChunks;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::ChunkValidated(void)
|
|
|
|
{
|
|
|
|
m_evtChunkValid.Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-28 02:42:45 -05:00
|
|
|
void cChunkMap::QueueTickBlock(int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-10-14 14:30:16 -04:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, a_BlockY, a_BlockZ, ChunkX, ChunkZ);
|
|
|
|
// a_BlockXYZ now contains relative coords!
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(ChunkX, ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk != nullptr)
|
2012-10-14 14:30:16 -04:00
|
|
|
{
|
2013-02-28 02:42:45 -05:00
|
|
|
Chunk->QueueTickBlock(a_BlockX, a_BlockY, a_BlockZ);
|
2012-10-14 14:30:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-10 12:18:32 -04:00
|
|
|
void cChunkMap::SetChunkAlwaysTicked(int a_ChunkX, int a_ChunkZ, bool a_AlwaysTicked)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk != nullptr)
|
2014-07-10 12:18:32 -04:00
|
|
|
{
|
|
|
|
Chunk->SetAlwaysTicked(a_AlwaysTicked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cChunkMap::cChunkLayer:
|
|
|
|
|
2014-06-16 10:12:50 -04:00
|
|
|
cChunkMap::cChunkLayer::cChunkLayer(
|
2014-07-17 10:33:09 -04:00
|
|
|
int a_LayerX, int a_LayerZ,
|
2014-06-16 10:12:50 -04:00
|
|
|
cChunkMap * a_Parent,
|
|
|
|
cAllocationPool<cChunkData::sChunkSection> & a_Pool
|
|
|
|
)
|
2014-07-21 09:19:48 -04:00
|
|
|
: m_LayerX( a_LayerX)
|
|
|
|
, m_LayerZ( a_LayerZ)
|
|
|
|
, m_Parent( a_Parent)
|
|
|
|
, m_NumChunksLoaded( 0)
|
2014-06-16 10:12:50 -04:00
|
|
|
, m_Pool(a_Pool)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
memset(m_Chunks, 0, sizeof(m_Chunks));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cChunkMap::cChunkLayer::~cChunkLayer()
|
|
|
|
{
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); ++i)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
delete m_Chunks[i];
|
2014-10-20 16:55:07 -04:00
|
|
|
m_Chunks[i] = nullptr; // Must zero out, because further chunk deletions query the chunkmap for entities and that would touch deleted data
|
2012-06-14 09:06:06 -04:00
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr cChunkMap::cChunkLayer::GetChunk( int a_ChunkX, int a_ChunkZ)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// Always returns an assigned chunkptr, but the chunk needn't be valid (loaded / generated) - callers must check
|
|
|
|
|
|
|
|
const int LocalX = a_ChunkX - m_LayerX * LAYER_SIZE;
|
|
|
|
const int LocalZ = a_ChunkZ - m_LayerZ * LAYER_SIZE;
|
|
|
|
|
|
|
|
if (!((LocalX < LAYER_SIZE) && (LocalZ < LAYER_SIZE) && (LocalX > -1) && (LocalZ > -1)))
|
|
|
|
{
|
|
|
|
ASSERT(!"Asking a cChunkLayer for a chunk that doesn't belong to it!");
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int Index = LocalX + LocalZ * LAYER_SIZE;
|
2014-10-20 16:55:07 -04:00
|
|
|
if (m_Chunks[Index] == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-14 17:38:30 -05:00
|
|
|
cChunk * neixm = (LocalX > 0) ? m_Chunks[Index - 1] : m_Parent->FindChunk(a_ChunkX - 1, a_ChunkZ);
|
|
|
|
cChunk * neixp = (LocalX < LAYER_SIZE - 1) ? m_Chunks[Index + 1] : m_Parent->FindChunk(a_ChunkX + 1, a_ChunkZ);
|
2014-07-18 03:57:34 -04:00
|
|
|
cChunk * neizm = (LocalZ > 0) ? m_Chunks[Index - LAYER_SIZE] : m_Parent->FindChunk(a_ChunkX, a_ChunkZ - 1);
|
|
|
|
cChunk * neizp = (LocalZ < LAYER_SIZE - 1) ? m_Chunks[Index + LAYER_SIZE] : m_Parent->FindChunk(a_ChunkX, a_ChunkZ + 1);
|
2014-08-28 05:36:35 -04:00
|
|
|
m_Chunks[Index] = new cChunk(a_ChunkX, a_ChunkZ, m_Parent, m_Parent->GetWorld(), neixm, neixp, neizm, neizp, m_Pool);
|
2012-12-14 17:38:30 -05:00
|
|
|
}
|
|
|
|
return m_Chunks[Index];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cChunk * cChunkMap::cChunkLayer::FindChunk(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
const int LocalX = a_ChunkX - m_LayerX * LAYER_SIZE;
|
|
|
|
const int LocalZ = a_ChunkZ - m_LayerZ * LAYER_SIZE;
|
|
|
|
|
|
|
|
if (!((LocalX < LAYER_SIZE) && (LocalZ < LAYER_SIZE) && (LocalX > -1) && (LocalZ > -1)))
|
|
|
|
{
|
|
|
|
ASSERT(!"Asking a cChunkLayer for a chunk that doesn't belong to it!");
|
2014-10-20 16:55:07 -04:00
|
|
|
return nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2012-12-14 17:38:30 -05:00
|
|
|
|
|
|
|
int Index = LocalX + LocalZ * LAYER_SIZE;
|
2012-06-14 09:06:06 -04:00
|
|
|
return m_Chunks[Index];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-09 05:16:56 -04:00
|
|
|
void cChunkMap::cChunkLayer::CollectMobCensus(cMobCensus & a_ToFill)
|
2013-09-07 16:19:56 -04:00
|
|
|
{
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2013-09-07 16:19:56 -04:00
|
|
|
{
|
|
|
|
// We do count every Mobs in the world. But we are assuming that every chunk not loaded by any client
|
|
|
|
// doesn't affect us. Normally they should not have mobs because every "too far" mobs despawn
|
|
|
|
// If they have (f.i. when player disconnect) we assume we don't have to make them live or despawn
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((m_Chunks[i] != nullptr) && m_Chunks[i]->IsValid() && m_Chunks[i]->HasAnyClients())
|
2013-09-07 16:19:56 -04:00
|
|
|
{
|
|
|
|
m_Chunks[i]->CollectMobCensus(a_ToFill);
|
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2015-05-09 05:16:56 -04:00
|
|
|
void cChunkMap::cChunkLayer::SpawnMobs(cMobSpawner & a_MobSpawner)
|
2013-09-07 18:11:38 -04:00
|
|
|
{
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2013-09-07 18:11:38 -04:00
|
|
|
{
|
|
|
|
// We only spawn close to players
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((m_Chunks[i] != nullptr) && m_Chunks[i]->IsValid() && m_Chunks[i]->HasAnyClients())
|
2013-09-07 18:11:38 -04:00
|
|
|
{
|
|
|
|
m_Chunks[i]->SpawnMobs(a_MobSpawner);
|
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-10 12:18:32 -04:00
|
|
|
|
|
|
|
|
2015-01-11 16:12:26 -05:00
|
|
|
void cChunkMap::cChunkLayer::Tick(std::chrono::milliseconds a_Dt)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-07-10 12:18:32 -04:00
|
|
|
// Only tick chunks that are valid and should be ticked:
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((m_Chunks[i] != nullptr) && m_Chunks[i]->IsValid() && m_Chunks[i]->ShouldBeTicked())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-04-13 17:02:10 -04:00
|
|
|
m_Chunks[i]->Tick(a_Dt);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::cChunkLayer::RemoveClient(cClientHandle * a_Client)
|
|
|
|
{
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if (m_Chunks[i] != nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
m_Chunks[i]->RemoveClient(a_Client);
|
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
bool cChunkMap::cChunkLayer::ForEachEntity(cEntityCallback & a_Callback)
|
|
|
|
{
|
|
|
|
// Calls the callback for each entity in the entire world; returns true if all entities processed, false if the callback aborted by returning true
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((m_Chunks[i] != nullptr) && m_Chunks[i]->IsValid())
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
if (!m_Chunks[i]->ForEachEntity(a_Callback))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-03-21 10:18:17 -04:00
|
|
|
bool cChunkMap::cChunkLayer::DoWithEntityByID(UInt32 a_EntityID, cEntityCallback & a_Callback, bool & a_CallbackReturn)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
// Calls the callback if the entity with the specified ID is found, with the entity object as the callback param. Returns true if entity found.
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((m_Chunks[i] != nullptr) && m_Chunks[i]->IsValid())
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
if (m_Chunks[i]->DoWithEntityByID(a_EntityID, a_Callback, a_CallbackReturn))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-03-21 10:18:17 -04:00
|
|
|
bool cChunkMap::cChunkLayer::HasEntity(UInt32 a_EntityID)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((m_Chunks[i] != nullptr) && m_Chunks[i]->IsValid())
|
2013-04-13 17:02:10 -04:00
|
|
|
{
|
|
|
|
if (m_Chunks[i]->HasEntity(a_EntityID))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
int cChunkMap::cChunkLayer::GetNumChunksLoaded(void) const
|
|
|
|
{
|
|
|
|
int NumChunks = 0;
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); ++i)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if (m_Chunks[i] != nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
NumChunks++;
|
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
2014-07-17 10:33:09 -04:00
|
|
|
return NumChunks;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::cChunkLayer::GetChunkStats(int & a_NumChunksValid, int & a_NumChunksDirty) const
|
|
|
|
{
|
|
|
|
int NumValid = 0;
|
|
|
|
int NumDirty = 0;
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); ++i)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if (m_Chunks[i] == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
NumValid++;
|
|
|
|
if (m_Chunks[i]->IsDirty())
|
|
|
|
{
|
|
|
|
NumDirty++;
|
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
a_NumChunksValid = NumValid;
|
|
|
|
a_NumChunksDirty = NumDirty;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::cChunkLayer::Save(void)
|
|
|
|
{
|
|
|
|
cWorld * World = m_Parent->GetWorld();
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); ++i)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((m_Chunks[i] != nullptr) && m_Chunks[i]->IsValid() && m_Chunks[i]->IsDirty())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-08-28 05:36:35 -04:00
|
|
|
World->GetStorage().QueueSaveChunk(m_Chunks[i]->GetPosX(), m_Chunks[i]->GetPosZ());
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::cChunkLayer::UnloadUnusedChunks(void)
|
|
|
|
{
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-02-05 14:57:22 -05:00
|
|
|
if (
|
2014-10-20 16:55:07 -04:00
|
|
|
(m_Chunks[i] != nullptr) && // Is valid
|
2013-02-05 14:57:22 -05:00
|
|
|
(m_Chunks[i]->CanUnload()) && // Can unload
|
2014-10-15 13:01:55 -04:00
|
|
|
!cPluginManager::Get()->CallHookChunkUnloading(*(m_Parent->GetWorld()), m_Chunks[i]->GetPosX(), m_Chunks[i]->GetPosZ()) // Plugins agree
|
2013-02-05 14:57:22 -05:00
|
|
|
)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// The cChunk destructor calls our GetChunk() while removing its entities
|
2014-12-16 18:18:59 -05:00
|
|
|
// so we still need to be able to return the chunk. Therefore we first delete, then nullptrify
|
2012-06-14 09:06:06 -04:00
|
|
|
// Doing otherwise results in bug http://forum.mc-server.org/showthread.php?tid=355
|
|
|
|
delete m_Chunks[i];
|
2014-10-20 16:55:07 -04:00
|
|
|
m_Chunks[i] = nullptr;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-15 13:01:55 -04:00
|
|
|
|
|
|
|
|
2014-02-08 15:55:21 -05:00
|
|
|
void cChunkMap::FastSetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta)
|
2014-01-26 09:20:39 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSFastSetBlock);
|
2014-07-17 10:33:09 -04:00
|
|
|
m_FastSetBlockQueue.push_back(sSetBlock(a_BlockX, a_BlockY, a_BlockZ, a_BlockType, a_BlockMeta));
|
2014-01-26 09:20:39 -05:00
|
|
|
}
|
|
|
|
|
2014-02-08 15:55:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-26 09:20:39 -05:00
|
|
|
void cChunkMap::FastSetQueuedBlocks()
|
|
|
|
{
|
|
|
|
// Asynchronously set blocks:
|
|
|
|
sSetBlockList FastSetBlockQueueCopy;
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSFastSetBlock);
|
|
|
|
std::swap(FastSetBlockQueueCopy, m_FastSetBlockQueue);
|
|
|
|
}
|
|
|
|
this->FastSetBlocks(FastSetBlockQueueCopy);
|
|
|
|
if (!FastSetBlockQueueCopy.empty())
|
|
|
|
{
|
|
|
|
// Some blocks failed, store them for next tick:
|
|
|
|
cCSLock Lock(m_CSFastSetBlock);
|
|
|
|
m_FastSetBlockQueue.splice(m_FastSetBlockQueue.end(), FastSetBlockQueueCopy);
|
|
|
|
}
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-08 15:55:21 -05:00
|
|
|
void cChunkMap::AddChunkStay(cChunkStay & a_ChunkStay)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-02-08 15:55:21 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
|
|
|
|
// Add it to the list:
|
|
|
|
ASSERT(std::find(m_ChunkStays.begin(), m_ChunkStays.end(), &a_ChunkStay) == m_ChunkStays.end()); // Has not yet been added
|
|
|
|
m_ChunkStays.push_back(&a_ChunkStay);
|
|
|
|
|
|
|
|
// Schedule all chunks to be loaded / generated, and mark each as locked:
|
|
|
|
const cChunkCoordsVector & WantedChunks = a_ChunkStay.GetChunks();
|
|
|
|
for (cChunkCoordsVector::const_iterator itr = WantedChunks.begin(); itr != WantedChunks.end(); ++itr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunk(itr->m_ChunkX, itr->m_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-02-08 15:55:21 -05:00
|
|
|
continue;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2014-02-08 15:55:21 -05:00
|
|
|
Chunk->Stay(true);
|
|
|
|
if (Chunk->IsValid())
|
|
|
|
{
|
2014-04-12 16:15:09 -04:00
|
|
|
if (a_ChunkStay.ChunkAvailable(itr->m_ChunkX, itr->m_ChunkZ))
|
|
|
|
{
|
|
|
|
// The chunkstay wants to be deactivated, disable it and bail out:
|
|
|
|
a_ChunkStay.Disable();
|
|
|
|
return;
|
|
|
|
}
|
2014-02-08 15:55:21 -05:00
|
|
|
}
|
|
|
|
} // for itr - WantedChunks[]
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-08 15:55:21 -05:00
|
|
|
/** Removes the specified cChunkStay descendant from the internal list of ChunkStays. */
|
|
|
|
void cChunkMap::DelChunkStay(cChunkStay & a_ChunkStay)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-02-08 15:55:21 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
|
|
|
|
// Remove from the list of active chunkstays:
|
|
|
|
bool HasFound = false;
|
|
|
|
for (cChunkStays::iterator itr = m_ChunkStays.begin(), end = m_ChunkStays.end(); itr != end; ++itr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-02-08 15:55:21 -05:00
|
|
|
if (*itr == &a_ChunkStay)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-02-08 15:55:21 -05:00
|
|
|
m_ChunkStays.erase(itr);
|
|
|
|
HasFound = true;
|
|
|
|
break;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2014-02-08 15:55:21 -05:00
|
|
|
} // for itr - m_ChunkStays[]
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-02-08 15:55:21 -05:00
|
|
|
if (!HasFound)
|
|
|
|
{
|
|
|
|
ASSERT(!"Removing a cChunkStay that hasn't been added!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmark all contained chunks:
|
|
|
|
const cChunkCoordsVector & Chunks = a_ChunkStay.GetChunks();
|
|
|
|
for (cChunkCoordsVector::const_iterator itr = Chunks.begin(), end = Chunks.end(); itr != end; ++itr)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-08-28 05:36:35 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(itr->m_ChunkX, itr->m_ChunkZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2014-02-08 15:55:21 -05:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Chunk->Stay(false);
|
|
|
|
} // for itr - Chunks[]
|
2014-04-12 16:15:09 -04:00
|
|
|
a_ChunkStay.OnDisabled();
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|