summaryrefslogtreecommitdiffstats
path: root/tests/ChunkData (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-03-05Prepare ChunkData for BlockState storage (#5105)Tiger Wang7-266/+187
* 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-10-15Fix Android builds (#4998)Tiger Wang1-2/+2
Construct paths relative to the Cuberite sources with PROJECT_SOURCE_DIR, instead of wherever the first CMakeLists.txt file happened to be with CMAKE_SOURCE_DIR. In Android's case, the latter was in a folder called android/ but that's not the root of the source tree, so any file path built off that root was wrong. This caused file-specific warnings exclusions to fail to apply.
2020-05-16Upgrade to C++17 [CMake] (#4717)Tiger Wang1-6/+1
* Make our CMake slightly less insane
2020-05-10Cleanup unneeded globals (#4736)peterbell105-5/+5
2019-08-26Improved testing framework. (#4376)Mattes D4-94/+117
2018-07-23Optimise chunk set (#4260)peterbell105-14/+39
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)peterbell103-99/+99
* cChunkData: Change interface to use Vector3i * cChunk: Add Vector3i overloads for bounded block get and set functions.
2018-01-03Add the fmt library (#4065)peterbell101-0/+2
* Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style.
2017-08-21Implement protocol level chunk sparsing (#3864)peterbell101-1/+2
2016-08-24Fixed type-casting-related warnings.Mattes D2-6/+1
2016-07-18CMake: Remove needless minimum version specifications.Mattes D1-2/+0
2016-06-18SelfTests: Print a quick message on test start.Mattes D5-0/+10
2016-06-18SelfTests: Organized into solution folders.Mattes D1-0/+17
2016-04-23Out of world blocks are now always considered air blocksLogicParrot1-48/+23
2015-05-24Disable -Werror for warnings in tests.tycho2-13/+2
2015-05-19Fix teststycho1-0/+7
2014-09-01CopyBlocks test: decreased the test size.madmaxoft1-2/+2
It just needlessly ate up test time; there's no need for such rigorous testing once the test started succeeding.
2014-06-16Merge branch 'master' of github.com:mc-server/MCServerTycho5-14/+80
2014-06-14Added generic Allocation Pool InterfaceTycho5-39/+64
2014-06-14fixed spacesTycho1-1/+1
2014-06-14fixed spacesTycho5-10/+10
2014-06-14fixed compileTycho1-1/+9
2014-05-30Reduced the number of cChunkData::CopyBlockTypes() tests, added progress.Mattes D1-7/+16
2014-05-30Fix bugs in testTycho1-3/+5
2014-05-30Added a cChunkData::CopyBlockTypes() unit test.Mattes D2-0/+68
2014-05-30Fixed cChunkData nibble copying.madmaxoft1-4/+4
2014-05-30Test failures are reported verbosely and into the debug console on Win.madmaxoft1-1/+1
2014-05-30Fixed test return values.madmaxoft2-38/+41
2014-05-29Fixed wrong block sizes for copying / setting.madmaxoft1-16/+16
2014-05-29Fixed test compilation.madmaxoft2-16/+16
2014-05-27Fixed test globals to work with precompiled headersTycho4-4/+4
2014-05-25Fixed bad mergeTycho1-1/+7
2014-05-24inject TestGlobals.h correctlyTycho1-0/+1
2014-05-24Implemented style changesTycho3-176/+87
2014-05-23Implemented Allocation Pool use by cChunkDataTycho4-13/+46
2014-05-21Renamed cChunkBuffer to cChunkDataTycho5-0/+486