| Commit message (Expand) | Author | Age | Files | Lines |
* | cClientHandles have a unique ID now to distinguish them | faketruth | 2012-03-09 | 1 | -9/+9 |
* | ChunkSender: Chunks are now compressed and sent to clients from a separate threads, proper passive waiting between threads. Not much tested, just appears to work :) | madmaxoft@gmail.com | 2012-03-05 | 1 | -62/+53 |
* | The world can now truly be made higher by incrementing cChunk::c_ChunkHeight to 256. !!HOWEVER THIS WILL DESTROY YOUR SAVED WORLD!! | faketruth | 2012-03-04 | 1 | -1/+1 |
* | Changed signed char to unsigned char in block packets, so we can receive height up to 255 | faketruth | 2012-03-04 | 1 | -9/+16 |
* | Got rid of some hardcoded numbers, now using hardcoded variables! woo | faketruth | 2012-03-03 | 1 | -87/+87 |
* | Finally got the multiblock packet working! It seems the byte order was wrong | faketruth | 2012-03-02 | 1 | -5/+3 |
* | MultiBlock packet is working partly.. I really don't understand what's wrong with this packet :/ | faketruth | 2012-03-02 | 1 | -0/+13 |
* | New redstone simulator. Should work without crashes! | faketruth | 2012-03-01 | 1 | -1/+15 |
* | Server uses ~40% less CPU now | faketruth | 2012-02-28 | 1 | -86/+92 |
* | Chunk now has an indicator of load failure; Chunk generator uses cChunkStay | madmaxoft@gmail.com | 2012-02-28 | 1 | -0/+16 |
* | New cChunkStay class for temporarily keeping chunks loaded even when then have no clients. For now unused, will be used by generator and lighting in the future. | madmaxoft@gmail.com | 2012-02-26 | 1 | -1/+13 |
* | Plain pointer cChunkPtr finishing touches; removed cChunk's critical sections | madmaxoft@gmail.com | 2012-02-23 | 1 | -162/+14 |
* | cChunk: removed unused code | madmaxoft@gmail.com | 2012-02-23 | 1 | -6/+0 |
* | Added some asserts to trace a bug | faketruth | 2012-02-22 | 1 | -1/+5 |
* | Removed cChunkPtrs from everywhere but internal cChunkMap usage. Now we should finally be threadsafe :) | madmaxoft@gmail.com | 2012-02-21 | 1 | -5/+6 |
* | Fixed heightmap optimization from rev 302; removed a few more cChunkPtrs | madmaxoft@gmail.com | 2012-02-21 | 1 | -16/+42 |
* | Optimized hightmap recalc when setting a chunk's block | madmaxoft@gmail.com | 2012-02-21 | 1 | -7/+31 |
* | Removed some more cChunkPtr usage | madmaxoft@gmail.com | 2012-02-20 | 1 | -3/+7 |
* | Using own ASSERT() that logs to file | faketruth | 2012-02-20 | 1 | -5/+5 |
* | Substantial cWorld::FastSetBlock() speed up by queueing all such calls and processing them later chunk-wise (makes growing trees in the generator fast again) | madmaxoft@gmail.com | 2012-02-18 | 1 | -8/+28 |
* | Re-implemented tree-growing. May produce artefacts on old-world / new-world boundaries. | madmaxoft@gmail.com | 2012-02-18 | 1 | -0/+10 |
* | Thread-safe chunk generation, storage and generator are queried for progress while initializing server | madmaxoft@gmail.com | 2012-02-18 | 1 | -8/+8 |
* | cWorldGenerator speedup - doesn't call GetChunk() anymore, not queueing the chunk it's generating to be loaded recursively. | madmaxoft@gmail.com | 2012-02-16 | 1 | -5/+6 |
* | Marking chunk dirty after generating | madmaxoft@gmail.com | 2012-02-16 | 1 | -0/+2 |
* | Heightmap is properly generated after loading chunks now, so /spawn and /top should work properly again | faketruth | 2012-02-16 | 1 | -0/+2 |
* | Chunk is now marked as dirty; saving only dirty chunks; rewritten load / save not to use cChunkPtr; set VC2008 project to level4 warnings; block entities are now loaded and saved properly | madmaxoft@gmail.com | 2012-02-16 | 1 | -7/+146 |
* | Restored chest and furnace functionality as it was (it's basically working but joined chests show single-chest window) | madmaxoft@gmail.com | 2012-02-15 | 1 | -0/+13 |
* | Rewritten most of the code for multithreading; still not 100%, but getting there. If this commit proves to be too problematic, we can always undo it. | madmaxoft@gmail.com | 2012-02-13 | 1 | -361/+343 |
* | Removed unused code | madmaxoft@gmail.com | 2012-02-08 | 1 | -44/+113 |
* | MTRand class is not created in each tick, therefore much improving tick-thread time (now uses ~5 % CPU instead of one full core) | madmaxoft@gmail.com | 2012-02-08 | 1 | -5/+8 |
* | Rewritten cAuthenticator to make use of the new cIsThread architecture - now authentication runs in a single separate thread for all clients; | madmaxoft@gmail.com | 2012-02-01 | 1 | -2/+2 |
* | AString logging fix | madmaxoft@gmail.com | 2012-02-01 | 1 | -7/+7 |
* | sprintf() begone! Replaced with StringUtils' Printf() | madmaxoft@gmail.com | 2012-02-01 | 1 | -3/+3 |
* | Removed a few duplicate includes | madmaxoft@gmail.com | 2012-02-01 | 1 | -2/+1 |
* | Fixed a problem in cCSLock (sorry); reverted cChunk | madmaxoft@gmail.com | 2012-01-30 | 1 | -3/+3 |
* | Added a WebAdmin interface to view users their groups, and the permissions of groups. | faketruth | 2012-01-30 | 1 | -1/+1 |
* | More cFile cleanup; removed old format writing for block entities | madmaxoft@gmail.com | 2012-01-30 | 1 | -176/+199 |
* | VC2008 / VC2010: Enabled precompiled header through Globals.h; the header included in every module in the project. Compilation optimization. | madmaxoft@gmail.com | 2012-01-29 | 1 | -10/+5 |
* | Working on a new plugin design with Lua. While retaining backwards compatibility of course... | faketruth | 2012-01-26 | 1 | -28/+28 |
* | Probably fixed a deadlock! http://www.mc-server.org/support/index.php?do=details&task_id=147 | faketruth | 2012-01-26 | 1 | -2/+2 |
* | Cactus towers can be destroyed by removing the bottom block | faketruth | 2012-01-23 | 1 | -0/+1 |
* | Terrain generation is synchronous again, async generation has bugs. | faketruth | 2012-01-19 | 1 | -43/+13 |
* | Fixed the numchunks console command. | faketruth | 2012-01-01 | 1 | -0/+76 |
* | Made a couple of functions in cChunk inline, this should speed up several block operations on chunks | faketruth | 2011-12-31 | 1 | -105/+8 |
* | This bug should be fixed now http://mc-server.org/support/index.php?do=details&task_id=112 | faketruth | 2011-12-28 | 1 | -6/+44 |
* | Some kind of 'template' world generator that right now just generates an all dirt world. You can use this to test new algorithms | faketruth | 2011-12-27 | 1 | -2/+2 |
* | Players can switch worlds on the fly with the command /gotoworld [worldName]. This uses the function cPlayer::MoveToWorld() | faketruth | 2011-12-26 | 1 | -72/+72 |
* | - improved Simulator system | lapayo94@gmail.com | 2011-12-26 | 1 | -26/+1 |
* | - Linux compatible fixes including updated makefile | mtilden@gmail.com | 2011-12-26 | 1 | -4/+5 |
* | Moved the actual world generation from cChunk.cpp to a more isolated file cWorldGenerator.cpp | faketruth | 2011-12-26 | 1 | -236/+3 |
* | Made some functions in cChunk and cNoise inline, this should significantly increase chunk generation speed | faketruth | 2011-12-26 | 1 | -7/+0 |
* | Chunks are generated in a separate thread allowing players to keep on playing and chatting while chunks are generated. This means, however, that cWorld::GetChunk() does not always return a chunk and is something you need to be aware of. I am not entirely sure if all this is completely stable, but I think so :O | faketruth | 2011-12-25 | 1 | -21/+31 |
* | Digging leaves with shears now drops leaves | lapayo94@gmail.com | 2011-12-22 | 1 | -4/+31 |
* | Changed chunk generation so any surface sand with air underneath it will turn into sandstone to prevent most sand cave-ins due to odd cave placement. | admin@omencraft.com | 2011-11-15 | 1 | -12/+37 |
* | Fixed doors. I forgot to actually return proper Hex value. Started work on adding farmland, farming, and leaf decay support. | admin@omencraft.com | 2011-11-10 | 1 | -0/+5 |
* | Redstone clocks now work. even one clocks. torches don't update themselves when placed yet, but redstone wire updates the torch. Fixed a bug with piston animations. | admin@omencraft.com | 2011-11-09 | 1 | -4/+4 |
* | Fixed bug in cChunk.cpp not calculating RedstoneCircuits at the correct positions. Also, forgot to mention you can now place colored wool. | admin@omencraft.com | 2011-11-08 | 1 | -2/+2 |
* | Updated redstone and pistons some mode. If you break an extended piston the piston extension will now also break. When a redstone device is broken by something other than a person the redstone circuit should now update. | admin@omencraft.com | 2011-11-07 | 1 | -4/+21 |
* | Patch with diff file created by Sebi (implemented some stuff like lava physics, drops are deleted when in lava, water is now slower, lava gives actual damage etc.). Pistons now work mostly as they should. They do not yet show the motion animation and do not emit sound. They do extend, push, and retract as they should though. Right now the only way to activate a piston is to light redstone wire adjacent to it with a redstone torch. | admin@omencraft.com | 2011-11-06 | 1 | -10/+10 |
* | Change SetBlock to FastSetBlock in cRedstone.cpp and grass will now grow if any one hit block is above it. | admin@omencraft.com | 2011-11-05 | 1 | -6/+11 |
* | Fixed some "Entity was not found in any chunk!" warnings | faketruth | 2011-11-02 | 1 | -10/+18 |
* | fixed player spawning in the ground. | admin@omencraft.com | 2011-11-01 | 1 | -1/+1 |
* | Prepared some parts of the code for multi world support, I created lots of TODO's | faketruth | 2011-10-31 | 1 | -33/+32 |
* | Using SSE instructions for noise (terrain generation) | faketruth | 2011-10-25 | 1 | -9/+9 |
* | Compiles for linux | faketruth | 2011-10-21 | 1 | -6/+9 |
* | MCServer c++ source files | faketruth | 2011-10-03 | 1 | -0/+1388 |