Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Clean up numeric.h and split FacePositionCache from it | ShadowNinja | 2017-05-06 |
| | | | | | I also optiized FacePositionCache a bit: I removed a map lookup and vector copy from both branches of getFacePosition. | ||
* | Permit usage of std::unordered_map & std::unorderered_set on c++11 compilers ↵ | Ner'zhul | 2016-08-10 |
| | | | | | | | | | (#4430) This fallback to std::map & std::set for older compilers Use UNORDERED_SET as an example in decoration and ore biome sets Use UNORDERED_MAP as an example in nameidmapping | ||
* | Sheet Ore: Eliminate crash caused by PcgRandom range max < min | paramat | 2016-02-23 |
| | | | | | | | | | | | | In the calculation of y_start, when 'column height max' was large it caused nmin.Y + max_height > nmax.Y - max_height Now, in this situation y_start is set to the midpoint between nmin.Y and nmax.Y Limit y0 and y1 to between nmin.Y and nmax.Y, otherwise index calculation, which has no checks for limits, places them at unwanted locations in the voxelmanip | ||
* | Convert usages of PseudoRandom to PcgRandom for ore and deco placement | kwolekr | 2015-11-09 |
| | | | | In addition to being a better random, this fixes #3228 | ||
* | Blob ore: Fix partial blobs | paramat | 2015-09-19 |
| | |||
* | Ore: Add puff ore type | kwolekr | 2015-09-17 |
| | |||
* | Ore: Add ore sheet column height range selection | kwolekr | 2015-09-13 |
| | | | | | | | | Modders are now able to select the range of ore column height, and the midpoint at which they 'grow' starting from. This commit adds three new parameters for the 'sheet' ore type: column_height_min, column_height_max, and column_midpoint_factor. clust_size is now deprecated for this ore type. | ||
* | Ores: change ore chance in clusters to better respect clust_num_ores for ↵ | Gael-de-Sailly | 2015-08-29 |
| | | | | dense clusters | ||
* | Fix sign-compare compiler warnings in mg_ore.cpp | ShadowNinja | 2015-04-20 |
| | |||
* | Ore: Add biomes parameter | kwolekr | 2015-04-20 |
| | |||
* | Schematics: Refactor NodeResolver and add NodeResolveMethod | kwolekr | 2015-04-16 |
| | | | | | | | | | NodeResolver name lists now belong to the NodeResolver object instead of the associated NodeDefManager. In addition to minimizing unnecessary abstraction and overhead, this move permits NodeResolvers to look up nodes that they had previously set pending for resolution. So far, this functionality has been used in the case of schematics for serialization/deserialization. | ||
* | GenElementManager: Pass opaque handles to Lua and rename to ObjDefManager | kwolekr | 2015-03-31 |
| | | | | Add core.clear_registered_schematics() and refactor schematics somewhat | ||
* | Add support for the PCG32 PRNG algo (and associated script APIs) | kwolekr | 2015-03-22 |
| | |||
* | Initialize noise ptr on creation (fixes crash if OreVein deleted before use) | kwolekr | 2015-01-15 |
| | |||
* | Shorten ManualMapVoxelManipulator to MMVManip | kwolekr | 2015-01-05 |
| | |||
* | Add minetest.generate_ores() and minetest.generate_decorations() | kwolekr | 2015-01-04 |
| | |||
* | Replace instances of height_min/height_max with y_min/y_max to remove ambiguity | kwolekr | 2014-12-30 |
| | |||
* | Ore: Add Vein ore type | kwolekr | 2014-12-28 |
| | |||
* | Ore: Add Blob ore type | kwolekr | 2014-12-28 |
| | |||
* | Redefine NodeResolver interface and replace with callback mechanism | kwolekr | 2014-12-27 |
| | |||
* | Add minetest.clear_registered_decorations() and clear_registered_ores() | kwolekr | 2014-12-12 |
| | |||
* | Remove get_noiseparams function. read_noiseparams should be used from now on | kwolekr | 2014-12-10 |
| | |||
* | Noise: Create a deep copy of NoiseParams | kwolekr | 2014-12-10 |
| | |||
* | Rewrite generate notification mechanism | kwolekr | 2014-12-06 |
| | | | | | | | 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 changes | kwolekr | 2014-11-14 |
| | |||
* | Add Generator Element Management framework | kwolekr | 2014-11-12 |
| | | | | Add BiomeManager, OreManager, DecorationManager, and SchematicManager | ||
* | Split up mapgen.cpp | kwolekr | 2014-11-01 |