mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-14 10:13:13 +02:00
84 lines
2.7 KiB
Lua
84 lines
2.7 KiB
Lua
--[[-- info
|
|
Provides the ability to create a pre-configured starting zone.
|
|
]]
|
|
-- dependencies
|
|
local Event = require 'utils.event'
|
|
local Token = require 'utils.global_token'
|
|
local Template = require 'map_gen.Diggy.Template'
|
|
local Debug = require 'map_gen.Diggy.Debug'
|
|
local DiggyCaveCollapse = require 'map_gen.Diggy.Feature.DiggyCaveCollapse'
|
|
local insert = table.insert
|
|
local random = math.random
|
|
local sqrt = math.sqrt
|
|
local floor = math.floor
|
|
|
|
-- this
|
|
local StartingZone = {}
|
|
|
|
--[[--
|
|
Registers all event handlers.
|
|
]]
|
|
function StartingZone.register(config)
|
|
local callback_token
|
|
local starting_zone_size = config.starting_size
|
|
|
|
local function on_chunk_generated(event)
|
|
local start_point_area = {{-0.9, -0.9}, {0.9, 0.9}}
|
|
local surface = event.surface
|
|
|
|
-- hack to figure out whether the important chunks are generated via Diggy.Feature.RefreshMap.
|
|
if (4 ~= surface.count_tiles_filtered({start_point_area, name = 'lab-dark-1'})) then
|
|
return
|
|
end
|
|
|
|
-- ensure a clean starting point
|
|
for _, entity in pairs(surface.find_entities_filtered({area = start_point_area, type = 'resource'})) do
|
|
entity.destroy()
|
|
end
|
|
|
|
local tiles = {}
|
|
local rocks = {}
|
|
|
|
for x = -starting_zone_size, starting_zone_size do
|
|
for y = -starting_zone_size, starting_zone_size do
|
|
local distance = floor(sqrt(x * x + y * y))
|
|
|
|
if (distance < starting_zone_size) then
|
|
if (distance > floor(starting_zone_size / 2)) then
|
|
insert(tiles, {name = 'dirt-' .. random(1, 7), position = {x = x, y = y}})
|
|
else
|
|
insert(tiles, {name = 'stone-path', position = {x = x, y = y}})
|
|
end
|
|
|
|
if (distance > starting_zone_size - 2) then
|
|
insert(rocks, {name = 'sand-rock-big', position = {x = x, y = y}})
|
|
end
|
|
|
|
-- hack to avoid starting area from collapsing
|
|
if (distance > floor(starting_zone_size / 10)) then
|
|
DiggyCaveCollapse.stress_map_add(surface, {x = x, y = y}, -0.3)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Template.insert(event.surface, tiles, rocks)
|
|
|
|
Event.remove_removable(defines.events.on_chunk_generated, callback_token)
|
|
end
|
|
|
|
callback_token = Token.register(on_chunk_generated)
|
|
|
|
Event.add_removable(defines.events.on_chunk_generated, callback_token)
|
|
end
|
|
|
|
function StartingZone.on_init()
|
|
local surface = game.surfaces.nauvis
|
|
|
|
surface.daytime = 0.5
|
|
surface.freeze_daytime = 1
|
|
end
|
|
|
|
|
|
return StartingZone
|