1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/map_gen/Diggy/Template.lua

215 lines
6.5 KiB
Lua
Raw Normal View History

-- dependencies
2018-09-30 17:14:45 +02:00
local Task = require 'utils.Task'
local Token = require 'utils.global_token'
local Debug = require 'map_gen.Diggy.Debug'
local insert = table.insert
local min = math.min
local ceil = math.ceil
2018-10-11 20:13:42 +02:00
local raise_event = script.raise_event
2018-09-30 17:14:45 +02:00
2018-09-08 18:29:27 +02:00
-- this
local Template = {}
2018-09-30 17:14:45 +02:00
local tiles_per_call = 5 --how many tiles are inserted with each call of insert_action
local entities_per_call = 5 --how many entities are inserted with each call of insert_action
2018-09-30 17:14:45 +02:00
2018-09-08 18:29:27 +02:00
Template.events = {
--[[--
When an entity is placed via the template function.
- event.entity LuaEntity
]]
on_placed_entity = script.generate_event_name(),
--[[--
Triggers when an 'out-of-map' tile is replaced by something else.
{surface, old_tile={name, position={x, y}}}
]]
on_void_removed = script.generate_event_name(),
2018-09-08 18:29:27 +02:00
}
2018-09-30 17:14:45 +02:00
local function insert_next_tiles(data)
local void_removed = {}
2018-09-30 17:14:45 +02:00
local surface = data.surface
2018-10-11 20:13:42 +02:00
local get_tile = surface.get_tile
2018-09-30 17:14:45 +02:00
local tiles = {}
pcall(
function()
--use pcall to assure tile_iterator is always incremented, to avoid endless loops
for i = data.tile_iterator, min(data.tile_iterator + tiles_per_call - 1, data.tiles_n) do
local new_tile = data.tiles[i]
insert(tiles, new_tile)
2018-10-11 20:13:42 +02:00
local current_tile = get_tile(new_tile.position.x, new_tile.position.y)
local current_is_void = current_tile.name == 'out-of-map'
local new_is_void = new_tile.name == 'out-of-map'
if (current_is_void and not new_is_void) then
insert(
void_removed,
{surface = surface, old_tile = {name = current_tile.name, position = current_tile.position}}
)
end
2018-09-30 17:14:45 +02:00
end
end
)
2018-09-08 18:29:27 +02:00
2018-09-30 17:14:45 +02:00
data.tile_iterator = data.tile_iterator + tiles_per_call
surface.set_tiles(tiles)
for _, event in pairs(void_removed) do
2018-10-11 20:13:42 +02:00
raise_event(Template.events.on_void_removed, event)
end
2018-09-30 17:14:45 +02:00
end
2018-09-30 17:14:45 +02:00
local function insert_next_entities(data)
2018-09-12 23:13:54 +02:00
local created_entities = {}
2018-09-30 17:14:45 +02:00
local surface = data.surface
2018-10-11 20:13:42 +02:00
local create_entity = surface.create_entity
2018-09-12 23:13:54 +02:00
pcall(
function()
--use pcall to assure tile_iterator is always incremented, to avoid endless loops
for i = data.entity_iterator, min(data.entity_iterator + entities_per_call - 1, data.entities_n) do
local entity = data.entities[i]
2018-10-11 20:13:42 +02:00
local created_entity = create_entity(entity)
if (nil == created_entity) then
error('Failed creating entity ' .. entity.name .. ' on surface.')
end
insert(created_entities, created_entity)
2018-09-30 17:14:45 +02:00
end
2018-09-14 21:42:58 +02:00
end
)
2018-09-14 21:42:58 +02:00
2018-09-30 17:14:45 +02:00
data.entity_iterator = data.entity_iterator + entities_per_call
2018-09-12 23:13:54 +02:00
for _, entity in pairs(created_entities) do
2018-10-11 20:13:42 +02:00
raise_event(Template.events.on_placed_entity, {entity = entity})
2018-09-08 18:29:27 +02:00
end
2018-09-30 17:14:45 +02:00
return data.entity_iterator <= data.entities_n
end
local function insert_action(data)
if data.tile_iterator <= data.tiles_n then
insert_next_tiles(data)
return true
end
return insert_next_entities(data)
2018-09-30 17:14:45 +02:00
end
local insert_token = Token.register(insert_action)
--[[--
Inserts a batch of tiles and then entities.
@see LuaSurface.set_tiles
@see LuaSurface.entity
@param surface LuaSurface to put the tiles and entities on
@param tiles table of tiles as required by set_tiles
@param entities table of entities as required by create_entity
]]
function Template.insert(surface, tiles, entities)
tiles = tiles or {}
entities = entities or {}
2018-09-30 17:14:45 +02:00
local tiles_n = #tiles
local entities_n = #entities
local total_calls = ceil(tiles_n / tiles_per_call) + (entities_n / entities_per_call)
2018-09-30 17:14:45 +02:00
local data = {
tiles_n = tiles_n,
tile_iterator = 1,
entities_n = entities_n,
entity_iterator = 1,
surface = surface,
tiles = tiles,
entities = entities
}
2018-09-30 18:46:08 +02:00
local continue = true
for i = 1, 4 do
continue = insert_action(data)
if not continue then
return
end
2018-09-30 18:46:08 +02:00
end
2018-10-11 20:13:42 +02:00
2018-09-30 18:46:08 +02:00
if continue then
Task.queue_task(insert_token, data, total_calls - 4)
end
2018-09-08 18:29:27 +02:00
end
--[[--
Designed to spawn aliens, uses find_non_colliding_position.
@see LuaSurface.entity
@param surface LuaSurface to put the tiles and entities on
@param units table of entities as required by create_entity
@param non_colliding_distance int amount of tiles to scan around original position in case it's already taken
]]
function Template.units(surface, units, non_colliding_distance)
non_colliding_distance = non_colliding_distance or 1
2018-10-11 20:13:42 +02:00
local create_entity = surface.create_entity
local find_non_colliding_position = surface.find_non_colliding_position
for _, entity in pairs(units) do
2018-10-11 20:13:42 +02:00
local position = find_non_colliding_position(entity.name, entity.position, non_colliding_distance, 1)
if (nil ~= position) then
entity.position = position
2018-10-11 20:13:42 +02:00
create_entity(entity)
else
2018-10-11 20:13:42 +02:00
Debug.printPosition(entity.position, "Failed to spawn '" .. entity.name .. "'")
end
end
end
--[[--
Designed to spawn resources.
@see LuaSurface.entity
@param surface LuaSurface to put the tiles and entities on
@param resources table of entities as required by create_entity
]]
function Template.resources(surface, resources)
2018-10-11 20:13:42 +02:00
local create_entity = surface.create_entity
for _, entity in pairs(resources) do
2018-10-11 20:13:42 +02:00
create_entity(entity)
end
end
2018-10-06 15:53:28 +02:00
--[[--
Designed to spawn a market.
@param surface LuaSurface
@param position Position
@param force LuaForce
@param currency_item string
@param market_items Table
]]
function Template.market(surface, position, force, currency_item, market_inventory)
local market = surface.create_entity({name = 'market', position = position})
2018-10-11 20:13:42 +02:00
local add_market_item = market.add_market_item
2018-10-06 15:53:28 +02:00
market.destructible = false
for _, item in ipairs(market_inventory) do
2018-10-11 20:13:42 +02:00
add_market_item(item)
2018-10-06 15:53:28 +02:00
end
force.add_chart_tag(surface, {
icon = {type = 'item', name = currency_item},
text = ' Market',
position = position,
})
2018-10-11 20:13:42 +02:00
raise_event(Template.events.on_placed_entity, {entity = market})
2018-10-06 15:53:28 +02:00
end
2018-09-08 18:29:27 +02:00
return Template