summaryrefslogtreecommitdiffstats
path: root/src/ChunkSender.h
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-10-21 17:35:23 +0200
committerHowaner <franzi.moos@googlemail.com>2014-10-21 17:35:23 +0200
commitb0988e65aadc1a9d33065cf6afefc05dbf768ef8 (patch)
treead2b28cef36bfb02e5b51e9394f064c2dec7a4a9 /src/ChunkSender.h
parentNew c++11 stuff. (diff)
downloadcuberite-b0988e65aadc1a9d33065cf6afefc05dbf768ef8.tar
cuberite-b0988e65aadc1a9d33065cf6afefc05dbf768ef8.tar.gz
cuberite-b0988e65aadc1a9d33065cf6afefc05dbf768ef8.tar.bz2
cuberite-b0988e65aadc1a9d33065cf6afefc05dbf768ef8.tar.lz
cuberite-b0988e65aadc1a9d33065cf6afefc05dbf768ef8.tar.xz
cuberite-b0988e65aadc1a9d33065cf6afefc05dbf768ef8.tar.zst
cuberite-b0988e65aadc1a9d33065cf6afefc05dbf768ef8.zip
Diffstat (limited to 'src/ChunkSender.h')
-rw-r--r--src/ChunkSender.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/ChunkSender.h b/src/ChunkSender.h
index 3a1e1f5ea..bd489e2c4 100644
--- a/src/ChunkSender.h
+++ b/src/ChunkSender.h
@@ -79,8 +79,7 @@ public:
enum eChunkPriority
{
E_CHUNK_PRIORITY_HIGH = 0,
- E_CHUNK_PRIORITY_MEDIUM = 1,
- E_CHUNK_PRIORITY_LOW = 2,
+ E_CHUNK_PRIORITY_LOW = 1,
};
bool Start(cWorld * a_World);
@@ -103,13 +102,11 @@ protected:
{
int m_ChunkX;
int m_ChunkZ;
- eChunkPriority m_Priority;
cClientHandle * m_Client;
- sSendChunk(int a_ChunkX, int a_ChunkZ, eChunkPriority a_Priority, cClientHandle * a_Client) :
+ sSendChunk(int a_ChunkX, int a_ChunkZ, cClientHandle * a_Client) :
m_ChunkX(a_ChunkX),
m_ChunkZ(a_ChunkZ),
- m_Priority(a_Priority),
m_Client(a_Client)
{
}
@@ -122,11 +119,6 @@ protected:
(a_Other.m_Client == m_Client)
);
}
-
- bool operator < (const sSendChunk & a_Other)
- {
- return (m_Priority < a_Other.m_Priority);
- }
} ;
typedef std::list<sSendChunk> sSendChunkList;
@@ -150,7 +142,8 @@ protected:
cCriticalSection m_CS;
cChunkCoordsList m_ChunksReady;
- sSendChunkList m_SendChunks;
+ sSendChunkList m_SendChunksLowPriority;
+ sSendChunkList m_SendChunksHighPriority;
cEvent m_evtQueue; // Set when anything is added to m_ChunksReady
cEvent m_evtRemoved; // Set when removed clients are safe to be deleted
int m_RemoveCount; // Number of threads waiting for a client removal (m_evtRemoved needs to be set this many times)