2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
#include "cChunkMap.h"
|
|
|
|
#include "cWorld.h"
|
|
|
|
#include "cRoot.h"
|
|
|
|
#include "cMakeDir.h"
|
2012-02-20 11:39:00 -05:00
|
|
|
#include "cPlayer.h"
|
2012-02-21 11:27:30 -05:00
|
|
|
#include "BlockID.h"
|
|
|
|
#include "cItem.h"
|
|
|
|
#include "cPickup.h"
|
2012-03-14 16:56:09 -04:00
|
|
|
#include "cChunk.h"
|
2012-05-25 03:18:52 -04:00
|
|
|
#include "Trees.h" // used in cChunkMap::ReplaceTreeBlocks() for tree block discrimination
|
2011-10-21 17:25:29 -04:00
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
#ifndef _WIN32
|
2012-01-29 14:28:19 -05:00
|
|
|
#include <cstdlib> // abs
|
2011-10-03 14:41:19 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "zlib.h"
|
|
|
|
#include <json/json.h>
|
|
|
|
|
2012-01-30 08:54:39 -05:00
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-21 11:27:30 -05:00
|
|
|
#define RECI_RAND_MAX (1.f/RAND_MAX)
|
|
|
|
inline float fRadRand( float a_Radius )
|
|
|
|
{
|
|
|
|
MTRand r1;
|
|
|
|
return ((float)r1.rand() * RECI_RAND_MAX)*a_Radius - a_Radius*0.5f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-30 08:54:39 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cChunkMap:
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
cChunkMap::cChunkMap(cWorld * a_World )
|
|
|
|
: m_World( a_World )
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-01-30 08:54:39 -05:00
|
|
|
cChunkMap::~cChunkMap()
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
delete *itr;
|
|
|
|
} // for itr - m_Layers[]
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
void cChunkMap::RemoveLayer( cChunkLayer* a_Layer )
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
m_Layers.remove(a_Layer);
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
cChunkMap::cChunkLayer * cChunkMap::GetLayer(int a_LayerX, int a_LayerZ)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
if (((*itr)->GetX() == a_LayerX) && ((*itr)->GetZ() == a_LayerZ))
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
return *itr;
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
}
|
2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
// Not found, create new:
|
|
|
|
cChunkLayer * Layer = new cChunkLayer(a_LayerX, a_LayerZ, this);
|
|
|
|
if (Layer == NULL)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
LOGERROR("cChunkMap: Cannot create new layer, server out of memory?");
|
|
|
|
return NULL;
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
2012-02-13 16:47:03 -05:00
|
|
|
m_Layers.push_back(Layer);
|
|
|
|
return Layer;
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
cChunkMap::cChunkLayer * cChunkMap::GetLayerForChunk( int a_ChunkX, int a_ChunkZ )
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
|
|
|
const int LayerX = (int)(floorf((float)a_ChunkX / (float)(LAYER_SIZE)));
|
|
|
|
const int LayerZ = (int)(floorf((float)a_ChunkZ / (float)(LAYER_SIZE)));
|
|
|
|
return GetLayer( LayerX, LayerZ );
|
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
cChunkPtr cChunkMap::GetChunk( int a_ChunkX, int a_ChunkY, int a_ChunkZ )
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
// No need to lock m_CSLayers, since it's already locked by the operation that called us
|
2012-02-13 16:47:03 -05:00
|
|
|
cChunkLayer * Layer = GetLayerForChunk( a_ChunkX, a_ChunkZ );
|
|
|
|
if (Layer == NULL)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
// An error must have occurred, since layers are automatically created if they don't exist
|
2012-02-28 05:45:53 -05:00
|
|
|
return NULL;
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-02-17 12:56:25 -05:00
|
|
|
cChunkPtr Chunk = Layer->GetChunk(a_ChunkX, a_ChunkY, a_ChunkZ);
|
2012-02-26 11:46:23 -05:00
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-13 16:47:03 -05:00
|
|
|
if (!(Chunk->IsValid()))
|
|
|
|
{
|
2012-02-26 11:46:23 -05:00
|
|
|
m_World->GetStorage().QueueLoadChunk(a_ChunkX, a_ChunkY, a_ChunkZ, true);
|
2012-02-13 16:47:03 -05:00
|
|
|
}
|
|
|
|
return Chunk;
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
cChunkPtr cChunkMap::GetChunkNoGen( int a_ChunkX, int a_ChunkY, int a_ChunkZ )
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
// No need to lock m_CSLayers, since it's already locked by the operation that called us
|
2012-02-13 16:47:03 -05:00
|
|
|
cChunkLayer * Layer = GetLayerForChunk( a_ChunkX, a_ChunkZ );
|
2012-01-29 16:40:21 -05:00
|
|
|
if (Layer == NULL)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
// An error must have occurred, since layers are automatically created if they don't exist
|
2012-02-28 05:45:53 -05:00
|
|
|
return NULL;
|
2012-01-29 16:40:21 -05:00
|
|
|
}
|
|
|
|
|
2012-02-17 12:56:25 -05:00
|
|
|
cChunkPtr Chunk = Layer->GetChunk(a_ChunkX, a_ChunkY, a_ChunkZ);
|
2012-02-26 11:46:23 -05:00
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!(Chunk->IsValid()))
|
|
|
|
{
|
|
|
|
m_World->GetStorage().QueueLoadChunk(a_ChunkX, a_ChunkY, a_ChunkZ, false);
|
|
|
|
}
|
2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
return Chunk;
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 09:29:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-28 05:45:53 -05:00
|
|
|
cChunkPtr cChunkMap::GetChunkNoLoad( int a_ChunkX, int a_ChunkY, int a_ChunkZ )
|
|
|
|
{
|
|
|
|
// No need to lock m_CSLayers, since it's already locked by the operation that called us
|
|
|
|
cChunkLayer * Layer = GetLayerForChunk( a_ChunkX, a_ChunkZ );
|
|
|
|
if (Layer == NULL)
|
|
|
|
{
|
|
|
|
// An error must have occurred, since layers are automatically created if they don't exist
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Layer->GetChunk(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-28 03:10:51 -05:00
|
|
|
void cChunkMap::BroadcastToChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ, const cPacket & a_Packet, cClientHandle * a_Exclude)
|
2012-02-20 11:39:00 -05:00
|
|
|
{
|
|
|
|
// Broadcasts a_Packet to all clients in the chunk where block [x, y, z] is, except to client a_Exclude
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
|
|
|
Chunk->Broadcast(a_Packet, a_Exclude);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-28 03:10:51 -05:00
|
|
|
void cChunkMap::BroadcastToChunkOfBlock(int a_X, int a_Y, int a_Z, const cPacket * a_Packet, cClientHandle * a_Exclude)
|
2012-02-15 09:22:44 -05:00
|
|
|
{
|
|
|
|
// Broadcasts a_Packet to all clients in the chunk where block [x, y, z] is, except to client a_Exclude
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::BlockToChunk(a_X, a_Y, a_Z, ChunkX, ChunkZ);
|
2012-02-20 11:39:00 -05:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ZERO_CHUNK_Y, ChunkZ);
|
2012-02-15 09:22:44 -05:00
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2012-02-20 11:39:00 -05:00
|
|
|
// It's perfectly legal to broadcast packets even to invalid chunks!
|
|
|
|
Chunk->Broadcast(a_Packet, a_Exclude);
|
2012-02-15 09:22:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::UseBlockEntity(cPlayer * a_Player, int a_X, int a_Y, int a_Z)
|
|
|
|
{
|
|
|
|
// a_Player rclked block entity at the coords specified, handle it
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::BlockToChunk(a_X, a_Y, a_Z, ChunkX, ChunkZ);
|
2012-02-15 09:22:44 -05:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, 0, ChunkZ);
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->UseBlockEntity(a_Player, a_X, a_Y, a_Z);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-16 08:42:35 -05:00
|
|
|
void cChunkMap::MarkChunkDirty (int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkDirty();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::MarkChunkSaving(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkSaving();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::MarkChunkSaved (int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkSaved();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-25 03:18:52 -04:00
|
|
|
void cChunkMap::SetChunkData(
|
2012-03-14 16:56:09 -04:00
|
|
|
int a_ChunkX, int a_ChunkY, int a_ChunkZ,
|
2012-05-25 03:18:52 -04:00
|
|
|
const BLOCKTYPE * a_BlockTypes,
|
|
|
|
const NIBBLETYPE * a_BlockMeta,
|
|
|
|
const NIBBLETYPE * a_BlockLight,
|
|
|
|
const NIBBLETYPE * a_BlockSkyLight,
|
2012-03-14 16:56:09 -04:00
|
|
|
const cChunkDef::HeightMap * a_HeightMap,
|
2012-05-25 03:18:52 -04:00
|
|
|
const cChunkDef::BiomeMap & a_BiomeMap,
|
|
|
|
cEntityList & a_Entities,
|
|
|
|
cBlockEntityList & a_BlockEntities,
|
|
|
|
bool a_MarkDirty
|
2012-03-14 16:56:09 -04:00
|
|
|
)
|
2012-02-16 08:42:35 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-02-28 05:45:53 -05:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkY, a_ChunkZ);
|
2012-02-16 08:42:35 -05:00
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2012-05-25 03:18:52 -04:00
|
|
|
Chunk->SetAllData(a_BlockTypes, a_BlockMeta, a_BlockLight, a_BlockSkyLight, a_HeightMap, a_BiomeMap, a_Entities, a_BlockEntities);
|
|
|
|
Chunk->SetValid();
|
|
|
|
|
|
|
|
if (a_MarkDirty)
|
|
|
|
{
|
|
|
|
Chunk->MarkDirty();
|
|
|
|
}
|
2012-02-16 08:42:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-25 03:18:52 -04:00
|
|
|
void cChunkMap::ChunkLighted(
|
|
|
|
int a_ChunkX, int a_ChunkZ,
|
|
|
|
const cChunkDef::BlockNibbles & a_BlockLight,
|
|
|
|
const cChunkDef::BlockNibbles & a_SkyLight
|
2012-03-14 16:56:09 -04:00
|
|
|
)
|
2012-02-16 08:42:35 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-05-25 03:18:52 -04:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, ZERO_CHUNK_Y, a_ChunkZ);
|
2012-02-16 08:42:35 -05:00
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2012-05-25 03:18:52 -04:00
|
|
|
Chunk->SetLight(a_BlockLight, a_SkyLight);
|
2012-02-18 12:53:22 -05:00
|
|
|
Chunk->MarkDirty();
|
2012-02-16 08:42:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-09 08:42:28 -05:00
|
|
|
bool cChunkMap::GetChunkData(int a_ChunkX, int a_ChunkY, int a_ChunkZ, cChunkDataCallback & a_Callback)
|
2012-02-16 08:42:35 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
2012-03-09 08:42:28 -05:00
|
|
|
return false;
|
2012-02-16 08:42:35 -05:00
|
|
|
}
|
|
|
|
Chunk->GetAllData(a_Callback);
|
2012-03-09 08:42:28 -05:00
|
|
|
return true;
|
2012-02-16 08:42:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-14 16:56:09 -04:00
|
|
|
bool cChunkMap::GetChunkBlockTypes(int a_ChunkX, int a_ChunkY, int a_ChunkZ, BLOCKTYPE * a_BlockTypes)
|
2012-02-18 14:18:16 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-03-14 16:56:09 -04:00
|
|
|
Chunk->GetBlockTypes(a_BlockTypes);
|
2012-02-18 14:18:16 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-14 16:56:09 -04:00
|
|
|
bool cChunkMap::GetChunkBlockData(int a_ChunkX, int a_ChunkY, int a_ChunkZ, BLOCKTYPE * a_BlockData)
|
2012-03-05 11:41:57 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Chunk->GetBlockData(a_BlockData);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-16 08:42:35 -05:00
|
|
|
bool cChunkMap::IsChunkValid(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-02-28 05:45:53 -05:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkY, a_ChunkZ);
|
2012-02-16 08:42:35 -05:00
|
|
|
return (Chunk != NULL) && Chunk->IsValid();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-16 12:45:26 -05:00
|
|
|
bool cChunkMap::HasChunkAnyClients(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
return (Chunk != NULL) && Chunk->HasAnyClients();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-18 12:53:22 -05:00
|
|
|
void cChunkMap::SpreadChunkLighting(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if ((Chunk != NULL) && Chunk->IsValid())
|
|
|
|
{
|
2012-03-14 16:56:09 -04:00
|
|
|
Chunk->SpreadBlockSkyLight();
|
|
|
|
Chunk->SpreadBlockLight();
|
2012-02-18 12:53:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int cChunkMap::GetHeight(int a_BlockX, int a_BlockZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ, BlockY = 0;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::AbsoluteToRelative(a_BlockX, BlockY, a_BlockZ, ChunkX, ChunkZ);
|
2012-02-18 12:53:22 -05:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ZERO_CHUNK_Y, ChunkZ);
|
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for the chunk to become valid:
|
|
|
|
while (!Chunk->IsValid())
|
|
|
|
{
|
|
|
|
GetChunk(ChunkX, ZERO_CHUNK_Y, ChunkZ); // Re-queue (in case it managed to get unloaded before we caught it
|
|
|
|
cCSUnlock Unlock(Lock);
|
|
|
|
m_evtChunkValid.Wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Chunk->GetHeight(a_BlockX, a_BlockZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-18 15:10:57 -05: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())
|
|
|
|
{
|
|
|
|
int ChunkX = a_BlockList.front().ChunkX;
|
|
|
|
int ChunkZ = a_BlockList.front().ChunkZ;
|
2012-02-28 05:45:53 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-02-18 15:10:57 -05:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ZERO_CHUNK_Y, ChunkZ);
|
|
|
|
if ((Chunk != NULL) && Chunk->IsValid())
|
|
|
|
{
|
|
|
|
for (sSetBlockList::iterator itr = a_BlockList.begin(); itr != a_BlockList.end();)
|
|
|
|
{
|
|
|
|
if ((itr->ChunkX == ChunkX) && (itr->ChunkZ == ChunkZ))
|
|
|
|
{
|
|
|
|
Chunk->FastSetBlock(itr->x, itr->y, itr->z, itr->BlockType, itr->BlockMeta);
|
|
|
|
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();)
|
|
|
|
{
|
|
|
|
if ((itr->ChunkX == ChunkX) && (itr->ChunkZ == ChunkZ))
|
|
|
|
{
|
|
|
|
Failed.push_back(*itr);
|
|
|
|
itr = a_BlockList.erase(itr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++itr;
|
|
|
|
}
|
|
|
|
} // for itr - a_BlockList[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the failed:
|
|
|
|
std::swap(Failed, a_BlockList);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-20 11:39:00 -05:00
|
|
|
void cChunkMap::CollectPickupsByPlayer(cPlayer * a_Player)
|
|
|
|
{
|
|
|
|
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());
|
|
|
|
int ChunkX, ChunkZ, ChunkY = ZERO_CHUNK_Y;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::AbsoluteToRelative(BlockX, BlockY, BlockZ, ChunkX, ChunkZ);
|
2012-02-20 11:39:00 -05:00
|
|
|
int OtherChunkX = ChunkX + ((BlockX > 8) ? 1 : -1);
|
|
|
|
int OtherChunkZ = ChunkZ + ((BlockZ > 8) ? 1 : -1);
|
|
|
|
|
2012-03-05 11:41:57 -05:00
|
|
|
// 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
|
|
|
|
|
2012-02-20 11:39:00 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-03-05 11:41:57 -05:00
|
|
|
GetChunkNoLoad(ChunkX, ChunkY, ChunkZ)->CollectPickupsByPlayer(a_Player);
|
2012-02-20 11:39:00 -05:00
|
|
|
|
|
|
|
// Check the neighboring chunks as well:
|
2012-03-05 11:41:57 -05:00
|
|
|
GetChunkNoLoad(OtherChunkX, ChunkY, ChunkZ )->CollectPickupsByPlayer(a_Player);
|
|
|
|
GetChunkNoLoad(OtherChunkX, ChunkY, OtherChunkZ)->CollectPickupsByPlayer(a_Player);
|
|
|
|
GetChunkNoLoad(ChunkX, ChunkY, ChunkZ )->CollectPickupsByPlayer(a_Player);
|
|
|
|
GetChunkNoLoad(ChunkX, ChunkY, OtherChunkZ)->CollectPickupsByPlayer(a_Player);
|
2012-02-20 11:39:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-14 17:21:03 -04:00
|
|
|
BLOCKTYPE cChunkMap::GetBlock(int a_X, int a_Y, int a_Z)
|
2012-02-21 07:29:05 -05:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::AbsoluteToRelative( a_X, a_Y, a_Z, ChunkX, ChunkZ );
|
2012-02-21 07:29:05 -05:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-02-28 05:45:53 -05:00
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ZERO_CHUNK_Y, ChunkZ);
|
2012-02-21 07:29:05 -05:00
|
|
|
if ((Chunk != NULL) && Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return Chunk->GetBlock(a_X, a_Y, a_Z);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-14 17:21:03 -04:00
|
|
|
BLOCKTYPE cChunkMap::GetBlockMeta(int a_X, int a_Y, int a_Z)
|
2012-02-21 07:29:05 -05:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::AbsoluteToRelative( a_X, a_Y, a_Z, ChunkX, ChunkZ );
|
2012-02-21 07:29:05 -05:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ZERO_CHUNK_Y, ChunkZ );
|
|
|
|
if ((Chunk != NULL) && Chunk->IsValid() )
|
|
|
|
{
|
2012-03-14 16:56:09 -04:00
|
|
|
return Chunk->GetMeta(a_X, a_Y, a_Z);
|
2012-02-21 07:29:05 -05:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-16 11:48:40 -04:00
|
|
|
BLOCKTYPE cChunkMap::GetBlockSkyLight(int a_X, int a_Y, int a_Z)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
|
|
|
cChunkDef::AbsoluteToRelative( a_X, a_Y, a_Z, ChunkX, ChunkZ );
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ZERO_CHUNK_Y, ChunkZ );
|
|
|
|
if ((Chunk != NULL) && Chunk->IsValid() )
|
|
|
|
{
|
2012-03-16 11:52:26 -04:00
|
|
|
return Chunk->GetSkyLight( a_X, a_Y, a_Z );
|
2012-03-16 11:48:40 -04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::SetBlockMeta(int a_X, int a_Y, int a_Z, char a_BlockMeta)
|
2012-02-21 11:27:30 -05:00
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::AbsoluteToRelative( a_X, a_Y, a_Z, ChunkX, ChunkZ );
|
2012-02-21 11:27:30 -05:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ZERO_CHUNK_Y, ChunkZ );
|
|
|
|
if ((Chunk != NULL) && Chunk->IsValid() )
|
|
|
|
{
|
2012-03-14 16:56:09 -04:00
|
|
|
Chunk->SetMeta(a_X, a_Y, a_Z, a_BlockMeta);
|
2012-03-05 11:41:57 -05:00
|
|
|
Chunk->MarkDirty();
|
2012-02-21 11:27:30 -05:00
|
|
|
Chunk->SendBlockTo( a_X, a_Y, a_Z, NULL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-25 03:18:52 -04:00
|
|
|
void cChunkMap::SetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta)
|
2012-02-21 11:27:30 -05:00
|
|
|
{
|
2012-05-25 03:18:52 -04:00
|
|
|
int ChunkX, ChunkZ, X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::AbsoluteToRelative( X, Y, Z, ChunkX, ChunkZ );
|
2012-02-21 11:27:30 -05:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ZERO_CHUNK_Y, ChunkZ );
|
|
|
|
if ((Chunk != NULL) && Chunk->IsValid())
|
|
|
|
{
|
|
|
|
Chunk->SetBlock(X, Y, Z, a_BlockType, a_BlockMeta );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-25 03:18:52 -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)
|
|
|
|
{
|
|
|
|
cChunkPtr Chunk = GetChunk(itr->ChunkX, ZERO_CHUNK_Y, itr->ChunkZ );
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (Chunk->GetBlock(itr->x, itr->y, itr->z) == a_FilterBlockType)
|
|
|
|
{
|
|
|
|
Chunk->SetBlock(itr->x, itr->y, itr->z, itr->BlockType, itr->BlockMeta);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::ReplaceTreeBlocks(const sSetBlockVector & a_Blocks)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (sSetBlockVector::const_iterator itr = a_Blocks.begin(); itr != a_Blocks.end(); ++itr)
|
|
|
|
{
|
|
|
|
cChunkPtr Chunk = GetChunk(itr->ChunkX, ZERO_CHUNK_Y, itr->ChunkZ );
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (Chunk->GetBlock(itr->x, itr->y, itr->z))
|
|
|
|
{
|
|
|
|
CASE_TREE_OVERWRITTEN_BLOCKS:
|
|
|
|
{
|
|
|
|
Chunk->SetBlock(itr->x, itr->y, itr->z, itr->BlockType, itr->BlockMeta);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // for itr - a_Blocks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EMCSBiome cChunkMap::GetBiomeAt (int a_BlockX, int a_BlockZ)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ, X = a_BlockX, Y = 0, Z = a_BlockZ;
|
|
|
|
cChunkDef::AbsoluteToRelative( X, Y, Z, ChunkX, ChunkZ );
|
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunk( ChunkX, ZERO_CHUNK_Y, ChunkZ );
|
|
|
|
if ((Chunk != NULL) && Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return Chunk->GetBiomeAt(X, Z);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return m_World->GetGenerator().GetBiomeAt(a_BlockX, a_BlockZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
cChunkPtr Chunk = GetChunk(itr->ChunkX, ZERO_CHUNK_Y, itr->ChunkZ );
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
if (!a_ContinueOnFailure)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
res = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int idx = cChunkDef::MakeIndexNoCheck(itr->x, itr->y, itr->z);
|
|
|
|
itr->BlockType = Chunk->GetBlock(idx);
|
|
|
|
itr->BlockMeta = Chunk->GetMeta(idx);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-21 11:27:30 -05:00
|
|
|
bool cChunkMap::DigBlock(int a_X, int a_Y, int a_Z, cItem & a_PickupItem)
|
|
|
|
{
|
|
|
|
int PosX = a_X, PosY = a_Y, PosZ = a_Z, ChunkX, ChunkZ;
|
|
|
|
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::AbsoluteToRelative( PosX, PosY, PosZ, ChunkX, ChunkZ );
|
2012-02-21 11:27:30 -05:00
|
|
|
|
|
|
|
{
|
2012-02-22 10:45:00 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr DestChunk = GetChunk( ChunkX, ZERO_CHUNK_Y, ChunkZ );
|
|
|
|
if ((DestChunk == NULL) || !DestChunk->IsValid())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
DestChunk->SetBlock(PosX, PosY, PosZ, E_BLOCK_AIR, 0 );
|
2012-02-21 11:27:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
m_World->GetSimulatorManager()->WakeUp(a_X, a_Y, a_Z);
|
|
|
|
|
|
|
|
if ( !a_PickupItem.IsEmpty() )
|
|
|
|
{
|
|
|
|
cPickup * Pickup = new cPickup( a_X * 32 + 16 + (int)fRadRand(16.f), a_Y * 32 + 16 + (int)fRadRand(16.f), a_Z * 32 + 16 + (int)fRadRand(16.f), a_PickupItem );
|
|
|
|
Pickup->Initialize(m_World);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::SendBlockTo(int a_X, int a_Y, int a_Z, cPlayer * a_Player)
|
|
|
|
{
|
|
|
|
int ChunkX, ChunkZ;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::AbsoluteToRelative(a_X, a_Y, a_Z, ChunkX, ChunkZ);
|
2012-02-21 11:27:30 -05:00
|
|
|
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunk(ChunkX, ZERO_CHUNK_Y, ChunkZ);
|
|
|
|
if (Chunk->IsValid())
|
|
|
|
{
|
|
|
|
Chunk->SendBlockTo(a_X, a_Y, a_Z, a_Player->GetClientHandle());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-20 11:39:00 -05:00
|
|
|
void cChunkMap::CompareChunkClients(int a_ChunkX1, int a_ChunkY1, int a_ChunkZ1, int a_ChunkX2, int a_ChunkY2, int a_ChunkZ2, cClientDiffCallback & a_Callback)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk1 = GetChunkNoGen(a_ChunkX1, a_ChunkY1, a_ChunkZ1);
|
|
|
|
if (Chunk1 == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cChunkPtr Chunk2 = GetChunkNoGen(a_ChunkX2, a_ChunkY2, a_ChunkZ2);
|
|
|
|
if (Chunk2 == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cClientHandleList Clients1(Chunk1->GetAllClients());
|
|
|
|
cClientHandleList Clients2(Chunk2->GetAllClients());
|
|
|
|
|
|
|
|
// 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[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-21 10:18:02 -05:00
|
|
|
bool cChunkMap::AddChunkClient(int a_ChunkX, int a_ChunkY, int a_ChunkZ, cClientHandle * a_Client)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-02-28 05:45:53 -05:00
|
|
|
cChunkPtr Chunk = GetChunk(a_ChunkX, a_ChunkY, a_ChunkZ);
|
2012-02-21 10:18:02 -05:00
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->AddClient(a_Client);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-21 11:27:30 -05:00
|
|
|
void cChunkMap::RemoveChunkClient(int a_ChunkX, int a_ChunkY, int a_ChunkZ, cClientHandle * a_Client)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->RemoveClient(a_Client);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-22 11:53:40 -04:00
|
|
|
void cChunkMap::RemoveClientFromChunks(cClientHandle * a_Client)
|
2012-02-21 10:18:02 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
|
2012-03-22 11:53:40 -04:00
|
|
|
for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
2012-02-21 10:18:02 -05:00
|
|
|
{
|
2012-03-22 11:53:40 -04:00
|
|
|
(*itr)->RemoveClient(a_Client);
|
|
|
|
} // for itr - m_Layers[]
|
2012-02-21 10:18:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-20 11:39:00 -05:00
|
|
|
void cChunkMap::MoveEntityToChunk(cEntity * a_Entity, int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr OldChunk = GetChunkNoGen(a_Entity->GetChunkX(), a_Entity->GetChunkY(), a_Entity->GetChunkZ());
|
|
|
|
if (OldChunk != NULL)
|
|
|
|
{
|
|
|
|
OldChunk->RemoveEntity(a_Entity);
|
|
|
|
}
|
|
|
|
cChunkPtr NewChunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if (NewChunk != NULL)
|
|
|
|
{
|
|
|
|
NewChunk->AddEntity(a_Entity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::RemoveEntityFromChunk(cEntity * a_Entity, int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if ((Chunk == NULL) && !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->RemoveEntity(a_Entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-21 11:27:30 -05:00
|
|
|
void cChunkMap::TouchChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
GetChunk(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-28 05:45:53 -05:00
|
|
|
/// Loads the chunk synchronously, if not already loaded. Doesn't generate. Returns true if chunk valid (even if already loaded before)
|
|
|
|
bool cChunkMap::LoadChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
// Internal error
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (Chunk->IsValid())
|
|
|
|
{
|
|
|
|
// Already loaded
|
|
|
|
return true;
|
|
|
|
}
|
2012-02-28 07:11:14 -05:00
|
|
|
if (Chunk->HasLoadFailed())
|
|
|
|
{
|
|
|
|
// Already tried loading and it failed
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-28 05:45:53 -05:00
|
|
|
}
|
|
|
|
return m_World->GetStorage().LoadChunk(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Loads the chunks specified. Doesn't report failure, other than chunks being !IsValid()
|
|
|
|
void cChunkMap::LoadChunks(const cChunkCoordsList & a_Chunks)
|
|
|
|
{
|
|
|
|
for (cChunkCoordsList::const_iterator itr = a_Chunks.begin(); itr != a_Chunks.end(); ++itr)
|
|
|
|
{
|
|
|
|
LoadChunk(itr->m_ChunkX, itr->m_ChunkY, itr->m_ChunkZ);
|
|
|
|
} // for itr - a_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-28 07:11:14 -05:00
|
|
|
void cChunkMap::ChunkLoadFailed(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, a_ChunkY, a_ChunkZ);
|
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkLoadFailed();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-21 11:27:30 -05:00
|
|
|
void cChunkMap::UpdateSign(int a_X, int a_Y, int a_Z, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
int ChunkX, ChunkZ;
|
2012-03-14 16:56:09 -04:00
|
|
|
cChunkDef::BlockToChunk(a_X, a_Y, a_Z, ChunkX, ChunkZ);
|
2012-02-21 11:27:30 -05:00
|
|
|
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ZERO_CHUNK_Y, ChunkZ);
|
|
|
|
if ((Chunk == NULL) || !Chunk->IsValid())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->UpdateSign(a_X, a_Y, a_Z, a_Line1, a_Line2, a_Line3, a_Line4);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-28 05:45:53 -05:00
|
|
|
void cChunkMap::ChunksStay(const cChunkCoordsList & a_Chunks, bool a_Stay)
|
2012-02-26 11:15:09 -05:00
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-02-28 05:45:53 -05:00
|
|
|
for (cChunkCoordsList::const_iterator itr = a_Chunks.begin(); itr != a_Chunks.end(); ++itr)
|
2012-02-26 11:15:09 -05:00
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(itr->m_ChunkX, itr->m_ChunkY, itr->m_ChunkZ);
|
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Chunk->Stay(a_Stay);
|
2012-02-26 11:15:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-04-10 07:22:11 -04:00
|
|
|
void cChunkMap::MarkChunkRegenerating(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, ZERO_CHUNK_Y, a_ChunkZ);
|
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
// Not present
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Chunk->MarkRegenerating();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-25 03:18:52 -04:00
|
|
|
bool cChunkMap::IsChunkLighted(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
cChunkPtr Chunk = GetChunkNoLoad(a_ChunkX, ZERO_CHUNK_Y, a_ChunkZ);
|
|
|
|
if (Chunk == NULL)
|
|
|
|
{
|
|
|
|
// Not present
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Chunk->IsLightValid();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-08 07:36:54 -05:00
|
|
|
void cChunkMap::Tick( float a_Dt, MTRand & a_TickRandom )
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
(*itr)->Tick(a_Dt, a_TickRandom);
|
|
|
|
} // for itr - m_Layers
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
void cChunkMap::UnloadUnusedChunks()
|
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
(*itr)->UnloadUnusedChunks();
|
|
|
|
} // for itr - m_Layers
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
void cChunkMap::SaveAllChunks(void)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
(*itr)->Save();
|
|
|
|
} // for itr - m_Layers[]
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cChunkMap::cChunkLayer:
|
|
|
|
|
|
|
|
cChunkMap::cChunkLayer::cChunkLayer(int a_LayerX, int a_LayerZ, cChunkMap * a_Parent)
|
|
|
|
: m_LayerX( a_LayerX )
|
|
|
|
, m_LayerZ( a_LayerZ )
|
|
|
|
, m_Parent( a_Parent )
|
|
|
|
, m_NumChunksLoaded( 0 )
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-23 16:02:38 -05:00
|
|
|
memset(m_Chunks, 0, sizeof(m_Chunks));
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
2012-02-23 16:21:37 -05:00
|
|
|
cChunkMap::cChunkLayer::~cChunkLayer()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < ARRAYCOUNT(m_Chunks); ++i)
|
|
|
|
{
|
|
|
|
delete m_Chunks[i];
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-17 12:56:25 -05:00
|
|
|
cChunkPtr cChunkMap::cChunkLayer::GetChunk( int a_ChunkX, int a_ChunkY, int a_ChunkZ )
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
// Always returns an assigned chunkptr, but the chunk needn't be valid (loaded / generated) - callers must check
|
2012-02-28 05:45:53 -05:00
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
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)))
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-19 18:00:00 -05:00
|
|
|
ASSERT(!"Asking a cChunkLayer for a chunk that doesn't belong to it!");
|
2012-02-23 16:02:38 -05:00
|
|
|
return NULL;
|
2012-01-29 16:40:21 -05:00
|
|
|
}
|
2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
int Index = LocalX + LocalZ * LAYER_SIZE;
|
2012-02-23 16:02:38 -05:00
|
|
|
if (m_Chunks[Index] == NULL)
|
2012-01-29 16:40:21 -05:00
|
|
|
{
|
2012-02-23 16:02:38 -05:00
|
|
|
m_Chunks[Index] = new cChunk(a_ChunkX, 0, a_ChunkZ, m_Parent, m_Parent->GetWorld());
|
2012-01-29 16:40:21 -05:00
|
|
|
}
|
2012-02-13 16:47:03 -05:00
|
|
|
return m_Chunks[Index];
|
|
|
|
}
|
2011-10-03 14:41:19 -04:00
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkMap::cChunkLayer::Tick(float a_Dt, MTRand & a_TickRand)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2012-01-29 16:40:21 -05:00
|
|
|
{
|
2012-02-17 12:56:25 -05:00
|
|
|
// Only tick chunks that are valid and have clients:
|
|
|
|
if ((m_Chunks[i] != NULL) && m_Chunks[i]->IsValid() && m_Chunks[i]->HasAnyClients())
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
m_Chunks[i]->Tick(a_Dt, a_TickRand);
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
2012-02-13 16:47:03 -05:00
|
|
|
} // for i - m_Chunks[]
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-22 11:53:40 -04:00
|
|
|
void cChunkMap::cChunkLayer::RemoveClient(cClientHandle * a_Client)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
|
|
|
{
|
|
|
|
if (m_Chunks[i] != NULL)
|
|
|
|
{
|
|
|
|
m_Chunks[i]->RemoveClient(a_Client);
|
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-17 12:56:25 -05:00
|
|
|
int cChunkMap::cChunkLayer::GetNumChunksLoaded(void) const
|
|
|
|
{
|
|
|
|
int NumChunks = 0;
|
|
|
|
for ( int i = 0; i < ARRAYCOUNT(m_Chunks); ++i )
|
|
|
|
{
|
|
|
|
if (m_Chunks[i] != NULL)
|
|
|
|
{
|
|
|
|
NumChunks++;
|
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
return NumChunks;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-25 03:18:52 -04:00
|
|
|
void cChunkMap::cChunkLayer::GetChunkStats(int & a_NumChunksValid, int & a_NumChunksDirty) const
|
|
|
|
{
|
|
|
|
int NumValid = 0;
|
|
|
|
int NumDirty = 0;
|
|
|
|
for ( int i = 0; i < ARRAYCOUNT(m_Chunks); ++i )
|
|
|
|
{
|
|
|
|
if (m_Chunks[i] == NULL)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
NumValid++;
|
|
|
|
if (m_Chunks[i]->IsDirty())
|
|
|
|
{
|
|
|
|
NumDirty++;
|
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
a_NumChunksValid = NumValid;
|
|
|
|
a_NumChunksDirty = NumDirty;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
void cChunkMap::cChunkLayer::Save(void)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
cWorld * World = m_Parent->GetWorld();
|
|
|
|
for (int i = 0; i < ARRAYCOUNT(m_Chunks); ++i)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-16 08:42:35 -05:00
|
|
|
if ((m_Chunks[i] != NULL) && m_Chunks[i]->IsValid() && m_Chunks[i]->IsDirty())
|
2012-02-13 16:47:03 -05:00
|
|
|
{
|
2012-02-17 12:56:25 -05:00
|
|
|
World->GetStorage().QueueSaveChunk(m_Chunks[i]->GetPosX(), m_Chunks[i]->GetPosY(), m_Chunks[i]->GetPosZ());
|
2012-02-13 16:47:03 -05:00
|
|
|
}
|
|
|
|
} // for i - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
2012-01-30 08:54:39 -05:00
|
|
|
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
void cChunkMap::cChunkLayer::UnloadUnusedChunks(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < ARRAYCOUNT(m_Chunks); i++)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
if ((m_Chunks[i] != NULL) && (m_Chunks[i]->CanUnload()))
|
2012-01-29 16:40:21 -05:00
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
// The cChunk destructor calls our GetChunk() while removing its entities
|
2012-02-23 16:21:37 -05:00
|
|
|
// so we still need to be able to return the chunk. Therefore we first delete, then NULLify
|
|
|
|
// Doing otherwise results in bug http://forum.mc-server.org/showthread.php?tid=355
|
2012-02-23 16:02:38 -05:00
|
|
|
delete m_Chunks[i];
|
|
|
|
m_Chunks[i] = NULL;
|
2012-01-29 16:40:21 -05:00
|
|
|
}
|
2012-02-13 16:47:03 -05:00
|
|
|
} // for i - m_Chunks[]
|
2011-10-29 17:19:06 -04:00
|
|
|
}
|
2012-01-01 11:20:52 -05:00
|
|
|
|
2012-01-29 16:40:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
int cChunkMap::GetNumChunks(void)
|
2012-01-01 11:20:52 -05:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
cCSLock Lock(m_CSLayers);
|
2012-01-01 11:20:52 -05:00
|
|
|
int NumChunks = 0;
|
2012-02-13 16:47:03 -05:00
|
|
|
for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr)
|
2012-01-01 11:20:52 -05:00
|
|
|
{
|
2012-02-13 16:47:03 -05:00
|
|
|
NumChunks += (*itr)->GetNumChunksLoaded();
|
2012-01-01 11:20:52 -05:00
|
|
|
}
|
|
|
|
return NumChunks;
|
2012-01-29 16:40:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-18 12:53:22 -05:00
|
|
|
|
|
|
|
void cChunkMap::ChunkValidated(void)
|
|
|
|
{
|
|
|
|
m_evtChunkValid.Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-26 11:15:09 -05:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cChunkStay:
|
|
|
|
|
|
|
|
cChunkStay::cChunkStay(cWorld * a_World) :
|
2012-02-28 05:45:53 -05:00
|
|
|
m_World(a_World),
|
|
|
|
m_IsEnabled(false)
|
2012-02-26 11:15:09 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cChunkStay::~cChunkStay()
|
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkStay::Clear(void)
|
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
if (m_IsEnabled)
|
2012-02-26 11:15:09 -05:00
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
Disable();
|
2012-02-26 11:15:09 -05:00
|
|
|
}
|
2012-02-28 05:45:53 -05:00
|
|
|
m_Chunks.clear();
|
2012-02-26 11:15:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkStay::Add(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
ASSERT(!m_IsEnabled);
|
|
|
|
|
2012-02-26 11:15:09 -05:00
|
|
|
for (cChunkCoordsList::const_iterator itr = m_Chunks.begin(); itr != m_Chunks.end(); ++itr)
|
|
|
|
{
|
|
|
|
if ((itr->m_ChunkX == a_ChunkX) && (itr->m_ChunkY == a_ChunkY) && (itr->m_ChunkZ == a_ChunkZ))
|
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
// Already present
|
2012-02-26 11:15:09 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} // for itr - Chunks[]
|
2012-02-28 05:45:53 -05:00
|
|
|
m_Chunks.push_back(cChunkCoords(a_ChunkX, a_ChunkY, a_ChunkZ));
|
2012-02-26 11:15:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkStay::Remove(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
|
|
|
|
{
|
2012-02-28 05:45:53 -05:00
|
|
|
ASSERT(!m_IsEnabled);
|
|
|
|
|
2012-02-28 07:37:46 -05:00
|
|
|
for (cChunkCoordsList::iterator itr = m_Chunks.begin(); itr != m_Chunks.end(); ++itr)
|
2012-02-26 11:15:09 -05:00
|
|
|
{
|
|
|
|
if ((itr->m_ChunkX == a_ChunkX) && (itr->m_ChunkY == a_ChunkY) && (itr->m_ChunkZ == a_ChunkZ))
|
|
|
|
{
|
|
|
|
// Found, un-"stay"
|
2012-02-28 05:45:53 -05:00
|
|
|
m_Chunks.erase(itr);
|
2012-02-26 11:15:09 -05:00
|
|
|
return;
|
|
|
|
}
|
2012-05-25 03:18:52 -04:00
|
|
|
} // for itr - m_Chunks[]
|
2012-02-26 11:15:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-28 05:45:53 -05:00
|
|
|
|
|
|
|
void cChunkStay::Enable(void)
|
|
|
|
{
|
|
|
|
ASSERT(!m_IsEnabled);
|
|
|
|
|
|
|
|
m_World->ChunksStay(*this, true);
|
|
|
|
m_IsEnabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-25 03:18:52 -04:00
|
|
|
void cChunkStay::Load(void)
|
|
|
|
{
|
|
|
|
for (cChunkCoordsList::iterator itr = m_Chunks.begin(); itr != m_Chunks.end(); ++itr)
|
|
|
|
{
|
|
|
|
m_World->TouchChunk(itr->m_ChunkX, itr->m_ChunkY, itr->m_ChunkZ);
|
|
|
|
} // for itr - m_Chunks[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-28 05:45:53 -05:00
|
|
|
void cChunkStay::Disable(void)
|
|
|
|
{
|
|
|
|
ASSERT(m_IsEnabled);
|
|
|
|
|
|
|
|
m_World->ChunksStay(*this, false);
|
|
|
|
m_IsEnabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|