Skip to content
Snippets Groups Projects
  1. Oct 05, 2016
  2. Jul 03, 2016
    • kwolekr's avatar
      Add MapSettingsManager and new mapgen setting script API functions · 3c63c304
      kwolekr authored
      This commit refactors the majority of the Mapgen settings system.
      - MapgenParams is now owned by MapSettingsManager, itself a part of ServerMap,
        instead of the EmergeManager.
      - New Script API functions added:
          core.get_mapgen_setting
          core.get_mapgen_setting_noiseparams,
          core.set_mapgen_setting, and
          core.set_mapgen_setting_noiseparams.
      - minetest.get/set_mapgen_params are deprecated by the above new functions.
      - It is now possible to view and modify any arbitrary mapgen setting from a mod,
        rather than the base MapgenParams structure.
      - MapgenSpecificParams has been removed.
      3c63c304
    • kwolekr's avatar
      Mapgen: Refactor mapgen creation and management · 92705306
      kwolekr authored
      - Move mapgen creation logic out of EmergeManager and into Mapgen
      - Internally represent mapgen type as an enum value, instead of a string
      - Remove the need for a MapgenFactory per mapgen
      92705306
  3. May 28, 2016
    • kwolekr's avatar
      Move biome calculation to BiomeGen · 76f48564
      kwolekr authored
      BiomeGen defines an interface that, given a set of BiomeParams, computes biomes
      for a given area using the algorithm implemented by that specific BiomeGen.
      This abstracts away the old system where each mapgen supplied the noises
      required for biome generation.
      76f48564
  4. Feb 09, 2016
    • paramat's avatar
      FindSpawnPos: Let mapgens decide what spawn altitude is suitable · 4adbd69a
      paramat authored
      To avoid spawn search failing in new specialised mapgens
      Increase spawn search range to 4000 nodes
      Add getSpawnLevelAtPoint() functions to EmergeManager, class Mapgen
      and all mapgens
      Remove getGroundLevelAtPoint() functions from all mapgens except mgv6
      (possibly to be re-added later in the correct form to return actual
      ground level)
      Make mgvalleys flag names consistent with other mapgens
      Remove now unused 'vertical spawn range' setting
      4adbd69a
  5. Jan 19, 2016
  6. Jan 14, 2016
  7. Jan 10, 2016
  8. Nov 23, 2015
  9. Nov 11, 2015
  10. Oct 17, 2015
    • kwolekr's avatar
      Refactor Thread class to improve readability and portability · 765a834c
      kwolekr authored
      - Fix some incompatibilities with obscure platforms (AIX and WinCE)
      - Clean up Thread class interface
      - Add m_ prefix to private member variables
      - Simplify platform-dependent logic, reducing preprocessor
        conditional clauses and improving readibility
      - Add Thread class documentation
      765a834c
  11. Oct 14, 2015
  12. Oct 06, 2015
  13. Oct 04, 2015
  14. Sep 23, 2015
  15. Aug 24, 2015
    • ShadowNinja's avatar
      Clean up threading · e4bff8be
      ShadowNinja authored
        * 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.
      e4bff8be
  16. Aug 02, 2015
  17. Apr 27, 2015
  18. Apr 01, 2015
    • Zeno-'s avatar
      Move globals from main.cpp to more sane locations · 9527984d
      Zeno- authored
      Move debug streams to log.cpp|h
      
      Move GUI-related globals to clientlauncher
      
      Move g_settings and g_settings_path to settings.cpp|h
      
      Move g_menuclouds to clouds.cpp|h
      
      Move g_profiler to profiler.cpp|h
      9527984d
  19. Mar 27, 2015
    • ShadowNinja's avatar
      Clean up and tweak build system · 93fcab95
      ShadowNinja authored
        * Combine client and server man pages.
        * Update unit test options and available databases in man page.
        * Add `--worldname` to man page.
        * Fix a bunch of places where `"Minetest"` was used directly instead of `PROJECT_NAME`.
        * Disable server build by default on all operating systems.
        * Make `ENABLE_FREETYPE` not fail if FreeType isn't found.
        * Enable LevelDB, Redis, and FreeType detection by default.
        * Remove the `VERSION_PATCH_ORIG` hack.
        * Add option to search for and use system JSONCPP.
        * Remove broken LuaJIT version detection.
        * Rename `DISABLE_LUAJIT` to `ENABLE_LUAJIT`.
        * Rename `minetest_*` variables in `version.{h,cpp}` to `g_*`.
        * Clean up style of CMake files.
      93fcab95
  20. Mar 07, 2015
  21. Feb 18, 2015
  22. Feb 01, 2015
  23. Jan 28, 2015
  24. Jan 07, 2015
  25. Dec 30, 2014
  26. Dec 29, 2014
  27. Dec 09, 2014
  28. Dec 06, 2014
    • kwolekr's avatar
      Rewrite generate notification mechanism · 5062b99c
      kwolekr authored
      Add support for notify-on-decoration
      Clean up mapgen constructors
      Clean up mapgen.cpp code style somewhat
      Remove trailing whitespace from some files
      5062b99c
  29. Nov 13, 2014
  30. Nov 08, 2014
  31. Nov 02, 2014
  32. Nov 01, 2014
  33. Oct 27, 2014
  34. Sep 21, 2014
Loading