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 Template = require 'map_gen.Diggy.Template'
|
2018-09-26 22:15:39 +02:00
|
|
|
local Debug = require 'map_gen.Diggy.Debug'
|
2018-10-07 13:50:25 +02:00
|
|
|
local DiggyCaveCollapse = require 'map_gen.Diggy.Feature.DiggyCaveCollapse'
|
2018-10-11 19:43:04 +02:00
|
|
|
local insert = table.insert
|
|
|
|
local random = math.random
|
|
|
|
local sqrt = math.sqrt
|
|
|
|
local floor = math.floor
|
2018-09-08 18:29:27 +02:00
|
|
|
|
|
|
|
-- this
|
|
|
|
local StartingZone = {}
|
|
|
|
|
|
|
|
--[[--
|
|
|
|
Registers all event handlers.
|
|
|
|
]]
|
|
|
|
function StartingZone.register(config)
|
|
|
|
local callback_token
|
2018-10-07 17:05:59 +02:00
|
|
|
local starting_zone_size = config.starting_size
|
2018-09-08 18:29:27 +02:00
|
|
|
|
|
|
|
local function on_chunk_generated(event)
|
2018-10-13 00:21:20 +02:00
|
|
|
local start_point_area = {{-0.9, -0.9}, {0.9, 0.9}}
|
2018-10-21 20:15:39 +02:00
|
|
|
local start_point_cleanup = {{-0.9, -0.9}, {1.9, 1.9}}
|
2018-10-11 22:17:25 +02:00
|
|
|
local surface = event.surface
|
2018-09-14 21:42:58 +02:00
|
|
|
|
|
|
|
-- hack to figure out whether the important chunks are generated via Diggy.Feature.RefreshMap.
|
2018-10-11 22:17:25 +02:00
|
|
|
if (4 ~= surface.count_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
|
2018-10-21 20:15:39 +02:00
|
|
|
for _, entity in pairs(surface.find_entities_filtered({area = start_point_cleanup, type = 'resource'})) do
|
2018-09-30 16:46:03 +02:00
|
|
|
entity.destroy()
|
2018-09-14 21:42:58 +02:00
|
|
|
end
|
|
|
|
|
2018-09-08 18:29:27 +02:00
|
|
|
local tiles = {}
|
|
|
|
local rocks = {}
|
|
|
|
|
2018-11-06 19:48:38 +02:00
|
|
|
local dirt_range = floor(starting_zone_size * 0.5)
|
2018-10-17 20:50:07 +02:00
|
|
|
local rock_range = starting_zone_size - 2
|
2018-11-06 19:48:38 +02:00
|
|
|
local stress_hack = floor(starting_zone_size * 0.1)
|
2018-10-17 20:50:07 +02:00
|
|
|
|
2018-10-07 13:50:25 +02:00
|
|
|
for x = -starting_zone_size, starting_zone_size do
|
|
|
|
for y = -starting_zone_size, starting_zone_size do
|
2018-10-11 19:43:04 +02:00
|
|
|
local distance = floor(sqrt(x * x + y * y))
|
2018-10-07 13:50:25 +02:00
|
|
|
|
|
|
|
if (distance < starting_zone_size) then
|
2018-10-17 20:50:07 +02:00
|
|
|
if (distance > dirt_range) then
|
2018-10-11 19:43:04 +02:00
|
|
|
insert(tiles, {name = 'dirt-' .. random(1, 7), position = {x = x, y = y}})
|
2018-10-07 13:50:25 +02:00
|
|
|
else
|
2018-10-11 19:43:04 +02:00
|
|
|
insert(tiles, {name = 'stone-path', position = {x = x, y = y}})
|
2018-10-07 13:50:25 +02:00
|
|
|
end
|
|
|
|
|
2018-10-17 20:50:07 +02:00
|
|
|
if (distance > rock_range) then
|
2018-10-11 19:43:04 +02:00
|
|
|
insert(rocks, {name = 'sand-rock-big', position = {x = x, y = y}})
|
2018-10-07 13:50:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- hack to avoid starting area from collapsing
|
2018-10-17 20:50:07 +02:00
|
|
|
if (distance > stress_hack) then
|
|
|
|
DiggyCaveCollapse.stress_map_add(surface, {x = x, y = y}, -0.5)
|
2018-10-07 13:50:25 +02:00
|
|
|
end
|
|
|
|
end
|
2018-09-08 18:29:27 +02:00
|
|
|
end
|
2018-10-07 13:50:25 +02:00
|
|
|
end
|
2018-09-08 18:29:27 +02:00
|
|
|
|
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)
|
2018-10-07 13:50:25 +02:00
|
|
|
end
|
2018-09-08 18:29:27 +02:00
|
|
|
|
2018-10-07 17:37:29 +02:00
|
|
|
function StartingZone.on_init()
|
|
|
|
local surface = game.surfaces.nauvis
|
|
|
|
|
2018-10-10 23:05:48 +02:00
|
|
|
surface.daytime = 0.5
|
2018-10-07 17:37:29 +02:00
|
|
|
surface.freeze_daytime = 1
|
2018-10-21 20:15:39 +02:00
|
|
|
-- base factorio = pollution_factor = 0.000015
|
|
|
|
game.map_settings.enemy_evolution.pollution_factor = 0.000002
|
2018-10-07 17:37:29 +02:00
|
|
|
end
|
2018-09-08 18:29:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
return StartingZone
|