Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Android builds (#4998) | Tiger Wang | 2020-10-15 | 1 | -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. | ||||
* | Upgrade to C++17 [CMake] (#4717) | Tiger Wang | 2020-05-16 | 1 | -6/+1 |
| | | | * Make our CMake slightly less insane | ||||
* | Cleanup unneeded globals (#4736) | peterbell10 | 2020-05-10 | 5 | -5/+5 |
| | |||||
* | Improved testing framework. (#4376) | Mattes D | 2019-08-26 | 4 | -94/+117 |
| | |||||
* | Optimise chunk set (#4260) | peterbell10 | 2018-07-23 | 5 | -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 | ||||
* | cChunk and cChunkData: Use vectors for block get and set functions (#4172) | peterbell10 | 2018-02-04 | 3 | -99/+99 |
| | | | | | * cChunkData: Change interface to use Vector3i * cChunk: Add Vector3i overloads for bounded block get and set functions. | ||||
* | Add the fmt library (#4065) | peterbell10 | 2018-01-03 | 1 | -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. | ||||
* | Implement protocol level chunk sparsing (#3864) | peterbell10 | 2017-08-21 | 1 | -1/+2 |
| | |||||
* | Fixed type-casting-related warnings. | Mattes D | 2016-08-24 | 2 | -6/+1 |
| | |||||
* | CMake: Remove needless minimum version specifications. | Mattes D | 2016-07-18 | 1 | -2/+0 |
| | |||||
* | SelfTests: Print a quick message on test start. | Mattes D | 2016-06-18 | 5 | -0/+10 |
| | |||||
* | SelfTests: Organized into solution folders. | Mattes D | 2016-06-18 | 1 | -0/+17 |
| | |||||
* | Out of world blocks are now always considered air blocks | LogicParrot | 2016-04-23 | 1 | -48/+23 |
| | |||||
* | Disable -Werror for warnings in tests. | tycho | 2015-05-24 | 2 | -13/+2 |
| | |||||
* | Fix tests | tycho | 2015-05-19 | 1 | -0/+7 |
| | |||||
* | CopyBlocks test: decreased the test size. | madmaxoft | 2014-09-01 | 1 | -2/+2 |
| | | | | It just needlessly ate up test time; there's no need for such rigorous testing once the test started succeeding. | ||||
* | Merge branch 'master' of github.com:mc-server/MCServer | Tycho | 2014-06-16 | 5 | -14/+80 |
| | |||||
* | Reduced the number of cChunkData::CopyBlockTypes() tests, added progress. | Mattes D | 2014-05-30 | 1 | -7/+16 |
| | |||||
* | Fix bugs in test | Tycho | 2014-05-30 | 1 | -3/+5 |
| | |||||
* | Added a cChunkData::CopyBlockTypes() unit test. | Mattes D | 2014-05-30 | 2 | -0/+68 |
| | |||||
* | Fixed cChunkData nibble copying. | madmaxoft | 2014-05-30 | 1 | -4/+4 |
| | |||||
* | Test failures are reported verbosely and into the debug console on Win. | madmaxoft | 2014-05-30 | 1 | -1/+1 |
| | |||||
* | Fixed test return values. | madmaxoft | 2014-05-30 | 2 | -38/+41 |
| | |||||
* | Fixed wrong block sizes for copying / setting. | madmaxoft | 2014-05-29 | 1 | -16/+16 |
| | |||||
* | Fixed test compilation. | madmaxoft | 2014-05-29 | 2 | -16/+16 |
| | |||||
* | Fixed test globals to work with precompiled headers | Tycho | 2014-05-27 | 4 | -4/+4 |
| | |||||
* | inject TestGlobals.h correctly | Tycho | 2014-05-24 | 1 | -0/+1 |
| | |||||
* | Implemented style changes | Tycho | 2014-05-24 | 3 | -176/+87 |
| | |||||
* | Renamed cChunkBuffer to cChunkData | Tycho | 2014-05-21 | 5 | -0/+486 |