recycling fixes

This commit is contained in:
Brevven 2025-01-07 04:08:38 -08:00
parent a978781895
commit deb1403eb8
6 changed files with 80 additions and 3 deletions

View file

@ -1,4 +1,10 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 2.0.12
Date: 2025-01-06
Changes:
- Do more to respect disabling of recycling recipes
- Lead ore no longer recycles into chelated lead.
---------------------------------------------------------------------------------------------------
Version: 2.0.11 Version: 2.0.11
Date: 2025-01-05 Date: 2025-01-05
Changes: Changes:

View file

@ -40,3 +40,5 @@ if mods["space-exploration"] then
-- core mining balancing -- core mining balancing
util.add_to_product("se-core-fragment-omni", "lead-ore", -4) util.add_to_product("se-core-fragment-omni", "lead-ore", -4)
end end
util.size_recycler_output()

View file

@ -742,11 +742,13 @@ function util.add_new_crafting_category(category, by_hand)
end end
end end
-- Add a given quantity of ingredient to a given recipe -- Add a given quantity of ingredient to a given recipe
function util.add_or_add_to_ingredient(recipe_name, ingredient, quantity, options) function util.add_or_add_to_ingredient(recipe_name, ingredient, quantity, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] and data.raw.item[ingredient] then if data.raw.recipe[recipe_name] and data.raw.item[ingredient] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
add_or_add_to_ingredient(data.raw.recipe[recipe_name], ingredient, quantity) add_or_add_to_ingredient(data.raw.recipe[recipe_name], ingredient, quantity)
end end
end end
@ -769,6 +771,7 @@ function util.add_ingredient(recipe_name, ingredient, quantity, options)
local is_fluid = not not data.raw.fluid[ingredient] local is_fluid = not not data.raw.fluid[ingredient]
if data.raw.recipe[recipe_name] and (data.raw.item[ingredient] or is_fluid) then if data.raw.recipe[recipe_name] and (data.raw.item[ingredient] or is_fluid) then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
add_ingredient(data.raw.recipe[recipe_name], ingredient, quantity, is_fluid) add_ingredient(data.raw.recipe[recipe_name], ingredient, quantity, is_fluid)
end end
end end
@ -793,6 +796,7 @@ function util.add_ingredient_raw(recipe_name, ingredient, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] and data.raw.item[ingredient.name] then if data.raw.recipe[recipe_name] and data.raw.item[ingredient.name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
add_ingredient_raw(data.raw.recipe[recipe_name], ingredient) add_ingredient_raw(data.raw.recipe[recipe_name], ingredient)
end end
end end
@ -813,6 +817,7 @@ function util.set_ingredient(recipe_name, ingredient, quantity, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] and data.raw.item[ingredient] then if data.raw.recipe[recipe_name] and data.raw.item[ingredient] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
set_ingredient(data.raw.recipe[recipe_name], ingredient, quantity) set_ingredient(data.raw.recipe[recipe_name], ingredient, quantity)
end end
end end
@ -902,6 +907,7 @@ function util.replace_ingredient(recipe_name, old, new, amount, multiply, option
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] and (data.raw.item[new] or data.raw.fluid[new]) then if data.raw.recipe[recipe_name] and (data.raw.item[new] or data.raw.fluid[new]) then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
replace_ingredient(data.raw.recipe[recipe_name], old, new, amount, multiply) replace_ingredient(data.raw.recipe[recipe_name], old, new, amount, multiply)
end end
end end
@ -933,6 +939,7 @@ function util.remove_ingredient(recipe_name, old, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then if data.raw.recipe[recipe_name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
remove_ingredient(data.raw.recipe[recipe_name], old) remove_ingredient(data.raw.recipe[recipe_name], old)
end end
end end
@ -958,6 +965,7 @@ function util.replace_some_product(recipe_name, old, old_amount, new, new_amount
local is_fluid = not not data.raw.fluid[new] -- NOTE CURRENTLY UNUSUED local is_fluid = not not data.raw.fluid[new] -- NOTE CURRENTLY UNUSUED
if data.raw.recipe[recipe_name] and (data.raw.item[new] or is_fluid) then if data.raw.recipe[recipe_name] and (data.raw.item[new] or is_fluid) then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
replace_some_product(data.raw.recipe[recipe_name], old, old_amount, new, new_amount, is_fluid) replace_some_product(data.raw.recipe[recipe_name], old, old_amount, new, new_amount, is_fluid)
end end
end end
@ -987,6 +995,7 @@ function util.replace_some_ingredient(recipe_name, old, old_amount, new, new_amo
local is_fluid = not not data.raw.fluid[new] local is_fluid = not not data.raw.fluid[new]
if data.raw.recipe[recipe_name] and (data.raw.item[new] or is_fluid) then if data.raw.recipe[recipe_name] and (data.raw.item[new] or is_fluid) then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
replace_some_ingredient(data.raw.recipe[recipe_name], old, old_amount, new, new_amount, is_fluid) replace_some_ingredient(data.raw.recipe[recipe_name], old, old_amount, new, new_amount, is_fluid)
end end
end end
@ -1012,6 +1021,7 @@ function util.set_product_probability(recipe_name, product, probability, options
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then if data.raw.recipe[recipe_name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
set_product_probability(data.raw.recipe[recipe_name], product, probability) set_product_probability(data.raw.recipe[recipe_name], product, probability)
end end
end end
@ -1033,6 +1043,7 @@ function util.set_product_amount(recipe_name, product, amount, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then if data.raw.recipe[recipe_name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
set_product_amount(data.raw.recipe[recipe_name], product, amount) set_product_amount(data.raw.recipe[recipe_name], product, amount)
end end
end end
@ -1065,6 +1076,7 @@ function util.multiply_recipe(recipe_name, multiple, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then if data.raw.recipe[recipe_name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
multiply_recipe(data.raw.recipe[recipe_name], multiple) multiply_recipe(data.raw.recipe[recipe_name], multiple)
end end
end end
@ -1131,6 +1143,7 @@ function util.remove_product(recipe_name, old, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then if data.raw.recipe[recipe_name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
remove_product(data.raw.recipe[recipe_name], old) remove_product(data.raw.recipe[recipe_name], old)
end end
end end
@ -1209,6 +1222,7 @@ function util.set_recipe_time(recipe_name, time, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then if data.raw.recipe[recipe_name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
set_recipe_time(data.raw.recipe[recipe_name], time) set_recipe_time(data.raw.recipe[recipe_name], time)
end end
end end
@ -1226,6 +1240,7 @@ function util.multiply_time(recipe_name, factor, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then if data.raw.recipe[recipe_name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
multiply_time(data.raw.recipe[recipe_name], factor) multiply_time(data.raw.recipe[recipe_name], factor)
end end
end end
@ -1243,6 +1258,7 @@ function util.add_time(recipe_name, amount, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then if data.raw.recipe[recipe_name] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
add_time(data.raw.recipe[recipe_name], amount) add_time(data.raw.recipe[recipe_name], amount)
end end
end end
@ -1260,6 +1276,7 @@ function util.set_category(recipe_name, category, options)
if not should_force(options) and bypass(recipe_name) then return end if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] and data.raw["recipe-category"][category] then if data.raw.recipe[recipe_name] and data.raw["recipe-category"][category] then
me.add_modified(recipe_name) me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
data.raw.recipe[recipe_name].category = category data.raw.recipe[recipe_name].category = category
end end
end end
@ -1638,13 +1655,61 @@ function util.set_vtk_dcm_ingredients()
end end
end end
-- Recalculate recycling recipes, since our mod might make updates after quality generates them -- Set correct number of outputs for recyclers
function util.size_recycler_output()
if data.raw.recipe["scrap-recycling"] and data.raw.recipe["scrap-recycling"].results then
for i, entity in pairs(data.raw.furnace) do
if util.contains(entity.crafting_categories, "recycling-or-hand-crafting") then
if entity.result_inventory_size < #data.raw.recipe["scrap-recycling"].results then
entity.result_inventory_size = #data.raw.recipe["scrap-recycling"].results
end
end
end
else
local most = 0
for i, recipe in pairs(data.raw.recipe) do
if data.raw.recipe.ingredients and #data.raw.recipe.ingredients > most then
most = #data.raw.recipe.ingredients
end
end
for i, entity in pairs(data.raw.furnace) do
if util.contains(entity.crafting_categories, "recycling-or-hand-crafting") then
if entity.result_inventory_size < most then
entity.result_inventory_size = most
end
end
end
end
end
-- Save recycling metadata that is later removed by quality mod. Call near end of data.lua
function util.prepare_recycling_helper()
if mods.quality then
for _, recipe in pairs(data.raw.recipe) do
recipe.auto_recycle_helper = recipe.auto_recycle
end
end
end
-- Recalculate recycling recipes, call near end of data-updates.lua, after calling
-- util.prepare_recycling_helper from data.lua
function util.redo_recycling() function util.redo_recycling()
if mods.quality then if mods.quality then
local recycling = require("__quality__.prototypes.recycling") local recycling = require("__quality__.prototypes.recycling")
for _, recipe in pairs(data.raw.recipe) do for _, recipe in pairs(data.raw.recipe) do
recycling.generate_recycling_recipe(recipe) recipe.auto_recycle = recipe.auto_recycle_helper -- keeping this outside conditional to improve fidelity across multiple mods
if recipe.redo_recycling then
recycling.generate_recycling_recipe(recipe)
end
end end
end end
end end
-- Preps the recipe to have recycling recalculated. Expects the recipe exists.
function prepare_redo_recycling(recipe_name)
data.raw.recipe[recipe_name].redo_recycling = true
end
return util return util

View file

@ -8,3 +8,5 @@ require("lead-compressed")
require("compatibility.data.hot-metals") require("compatibility.data.hot-metals")
-- require("lead-sim") -- require("lead-sim")
local util = require("data-util")
util.prepare_recycling_helper()

View file

@ -1,6 +1,6 @@
{ {
"name": "bzlead", "name": "bzlead",
"version": "2.0.11", "version": "2.0.12",
"factorio_version": "2.0", "factorio_version": "2.0",
"title": "Lead", "title": "Lead",
"author": "Brevven", "author": "Brevven",

View file

@ -290,6 +290,8 @@ data:extend({
category = "organic-or-hand-crafting", category = "organic-or-hand-crafting",
subgroup = "agriculture-processes", subgroup = "agriculture-processes",
order = "e[chelation]-a[lead]", order = "e[chelation]-a[lead]",
auto_recycle = false,
auto_recycle_helper = false,
icons = { icons = {
{icon = "__base__/graphics/icons/fluid/sulfuric-acid.png", size = 64, shift={-4,-4}}, {icon = "__base__/graphics/icons/fluid/sulfuric-acid.png", size = 64, shift={-4,-4}},
{icon = "__bzlead__/graphics/icons/lead-ore.png", size = 64, shift={4,4}}, {icon = "__bzlead__/graphics/icons/lead-ore.png", size = 64, shift={4,4}},