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

255 lines
8.2 KiB
Lua
Raw Normal View History

2018-07-20 23:01:34 +02:00
local Event = require 'utils.event'
2019-01-04 22:02:55 +02:00
local Task = require 'utils.task'
2018-11-26 03:07:03 +02:00
local Token = require 'utils.token'
2018-07-20 23:01:34 +02:00
local Global = require 'utils.global'
2019-01-10 16:34:51 +02:00
local Game = require 'utils.game'
2019-01-11 17:31:32 +02:00
local math = require 'utils.math'
2019-01-10 16:34:51 +02:00
local random = math.random
local set_timeout_in_ticks = Task.set_timeout_in_ticks
2019-01-11 17:31:32 +02:00
local ceil = math.ceil
2018-07-20 23:01:34 +02:00
local no_coin_entity = {}
Global.register(
{no_coin_entity = no_coin_entity},
function(tbl)
no_coin_entity = tbl.no_coin_entity
end
)
local entity_drop_amount = {
--[[['small-biter'] = {low = -62, high = 1},
['small-spitter'] = {low = -62, high = 1},
['medium-biter'] = {low = -14, high = 1},
['medium-spitter'] = {low = -14, high = 1},
['big-biter'] = {low = -2, high = 1},
['big-spitter'] = {low = -2, high = 1},
['behemoth-biter'] = {low = 1, high = 1},
['behemoth-spitter'] = {low = 1, high = 1}, ]]
2019-01-11 17:31:32 +02:00
['biter-spawner'] = {low = 8, high = 24},
['spitter-spawner'] = {low = 8, high = 24},
['small-worm-turret'] = {low = 3, high = 10},
['medium-worm-turret'] = {low = 8, high = 24},
['big-worm-turret'] = {low = 15, high = 30}
2018-07-20 23:01:34 +02:00
}
local spill_items =
Token.register(
function(data)
local stack = {name = 'coin', count = data.count}
data.surface.spill_item_stack(data.position, stack, true)
end
)
local entity_spawn_map = {
2019-01-10 16:34:51 +02:00
['medium-biter'] = {name = 'small-biter', count = 2, chance = 1},
['big-biter'] = {name = 'medium-biter', count = 2, chance = 1},
['behemoth-biter'] = {name = 'big-biter', count = 2, chance = 1},
2019-01-11 17:31:32 +02:00
['medium-spitter'] = {name = 'small-worm-turret', count = 1, chance = 0.2},
['big-spitter'] = {name = 'medium-worm-turret', count = 1, chance = 0.2},
['behemoth-spitter'] = {name = 'big-worm-turret', count = 1, chance = 0.2},
2019-01-10 16:34:51 +02:00
['biter-spawner'] = {type = 'biter', count = 5, chance = 1},
['spitter-spawner'] = {type = 'spitter', count = 5, chance = 1},
2019-01-23 21:15:28 +02:00
['stone-furnace'] = {type = 'cause', count = 2, chance = 1},
['steel-furnace'] = {type = 'cause', count = 2, chance = 1},
['electric-furnace'] = {type = 'cause', count = 4, chance = 1},
['assembling-machine-1'] = {type = 'cause', count = 4, chance = 1},
['assembling-machine-2'] = {type = 'cause', count = 4, chance = 1},
['assembling-machine-3'] = {type = 'cause', count = 4, chance = 1},
['chemical-plant'] = {type = 'cause', count = 4, chance = 1},
['centrifuge'] = {type = 'cause', count = 6, chance = 1},
['pumpjack'] = {type = 'cause', count = 6, chance = 1},
['storage-tank'] = {type = 'cause', count = 4, chance = 1},
2019-01-23 21:15:28 +02:00
['oil-refinery'] = {type = 'cause', count = 8, chance = 1},
['offshore-pump'] = {type = 'cause', count = 2, chance = 1},
['boiler'] = {type = 'cause', count = 2, chance = 1},
['heat-exchanger'] = {type = 'cause', count = 4, chance = 1},
['steam-engine'] = {type = 'cause', count = 6, chance = 1},
['steam-turbine'] = {type = 'cause', count = 10, chance = 1},
['nuclear-reactor'] = {type = 'cause', count = 20, chance = 1},
['rocket-silo'] = {type = 'cause', count = 40, chance = 1},
['train-stop'] = {type = 'cause', count = 2, chance = 1},
['burner-mining-drill'] = {type = 'cause', count = 2, chance = 1},
['electric-mining-drill'] = {type = 'cause', count = 4, chance = 1},
['lab'] = {type = 'cause', count = 6, chance = 1},
['solar-panel'] = {type = 'cause', count = 4, chance = 1},
['accumulator'] = {type = 'cause', count = 2, chance = 1},
['beacon'] = {type = 'cause', count = 6, chance = 1},
['radar'] = {type = 'cause', count = 4, chance = 1}
2018-07-20 23:01:34 +02:00
}
2019-01-10 16:34:51 +02:00
local unit_levels = {
biter = {
'small-biter',
'medium-biter',
'big-biter',
'behemoth-biter'
},
spitter = {
'small-spitter',
'medium-spitter',
'big-spitter',
'behemoth-spitter'
}
2018-07-20 23:01:34 +02:00
}
2019-01-11 17:31:32 +02:00
local worms = {
['small-worm-turret'] = true,
['medium-worm-turret'] = true,
['big-worm-turret'] = true
}
local allowed_cause_source = {
['small-biter'] = true,
['medium-biter'] = true,
['big-biter'] = true,
['behemoth-biter'] = true,
['small-spitter'] = true,
['medium-spitter'] = true,
['big-spitter'] = true,
['behemoth-spitter'] = true
}
2018-08-02 14:51:42 +02:00
local turret_evolution_factor = {
2019-01-10 16:34:51 +02:00
['gun-turret'] = 0.001,
['laser-turret'] = 0.002,
['flamethrower-turret'] = 0.0015,
['artillery-turret'] = 0.004
2018-08-02 14:51:42 +02:00
}
2018-07-20 23:01:34 +02:00
local spawn_worm =
Token.register(
function(data)
local surface = data.surface
local name = data.name
local position = data.position
local p = surface.find_non_colliding_position(name, position, 8, 1)
if p then
local entity = surface.create_entity({name = data.name, position = data.position})
no_coin_entity[entity.unit_number] = true
end
end
)
local function get_level()
2018-07-28 14:04:14 +02:00
local ef = game.forces.enemy.evolution_factor
2019-01-11 17:31:32 +02:00
if ef == 0 then
return 1
else
return ceil(ef * 4)
end
2018-07-20 23:01:34 +02:00
end
local spawn_units =
Token.register(
function(data)
local surface = data.surface
local name = data.name
local position = data.position
2019-01-10 16:34:51 +02:00
for _ = 1, data.count do
2018-07-20 23:01:34 +02:00
local p = surface.find_non_colliding_position(name, position, 8, 1)
if p then
surface.create_entity {name = name, position = p}
end
end
end
)
2019-01-10 16:34:51 +02:00
local spawn_player =
Token.register(
function(player)
if player and player.valid then
player.ticks_to_respawn = 3600
end
end
)
2018-07-20 23:01:34 +02:00
Event.add(
defines.events.on_entity_died,
function(event)
local entity = event.entity
if not entity or not entity.valid then
return
end
2019-01-11 17:31:32 +02:00
local entity_force = entity.force
2019-01-10 16:34:51 +02:00
local entity_name = entity.name
local factor = turret_evolution_factor[entity_name]
if factor then
2019-01-11 17:31:32 +02:00
if entity_force.name == 'enemy' then
local old = entity_force.evolution_factor
2019-01-10 16:34:51 +02:00
local new = old + (1 - old) * factor
2019-01-11 17:31:32 +02:00
entity_force.evolution_factor = math.min(new, 1)
2019-01-10 16:34:51 +02:00
end
end
local bounds = entity_drop_amount[entity_name]
2018-07-20 23:01:34 +02:00
if bounds then
local unit_number = entity.unit_number
if no_coin_entity[unit_number] then
no_coin_entity[unit_number] = nil
else
local count = math.random(bounds.low, bounds.high)
if count > 0 then
2019-01-10 16:34:51 +02:00
set_timeout_in_ticks(
2018-07-20 23:01:34 +02:00
1,
spill_items,
{count = count, surface = entity.surface, position = entity.position}
)
end
end
end
2019-01-10 16:34:51 +02:00
local spawn = entity_spawn_map[entity_name]
2018-07-20 23:01:34 +02:00
if spawn then
2019-01-10 16:34:51 +02:00
local chance = spawn.chance
if chance == 1 or random() <= chance then
local name = spawn.name
if name == nil then
local type = spawn.type
if type == 'cause' then
local cause = event.cause
2019-01-11 17:31:32 +02:00
if not cause then
2019-01-10 16:34:51 +02:00
return
end
name = cause.name
2019-01-11 17:31:32 +02:00
if not allowed_cause_source[cause.name] then
return
end
2019-01-10 16:34:51 +02:00
else
2019-01-11 17:31:32 +02:00
name = unit_levels[type][get_level()]
2019-01-10 16:34:51 +02:00
end
end
2019-01-11 17:31:32 +02:00
if worms[name] then
set_timeout_in_ticks(
5,
spawn_worm,
{surface = entity.surface, name = name, position = entity.position}
)
else
set_timeout_in_ticks(
5,
spawn_units,
{surface = entity.surface, name = name, position = entity.position, count = spawn.count}
)
end
2018-07-20 23:01:34 +02:00
end
end
2019-01-10 16:34:51 +02:00
end
)
2018-08-02 14:51:42 +02:00
2019-01-10 16:34:51 +02:00
Event.add(
defines.events.on_player_died,
function(event)
local player = Game.get_player_by_index(event.player_index)
set_timeout_in_ticks(1, spawn_player, player)
2018-07-20 23:01:34 +02:00
end
)