aboutsummaryrefslogtreecommitdiff
path: root/src/mapgen_v6.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix all warnings and remove -Wno-unused-but-set cflagkwolekr2015-01-181-1/+0
|
* Mapgen V6: Re-enable liquid flowingkwolekr2015-01-071-1/+1
|
* Lighting: Fix nearly all issueskwolekr2015-01-041-3/+2
| | | | | | | | | | | 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.
* MgV5/6/7: Generate dungeons above water levelparamat2015-01-011-1/+1
| | | | | | Use/add stone_surface_max_y to speed-optimise/guide dungeon generation MgV7: Don't let mountain terrain chop dungeons at mapchunk borders Make mountain terrain update stone_surface_max_y for caves in mountains
* Fix some lingering code style issueskwolekr2014-12-291-23/+46
|
* Mapgens: Rename m_emerge to prevent name collisionskwolekr2014-12-121-3/+3
|
* Clean up Noise macroskwolekr2014-12-111-31/+11
|
* Noise: Automatically transform noise maps if neededkwolekr2014-12-101-5/+1
|
* Noise: Create a deep copy of NoiseParamskwolekr2014-12-101-18/+18
|
* Add flags and lacunarity as new noise parameterskwolekr2014-12-071-11/+11
| | | | | | | Add 'absolute value' option to noise map functions Extend persistence modulation to 3D noise Extend 'eased' option to noise2d_perlin* functions Some noise.cpp formatting fixups
* Rewrite generate notification mechanismkwolekr2014-12-061-57/+49
| | | | | | | 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-4/+4
|
* Add Generator Element Management frameworkkwolekr2014-11-121-8/+2
| | | | Add BiomeManager, OreManager, DecorationManager, and SchematicManager
* Split up mapgen.cppkwolekr2014-11-011-0/+2
|
* mapgen: Resolve nodes in ctor rather than makeChunkkwolekr2014-10-301-27/+31
|
* Make flag strings clear specified flag with 'no' prefixkwolekr2014-02-081-9/+9
| | | | | Remove flagmask field from set_mapgen_params table Add small bits of needed documentation
* Remove blank default values for emergequeue_limit_* settingskwolekr2014-02-051-3/+3
| | | | | Add checks for invalid user input for important settings Rename Settings::tryGet* to Settings::get*NoEx for consistency
* Revert "Fix settings to honor numeric conversion errors"kwolekr2014-02-051-3/+3
| | | | This reverts commit 3f376a092e1c16429fb52f24736e9da98aff4cd5.
* Fix settings to honor numeric conversion errorssapier2014-02-041-3/+3
| | | | Rename try* non exceptioning functions to *NoEx
* Huge overhaul of the entire MapgenParams systemkwolekr2014-02-031-47/+89
| | | | | | 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.
* Mapgen V6: Add flag to stop mud flowkwolekr2014-01-121-1/+2
|
* Add map feature generation notify Lua APIkwolekr2013-12-141-8/+11
|
* Dungeongen: Create dungeon gen tuneables; add desert temples for Mapgen V6kwolekr2013-12-071-1/+39
|
* Mapgen V6: Respect water_level settingkwolekr2013-11-211-2/+2
|
* Add Lua on_mapgen_init callback, and minetest.set_mapgen_params APIkwolekr2013-06-271-2/+3
|
* Decoration: Place decorations in mgv6, check if air or cignore before placementkwolekr2013-06-171-0/+6
|
* Add initial Decoration support, many misc. improvements & modificationskwolekr2013-06-171-20/+3
|
* Fix nearly all warningskwolekr2013-05-191-2/+0
|
* Remove no virtual dtor warnings, make MapgenParams contain actual NoiseParamskwolekr2013-05-191-12/+12
|
* Enhance caves for mgv7, add ravineskwolekr2013-04-271-1/+1
|
* Class-ify caves & move to cavegen.cpp, fix cave regression, add caves to ↵kwolekr2013-04-211-260/+8
| | | | Mapgen V7
* Add param2 field for ores, some minor fixes and misc. code cleanupkwolekr2013-04-071-1/+1
|
* Fix black tree leaves, reduce above-ground cave shadowskwolekr2013-04-071-1/+2
|
* Fix MapgenV6::generateCaves possible division by 0 and misc. cosmetic fixeskwolekr2013-03-301-15/+21
|
* Add Ore infrastructure and l_register_ore()kwolekr2013-03-241-4/+10
|
* Mapgen indev: float islands, larger far biomesproller2013-03-241-0/+2
|
* Add jungle grass to jungleskwolekr2013-03-171-8/+48
|
* Some minor cleanups from the last commitkwolekr2013-03-161-5/+5
|
* initial mapgen indev version with farscale feature and huge cavesproller2013-03-161-33/+39
|
* Re-add jungles, apple treeskwolekr2013-03-161-22/+59
|
* Clean up Mapgenkwolekr2013-03-111-971/+637
|
* Migrate to STL containers/algorithms.Ilya Zhuravlev2013-03-111-2/+2
|
* Re-add dungeons in new dungeongen.cppkwolekr2013-03-101-0/+9
|
* Misc. cleanup and minor fixeskwolekr2013-02-251-6/+1
|
* Add emerge.cpp, initial EmergeThread changeskwolekr2013-02-251-0/+1
| | | | | | | - 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
* Update Copyright YearsSfan52013-02-241-1/+1
|
* Change Minetest-c55 to MinetestPilzAdam2013-02-241-1/+1
|
* Add flag string settings, flat map optionkwolekr2013-02-061-25/+37
|
* Make mapgen factory setup more elegant, add mapgen_v6.hkwolekr2013-01-231-1/+21
|
* Fix MapgenV6::getGroundLevelAtPoint()kwolekr2013-01-211-2/+33
|