summaryrefslogtreecommitdiffstats
path: root/src/ChunkSender.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2020-08-01Replaced cpp14::make_unique<> with std::make_unique<>.Mattes D1-1/+1
2020-07-19Implement "caching" in ChunkDataSerializerTiger Wang1-3/+5
2020-06-24Send entities in cChunkSender (#4532)Mat1-7/+23
2020-04-16Using Super.Mattes D1-2/+2
2019-09-24NBTChunkSerializer: Cleaned up interface.Mattes D1-1/+1
2019-09-06Separated chunk generator from world / plugin interfaces.Mattes D1-2/+2
2018-07-26CheckBasicStyle: Check number of empty lines between functions (#4267)peterbell101-2/+1
2018-07-24Broadcast refactor (#4264)peterbell101-1/+1
2018-07-22cIsThread: Reset m_ShouldTerminate after the thread has stopped (#4258)peterbell101-11/+1
2017-08-21Implement protocol level chunk sparsing (#3864)peterbell101-1/+2
2016-05-141.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135)Pokechu221-1/+1
2015-10-04Fixed a race condition between chunk loader and generator.Mattes D1-1/+1
2015-07-31Unified the doxy-comment format.Mattes D1-3/+14
2015-06-22Fixed minor errors in Tycho's codeTiger Wang1-38/+26
2015-06-10Reinstate "Chunk queue collapsing"Tiger Wang1-142/+100
2015-06-07Revert "Chunk queue collapsing"worktycho1-100/+142
2015-06-05Fix iteratingtycho1-3/+1
2015-06-05Made the list of chunks to stream an unordered_settycho1-4/+4
2015-06-05Rewrote ChunkSending queue for significantly improved performancetycho1-143/+74
2015-06-05Moved Chunk Broadcasts over to the regular queuetycho1-58/+87
2015-05-30Made cLightingThread own its callbackstycho1-7/+16
2015-05-24Made -Weverything an error.tycho1-1/+1
2015-05-19Make -Werror disabling file onlytycho1-4/+0
2014-10-28Forgotten m_SendChunksMediumPriority.empty() check.Howaner1-1/+1
2014-10-23Use 3 priorities.Howaner1-4/+40
2014-10-23En masse NULL -> nullptr replaceTiger Wang1-8/+8
2014-10-21style.Howaner1-1/+2
2014-10-21Use two lists and 2 chunk send prioritys.Howaner1-13/+35
2014-10-20En masse NULL -> nullptr replaceTiger Wang1-8/+8
2014-10-06Stream 4 chunks per tick. Added priority.Howaner1-4/+9
2014-10-02Optimized chunk loaderHowaner1-12/+9
2014-09-26Removed more unessicary includesTycho1-0/+1
2014-08-28remove y-coord from chunksLO1ZB1-7/+7
2014-07-17Normalized comments.madmaxoft1-2/+2
2013-12-22merged in warnings changesTycho Bickerstaff1-1/+1
2013-12-21ChunkSender is now warnings cleanTycho Bickerstaff1-1/+1
2013-12-20Fixed the rest of constructor reorders.madmaxoft1-2/+2
2013-12-20Fixed compiler warning when iterating over a fixed array of items (ARRAYCOUNT).madmaxoft1-1/+1
2013-11-24Moved source to srcAlexander Harkness1-0/+0
2013-05-28Fixed previous commitmadmaxoft@gmail.com1-1/+1
2013-04-13Rewritten entities so that they are owned by individual chunks and ticked within their chunk's Tick()madmaxoft@gmail.com1-9/+9
2012-10-27Fixed more valgrind issuesmadmaxoft@gmail.com1-1/+2
2012-10-25Fixed up a few valgrind warningsmadmaxoft@gmail.com1-0/+1
2012-09-24Source files cleanup: The rest of the files renamed.madmaxoft@gmail.com1-2/+2
2012-09-23Source files cleanup: ChunkDataSerializer is Protocol-relatedmadmaxoft@gmail.com1-1/+1
2012-08-26git-svn-id: http://mc-server.googlecode.com/svn/trunk@795 0a769ca7-a7f5-676a-18bf-c427514a06d6madmaxoft@gmail.com1-9/+5
2012-08-24Monster classes don't use cPackets. Chat messages are sent / broadcast without cPackets. BlockEntities don't use cPackets.madmaxoft@gmail.com1-11/+8
2012-08-03Fixed a few gcc pedantic warnings; made BLOCKTYPE an unsigned char type.madmaxoft@gmail.com1-1/+1
2012-06-14Attempt to bring sanity to newlines across systems.cedeel@gmail.com1-300/+300
2012-05-25Merged the composable_generator branch into the trunkmadmaxoft@gmail.com1-3/+54
2012-05-07Updated version text to include 1.2.5; ChunkSender doesn't serialize chunk packets for chunks without a clientmadmaxoft@gmail.com1-0/+5
2012-03-27Fixed a possible crash in ChunkSender - a client would be reported as removed but still would be in the internal queue.madmaxoft@gmail.com1-2/+15
2012-03-14Split chunk data into separate arrays; decoupled most sources from cChunk.h dependencymadmaxoft@gmail.com1-9/+0
2012-03-13Removed an unwarranted assert in cChunkSendermadmaxoft@gmail.com1-2/+5
2012-03-12Fixed MapChunk packets to include (fake) biome data, makes clients happymadmaxoft@gmail.com1-1/+2
2012-03-11Stopping the ChunkSender upon server stopmadmaxoft@gmail.com1-2/+12
2012-03-11Not sending chunks to the client twicemadmaxoft@gmail.com1-0/+11
2012-03-10Fixed *nix threading issue;madmaxoft@gmail.com1-3/+3
2012-03-09cClientHandles have a unique ID now to distinguish themfaketruth1-1/+4
2012-03-07ChunkSender: Fixed a potential crash: removing a client means that no Send() is called on that client anymoremadmaxoft@gmail.com1-12/+18
2012-03-06ChunkSender won't send NULL packets anymoremadmaxoft@gmail.com1-1/+5
2012-03-06Fixed rev368's ChunkSender, now sends properly even chunks that are loaded. Fixed a deadlock in cClientHandle vs TickThread over cClientHandle::m_CSChunkListsmadmaxoft@gmail.com1-22/+91
2012-03-05ChunkSender: Chunks are now compressed and sent to clients from a separate threads, proper passive waiting between threads. Not much tested, just appears to work :)madmaxoft@gmail.com1-0/+133