2019-01-12 15:43:41 +02:00
|
|
|
-- Assorted quality of life improvements that are restricted in scope. Similar to redmew_commands but event-based rather than command-based.
|
|
|
|
-- Dependencies
|
|
|
|
local Token = require 'utils.token'
|
|
|
|
local Event = require 'utils.event'
|
|
|
|
local Utils = require 'utils.core'
|
|
|
|
local Global = require 'utils.global'
|
2019-01-19 18:34:29 +02:00
|
|
|
local table = require 'utils.table'
|
2019-02-18 08:16:21 +02:00
|
|
|
local Task = require 'utils.task'
|
2019-02-08 23:54:23 +02:00
|
|
|
local Rank = require 'features.rank_system'
|
2020-12-14 11:01:42 +02:00
|
|
|
local Gui = require 'utils.gui'
|
2019-01-19 18:34:29 +02:00
|
|
|
|
2019-01-12 15:43:41 +02:00
|
|
|
local config = global.config.redmew_qol
|
|
|
|
|
|
|
|
-- Localized functions
|
2019-01-21 21:28:21 +02:00
|
|
|
local random = math.random
|
2019-01-12 15:43:41 +02:00
|
|
|
|
|
|
|
-- Local vars
|
|
|
|
local Public = {}
|
|
|
|
|
|
|
|
-- Global registers
|
2020-12-14 11:01:42 +02:00
|
|
|
local enabled = {random_train_color = nil, restrict_chest = nil, change_backer_name = nil, set_alt_on_create = nil}
|
2019-01-12 15:43:41 +02:00
|
|
|
|
2020-12-14 11:01:42 +02:00
|
|
|
Global.register({enabled = enabled}, function(tbl)
|
|
|
|
enabled = tbl.enabled
|
|
|
|
end)
|
2019-01-12 15:43:41 +02:00
|
|
|
|
|
|
|
-- Local functions
|
|
|
|
|
|
|
|
--- When placed, locomotives will get a random color
|
2020-12-14 11:01:42 +02:00
|
|
|
local random_train_color = Token.register(function(event)
|
|
|
|
local entity = event.created_entity
|
|
|
|
if entity and entity.valid and entity.name == 'locomotive' then
|
|
|
|
entity.color = Utils.random_RGB()
|
2019-01-12 15:43:41 +02:00
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
end)
|
2019-01-12 15:43:41 +02:00
|
|
|
|
|
|
|
--- If a newly placed entity is a provider or non-logi chest, set it to only have 1 slot available.
|
|
|
|
-- If placed from a bp and the bp has restrictions on the chest, it takes priority.
|
2020-12-14 11:01:42 +02:00
|
|
|
local restrict_chest = Token.register(function(event)
|
|
|
|
local entity = event.created_entity
|
|
|
|
if entity and entity.valid and (entity.name == 'logistic-chest-passive-provider' or entity.type == 'container') then
|
|
|
|
local chest_inventory = entity.get_inventory(defines.inventory.chest)
|
|
|
|
if #chest_inventory + 1 == chest_inventory.getbar() then
|
|
|
|
chest_inventory.setbar(2)
|
2019-01-12 15:43:41 +02:00
|
|
|
end
|
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
end)
|
2019-01-12 15:43:41 +02:00
|
|
|
|
|
|
|
--- Selects a name from the entity backer name, game.players, and regulars
|
|
|
|
local function pick_name()
|
|
|
|
-- Create a weight table comprised of the backer name, a player's name, and a regular's name
|
2019-01-21 21:28:21 +02:00
|
|
|
local random_player = game.players[random(#game.players)]
|
2019-01-12 15:43:41 +02:00
|
|
|
if not random_player then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2019-02-08 23:54:23 +02:00
|
|
|
local regulars = Rank.get_player_table()
|
2019-01-12 15:43:41 +02:00
|
|
|
local reg
|
|
|
|
if table.size(regulars) == 0 then
|
|
|
|
reg = nil
|
|
|
|
else
|
2019-01-21 21:28:21 +02:00
|
|
|
reg = {table.get_random_dictionary_entry(regulars, true), 1}
|
2019-01-12 15:43:41 +02:00
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
local name_table = {{false, 8}, {random_player.name, 1}, reg}
|
2019-01-12 15:43:41 +02:00
|
|
|
return table.get_random_weighted(name_table)
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Changes the backer name on an entity that supports having a backer name.
|
2020-12-14 11:01:42 +02:00
|
|
|
local change_backer_name = Token.register(function(event)
|
|
|
|
local entity = event.created_entity
|
|
|
|
if entity and entity.valid and entity.backer_name then
|
|
|
|
entity.backer_name = pick_name() or entity.backer_name
|
2019-01-12 15:43:41 +02:00
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
end)
|
2019-01-12 15:43:41 +02:00
|
|
|
|
2019-03-02 09:12:12 +02:00
|
|
|
--- Changes the backer name on an entity that supports having a backer name.
|
2020-12-14 11:01:42 +02:00
|
|
|
local set_alt_on_create = Token.register(function(event)
|
|
|
|
local player = game.get_player(event.player_index)
|
|
|
|
if not player then
|
|
|
|
return
|
2019-03-02 09:12:12 +02:00
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
player.game_view_settings.show_entity_info = true
|
|
|
|
end)
|
2019-03-02 09:12:12 +02:00
|
|
|
|
2019-01-15 17:10:31 +02:00
|
|
|
local loaders_technology_map = {
|
|
|
|
['logistics'] = 'loader',
|
|
|
|
['logistics-2'] = 'fast-loader',
|
|
|
|
['logistics-3'] = 'express-loader'
|
|
|
|
}
|
|
|
|
|
2019-02-18 08:16:21 +02:00
|
|
|
--- After init, checks if any of the loader techs have been researched
|
|
|
|
-- and enables loaders if appropriate.
|
2020-12-14 11:01:42 +02:00
|
|
|
local loader_check_token = Token.register(function()
|
|
|
|
for _, force in pairs(game.forces) do
|
|
|
|
for key, recipe in pairs(loaders_technology_map) do
|
|
|
|
if force.technologies[key].researched then
|
|
|
|
force.recipes[recipe].enabled = true
|
2019-02-18 08:16:21 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
end)
|
2019-02-18 08:16:21 +02:00
|
|
|
|
2019-03-04 14:02:50 +02:00
|
|
|
--- Sets construction robots that are not part of a roboport to unminabe
|
|
|
|
-- if the player selecting them are not the owner of them.
|
|
|
|
local function preserve_bot(event)
|
2019-05-16 12:10:56 +02:00
|
|
|
local player = game.get_player(event.player_index)
|
2019-03-04 14:02:50 +02:00
|
|
|
local entity = player.selected
|
|
|
|
|
|
|
|
if entity == nil or not entity.valid then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if entity.name ~= 'construction-robot' then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local logistic_network = entity.logistic_network
|
|
|
|
|
|
|
|
if logistic_network == nil or not logistic_network.valid then
|
2020-12-14 11:01:42 +02:00
|
|
|
-- prevents an orphan bot from being unremovable
|
2019-03-10 00:42:03 +02:00
|
|
|
entity.minable = true
|
2019-03-04 14:02:50 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- All valid logistic networks should have at least one cell
|
|
|
|
local cell = logistic_network.cells[1]
|
|
|
|
local owner = cell.owner
|
|
|
|
|
2020-12-14 11:01:42 +02:00
|
|
|
-- checks if construction-robot is part of a mobile logistic network
|
2019-05-02 18:05:03 +02:00
|
|
|
if owner.name ~= 'character' then
|
2019-03-10 00:42:03 +02:00
|
|
|
entity.minable = true
|
2019-03-04 14:02:50 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2020-12-14 11:01:42 +02:00
|
|
|
-- checks if construction-robot is owned by the player that has selected it
|
2019-03-04 14:02:50 +02:00
|
|
|
if owner.player.name == player.name then
|
|
|
|
entity.minable = true
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
entity.minable = false
|
|
|
|
end
|
|
|
|
|
2019-01-12 15:43:41 +02:00
|
|
|
-- Event registers
|
|
|
|
|
|
|
|
local function register_random_train_color()
|
|
|
|
if enabled.random_train_color then
|
|
|
|
return false -- already registered
|
|
|
|
end
|
|
|
|
enabled.random_train_color = true
|
|
|
|
Event.add_removable(defines.events.on_built_entity, random_train_color)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
local function register_restrict_chest()
|
|
|
|
if enabled.restrict_chest then
|
|
|
|
return false -- already registered
|
|
|
|
end
|
|
|
|
enabled.restrict_chest = true
|
|
|
|
Event.add_removable(defines.events.on_built_entity, restrict_chest)
|
|
|
|
Event.add_removable(defines.events.on_robot_built_entity, restrict_chest)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
local function register_change_backer_name()
|
|
|
|
if enabled.change_backer_name then
|
|
|
|
return false -- already registered
|
|
|
|
end
|
|
|
|
enabled.change_backer_name = true
|
|
|
|
Event.add_removable(defines.events.on_built_entity, change_backer_name)
|
|
|
|
Event.add_removable(defines.events.on_robot_built_entity, change_backer_name)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2019-03-02 09:12:12 +02:00
|
|
|
local function register_set_alt_on_create()
|
|
|
|
if enabled.set_alt_on_create then
|
|
|
|
return false -- already registered
|
|
|
|
end
|
|
|
|
enabled.set_alt_on_create = true
|
|
|
|
Event.add_removable(defines.events.on_player_created, set_alt_on_create)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2019-02-18 08:16:21 +02:00
|
|
|
local function on_init()
|
|
|
|
-- Set player force's ghost_time_to_live to an hour. Giving the players ghosts before the research of robots is a nice QOL improvement.
|
|
|
|
if config.ghosts_before_research then
|
|
|
|
Public.set_ghost_ttl()
|
|
|
|
end
|
|
|
|
if config.loaders then
|
|
|
|
Task.set_timeout_in_ticks(1, loader_check_token, nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-12 15:43:41 +02:00
|
|
|
Event.on_init(on_init)
|
|
|
|
|
|
|
|
-- Public functions
|
|
|
|
|
|
|
|
--- Sets a ghost_time_to_live as a quality of life feature: now ghosts
|
|
|
|
-- are created on death of entities before robot research
|
|
|
|
-- @param force_name string with name of force
|
|
|
|
-- @param time number of ticks for ghosts to live
|
|
|
|
function Public.set_ghost_ttl(force_name, time)
|
|
|
|
force_name = force_name or 'player'
|
|
|
|
time = time or (30 * 60 * 60)
|
|
|
|
game.forces[force_name].ghost_time_to_live = time
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Sets random_train_color on or off.
|
|
|
|
-- @param enable <boolean> true to toggle on, false for off
|
|
|
|
-- @return <boolean> Success/failure of command
|
|
|
|
function Public.set_random_train_color(enable)
|
|
|
|
if enable then
|
|
|
|
return register_random_train_color()
|
|
|
|
end
|
|
|
|
Event.remove_removable(defines.events.on_built_entity, random_train_color)
|
|
|
|
enabled.random_train_color = false
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Return status of restrict_chest
|
|
|
|
function Public.get_random_train_color()
|
|
|
|
return enabled.random_train_color or false
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Sets restrict_chest on or off.
|
|
|
|
-- @param enable <boolean> true to toggle on, false for off
|
|
|
|
-- @return <boolean> Success/failure of command
|
|
|
|
function Public.set_restrict_chest(enable)
|
|
|
|
if enable then
|
|
|
|
return register_restrict_chest()
|
|
|
|
else
|
|
|
|
Event.remove_removable(defines.events.on_built_entity, restrict_chest)
|
|
|
|
Event.remove_removable(defines.events.on_robot_built_entity, restrict_chest)
|
|
|
|
enabled.restrict_chest = false
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Return status of restrict_chest
|
|
|
|
function Public.get_restrict_chest()
|
|
|
|
return enabled.restrict_chest or false
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Sets backer_name on or off.
|
|
|
|
-- @param enable <boolean> true to toggle on, false for off
|
|
|
|
-- @return <boolean> Success/failure of command
|
|
|
|
function Public.set_backer_name(enable)
|
|
|
|
if enable then
|
|
|
|
return register_change_backer_name()
|
|
|
|
else
|
|
|
|
Event.remove_removable(defines.events.on_built_entity, change_backer_name)
|
|
|
|
Event.remove_removable(defines.events.on_robot_built_entity, change_backer_name)
|
|
|
|
enabled.change_backer_name = false
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Return status of backer_name
|
|
|
|
function Public.get_backer_name()
|
|
|
|
return enabled.change_backer_name or false
|
|
|
|
end
|
|
|
|
|
2019-03-02 09:12:12 +02:00
|
|
|
--- Sets set_alt_on_create on or off.
|
|
|
|
-- @param enable <boolean> true to toggle on, false for off
|
|
|
|
-- @return <boolean> Success/failure of command
|
|
|
|
function Public.set_set_alt_on_create(enable)
|
|
|
|
if enable then
|
|
|
|
return register_set_alt_on_create()
|
|
|
|
else
|
|
|
|
Event.remove_removable(defines.events.on_player_created, set_alt_on_create)
|
|
|
|
enabled.set_alt_on_create = false
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Return status of set_alt_on_create
|
|
|
|
function Public.set_alt_on_create()
|
|
|
|
return enabled.set_alt_on_create or false
|
|
|
|
end
|
|
|
|
|
2019-01-12 15:43:41 +02:00
|
|
|
-- Initial event setup
|
|
|
|
|
|
|
|
if config.random_train_color then
|
|
|
|
register_random_train_color()
|
|
|
|
end
|
|
|
|
if config.restrict_chest then
|
|
|
|
register_restrict_chest()
|
|
|
|
end
|
|
|
|
if config.backer_name then
|
|
|
|
register_change_backer_name()
|
|
|
|
end
|
2019-03-02 09:12:12 +02:00
|
|
|
if config.set_alt_on_create then
|
|
|
|
register_set_alt_on_create()
|
|
|
|
end
|
2019-01-12 15:43:41 +02:00
|
|
|
|
2019-03-04 14:02:50 +02:00
|
|
|
if config.save_bots then
|
|
|
|
Event.add(defines.events.on_selected_entity_changed, preserve_bot)
|
|
|
|
end
|
|
|
|
|
2019-03-10 00:42:03 +02:00
|
|
|
if config.research_queue then
|
2020-12-14 11:01:42 +02:00
|
|
|
Event.on_init(function()
|
|
|
|
game.forces.player.research_queue_enabled = true
|
|
|
|
end)
|
2019-03-10 00:42:03 +02:00
|
|
|
end
|
|
|
|
|
2020-12-14 11:01:42 +02:00
|
|
|
local loader_crafter_frame_for_player_name = Gui.uid_name()
|
|
|
|
local loader_crafter_frame_for_assembly_machine_name = Gui.uid_name()
|
|
|
|
local player_craft_loader_1 = Gui.uid_name()
|
|
|
|
local player_craft_loader_2 = Gui.uid_name()
|
|
|
|
local player_craft_loader_3 = Gui.uid_name()
|
2020-12-14 20:22:17 +02:00
|
|
|
local machine_craft_loader_1 = Gui.uid_name()
|
|
|
|
local machine_craft_loader_2 = Gui.uid_name()
|
|
|
|
local machine_craft_loader_3 = Gui.uid_name()
|
2020-12-14 11:01:42 +02:00
|
|
|
|
|
|
|
local open_gui_token = Token.register(function(data)
|
|
|
|
local player = data.player
|
|
|
|
local entity = data.entity
|
|
|
|
player.opened = entity
|
|
|
|
end)
|
|
|
|
|
|
|
|
local close_gui_token = Token.register(function(data)
|
|
|
|
local player = data.player
|
|
|
|
player.opened = nil
|
|
|
|
end)
|
|
|
|
|
2020-12-14 20:22:17 +02:00
|
|
|
local function draw_loader_frame_for_player(parent)
|
|
|
|
local player_force = game.forces["player"]
|
2020-12-14 11:01:42 +02:00
|
|
|
local frame = parent[loader_crafter_frame_for_player_name]
|
|
|
|
if frame and frame.valid then
|
|
|
|
Gui.destroy(frame)
|
|
|
|
end
|
|
|
|
local anchor = {gui = defines.relative_gui_type.controller_gui, position = defines.relative_gui_position.right}
|
2020-12-14 20:28:03 +02:00
|
|
|
frame = parent.add {type = 'frame', name = loader_crafter_frame_for_player_name, anchor = anchor, direction='vertical'}
|
2020-12-14 20:22:17 +02:00
|
|
|
local button = frame.add {type = 'choose-elem-button', name = player_craft_loader_1, elem_type='recipe', recipe = 'loader'}
|
|
|
|
button.locked = true
|
2020-12-20 19:25:33 +02:00
|
|
|
if player_force.recipes['fast-loader'].enabled then
|
2020-12-14 20:28:03 +02:00
|
|
|
button = frame.add {type = 'choose-elem-button', name = player_craft_loader_2, locked = true, elem_type='recipe', recipe = 'fast-loader'}
|
2020-12-14 20:22:17 +02:00
|
|
|
button.locked = true
|
2020-12-14 12:06:33 +02:00
|
|
|
end
|
2020-12-20 19:25:33 +02:00
|
|
|
if player_force.recipes['express-loader'].enabled then
|
2020-12-14 20:28:03 +02:00
|
|
|
button = frame.add {type = 'choose-elem-button', name = player_craft_loader_3, locked = true, elem_type='recipe', recipe = 'express-loader'}
|
2020-12-14 20:22:17 +02:00
|
|
|
button.locked = true
|
2020-12-14 11:01:42 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function draw_loader_frame_for_assembly_machine(parent, entity)
|
2020-12-14 20:22:17 +02:00
|
|
|
local player_force = game.forces["player"]
|
2020-12-14 11:01:42 +02:00
|
|
|
local frame = parent[loader_crafter_frame_for_assembly_machine_name]
|
|
|
|
if frame and frame.valid then
|
|
|
|
Gui.destroy(frame)
|
|
|
|
end
|
|
|
|
|
|
|
|
local anchor = {
|
|
|
|
gui = defines.relative_gui_type.assembling_machine_select_recipe_gui,
|
|
|
|
position = defines.relative_gui_position.right
|
|
|
|
}
|
2020-12-14 20:28:03 +02:00
|
|
|
frame = parent.add {type = 'frame', name = loader_crafter_frame_for_assembly_machine_name, anchor = anchor, direction='vertical'}
|
2020-12-14 11:01:42 +02:00
|
|
|
|
2020-12-14 20:22:17 +02:00
|
|
|
local button = frame.add {type = 'choose-elem-button', name = machine_craft_loader_1, elem_type='recipe', recipe = 'loader'}
|
|
|
|
button.locked = true
|
2020-12-14 11:01:42 +02:00
|
|
|
Gui.set_data(button, entity)
|
2020-12-20 19:25:33 +02:00
|
|
|
if player_force.recipes['fast-loader'].enabled then
|
2020-12-14 20:28:03 +02:00
|
|
|
button = frame.add {type = 'choose-elem-button', name = machine_craft_loader_2, locked = true, elem_type='recipe', recipe = 'fast-loader'}
|
2020-12-14 20:22:17 +02:00
|
|
|
button.locked = true
|
|
|
|
Gui.set_data(button, entity)
|
2020-12-14 11:01:42 +02:00
|
|
|
end
|
2020-12-20 19:25:33 +02:00
|
|
|
if player_force.recipes['express-loader'].enabled then
|
2020-12-14 20:28:03 +02:00
|
|
|
button = frame.add {type = 'choose-elem-button', name = machine_craft_loader_3, locked = true, elem_type='recipe', recipe = 'express-loader'}
|
2020-12-14 20:22:17 +02:00
|
|
|
button.locked = true
|
|
|
|
Gui.set_data(button, entity)
|
2020-12-14 11:01:42 +02:00
|
|
|
end
|
2020-12-14 20:22:17 +02:00
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
if config.loaders then
|
|
|
|
Event.add(defines.events.on_research_finished, function(event)
|
|
|
|
local research = event.research
|
|
|
|
local recipe = loaders_technology_map[research.name]
|
|
|
|
if recipe then
|
|
|
|
research.force.recipes[recipe].enabled = true
|
|
|
|
for _, p in pairs(game.players) do
|
|
|
|
local panel = p.gui.relative
|
|
|
|
draw_loader_frame_for_player(panel)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
2020-12-14 20:28:03 +02:00
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
if config.loaders then
|
|
|
|
Event.add(defines.events.on_gui_opened, function(event)
|
|
|
|
local player_force = game.forces.player
|
|
|
|
if not player_force.recipes['loader'].enabled then
|
|
|
|
return
|
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
local entity = event.entity
|
|
|
|
if not entity or not entity.valid then
|
|
|
|
return
|
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
if entity.type ~= 'assembling-machine' then
|
|
|
|
return
|
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
local player = game.get_player(event.player_index)
|
|
|
|
local panel = player.gui.relative
|
|
|
|
|
|
|
|
draw_loader_frame_for_assembly_machine(panel, entity)
|
|
|
|
end)
|
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
|
2020-12-14 12:06:33 +02:00
|
|
|
local function player_craft_loaders(event, loader_type)
|
2020-12-14 11:01:42 +02:00
|
|
|
local button = event.button -- int
|
|
|
|
local shift = event.shift -- bool
|
|
|
|
local player = event.player
|
2020-12-14 22:26:14 +02:00
|
|
|
local count
|
2020-12-14 11:01:42 +02:00
|
|
|
if button == defines.mouse_button_type.left then
|
|
|
|
if shift then
|
2020-12-14 20:30:25 +02:00
|
|
|
count = 4294967295 -- uint highest value. Factorio crafts as many as able
|
2020-12-14 11:01:42 +02:00
|
|
|
else
|
2020-12-14 20:30:25 +02:00
|
|
|
count = 1
|
2020-12-14 11:01:42 +02:00
|
|
|
end
|
|
|
|
elseif button == defines.mouse_button_type.right then
|
2020-12-14 20:30:25 +02:00
|
|
|
count = 5
|
2020-12-14 11:01:42 +02:00
|
|
|
else
|
|
|
|
return
|
|
|
|
end
|
2020-12-14 12:06:33 +02:00
|
|
|
player.begin_crafting {count = count, recipe = loader_type}
|
|
|
|
end
|
|
|
|
|
|
|
|
Gui.on_click(player_craft_loader_1, function(event)
|
|
|
|
player_craft_loaders(event, "loader")
|
|
|
|
end)
|
|
|
|
|
|
|
|
Gui.on_click(player_craft_loader_2, function(event)
|
|
|
|
player_craft_loaders(event, "fast-loader")
|
|
|
|
end)
|
|
|
|
|
|
|
|
Gui.on_click(player_craft_loader_3, function(event)
|
|
|
|
player_craft_loaders(event, "express-loader")
|
2020-12-14 11:01:42 +02:00
|
|
|
end)
|
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
local function set_assembly_machine_recipe(event, loader_name)
|
2020-12-14 11:01:42 +02:00
|
|
|
local entity = Gui.get_data(event.element)
|
2020-12-20 19:25:33 +02:00
|
|
|
entity.set_recipe(loader_name)
|
2020-12-21 11:06:58 +02:00
|
|
|
Task.set_timeout_in_ticks(1, close_gui_token, {player = event.player})
|
2020-12-14 11:01:42 +02:00
|
|
|
Task.set_timeout_in_ticks(2, open_gui_token, {player = event.player, entity = entity})
|
2020-12-20 19:25:33 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
Gui.on_click(machine_craft_loader_1, function(event)
|
|
|
|
set_assembly_machine_recipe(event, 'loader')
|
2020-12-14 11:01:42 +02:00
|
|
|
end)
|
|
|
|
|
2020-12-14 20:22:17 +02:00
|
|
|
Gui.on_click(machine_craft_loader_2, function(event)
|
2020-12-20 19:25:33 +02:00
|
|
|
set_assembly_machine_recipe(event, 'fast-loader')
|
2020-12-14 20:22:17 +02:00
|
|
|
end)
|
|
|
|
|
|
|
|
Gui.on_click(machine_craft_loader_3, function(event)
|
2020-12-20 19:25:33 +02:00
|
|
|
set_assembly_machine_recipe(event, 'express-loader')
|
2020-12-14 22:25:22 +02:00
|
|
|
end)
|
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
if config.loaders then
|
|
|
|
Event.add(defines.events.on_player_created, function(event)
|
|
|
|
local player = game.get_player(event.player_index)
|
|
|
|
local player_force = player.force
|
|
|
|
if not player_force.recipes['loader'].enabled then
|
|
|
|
return
|
2020-12-14 12:06:33 +02:00
|
|
|
end
|
2020-12-20 19:25:33 +02:00
|
|
|
local panel = player.gui.relative
|
|
|
|
draw_loader_frame_for_player(panel)
|
|
|
|
end)
|
2020-12-14 11:01:42 +02:00
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
Event.add(defines.events.on_gui_closed, function(event)
|
|
|
|
local player = game.get_player(event.player_index)
|
|
|
|
if not player or not player.valid then
|
|
|
|
return
|
|
|
|
end
|
2020-12-14 11:01:42 +02:00
|
|
|
|
2020-12-20 19:25:33 +02:00
|
|
|
local panel = player.gui.relative[loader_crafter_frame_for_assembly_machine_name]
|
|
|
|
if panel and panel.valid then
|
|
|
|
Gui.destroy(panel)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
2019-01-12 15:43:41 +02:00
|
|
|
return Public
|