summaryrefslogtreecommitdiffstats
path: root/tests/ChunkData/Copies.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-03-05Prepare ChunkData for BlockState storage (#5105)Tiger Wang1-42/+58
* Rename ChunkData Creatable test * Add missing Y-check in RedstoneWireHandler * Remove ChunkDef.h dependency in Scoreboard * Prepare ChunkData for BlockState storage + Split chunk block, meta, block & sky light storage + Load the height map from disk - Reduce duplicated code in ChunkData - Remove saving MCSBiomes, there aren't any - Remove the allocation pool, ref #4315, #3864 * fixed build * fixed test * fixed the debug compile Co-authored-by: 12xx12 <44411062+12xx12@users.noreply.github.com>
2020-05-10Cleanup unneeded globals (#4736)peterbell101-1/+1
2019-08-26Improved testing framework. (#4376)Mattes D1-18/+27
2018-07-23Optimise chunk set (#4260)peterbell101-2/+7
Closes #1244 Initially I was just going to add the cChunkData to cSetChunkData but profiling revealed that the copying wasn't even the biggest slowdown. Much more time was being spent in cChunk::CreateBlockEntities and cChunk::WakeUpSimulators than was in memcpy so I've made those significantly faster as well. Optimisations performed: * cSetChunkData now stores blocks in a cChunkData object * cChunkData objects can now perform moves even if they are using different pools * cChunk::CreateBlockEntities now iterates in the correct order and only over present chunk sections * Similarly for cChunk::WakeUpSimulators * cSetChunkData::CalculateHeightMap now shortcuts to the highest present chunk section before checking blocks directly
2018-02-04cChunk and cChunkData: Use vectors for block get and set functions (#4172)peterbell101-29/+29
* cChunkData: Change interface to use Vector3i * cChunk: Add Vector3i overloads for bounded block get and set functions.
2017-08-21Implement protocol level chunk sparsing (#3864)peterbell101-1/+2
2016-06-18SelfTests: Print a quick message on test start.Mattes D1-0/+2
2014-06-16Merge branch 'master' of github.com:mc-server/MCServerTycho1-5/+18
2014-06-14Added generic Allocation Pool InterfaceTycho1-8/+13
2014-06-14fixed spacesTycho1-2/+2
2014-05-30Fixed test return values.madmaxoft1-7/+7
2014-05-29Fixed wrong block sizes for copying / setting.madmaxoft1-16/+16
2014-05-29Fixed test compilation.madmaxoft1-10/+10
2014-05-27Fixed test globals to work with precompiled headersTycho1-1/+1
2014-05-24Implemented style changesTycho1-97/+38
2014-05-23Implemented Allocation Pool use by cChunkDataTycho1-5/+13
2014-05-21Renamed cChunkBuffer to cChunkDataTycho1-7/+7
2014-05-17Rewrote array copies testworktycho1-36/+51
Moved each patten test into its own scope to test all unallocated section code paths. Moved 0's around so that they test the allocated sections code paths.
2014-05-11Added some more testsTycho1-116/+161
2014-05-11Added several more testsfor arrays and coordinatesTycho1-1/+0
2014-05-11test 0 valuesTycho1-0/+45
2014-05-11Cerated array copy tests for block and skylightTycho1-0/+36
2014-05-10Fixed stupid buffer overflow in array setblocksTycho1-8/+8
2014-05-10Add arries copies testsTycho1-0/+53