| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
also refactored cWorld::m_WorldAge and cWorld::m_TimeOfDay
|
| |
|
|
|
|
|
|
| |
* Fixed style inconsistencies
* Used more C++11 features
* Improved speed perhaps
|
| |
|
| |
|
| |
|
|
|
|
| |
THis wil hopefully allow for unit testing
|
| |
|
|
|
|
|
| |
This was mostly done automatically and then visually inspected for obvious errors.
All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign.
|
|
|
|
|
| |
* Fixes #1176
* Fixed #1186
|
|
|
|
|
|
|
| |
+ Added trapped chests
* Fixed a bunch of bugs in the redstone simulator concerning wires and
repeaters
* Other potential bugfixes
|
|
|
|
| |
* Fixes #944
|
| |
|
|
|
|
|
| |
* Repeaters now properly continuously update their powering
* Minor cosmetic improvements
|
|
|
|
|
|
|
| |
Based on suggestions of @worktycho
* Repeaters now walk their data structure only when needed
* Fixed a bug with cChunkData returning an incorrect value for whether a
meta had changed
|
|
|
|
|
|
| |
* Redstone simulator performance improvements
* Added return values to some functions
* Minor fixes
|
| |
|
| |
|
| |
|
|
|
|
| |
fixes #856
|
| |
|
|
|
|
|
|
|
|
| |
* Fixed a special case with the wrong ChunkX/Z values being used to
calculate a relative position
* Simplified data structure adding and removing operations (no more
pointers!)
- Removed one character of whitespace :D
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
+ Moved all simulator data into individual chunks
* Cleaned up parameters for functions and some code
* Fixed repeaters powering off faster than they power on
The main issue before was that, although the redstone simulator stored
blocks to be simulated in individual cChunks, other data, such as
powered lists, and etcetera, were global regardless of which chunk was
being simulated. Therefore, with worlds with lots of redstone, each tick
saw the ticking of chunks, which themselves iterated through the entire
dataset needlessly, creating LOTS of lag. Should be better now :)
|
| |
|
|
|
|
|
| |
+ Two (or more) pressure plates can be triggered at the same time
* Fixed issues caused by pressure plates not being in the sources list
|
|
|