2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// ChunkSender.cpp
|
|
|
|
|
|
|
|
// Interfaces to the cChunkSender class representing the thread that waits for chunks becoming ready (loaded / generated) and sends them to clients
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "ChunkSender.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "World.h"
|
2013-05-28 16:36:35 -04:00
|
|
|
#include "BlockEntities/BlockEntity.h"
|
2012-09-23 17:37:46 -04:00
|
|
|
#include "Protocol/ChunkDataSerializer.h"
|
2014-09-26 13:13:19 -04:00
|
|
|
#include "ClientHandle.h"
|
2015-06-10 10:16:05 -04:00
|
|
|
#include "Chunk.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-31 10:28:38 -04:00
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-06-14 09:06:06 -04:00
|
|
|
// cNotifyChunkSender:
|
|
|
|
|
2015-05-30 06:11:17 -04:00
|
|
|
|
2015-07-31 10:49:10 -04:00
|
|
|
/** Callback that can be used to notify chunk sender upon another chunkcoord notification */
|
2015-05-30 06:11:17 -04:00
|
|
|
class cNotifyChunkSender :
|
|
|
|
public cChunkCoordCallback
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2019-09-01 03:30:00 -04:00
|
|
|
virtual void Call(cChunkCoords a_Coords, bool a_IsSuccess) override
|
2015-05-30 06:11:17 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
cChunkSender & ChunkSender = m_ChunkSender;
|
|
|
|
m_World.DoWithChunk(
|
2019-09-01 03:30:00 -04:00
|
|
|
a_Coords.m_ChunkX, a_Coords.m_ChunkZ,
|
2015-06-10 10:16:05 -04:00
|
|
|
[&ChunkSender] (cChunk & a_Chunk) -> bool
|
|
|
|
{
|
2015-06-22 16:27:13 -04:00
|
|
|
ChunkSender.QueueSendChunkTo(a_Chunk.GetPosX(), a_Chunk.GetPosZ(), cChunkSender::E_CHUNK_PRIORITY_MIDHIGH, a_Chunk.GetAllClients());
|
2015-06-10 10:16:05 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
);
|
2015-05-30 06:11:17 -04:00
|
|
|
}
|
|
|
|
|
2015-06-10 10:16:05 -04:00
|
|
|
cChunkSender & m_ChunkSender;
|
2015-06-07 15:45:47 -04:00
|
|
|
|
2015-06-10 10:16:05 -04:00
|
|
|
cWorld & m_World;
|
2015-07-31 10:49:10 -04:00
|
|
|
|
2015-06-10 10:16:05 -04:00
|
|
|
public:
|
2015-07-31 10:49:10 -04:00
|
|
|
cNotifyChunkSender(cChunkSender & a_ChunkSender, cWorld & a_World):
|
|
|
|
m_ChunkSender(a_ChunkSender),
|
|
|
|
m_World(a_World)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
2015-06-07 15:45:47 -04:00
|
|
|
|
|
|
|
|
2015-07-31 10:49:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cChunkSender:
|
2015-06-07 15:45:47 -04:00
|
|
|
|
2015-06-10 10:16:05 -04:00
|
|
|
cChunkSender::cChunkSender(cWorld & a_World) :
|
2020-04-13 12:38:06 -04:00
|
|
|
Super("ChunkSender"),
|
2015-06-22 16:27:13 -04:00
|
|
|
m_World(a_World)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cChunkSender::~cChunkSender()
|
|
|
|
{
|
|
|
|
Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkSender::Stop(void)
|
|
|
|
{
|
|
|
|
m_ShouldTerminate = true;
|
|
|
|
m_evtQueue.Set();
|
2020-04-13 12:38:06 -04:00
|
|
|
Super::Stop();
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-10 10:16:05 -04:00
|
|
|
void cChunkSender::QueueSendChunkTo(int a_ChunkX, int a_ChunkZ, eChunkPriority a_Priority, cClientHandle * a_Client)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
ASSERT(a_Client != nullptr);
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
cChunkCoords Chunk{a_ChunkX, a_ChunkZ};
|
2012-06-14 09:06:06 -04:00
|
|
|
cCSLock Lock(m_CS);
|
2015-06-10 10:16:05 -04:00
|
|
|
auto iter = m_ChunkInfo.find(Chunk);
|
|
|
|
if (iter != m_ChunkInfo.end())
|
|
|
|
{
|
|
|
|
auto & info = iter->second;
|
|
|
|
if (info.m_Priority > a_Priority)
|
|
|
|
{
|
|
|
|
m_SendChunks.push(sChunkQueue{a_Priority, Chunk});
|
|
|
|
info.m_Priority = a_Priority;
|
|
|
|
}
|
|
|
|
info.m_Clients.insert(a_Client);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_SendChunks.push(sChunkQueue{a_Priority, Chunk});
|
|
|
|
auto info = sSendChunk{Chunk, a_Priority};
|
|
|
|
info.m_Clients.insert(a_Client);
|
|
|
|
m_ChunkInfo.emplace(Chunk, info);
|
|
|
|
}
|
2015-05-30 12:22:03 -04:00
|
|
|
}
|
|
|
|
m_evtQueue.Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-07-24 17:30:49 -04:00
|
|
|
void cChunkSender::QueueSendChunkTo(int a_ChunkX, int a_ChunkZ, eChunkPriority a_Priority, cChunkClientHandles a_Clients)
|
2015-05-30 12:22:03 -04:00
|
|
|
{
|
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
cChunkCoords Chunk{a_ChunkX, a_ChunkZ};
|
2015-05-30 12:22:03 -04:00
|
|
|
cCSLock Lock(m_CS);
|
2015-06-10 10:16:05 -04:00
|
|
|
auto iter = m_ChunkInfo.find(Chunk);
|
|
|
|
if (iter != m_ChunkInfo.end())
|
2015-05-30 12:22:03 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
auto & info = iter->second;
|
|
|
|
if (info.m_Priority > a_Priority)
|
2015-06-07 15:45:47 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
m_SendChunks.push(sChunkQueue{a_Priority, Chunk});
|
|
|
|
info.m_Priority = a_Priority;
|
2015-06-07 15:45:47 -04:00
|
|
|
}
|
2015-06-10 10:16:05 -04:00
|
|
|
info.m_Clients.insert(a_Clients.begin(), a_Clients.end());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_SendChunks.push(sChunkQueue{a_Priority, Chunk});
|
|
|
|
auto info = sSendChunk{Chunk, a_Priority};
|
|
|
|
info.m_Clients.insert(a_Clients.begin(), a_Clients.end());
|
|
|
|
m_ChunkInfo.emplace(Chunk, info);
|
2014-10-21 11:35:23 -04:00
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
m_evtQueue.Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkSender::RemoveClient(cClientHandle * a_Client)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
cCSLock Lock(m_CS);
|
2015-06-10 10:16:05 -04:00
|
|
|
for (auto && pair : m_ChunkInfo)
|
2015-06-07 15:45:47 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
auto && clients = pair.second.m_Clients;
|
|
|
|
clients.erase(a_Client); // nop for sets that do not contain a_Client
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
m_evtQueue.Set();
|
2015-06-22 16:27:13 -04:00
|
|
|
m_evtRemoved.Wait(); // Wait for all remaining instances of a_Client to be processed (Execute() makes a copy of m_ChunkInfo)
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkSender::Execute(void)
|
|
|
|
{
|
|
|
|
while (!m_ShouldTerminate)
|
|
|
|
{
|
2015-06-22 16:27:13 -04:00
|
|
|
m_evtQueue.Wait();
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2015-06-22 16:27:13 -04:00
|
|
|
cCSLock Lock(m_CS);
|
|
|
|
while (!m_SendChunks.empty())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2015-06-22 16:27:13 -04:00
|
|
|
// Take one from the queue:
|
|
|
|
auto Chunk = m_SendChunks.top().m_Chunk;
|
|
|
|
m_SendChunks.pop();
|
|
|
|
auto itr = m_ChunkInfo.find(Chunk);
|
|
|
|
if (itr == m_ChunkInfo.end())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unordered_set<cClientHandle *> clients;
|
|
|
|
std::swap(itr->second.m_Clients, clients);
|
|
|
|
m_ChunkInfo.erase(itr);
|
|
|
|
|
|
|
|
cCSUnlock Unlock(Lock);
|
|
|
|
SendChunk(Chunk.m_ChunkX, Chunk.m_ChunkZ, clients);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2014-10-23 15:19:43 -04:00
|
|
|
}
|
2015-06-10 10:16:05 -04:00
|
|
|
|
2015-06-22 16:27:13 -04:00
|
|
|
m_evtRemoved.SetAll(); // Notify all waiting threads that all clients are processed and thus safe to destroy
|
|
|
|
} // while (!m_ShouldTerminate)
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-10 10:16:05 -04:00
|
|
|
void cChunkSender::SendChunk(int a_ChunkX, int a_ChunkZ, std::unordered_set<cClientHandle *> a_Clients)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// Ask the client if it still wants the chunk:
|
2015-06-10 10:16:05 -04:00
|
|
|
for (auto itr = a_Clients.begin(); itr != a_Clients.end();)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
if (!(*itr)->WantsSendChunk(a_ChunkX, a_ChunkZ))
|
|
|
|
{
|
|
|
|
itr = a_Clients.erase(itr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
itr++;
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2014-10-02 17:50:41 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
// If the chunk has no clients, no need to packetize it:
|
2015-06-10 10:16:05 -04:00
|
|
|
if (!m_World.HasChunkAnyClients(a_ChunkX, a_ChunkZ))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-10-02 17:50:41 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
// If the chunk is not valid, do nothing - whoever needs it has queued it for loading / generating
|
2015-06-10 10:16:05 -04:00
|
|
|
if (!m_World.IsChunkValid(a_ChunkX, a_ChunkZ))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-10-02 17:50:41 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
// If the chunk is not lighted, queue it for relighting and get notified when it's ready:
|
2015-06-10 10:16:05 -04:00
|
|
|
if (!m_World.IsChunkLighted(a_ChunkX, a_ChunkZ))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
m_World.QueueLightChunk(a_ChunkX, a_ChunkZ, cpp14::make_unique<cNotifyChunkSender>(*this, m_World));
|
2012-06-14 09:06:06 -04:00
|
|
|
return;
|
|
|
|
}
|
2014-10-02 17:50:41 -04:00
|
|
|
|
2012-08-26 17:01:07 -04:00
|
|
|
// Query and prepare chunk data:
|
2019-09-24 08:20:50 -04:00
|
|
|
if (!m_World.GetChunkData({a_ChunkX, a_ChunkZ}, *this))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2017-08-21 12:56:53 -04:00
|
|
|
cChunkDataSerializer Data(m_Data, m_BiomeMap, m_World.GetDimension());
|
2014-10-02 17:50:41 -04:00
|
|
|
|
2020-06-24 07:48:50 -04:00
|
|
|
for (const auto Client : a_Clients)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
// Send:
|
2020-06-24 07:48:50 -04:00
|
|
|
Client->SendChunkData(a_ChunkX, a_ChunkZ, Data);
|
2015-05-31 10:28:38 -04:00
|
|
|
|
2015-06-10 10:16:05 -04:00
|
|
|
// Send block-entity packets:
|
2015-06-22 16:27:13 -04:00
|
|
|
for (const auto & Pos : m_BlockEntities)
|
2015-06-07 15:45:47 -04:00
|
|
|
{
|
2020-06-24 07:48:50 -04:00
|
|
|
m_World.SendBlockEntity(Pos.x, Pos.y, Pos.z, *Client);
|
2015-06-10 10:16:05 -04:00
|
|
|
} // for itr - m_Packets[]
|
|
|
|
|
2020-06-24 07:48:50 -04:00
|
|
|
// Send entity packets:
|
|
|
|
for (const auto EntityID : m_EntityIDs)
|
|
|
|
{
|
|
|
|
m_World.DoWithEntityByID(EntityID, [Client](cEntity & a_Entity)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
// DEBUG:
|
|
|
|
LOGD("cChunkSender: Entity #%d (%s) at [%f, %f, %f] spawning for player \"%s\"",
|
|
|
|
a_Entity.GetUniqueID(), a_Entity.GetClass(),
|
|
|
|
a_Entity.GetPosition().x, a_Entity.GetPosition().y, a_Entity.GetPosition().z,
|
|
|
|
Client->GetUsername().c_str()
|
|
|
|
);
|
|
|
|
*/
|
|
|
|
a_Entity.SpawnOn(*Client);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
2015-06-10 10:16:05 -04:00
|
|
|
}
|
2017-08-21 12:56:53 -04:00
|
|
|
m_Data.Clear();
|
2012-08-24 03:58:26 -04:00
|
|
|
m_BlockEntities.clear();
|
2020-06-24 07:48:50 -04:00
|
|
|
m_EntityIDs.clear();
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkSender::BlockEntity(cBlockEntity * a_Entity)
|
|
|
|
{
|
2015-06-10 10:16:05 -04:00
|
|
|
m_BlockEntities.push_back(a_Entity->GetPos());
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-07-26 17:24:36 -04:00
|
|
|
|
2020-06-24 07:48:50 -04:00
|
|
|
void cChunkSender::Entity(cEntity * a_Entity)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2020-06-24 07:48:50 -04:00
|
|
|
m_EntityIDs.push_back(a_Entity->GetUniqueID());
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cChunkSender::BiomeData(const cChunkDef::BiomeMap * a_BiomeMap)
|
|
|
|
{
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_BiomeMap); i++)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
if ((*a_BiomeMap)[i] < 255)
|
|
|
|
{
|
|
|
|
// Normal MC biome, copy as-is:
|
2015-05-24 07:56:56 -04:00
|
|
|
m_BiomeMap[i] = static_cast<unsigned char>((*a_BiomeMap)[i]);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: MCS-specific biome, need to map to some basic MC biome:
|
|
|
|
ASSERT(!"Unimplemented MCS-specific biome");
|
|
|
|
}
|
|
|
|
} // for i - m_BiomeMap[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|