mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2025-12-27 11:05:22 +09:00
120 lines
5.1 KiB
Lua
120 lines
5.1 KiB
Lua
local items = require '__PHI-CL__/config'
|
|
|
|
for _, force in pairs(game.forces) do
|
|
local technologies = force.technologies
|
|
local recipes = force.recipes
|
|
|
|
for _, v in pairs(items['item']) do
|
|
if v.enabled then
|
|
if (v.tech == 'compound-energy') then
|
|
for j=v.min, v.max, 1 do
|
|
if technologies['compound-energy-' .. j] ~= nil then
|
|
if technologies['compound-energy-' .. j].researched then
|
|
if recipes[v.name .. '-' .. j] ~= nil then
|
|
recipes[v.name .. '-' .. j].enabled = true
|
|
recipes[v.name .. '-' .. j].reload()
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
else
|
|
if technologies[v.tech] then
|
|
if technologies[v.tech].researched then
|
|
if string.find(v.type, '-equipment') then
|
|
for j=v.min, v.max, 1 do
|
|
if recipes[v.name .. '-mk' .. j .. '-equipment'] then
|
|
recipes[v.name .. '-mk' .. j .. '-equipment'].enabled = true
|
|
recipes[v.name .. '-mk' .. j .. '-equipment'].reload()
|
|
end
|
|
end
|
|
|
|
else
|
|
for j=v.min, v.max, 1 do
|
|
if recipes[v.name .. '-' .. j] then
|
|
recipes[v.name .. '-' .. j].enabled = true
|
|
recipes[v.name .. '-' .. j].reload()
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
if technologies['power-armor-mk2'] and technologies['power-armor-mk2'].researched then
|
|
if settings.startup['PHI-EQ'].value and settings.startup['PHI-EQ-ARMOR'].value then
|
|
recipes['power-armor-mk3'].enabled = true
|
|
recipes['power-armor-mk3'].reload()
|
|
end
|
|
end
|
|
|
|
if settings.startup['PHI-CT'].value then
|
|
if settings.startup['PHI-CT-UTILITY'].value then
|
|
if technologies['steel-processing'] and technologies['steel-processing'].researched then
|
|
recipes['basic-steel-chest'].enabled = true
|
|
recipes['basic-steel-chest'].reload()
|
|
end
|
|
|
|
if (technologies['construction-robotics'] and technologies['construction-robotics'].researched) or (technologies['logistic-robotics'] and technologies['logistic-robotics'].researched) then
|
|
recipes['basic-logistic-chest-passive-provider'].enabled = true
|
|
recipes['basic-logistic-chest-passive-provider'].reload()
|
|
recipes['basic-logistic-chest-storage'].enabled = true
|
|
recipes['basic-logistic-chest-storage'].reload()
|
|
end
|
|
|
|
if technologies['logistic-system'] and technologies['logistic-system'].researched then
|
|
recipes['basic-logistic-chest-active-provider'].enabled = true
|
|
recipes['basic-logistic-chest-active-provider'].reload()
|
|
recipes['basic-logistic-chest-buffer'].enabled = true
|
|
recipes['basic-logistic-chest-buffer'].reload()
|
|
recipes['basic-logistic-chest-requester'].enabled = true
|
|
recipes['basic-logistic-chest-requester'].reload()
|
|
end
|
|
end
|
|
|
|
if settings.startup['PHI-CT-TOOL'].value then
|
|
recipes['super-pump'].enabled = true
|
|
recipes['super-pump'].reload()
|
|
|
|
recipes['super-radar'].enabled = true
|
|
recipes['super-radar'].reload()
|
|
|
|
if technologies['electric-energy-accumulators'] and technologies['electric-energy-accumulators'].researched then
|
|
recipes['passive-energy-void'].enabled = true
|
|
recipes['passive-energy-void'].reload()
|
|
end
|
|
end
|
|
|
|
if settings.startup['PHI-CT-UTILITY'].value then
|
|
recipes['trash-chest'].enabled = true
|
|
recipes['trash-chest'].reload()
|
|
recipes['trash-pipe'].enabled = true
|
|
recipes['trash-pipe'].reload()
|
|
end
|
|
|
|
if settings.startup['PHI-CT-HIDDEN'].value then
|
|
if technologies['logistics'] and technologies['logistics'].researched then
|
|
recipes['loader'].enabled = true
|
|
recipes['loader'].reload()
|
|
end
|
|
|
|
if technologies['logistics-2'] and technologies['logistics-2'].researched then
|
|
recipes['fast-loader'].enabled = true
|
|
recipes['fast-loader'].reload()
|
|
end
|
|
|
|
if technologies['logistics-3'] and technologies['logistics-3'].researched then
|
|
recipes['express-loader'].enabled = true
|
|
recipes['express-loader'].reload()
|
|
end
|
|
|
|
if technologies['turbo-transport-belt'] and technologies['turbo-transport-belt'].researched then
|
|
recipes['turbo-loader'].enabled = true
|
|
recipes['turbo-loader'].reload()
|
|
end
|
|
end
|
|
end
|
|
end
|