2018-09-08 18:29:27 +02:00
|
|
|
--[[-- info
|
|
|
|
Provides the ability to create a pre-configured starting zone.
|
|
|
|
]]
|
|
|
|
|
|
|
|
-- dependencies
|
|
|
|
local Event = require 'utils.event'
|
|
|
|
local Token = require 'utils.global_token'
|
2018-09-14 22:12:55 +02:00
|
|
|
local Mask = require 'map_gen.Diggy.Mask'
|
2018-09-26 22:15:39 +02:00
|
|
|
local StressMap = require 'map_gen.Diggy.StressMap'
|
2018-09-14 22:12:55 +02:00
|
|
|
local Template = require 'map_gen.Diggy.Template'
|
2018-09-26 22:15:39 +02:00
|
|
|
local Debug = require 'map_gen.Diggy.Debug'
|
2018-09-08 18:29:27 +02:00
|
|
|
|
|
|
|
-- this
|
|
|
|
local StartingZone = {}
|
|
|
|
|
|
|
|
--[[--
|
|
|
|
Registers all event handlers.
|
|
|
|
]]
|
|
|
|
function StartingZone.register(config)
|
|
|
|
local callback_token
|
2018-09-27 20:56:29 +02:00
|
|
|
local starting_zone_size = config.features.StartingZone.starting_size
|
2018-09-08 18:29:27 +02:00
|
|
|
|
|
|
|
local function on_chunk_generated(event)
|
2018-09-14 21:42:58 +02:00
|
|
|
local start_point_area = {{-1, -1}, {0, 0}}
|
|
|
|
|
|
|
|
-- hack to figure out whether the important chunks are generated via Diggy.Feature.RefreshMap.
|
|
|
|
if (4 ~= #event.surface.find_tiles_filtered({start_point_area, name='lab-dark-1'})) then
|
2018-09-08 18:29:27 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2018-09-14 21:42:58 +02:00
|
|
|
-- ensure a clean starting point
|
|
|
|
for _, entity in pairs(event.surface.find_entities(start_point_area)) do
|
|
|
|
if (entity.type ~= 'player') then
|
|
|
|
entity.destroy()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-08 18:29:27 +02:00
|
|
|
local tiles = {}
|
|
|
|
local rocks = {}
|
|
|
|
|
2018-09-27 20:56:29 +02:00
|
|
|
Mask.circle(0, 0, starting_zone_size, function(x, y, tile_distance_to_center)
|
|
|
|
if (tile_distance_to_center > math.floor(starting_zone_size / 2)) then
|
2018-09-26 22:15:39 +02:00
|
|
|
table.insert(tiles, {name = 'dirt-' .. math.random(1, 7), position = {x = x, y = y}})
|
|
|
|
else
|
|
|
|
table.insert(tiles, {name = 'stone-path', position = {x = x, y = y}})
|
|
|
|
end
|
2018-09-08 18:29:27 +02:00
|
|
|
|
2018-09-27 20:56:29 +02:00
|
|
|
if (tile_distance_to_center > starting_zone_size - 2) then
|
2018-09-11 22:15:02 +02:00
|
|
|
table.insert(rocks, {name = 'sand-rock-big', position = {x = x, y = y}})
|
2018-09-08 18:29:27 +02:00
|
|
|
end
|
2018-09-26 22:15:39 +02:00
|
|
|
|
2018-09-27 20:56:29 +02:00
|
|
|
if (tile_distance_to_center > math.floor(starting_zone_size / 10)) then
|
2018-09-26 22:15:39 +02:00
|
|
|
Mask.blur(x, y, -0.3, function (x, y, fraction)
|
|
|
|
StressMap.add(event.surface, {x = x, y = y}, fraction)
|
|
|
|
end)
|
|
|
|
end
|
2018-09-08 18:29:27 +02:00
|
|
|
end)
|
|
|
|
|
2018-09-13 23:07:38 +02:00
|
|
|
Template.insert(event.surface, tiles, rocks)
|
2018-09-08 18:29:27 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
--[[--
|
|
|
|
Initializes the Feature.
|
|
|
|
|
|
|
|
@param config Table {@see Diggy.Config}.
|
|
|
|
]]
|
|
|
|
function StartingZone.initialize(config)
|
|
|
|
local surface = game.surfaces.nauvis
|
|
|
|
|
2018-09-14 21:42:58 +02:00
|
|
|
surface.daytime = config.features.StartingZone.daytime
|
2018-09-08 18:29:27 +02:00
|
|
|
surface.freeze_daytime = 1
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return StartingZone
|