1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/maps/danger_ores/modules/water.lua

41 lines
1.1 KiB
Lua
Raw Normal View History

2020-09-02 13:26:19 +02:00
local Perlin = require 'map_gen.shared.perlin_noise'
local seed_provider = require 'map_gen.maps.danger_ores.modules.seed_provider'
local b = require 'map_gen.shared.builders'
local perlin_noise = Perlin.noise
return function(config)
local scale = config.water_scale or 1 / 96
local water_threshold = config.water_threshold or 0.5
local deepwater_threshold = config.deepwater_threshold or 0.55
2020-09-13 15:51:46 +02:00
local scale_function
if type(scale) == 'function' then
scale_function = scale
else
scale_function = function()
return scale
end
end
2020-09-02 13:26:19 +02:00
local no_water_shape = config.no_water_shape or b.circle(96)
local seed = config.water_seed or seed_provider()
2020-09-13 15:51:46 +02:00
return function(x, y, world)
if no_water_shape(x, y, world) then
2020-09-02 13:26:19 +02:00
return false
end
2020-09-13 15:51:46 +02:00
local s = scale_function(x, y, world)
local water_noise = perlin_noise(x * s, y * s, seed)
2020-09-02 13:26:19 +02:00
if water_noise >= deepwater_threshold then
return 'deepwater'
elseif water_noise >= water_threshold then
return 'water'
end
return false
end
end