aboutsummaryrefslogtreecommitdiff
path: root/src/mapgen.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix all warnings and remove -Wno-unused-but-set cflagkwolekr2015-01-181-1/+0
|
* Prevent transform of noise3d result in getBlockSeed2kwolekr2015-01-121-1/+3
|
* Optionally specify propagateSunlight area in calcLightingkwolekr2015-01-051-1/+14
| | | | This fixes the Mapgen V5 calcLighting segfault
* Add minetest.generate_ores() and minetest.generate_decorations()kwolekr2015-01-041-0/+1
|
* Lighting: Fix nearly all issueskwolekr2015-01-041-12/+36
| | | | | | | | | | | The cause of a single light source seemingly being lit without spread was due to its creation in the +Y mapblock boundary layer during map generation, which was ignored as the overtop. This overtop explicitly needs to be omitted during sunlight propagation, however. To accomplish this, Mapgen::calcLighting() was split into separate functions taking separate parameters. Additionally, do not diminish light too early during spread. This fixes the output inconsistency between Map::updateLighting and Mapgen::calcLighting.
* Mapgen: Use getBlockSeed2() for blockseeds (much better uniformity)kwolekr2014-12-291-0/+15
|
* Redefine NodeResolver interface and replace with callback mechanismkwolekr2014-12-271-1/+1
|
* Add minetest.clear_registered_decorations() and clear_registered_ores()kwolekr2014-12-121-0/+7
|
* Add minetest.clear_registered_biomes() apikwolekr2014-12-061-7/+8
|
* Rewrite generate notification mechanismkwolekr2014-12-061-18/+109
| | | | | | | Add support for notify-on-decoration Clean up mapgen constructors Clean up mapgen.cpp code style somewhat Remove trailing whitespace from some files
* Fix warnings and other misc. minor changeskwolekr2014-11-141-1/+1
|
* Add Generator Element Management frameworkkwolekr2014-11-121-7/+77
| | | | Add BiomeManager, OreManager, DecorationManager, and SchematicManager
* Split up mapgen.cppkwolekr2014-11-011-764/+1
|
* Refactor decoration-related codekwolekr2014-10-291-54/+51
| | | | | Split up ModApiMapgen::l_register_decoration() Define and make use of CONTAINS() and ARRLEN() macros
* Add NodeResolver and clean up node name -> content ID resolution systemkwolekr2014-10-261-117/+53
|
* Split settings into seperate source and header filesShadowNinja2014-09-211-1/+1
| | | | This also cleans up settings a bit
* Fix warningsproller2014-04-191-1/+1
|
* Remove liquid_finite and weatherproller2014-04-181-4/+2
|
* Schematic: Add force_placement parameter to minetest.place_structure APIkwolekr2014-02-151-2/+2
|
* Make flag strings clear specified flag with 'no' prefixkwolekr2014-02-081-6/+6
| | | | | Remove flagmask field from set_mapgen_params table Add small bits of needed documentation
* Huge overhaul of the entire MapgenParams systemkwolekr2014-02-031-71/+1
| | | | | | 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.
* Schematic: Read slice probability table from schematic descriptorskwolekr2014-01-191-0/+1
|
* Mapgen V6: Add flag to stop mud flowkwolekr2014-01-121-0/+1
|
* Add map feature generation notify Lua APIkwolekr2013-12-141-0/+19
|
* EmergeManager: Fix Lua mapgen override param handlingkwolekr2013-12-081-69/+69
|
* Decoration: Add schematic Y-slice probability supportkwolekr2013-12-011-39/+76
|
* Decoration: Stop DecoSimple::resolveNodeNames from complaining about no node ↵kwolekr2013-11-171-2/+2
| | | | | | | | name if decolist is used Fix warning message for spawnby nodes Prevent type-punning warning caused by casting enum to int
* Omnicleanup: header cleanup, add ModApiUtil shared between game and mainmenuKahrl2013-08-141-0/+1
|
* Dont write directly to files but rather write and copy a tmp filePilzAdam2013-08-131-7/+10
|
* Remove farmeshKahrl2013-08-131-30/+0
|
* Decoration: Fix schematic probability mess with new MTS file versionkwolekr2013-08-111-13/+43
|
* Add replacements to schematicsPilzAdam2013-08-031-1/+6
|
* Allow multiple 'wherein' nodes in oredefPilzAdam2013-08-021-13/+14
|
* Weather backward compatibilityproller2013-08-021-2/+2
|
* Decoration: Handle facedir and wallmounted param2types with schematic rotationkwolekr2013-07-081-2/+7
|
* Decoration: Remove usage of multi-character constantskwolekr2013-07-061-2/+2
|
* Mapgen V7: Huge rewrite, also tweaks to cavegen et al.kwolekr2013-07-061-5/+18
|
* Decoration: Add schematic rotation supportkwolekr2013-07-011-41/+74
|
* Optimize liquid queue on generate map for liquid_finiteproller2013-06-301-3/+5
|
* Make generated water a shade darker to match up with older versionskwolekr2013-06-281-6/+6
|
* Add Lua on_mapgen_init callback, and minetest.set_mapgen_params APIkwolekr2013-06-271-0/+1
|
* Decoration: Add support for zero probability, fix breakage from last commitkwolekr2013-06-221-3/+15
|
* A handful of minor fixes to various thingskwolekr2013-06-221-6/+4
|
* Decoration: Add Schematic decoration typekwolekr2013-06-221-6/+313
|
* Decoration: Place decorations in mgv6, check if air or cignore before placementkwolekr2013-06-171-3/+8
|
* Decoration, Ore: Resolve node names on Mapgen initkwolekr2013-06-171-4/+0
|
* Decoration: Change divlen to sidelenkwolekr2013-06-171-2/+8
|
* Add initial Decoration support, many misc. improvements & modificationskwolekr2013-06-171-35/+343
|
* Remove no virtual dtor warnings, make MapgenParams contain actual NoiseParamskwolekr2013-05-191-27/+25
|
* Add param2 field for ores, some minor fixes and misc. code cleanupkwolekr2013-04-071-42/+22
|