Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-27 | Add DISABLE_CLASS_COPY macro (and use it) | kwolekr | |
Use this macro to disallow copying of an object using the assignment operator or copy constructor. This catches otherwise silent-but-deadly mistakes such as "ServerMap map = env->getMap();" at compile time. If so desired, it is still possible to copy a class, but it now requires an explicit call to memcpy or std::copy. | |||
2015-10-04 | Allow setting chunksize in core.set_mapgen_params | kwolekr | |
2015-10-04 | Hide mapgens from main menu not intended for end users | kwolekr | |
2015-10-04 | Add emerge completion callback mechanism | kwolekr | |
Major refactor of emerge.cpp and Map::init/finishBlockMake | |||
2015-09-23 | Add /emergeblocks command and core.emerge_area() Lua API | kwolekr | |
2015-08-23 | Clean up threading | ShadowNinja | |
* Rename everything. * Strip J prefix. * Change UpperCamelCase functions to lowerCamelCase. * Remove global (!) semaphore count mutex on OSX. * Remove semaphore count getter (unused, unsafe, depended on internal API functions on Windows, and used a hack on OSX). * Add `Atomic<type>`. * Make `Thread` handle thread names. * Add support for C++11 multi-threading. * Combine pthread and win32 sources. * Remove `ThreadStarted` (unused, unneeded). * Move some includes from the headers to the sources. * Move all of `Event` into its header (allows inlining with no new includes). * Make `Event` use `Semaphore` (except on Windows). * Move some porting functions into `Thread`. * Integrate logging with `Thread`. * Add threading test. | |||
2015-03-07 | Respect game mapgen flags and save world noise params | ngosang | |
2015-01-05 | Shorten ManualMapVoxelManipulator to MMVManip | kwolekr | |
2014-12-29 | Mapgen: Use getBlockSeed2() for blockseeds (much better uniformity) | kwolekr | |
2014-12-29 | Add core.get_mapgen_names() to Main Menu API (and use it) | kwolekr | |
Also rewrite mapgen registration for static initialization | |||
2014-12-29 | Expose mapgen parameters on scripting init | kwolekr | |
Add minetest.get_mapgen_params() Deprecate minetest.register_on_mapgen_init() | |||
2014-12-06 | Rewrite generate notification mechanism | kwolekr | |
Add support for notify-on-decoration Clean up mapgen constructors Clean up mapgen.cpp code style somewhat Remove trailing whitespace from some files | |||
2014-11-14 | Fix warnings and other misc. minor changes | kwolekr | |
2014-11-12 | Add Generator Element Management framework | kwolekr | |
Add BiomeManager, OreManager, DecorationManager, and SchematicManager | |||
2014-11-01 | Split up mapgen.cpp | kwolekr | |
2014-02-15 | Add minetest.set_noiseparam_defaults() Lua API | kwolekr | |
2014-02-09 | ServerEnvironment: Remove direct dependency on EmergeManager | kwolekr | |
2014-02-03 | Huge overhaul of the entire MapgenParams system | kwolekr | |
MapgenParams is no longer a polymorphic class, eliminating the need for messy and bug-prone reallocations. Separation between the common and mapgen-specific parameters is now strongly defined. Mapgen parameters objects are now properly encapsulated within the proper subsystems. | |||
2014-01-26 | Fix use of previously deallocated EmergeManager | kwolekr | |
2013-12-15 | Replace SimpleThread by JThread now implementing same features | sapier | |
2013-12-14 | Add map feature generation notify Lua API | kwolekr | |
2013-12-08 | EmergeManager: Fix Lua mapgen override param handling | kwolekr | |
2013-08-15 | Add virtual destructor to IBackgroundBlockEmerger to silence warning | Kahrl | |
2013-08-14 | Omnicleanup: header cleanup, add ModApiUtil shared between game and mainmenu | Kahrl | |
2013-06-27 | Add Lua on_mapgen_init callback, and minetest.set_mapgen_params API | kwolekr | |
2013-06-27 | Add minetest.get_mapgen_object to API | kwolekr | |
2013-06-17 | Add initial Decoration support, many misc. improvements & modifications | kwolekr | |
2013-05-19 | Fix nearly all warnings | kwolekr | |
2013-04-07 | Add Mapgen V7, reorganize biomes | kwolekr | |
2013-03-24 | Add Ore infrastructure and l_register_ore() | kwolekr | |
2013-02-26 | Fix most warnings, re-fix MSVC compile error | kwolekr | |
2013-02-25 | Misc. cleanup and minor fixes | kwolekr | |
2013-02-25 | Add multi-Emerge thread support | kwolekr | |
2013-02-25 | Add emerge queue limit configuration | kwolekr | |
2013-02-25 | Add global and per-peer queue limits | kwolekr | |
2013-02-25 | Add emerge.cpp, initial EmergeThread changes | kwolekr | |
- Neatly placed all emerge related code into a new file, emerge.cpp - Greatly cleaned up the code in EmergeThread::Thread() - Reworked Emerge queue. Now an actual std::queue of v3s16 block positions - Removed the completely unnecessary map of peer ids requesting blocks |