Personal Logistic (#287)

* Update personal-logistic.lua

* Update personal-logistic.lua
This commit is contained in:
2024-02-14 06:56:25 +09:00
committed by GitHub
parent 65e254ec45
commit 4ebf4d573f

View File

@@ -21,9 +21,10 @@ local function pl(type, target, amount)
c(config.start + v.key) c(config.start + v.key)
end end
if (amount == 0) then if (amount < 0) then
return return
else end
local stats = target.force.item_production_statistics local stats = target.force.item_production_statistics
for k, v in pairs(config.request) do for k, v in pairs(config.request) do
@@ -38,9 +39,16 @@ local function pl(type, target, amount)
if v.upgrade_of == nil then if v.upgrade_of == nil then
if v.type ~= nil then if v.type ~= nil then
if stats.get_input_count(k) < config.production_required[v.type] then if stats.get_input_count(k) < config.production_required[v.type] then
if v_min > 0 then
if v_min == v_max then
v_min = math.floor((v_max * 0.5) / v.stack) * v.stack
end
else
v_min = 0 v_min = 0
end end
end end
end
s(config.start + v.key, {name=k, min=v_min, max=v_max}) s(config.start + v.key, {name=k, min=v_min, max=v_max})
@@ -54,6 +62,7 @@ local function pl(type, target, amount)
s(config.start + config.request[vuo].key, {name=vuo, min=0, max=0}) s(config.start + config.request[vuo].key, {name=vuo, min=0, max=0})
vuo = config.request[vuo].upgrade_of vuo = config.request[vuo].upgrade_of
end end
else else
s(config.start + v.key, {name=k, min=0, max=v_max}) s(config.start + v.key, {name=k, min=0, max=v_max})
end end
@@ -61,10 +70,9 @@ local function pl(type, target, amount)
end end
end end
end end
end
Commands.new_command('personal-logistic', 'Set Personal Logistic (0 to cancel all) (Select spidertron to edit spidertron)') Commands.new_command('personal-logistic', 'Set Personal Logistic (-1 to cancel all) (Select spidertron to edit spidertron)')
:add_param('amount', 'integer-range', 0, 10) :add_param('amount', 'integer-range', -1, 10)
:add_alias('pl') :add_alias('pl')
:register(function(player, amount) :register(function(player, amount)
if player.force.technologies['logistic-robotics'].researched then if player.force.technologies['logistic-robotics'].researched then
@@ -73,11 +81,13 @@ Commands.new_command('personal-logistic', 'Set Personal Logistic (0 to cancel al
pl('s', player.selected, amount / 10) pl('s', player.selected, amount / 10)
return Commands.success return Commands.success
end end
else else
pl('p', player, amount / 10) pl('p', player, amount / 10)
return Commands.success return Commands.success
end end
else else
player.print('Player logistic not researched') player.print('Personal Logistic not researched')
end end
end) end)