| Commit message (Expand) | Author | Files | Lines |
2012-07-21 | Added a Release Profiled configuration to Squirrel MSVC2008 project | madmaxoft@gmail.com | 2 | -2/+63 |
2012-07-19 | Ravines: initial implementation, randomized shapes are working, but still needs some work | madmaxoft@gmail.com | 1 | -0/+8 |
2012-07-16 | Some code improvements | lapayo94@gmail.com | 1 | -36/+0 |
2012-07-15 | A new Block handling system :o | lapayo94@gmail.com | 1 | -0/+288 |
2012-07-15 | Disabled MSVC deprecation / security warnings for external libraries - we expect them to be secure enough | madmaxoft@gmail.com | 4 | -11/+14 |
2012-07-13 | Squirrel: removed CLR from dependencies (we're not in C#) | madmaxoft@gmail.com | 1 | -2/+2 |
2012-07-09 | Improved Squirrel Bindings | lapayo94@gmail.com | 1 | -0/+12 |
2012-07-09 | Sorry... | lapayo94@gmail.com | 1 | -2/+3 |
2012-07-09 | Missed precompiled headers in Release Mode | lapayo94@gmail.com | 1 | -1/+1 |
2012-07-09 | BlockArea name change reverted | lapayo94@gmail.com | 3 | -14/+373 |
2012-07-02 | cBlockArea object added (with only minimal testing so far) | madmaxoft@gmail.com | 2 | -0/+48 |
2012-06-18 | Fixed a (non-fatal) error in the profiling script | madmaxoft@gmail.com | 1 | -5/+6 |
2012-06-15 | Basic handling of vines. No growth yet. | cedeel@gmail.com | 1 | -0/+4 |
2012-06-13 | Moved LuaFunctions.h into the Bindings section of the project | madmaxoft@gmail.com | 1 | -4/+4 |
2012-06-13 | Added a BlockToPickup hook for modifying pickups when a player breaks a block. | madmaxoft@gmail.com | 1 | -0/+4 |
2012-06-12 | Updated the crafting recipes architecture to better support crafting hooks. Removed the old recipe file and implementation altogether. | madmaxoft@gmail.com | 1 | -8/+0 |
2012-06-11 | Added implementation of E_PLUGIN_CHUNK_GENERATING lua hook | faketruth | 1 | -0/+8 |
2012-06-06 | 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 | 1 | -0/+5 |
2012-06-04 | Eliminated unused files from a ToLua library VC2008 project | madmaxoft@gmail.com | 1 | -16/+0 |
2012-06-04 | Added the new recipe parser, parsing the crafting.txt file. Included are a few recipes. The old parser still works, but will be replaced soon. | madmaxoft@gmail.com | 1 | -4/+12 |
2012-06-04 | Fixed MSVC2008 projects for new zlib | madmaxoft@gmail.com | 2 | -33/+29 |
2012-06-04 | Updated zlib, added chat formatting, fixed upside down stairs and slabs, fixed makefiles, hopefully updated vc project files | cedeel@gmail.com | 1 | -0/+4 |
2012-05-25 | Merged the composable_generator branch into the trunk | madmaxoft@gmail.com | 1 | -38/+90 |
2012-05-09 | Fixed output directory structure in the "Release profiled" configuration | madmaxoft@gmail.com | 5 | -10/+10 |
2012-05-08 | Added a profiling option to the VC2008 projects, using the MS standalone profiler (see vc2008/profile_run.cmd for details and usage) | madmaxoft@gmail.com | 8 | -0/+491 |
2012-05-07 | Fast NBT Parser (loading a chunk is now about 10 times faster) | madmaxoft@gmail.com | 1 | -8/+16 |
2012-03-24 | Added the new 1.2.4's PlayerAbilities packet; restructures packet files for less files, more dense. | madmaxoft@gmail.com | 1 | -26/+2 |
2012-03-24 | Removed the split between 1.2.3 and 1.1, left only 1.2.3 code | madmaxoft@gmail.com | 1 | -1/+1 |
2012-03-14 | Split chunk data into separate arrays; decoupled most sources from cChunk.h dependency | madmaxoft@gmail.com | 1 | -0/+7 |
2012-03-12 | Added a flat terrain generator with settable terrain height | madmaxoft@gmail.com | 1 | -0/+8 |
2012-03-07 | Added the Anvil level format (MCA) support, read-only for the time being. Now MCS can read your worlds from the official server :) | madmaxoft@gmail.com | 1 | -0/+16 |
2012-03-05 | 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 | 1 | -1/+9 |
2012-03-01 | Forgot to update the VS2008 project | faketruth | 1 | -0/+8 |
2012-02-28 | VC2008: slight project reorganization, chunk-generation-related sources are now in one folder | madmaxoft@gmail.com | 1 | -24/+28 |
2012-02-26 | Using cSocketThreads for client outgoing packets. Unfortunately had to put in one intermediate thread (cServer::cNotifyWriteThread) to avoid deadlocks. Still, seems we have a proper multithreading for clients and no more per-client threads, yay :) | madmaxoft@gmail.com | 1 | -4/+4 |
2012-02-22 | VC2008: cleaned up the Release configuration for the project | madmaxoft@gmail.com | 1 | -1/+1 |
2012-02-20 | VC2008: Temporarily reset compiler warnings to Level 3 due to the new ASSERT() | madmaxoft@gmail.com | 1 | -2/+2 |
2012-02-17 | Added the skeleton of the cLightingThread object | madmaxoft@gmail.com | 1 | -0/+8 |
2012-02-16 | 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 | 1 | -1/+11 |
2012-02-14 | Slight cleanup - removed old code, some additional comments on dangerous functions | madmaxoft@gmail.com | 1 | -8/+0 |
2012-02-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 | 6 | -44/+118 |
2012-02-07 | cSocketThreads initial commit. Not yet tested and not yet integrated | madmaxoft@gmail.com | 1 | -0/+12 |
2012-02-01 | Rewritten cAuthenticator to make use of the new cIsThread architecture - now authentication runs in a single separate thread for all clients; | madmaxoft@gmail.com | 1 | -24/+24 |
2012-02-01 | VC2008: removed an unneeded file from zlib project | madmaxoft@gmail.com | 1 | -4/+0 |
2012-02-01 | new cIsThread object for thread encapsulation | madmaxoft@gmail.com | 1 | -4/+12 |
2012-02-01 | Introducing StringUtils - the place to be if you are a generic string routine :) No more sprintf()! | madmaxoft@gmail.com | 1 | -117/+125 |
2012-01-30 | Initial cFile implementation (using stdio FILE) and test in cChunkMap | madmaxoft@gmail.com | 1 | -0/+8 |
2012-01-29 | VC2008 / VC2010: Enabled precompiled header through Globals.h; the header included in every module in the project. Compilation optimization. | madmaxoft@gmail.com | 3 | -74/+293 |
2012-01-29 | VC2008 compilation with new lua webplugin | madmaxoft@gmail.com | 1 | -0/+8 |
2012-01-29 | ChunkGenerator: rewritten thread-locking using the new RAII CSLock class | madmaxoft@gmail.com | 1 | -0/+1 |
2012-01-27 | Added a VC2010 configuration for Debug build with optimized Noise; made it the default in VC2008 | madmaxoft@gmail.com | 1 | -0/+13 |
2012-01-27 | Updated VC2008 project to include cPlugin_NewLua | madmaxoft@gmail.com | 1 | -0/+8 |
2012-01-27 | MSVC 2008 Express compatibility: Added the projects, modified sources to compile. Tested on MSVC 2008 Express and MSVC 2010 Express | madmaxoft@gmail.com | 6 | -0/+2623 |