2018-11-18 18:12:00 +02:00
--[[-- info
Provides the ability to " mine " through out - of - map tiles by destroying or
mining rocks next to it .
] ]
-- dependencies
local Event = require ' utils.event '
local Global = require ' utils.global '
local Scanner = require ' map_gen.Diggy.Scanner '
local Template = require ' map_gen.Diggy.Template '
local ScoreTable = require ' map_gen.Diggy.ScoreTable '
local Debug = require ' map_gen.Diggy.Debug '
2018-11-24 14:53:06 +02:00
local CreateParticles = require ' features.create_particles '
2018-11-18 18:12:00 +02:00
local insert = table.insert
local random = math.random
2018-11-18 20:15:45 +02:00
local raise_event = script.raise_event
2018-11-18 18:12:00 +02:00
-- this
local DiggyHole = { }
2018-11-23 23:04:55 +02:00
-- keeps track of the amount of times per player when they mined with a full inventory in a row
local full_inventory_mining_cache = { }
2018-11-18 18:12:00 +02:00
2018-11-23 23:04:55 +02:00
-- keeps track of the buffs for the bot mining mining_efficiency
local robot_mining = {
damage = 0 ,
active_modifier = 0 ,
research_modifier = 0 ,
}
2018-11-18 18:12:00 +02:00
2018-11-23 23:04:55 +02:00
Global.register ( {
full_inventory_mining_cache = full_inventory_mining_cache ,
bot_mining_damage = robot_mining ,
} , function ( tbl )
full_inventory_mining_cache = tbl.full_inventory_mining_cache
robot_mining = tbl.bot_mining_damage
end )
local function update_robot_mining_damage ( )
-- remove the current buff
local old_modifier = robot_mining.damage - robot_mining.active_modifier
-- update the active modifier
robot_mining.active_modifier = robot_mining.research_modifier
-- add the new active modifier to the non-buffed modifier
robot_mining.damage = old_modifier + robot_mining.active_modifier
ScoreTable.set ( ' Robot mining damage ' , robot_mining.damage )
end
---Triggers a diggy diggy hole for a given sand-rock-big or rock-huge.
---@param entity LuaEntity
local function diggy_hole ( entity )
2018-11-18 18:12:00 +02:00
local tiles = { }
local rocks = { }
local surface = entity.surface
local position = entity.position
local out_of_map_found = Scanner.scan_around_position ( surface , position , ' out-of-map ' ) ;
2018-11-21 15:42:39 +02:00
2018-11-26 22:37:41 +02:00
for i = # out_of_map_found , 1 , - 1 do
local void_position = out_of_map_found [ i ]
tiles [ i ] = { name = ' dirt- ' .. random ( 1 , 7 ) , position = void_position }
2018-11-24 18:17:15 +02:00
if random ( ) < 0.35 then
2018-11-26 22:37:41 +02:00
rocks [ i ] = { name = ' rock-huge ' , position = void_position }
2018-11-24 18:17:15 +02:00
else
2018-11-26 22:37:41 +02:00
rocks [ i ] = { name = ' sand-rock-big ' , position = void_position }
2018-11-18 18:12:00 +02:00
end
end
Template.insert ( surface , tiles , rocks )
end
local artificial_tiles = {
[ ' stone-brick ' ] = true ,
[ ' stone-path ' ] = true ,
[ ' concrete ' ] = true ,
[ ' hazard-concrete-left ' ] = true ,
[ ' hazard-concrete-right ' ] = true ,
[ ' refined-concrete ' ] = true ,
[ ' refined-hazard-concrete-left ' ] = true ,
[ ' refined-hazard-concrete-right ' ] = true ,
}
local function on_mined_tile ( surface , tiles )
local new_tiles = { }
for _ , tile in pairs ( tiles ) do
if ( artificial_tiles [ tile.old_tile . name ] ) then
insert ( new_tiles , { name = ' dirt- ' .. random ( 1 , 7 ) , position = tile.position } )
end
end
Template.insert ( surface , new_tiles , { } )
end
--[[--
Registers all event handlers .
] ]
function DiggyHole . register ( config )
2018-11-23 23:04:55 +02:00
robot_mining.damage = config.robot_initial_mining_damage
ScoreTable.set ( ' Robot mining damage ' , robot_mining.damage )
2018-11-26 22:37:41 +02:00
ScoreTable.reset ( ' Mine size ' )
2018-11-18 18:12:00 +02:00
Event.add ( defines.events . on_entity_died , function ( event )
2018-11-23 23:04:55 +02:00
local entity = event.entity
local name = entity.name
if name ~= ' sand-rock-big ' and name ~= ' rock-huge ' then
return
end
diggy_hole ( entity )
if event.cause then
CreateParticles.destroy_rock ( entity.surface . create_entity , 10 , entity.position )
end
2018-11-18 18:12:00 +02:00
end )
2018-11-18 20:15:45 +02:00
Event.add ( defines.events . on_entity_damaged , function ( event )
local entity = event.entity
local name = entity.name
2018-11-21 16:26:04 +02:00
if entity.health ~= 0 then
2018-11-18 20:15:45 +02:00
return
end
2018-11-21 16:26:04 +02:00
if name ~= ' sand-rock-big ' and name ~= ' rock-huge ' then
return
2018-11-18 20:15:45 +02:00
end
2018-11-21 16:26:04 +02:00
raise_event ( defines.events . on_entity_died , { entity = entity , cause = event.cause , force = event.force } )
entity.destroy ( )
2018-11-18 20:15:45 +02:00
end )
2018-11-22 21:43:23 +02:00
Event.add ( defines.events . on_robot_mined_entity , function ( event )
local entity = event.entity
local name = entity.name
if name ~= ' sand-rock-big ' and name ~= ' rock-huge ' then
return
end
local health = entity.health
2018-11-23 23:04:55 +02:00
health = health - robot_mining.damage
2018-11-24 14:53:06 +02:00
event.buffer . clear ( )
2018-11-22 21:43:23 +02:00
local graphics_variation = entity.graphics_variation
local create_entity = entity.surface . create_entity
local position = entity.position
local force = event.robot . force
if health < 1 then
raise_event ( defines.events . on_entity_died , { entity = entity , force = force } )
2018-11-23 23:04:55 +02:00
CreateParticles.mine_rock ( create_entity , 6 , position )
entity.destroy ( )
2018-11-22 21:43:23 +02:00
return
end
entity.destroy ( )
local rock = create_entity ( { name = name , position = position } )
2018-11-23 23:04:55 +02:00
CreateParticles.mine_rock ( create_entity , 1 , position )
2018-11-22 21:43:23 +02:00
rock.graphics_variation = graphics_variation
rock.order_deconstruction ( force )
rock.health = health
end )
2018-11-18 18:12:00 +02:00
Event.add ( defines.events . on_player_mined_entity , function ( event )
local entity = event.entity
local name = entity.name
2018-11-23 23:04:55 +02:00
if name ~= ' sand-rock-big ' and name ~= ' rock-huge ' then
return
end
2018-11-18 18:12:00 +02:00
2018-11-24 14:53:06 +02:00
event.buffer . clear ( )
2018-11-18 18:12:00 +02:00
diggy_hole ( entity )
2018-11-23 23:04:55 +02:00
CreateParticles.mine_rock ( entity.surface . create_entity , 6 , entity.position )
2018-11-18 18:12:00 +02:00
end )
Event.add ( defines.events . on_robot_mined_tile , function ( event )
on_mined_tile ( event.robot . surface , event.tiles )
end )
Event.add ( defines.events . on_player_mined_tile , function ( event )
on_mined_tile ( game.surfaces [ event.surface_index ] , event.tiles )
end )
Event.add ( Template.events . on_void_removed , function ( )
2018-11-26 22:37:41 +02:00
ScoreTable.increment ( ' Mine size ' )
2018-11-18 18:12:00 +02:00
end )
2018-11-23 23:04:55 +02:00
Event.add ( defines.events . on_research_finished , function ( event )
local new_modifier = event.research . force.mining_drill_productivity_bonus * 50 * config.robot_damage_per_mining_prod_level
if ( robot_mining.research_modifier == new_modifier ) then
-- something else was researched
return
end
robot_mining.research_modifier = new_modifier
update_robot_mining_damage ( )
end )
2018-11-18 18:12:00 +02:00
if config.enable_debug_commands then
commands.add_command ( ' clear-void ' , ' <left top x> <left top y> <width> <height> <surface index> triggers Template.insert for the given area. ' , function ( cmd )
local params = { }
local args = cmd.parameter or ' '
for param in string.gmatch ( args , ' %S+ ' ) do
table.insert ( params , param )
end
if ( # params ~= 5 ) then
game.player . print ( ' /clear-void requires exactly 5 arguments: <left top x> <left top y> <width> <height> <surface index> ' )
return
end
local left_top_x = tonumber ( params [ 1 ] )
local left_top_y = tonumber ( params [ 2 ] )
local width = tonumber ( params [ 3 ] )
local height = tonumber ( params [ 4 ] )
local surface_index = params [ 5 ]
local tiles = { }
local entities = { }
for x = 0 , width do
for y = 0 , height do
insert ( tiles , { name = ' dirt- ' .. random ( 1 , 7 ) , position = { x = x + left_top_x , y = y + left_top_y } } )
end
end
Template.insert ( game.surfaces [ surface_index ] , tiles , entities )
end
)
end
end
function DiggyHole . on_init ( )
game.forces . player.technologies [ ' landfill ' ] . enabled = false
2018-11-24 11:45:43 +02:00
game.forces . player.technologies [ ' atomic-bomb ' ] . enabled = false
2018-11-18 18:12:00 +02:00
end
return DiggyHole