aboutsummaryrefslogtreecommitdiff
path: root/android
Commit message (Collapse)AuthorAge
* Move build/android directory to root of project (#11283)NeroBurner2021-06-21
| | | | | | | | * C++11 patchset 10: continue cleanup on constructors * Drop obsolete bool MainMenuData::enable_public (setting is called with cURL in server loop) * More classes cleanup * More classes cleanup + change NULL tests to boolean tests * Mapgen files: Update and correct copyright creditsparamat2017-05-26 | * MapgenBasic: Add lava source as commonly used content (#5512)Paramat2017-04-04 | | | | Future mapgens are likely to use this for magma and volcanos. Remove the getting of lava source content id in mgvalleys. * Map generation limit: Make per-worldparamat2017-03-27 | | | | | | | | | | | The setting limits map generation but affects nothing else. Add 'mapgen_limit' to global mapgen parameters. Move 'blockpos_over_mapgen_limit()' to the only place it is called from: map.cpp. Allow teleportation to any part of the world even if over the set mapgen limit. Simplify the reading of this limit in mgvalleys. Remove the 'map_generation_limit' setting. * Add MapSettingsManager and new mapgen setting script API functionskwolekr2016-07-03 | | | | | | | | | | | | | | | 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. * Mapgen: Refactor mapgen creation and managementkwolekr2016-07-03 | | | | | | - 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 * Random misc. warning fixes and cleanupskwolekr2016-06-11 | | | | | | - Fix unused c_sand member warning in Valleys Mapgen - Fix some code style - Make some std::string params const ref * Mapgen: Combine dungeon generation codekwolekr2016-05-27 |