| Commit message (Expand) | Author | Age | Files | Lines |
* | Cut out all packet handling to a separate cProtocol descendant | madmaxoft@gmail.com | 2012-08-27 | 1 | -38/+0 |
* | git-svn-id: http://mc-server.googlecode.com/svn/trunk@795 0a769ca7-a7f5-676a-18bf-c427514a06d6 | madmaxoft@gmail.com | 2012-08-26 | 1 | -0/+16 |
* | cWorld doesn't use cPackets. | madmaxoft@gmail.com | 2012-08-25 | 1 | -0/+18 |
* | cPickup doesn't use cPackets. | madmaxoft@gmail.com | 2012-08-24 | 1 | -0/+16 |
* | Monster classes don't use cPackets. Chat messages are sent / broadcast without cPackets. BlockEntities don't use cPackets. | madmaxoft@gmail.com | 2012-08-24 | 1 | -0/+50 |
* | Window, Chest, Furnace and Pawn are not using cPackets at all | madmaxoft@gmail.com | 2012-08-19 | 1 | -0/+33 |
* | Almost all packets' handling is now rewritten not to use cPacket descendants elsewhere than in cClientHandle. | madmaxoft@gmail.com | 2012-08-19 | 1 | -0/+108 |
* | Another handful of packets rewritten. | madmaxoft@gmail.com | 2012-08-19 | 1 | -0/+32 |
* | A bit of cleanup and documentation around the UI window handling | madmaxoft@gmail.com | 2012-08-06 | 1 | -3/+3 |
* | Fixed a few gcc pedantic warnings; made BLOCKTYPE an unsigned char type. | madmaxoft@gmail.com | 2012-08-03 | 1 | -1/+1 |
* | Temporary jungle trees (swamp-like), based on code by STR_Warrior). Also vines don't overwrite leaves anymore. | madmaxoft@gmail.com | 2012-07-02 | 1 | -0/+8 |
* | cBlockArea object added (with only minimal testing so far) | madmaxoft@gmail.com | 2012-07-02 | 1 | -0/+29 |
* | Removed the deprecated GetBlockEntity(), added several enumerators to replace it. | madmaxoft@gmail.com | 2012-06-17 | 1 | -0/+84 |
* | Exported cWorld::ForEachEntity and cWorld::ForEachEntityInChunk; no idea if they actually work | madmaxoft@gmail.com | 2012-06-16 | 1 | -0/+15 |
* | Attempt to bring sanity to newlines across systems. | cedeel@gmail.com | 2012-06-14 | 1 | -1485/+1485 |
* | Cacti grow by themselves and by bonemeal | madmaxoft@gmail.com | 2012-06-09 | 1 | -0/+17 |
* | Sugarcane grows and can be grown using bonemeal. | madmaxoft@gmail.com | 2012-06-08 | 1 | -0/+17 |
* | Bonemeal works on crops, melons, pumpkins, saplings and grass. Plant growing has been refactored into separate functions callable from Lua, too. | madmaxoft@gmail.com | 2012-06-07 | 1 | -0/+17 |
* | Repeaters' delays can be set by rclk | madmaxoft@gmail.com | 2012-06-07 | 1 | -0/+17 |
* | Item-dropping code rewritten and centralized - now there's only one place to modify if we want to split or merge same-item drops: cWorld:SpawnItemPickups(). Also, mined blocks can now drop more items, and they recognize if they're being mined by the correct tool. | madmaxoft@gmail.com | 2012-06-06 | 1 | -17/+1 |
* | Added support for SetNextBlockTick() function callable from Lua | madmaxoft@gmail.com | 2012-05-30 | 1 | -0/+17 |
* | Added code for the chunks to manipulate their neighbors while ticking. Also added some basic farming support - melon and pumpkin growing code. Untested and untestable so far, will test and fix later. | madmaxoft@gmail.com | 2012-05-29 | 1 | -15/+59 |
* | Merged the composable_generator branch into the trunk | madmaxoft@gmail.com | 2012-05-25 | 1 | -28/+190 |
* | Added the "/regeneratechunk" command that regenerates either current chunk or a chunk specified with x, z parameters. TODO: permissions - we don't want guests erasing our chunks! | madmaxoft@gmail.com | 2012-04-10 | 1 | -1/+16 |
* | Fixed a deadlock by removing clients from all chunks upon their exit, not using the clients chunklists. | madmaxoft@gmail.com | 2012-03-22 | 1 | -4/+19 |
* | That didn't work.. I forgot some cChunk functions were changed. Now it should compile again | faketruth | 2012-03-16 | 1 | -1/+1 |
* | Exposed a function to Lua to get a block's sky light value | faketruth | 2012-03-16 | 1 | -1/+19 |
* | Unified the chunk data to use the BLOCKDATA datatype. | madmaxoft@gmail.com | 2012-03-14 | 1 | -4/+4 |
* | Split chunk data into separate arrays; decoupled most sources from cChunk.h dependency | madmaxoft@gmail.com | 2012-03-14 | 1 | -24/+41 |
* | cClientHandles have a unique ID now to distinguish them | faketruth | 2012-03-09 | 1 | -2/+3 |
* | 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 | -24/+27 |
* | Linux compilation fix (y u no support const_iterator, gcc?) | madmaxoft@gmail.com | 2012-02-28 | 1 | -1/+1 |
* | Chunk now has an indicator of load failure; Chunk generator uses cChunkStay | madmaxoft@gmail.com | 2012-02-28 | 1 | -0/+20 |
* | Implemented synchronous chunk loading; optimized cChunkStay interface for speed (though still unused ;) | madmaxoft@gmail.com | 2012-02-28 | 1 | -38/+111 |
* | Const-correctness for packet broadcasting (fixes GCC compilation) | madmaxoft@gmail.com | 2012-02-28 | 1 | -2/+2 |
* | Fix for the perpetual load issue | madmaxoft@gmail.com | 2012-02-27 | 1 | -1/+7 |
* | Implemented chunk loading without generating on load-failure | madmaxoft@gmail.com | 2012-02-26 | 1 | -3/+13 |
* | 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 | -0/+91 |
* | Plain pointer cChunkPtr finishing touches; removed cChunk's critical sections | madmaxoft@gmail.com | 2012-02-23 | 1 | -0/+15 |
* | Made cChunkPtr a plain old pointer again, since it's safe now | madmaxoft@gmail.com | 2012-02-23 | 1 | -4/+6 |
* | Fixed a potential deadlock in cChunkMap::m_CSLayers vs cWorld::m_CSAllEntities | madmaxoft@gmail.com | 2012-02-22 | 1 | -6/+8 |
* | Removed cChunkPtrs from everywhere but internal cChunkMap usage. Now we should finally be threadsafe :) | madmaxoft@gmail.com | 2012-02-21 | 1 | -3/+140 |
* | Fixed heightmap optimization from rev 302; removed a few more cChunkPtrs | madmaxoft@gmail.com | 2012-02-21 | 1 | -0/+45 |
* | Fixed block-getting so that simulators work again | madmaxoft@gmail.com | 2012-02-21 | 1 | -0/+37 |
* | Removed some more cChunkPtr usage | madmaxoft@gmail.com | 2012-02-20 | 1 | -6/+138 |
* | Using own ASSERT() that logs to file | faketruth | 2012-02-20 | 1 | -1/+1 |
* | 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 | -0/+51 |
* | Re-implemented tree-growing. May produce artefacts on old-world / new-world boundaries. | madmaxoft@gmail.com | 2012-02-18 | 1 | -0/+16 |
* | Thread-safe chunk generation, storage and generator are queried for progress while initializing server | madmaxoft@gmail.com | 2012-02-18 | 1 | -1/+58 |
* | Chunk coords mostly "upgraded" to include the Y coord for future compatibility | madmaxoft@gmail.com | 2012-02-17 | 1 | -6/+24 |
* | 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 | -1/+11 |
* | 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 | -6/+105 |
* | Chunks are properly saved before being unloaded now | faketruth | 2012-02-16 | 1 | -0/+3 |
* | 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/+38 |
* | 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 | -456/+112 |
* | Removed unused code | madmaxoft@gmail.com | 2012-02-08 | 1 | -15/+8 |
* | 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 | -2/+2 |
* | AString logging fix 2 | madmaxoft@gmail.com | 2012-02-01 | 1 | -7/+7 |
* | sprintf() begone! Replaced with StringUtils' Printf() | madmaxoft@gmail.com | 2012-02-01 | 1 | -6/+5 |
* | Removed a few duplicate includes | madmaxoft@gmail.com | 2012-02-01 | 1 | -2/+0 |
* | Linux fixes, but while it compiles, when a user joins it crashes the server with "*** glibc detected *** ./MCServer: double free or corruption (out): 0x00007fb5f5158db0 ***" | mtilden@gmail.com | 2012-01-31 | 1 | -0/+1 |
* | 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 | -4/+0 |
* | Initial cFile implementation (using stdio FILE) and test in cChunkMap | madmaxoft@gmail.com | 2012-01-30 | 1 | -84/+86 |
* | Old code begone! ChunkMap cleanup | madmaxoft@gmail.com | 2012-01-29 | 1 | -348/+250 |
* | 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 | -6/+9 |
* | ChunkGenerator: rewritten thread-locking using the new RAII CSLock class | madmaxoft@gmail.com | 2012-01-29 | 1 | -3/+4 |
* | MSVC 2008 Express compatibility: Added the projects, modified sources to compile. Tested on MSVC 2008 Express and MSVC 2010 Express | madmaxoft@gmail.com | 2012-01-27 | 1 | -1/+1 |
* | Terrain generation is synchronous again, async generation has bugs. | faketruth | 2012-01-19 | 1 | -1/+1 |
* | Fixed the numchunks console command. | faketruth | 2012-01-01 | 1 | -1/+11 |
* | Users file was pretty messed up with mixed unix and windows line endings. The ini failed to parse correctly under cygwin. | faketruth | 2011-12-27 | 1 | -1/+1 |
* | 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 | -0/+2 |
* | You can now run multiple worlds by defining them in settings.ini . However there's no way to change worlds on the fly yet | faketruth | 2011-11-01 | 1 | -12/+8 |
* | Players can now place blocks in creative mode. The blocks players select from the creative mode inventory are not stored in the players' inventory. (I kind of like that) | admin@omencraft.com | 2011-11-01 | 1 | -0/+1 |
* | denotch map converter works! :D | admin@omencraft.com | 2011-10-31 | 1 | -8/+9 |
* | Prepared some parts of the code for multi world support, I created lots of TODO's | faketruth | 2011-10-31 | 1 | -3/+4 |
* | Changed cChunkMat.cpp back to normal. Made more changes to the denotch map converter. Testing cNBTData parser. | admin@omencraft.com | 2011-10-30 | 1 | -5/+0 |
* | Added denotch map converter. Program currently reads the only mcr file in the region dir and writes the uncompressed chunk data in world/X0-Z0.pak. I compile in linux with "g++ cConvert.cpp -lz -o denotch" | admin@omencraft.com | 2011-10-29 | 1 | -5/+10 |
* | Compiles for linux | faketruth | 2011-10-21 | 1 | -0/+3 |
* | MCServer c++ source files | faketruth | 2011-10-03 | 1 | -0/+714 |