1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-16 10:19:27 +02:00
RedMew/map_gen/Diggy/Feature/SimpleRoomGenerator.lua

96 lines
3.1 KiB
Lua
Raw Normal View History

2018-09-08 18:29:27 +02:00
--[[-- info
Provides the ability to make a simple room with contents
]]
-- dependencies
2018-09-25 21:34:36 +02:00
local Template = require 'map_gen.Diggy.Template'
local Perlin = require 'map_gen.shared.perlin_noise'
local Event = require 'utils.event'
local Debug = require'map_gen.Diggy.Debug'
local Task = require 'utils.Task'
local Token = require 'utils.global_token'
2018-09-08 18:29:27 +02:00
-- this
local SimpleRoomGenerator = {}
local do_spawn_tile = Token.register(function(params)
Template.insert(params.surface, {params.tile}, {})
end)
local do_mine = Token.register(function(params)
local sand_rocks = params.surface.find_entities_filtered({position = params.position, name = 'sand-rock-big'})
if (0 == #sand_rocks) then
Debug.printPosition(params.position, 'missing rock when trying to mine.')
return
end
for _, rock in pairs(sand_rocks) do
rock.die()
end
end)
local function handle_noise(name, surface, position)
Task.set_timeout_in_ticks(1, do_mine, {surface = surface, position = position})
if ('water' == name) then
-- water is slower because for some odd reason it doesn't always want to mine it properly
2018-10-07 19:59:37 +02:00
Task.set_timeout_in_ticks(4, do_spawn_tile, { surface = surface, tile = { name = 'deepwater-green', position = position}})
return
end
if ('dirt' == name) then
return
end
error('No noise handled for type \'' .. name .. '\'')
end
2018-09-08 18:29:27 +02:00
--[[--
Registers all event handlers.
]]
local room_noise_minimum_distance_sq
2018-10-07 17:05:59 +02:00
function SimpleRoomGenerator.register(config)
room_noise_minimum_distance_sq = config.room_noise_minimum_distance * config.room_noise_minimum_distance
2018-09-25 21:34:36 +02:00
local function get_noise(surface, x, y)
local seed = surface.map_gen_settings.seed + surface.index
return Perlin.noise(x * config.noise_variance, y * config.noise_variance, seed)
end
Event.add(Template.events.on_void_removed, function (event)
local position = event.old_tile.position
local distance_sq = position.x^2 + position.y^2
if (distance_sq <= room_noise_minimum_distance_sq) then
return
end
local noise = get_noise(event.surface, position.x, position.y)
for _, noise_range in pairs(config.room_noise_ranges) do
if (noise >= noise_range.min and noise <= noise_range.max) then
handle_noise(noise_range.name, event.surface, position)
end
end
2018-09-25 21:34:36 +02:00
end)
if (config.enable_noise_grid) then
Event.add(defines.events.on_chunk_generated, function (event)
for x = event.area.left_top.x, event.area.left_top.x + 31 do
for y = event.area.left_top.y, event.area.left_top.y + 31 do
Debug.print_grid_value(get_noise(event.surface, x, y), event.surface, {x = x, y = y})
end
end
end)
end
2018-09-08 18:29:27 +02:00
end
2018-10-07 17:05:59 +02:00
function SimpleRoomGenerator.get_extra_map_info(config)
return 'Simple Room Generator, digging around might open rooms!'
end
2018-09-08 18:29:27 +02:00
return SimpleRoomGenerator