1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/Diggy/Feature/StartingZone.lua

91 lines
3.1 KiB
Lua
Raw Normal View History

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'
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
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}}
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
for _, entity in pairs(surface.find_entities_filtered({area = start_point_cleanup, type = 'resource'})) do
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)
local rock_range = starting_zone_size - 2
2018-11-06 19:48:38 +02:00
local stress_hack = floor(starting_zone_size * 0.1)
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 > dirt_range) 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 > rock_range) then
insert(rocks, {name = 'sand-rock-big', position = {x = x, y = y}})
end
-- hack to avoid starting area from collapsing
if (distance > stress_hack) then
DiggyCaveCollapse.stress_map_add(surface, {x = x, y = y}, -0.5)
end
end
2018-09-08 18:29:27 +02:00
end
end
2018-09-08 18:29:27 +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
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
surface.daytime = 0.5
2018-10-07 17:37:29 +02:00
surface.freeze_daytime = 1
-- 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