Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-05-10 | Cleanup unneeded globals (#4736) | peterbell10 | 1 | -3/+3 | |
2019-02-20 | Limit the size of cListAllocationPool's free list | peterbell10 | 1 | -18/+28 | |
2018-07-23 | Optimise chunk set (#4260) | peterbell10 | 1 | -6/+33 | |
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 | |||||
2017-08-03 | Remove double includes part 2 (#3890) | peterbell10 | 1 | -2/+0 | |
2017-06-19 | MSVC Debug builds: Added operator new redirection to provide more info. (#3781) | Mattes D | 1 | -0/+26 | |
2017-05-21 | Clang 5.0 fixes | Lukas Pioch | 1 | -1/+1 | |
- Added override keyword - Removed inherited member variables | |||||
2016-02-05 | Bulk clearing of whitespace | LogicParrot | 1 | -10/+10 | |
2015-07-31 | Unified the doxy-comment format. | Mattes D | 1 | -58/+71 | |
2015-05-19 | Make -Werror disabling file only | tycho | 1 | -3/+3 | |
Ad fix a load of warnings | |||||
2014-10-23 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -3/+3 | |
2014-10-20 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -3/+3 | |
2014-08-28 | Final template keyword style fix. | Mattes D | 1 | -2/+2 | |
2014-07-17 | Fixed basic whitespace problems. | madmaxoft | 1 | -2/+6 | |
Indenting by spaces and alignment by spaces, as well as trailing whitespace on non-empty lines. | |||||
2014-06-16 | Merge branch 'master' of github.com:mc-server/MCServer | Tycho | 1 | -0/+109 | |
2014-06-14 | Changed names of callbacks | Tycho | 1 | -7/+7 | |
2014-06-14 | Removed spaces | Tycho | 1 | -2/+2 | |
2014-06-14 | Documented starvation callbacks | Tycho | 1 | -0/+7 | |
2014-06-14 | Documented cAllocationPool | Tycho | 1 | -0/+5 | |
2014-06-14 | Added generic Allocation Pool Interface | Tycho | 1 | -18/+28 | |
2014-06-14 | fixed spaces | Tycho | 1 | -5/+6 | |
2014-06-14 | fixed spaces | Tycho | 1 | -1/+1 | |
2014-06-14 | fixed compile | Tycho | 1 | -1/+1 | |
2014-06-14 | Fill with buffer on startup | Tycho | 1 | -0/+10 | |
2014-06-14 | Fixed comments | Tycho | 1 | -4/+4 | |
2014-05-25 | Fixed bug in freeing NULL pointers | Tycho | 1 | -13/+15 | |
2014-05-23 | Implemented Allocation Pool use by cChunkData | Tycho | 1 | -11/+28 | |
2014-05-23 | Use placement new to initalise objects | Tycho | 1 | -2/+5 | |
2014-05-21 | Added callback for stopping starvation mode | Tycho | 1 | -0/+4 | |
2014-05-21 | Implemented Allocation Pool | Tycho | 1 | -0/+50 | |