2023-01-20 15:58:38 -07:00
|
|
|
local _ENV = mkmodule('plugins.automelt')
|
|
|
|
|
|
|
|
local argparse = require('argparse')
|
|
|
|
|
|
|
|
local function process_args(opts, args)
|
|
|
|
if args[1] == 'help' then
|
|
|
|
opts.help = true
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
return argparse.processArgsGetopt(args, {
|
|
|
|
{'h', 'help', handler=function() opts.help = true end},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local function do_set_stockpile_config(var_name, val, stockpiles)
|
|
|
|
for _,bspec in ipairs(argparse.stringList(stockpiles)) do
|
|
|
|
local config = automelt_getStockpileConfig(bspec)
|
|
|
|
config[var_name] = val
|
|
|
|
automelt_setStockpileConfig(config.id, config.monitor, config.melt)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function parse_commandline(...)
|
|
|
|
local args, opts = {...}, {}
|
|
|
|
local positionals = process_args(opts, args)
|
|
|
|
|
|
|
|
if opts.help then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
local command = positionals[1]
|
|
|
|
if not command or command == 'status' then
|
|
|
|
automelt_printStatus()
|
|
|
|
elseif command == 'designate' then
|
|
|
|
automelt_designate()
|
|
|
|
elseif command == 'monitor' then
|
|
|
|
do_set_stockpile_config('monitor', true, args[2])
|
2023-01-22 23:56:33 -07:00
|
|
|
elseif command == 'nomonitor' or command == 'unmonitor' then
|
2023-01-20 15:58:38 -07:00
|
|
|
do_set_stockpile_config('monitor', false, args[2])
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2023-01-22 23:56:33 -07:00
|
|
|
-- used by gui/automelt
|
2023-01-20 15:58:38 -07:00
|
|
|
function setStockpileConfig(config)
|
2023-01-21 16:22:15 -07:00
|
|
|
automelt_setStockpileConfig(config.id, config.monitored)
|
2023-01-20 15:58:38 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
function getItemCountsAndStockpileConfigs()
|
2023-01-22 23:56:33 -07:00
|
|
|
local fmt = 'Stockpile #%-5s'
|
2023-01-20 15:58:38 -07:00
|
|
|
local data = {automelt_getItemCountsAndStockpileConfigs()}
|
|
|
|
local ret = {}
|
|
|
|
ret.summary = table.remove(data, 1)
|
|
|
|
ret.item_counts = table.remove(data, 1)
|
|
|
|
ret.marked_item_counts = table.remove(data, 1)
|
|
|
|
ret.premarked_item_counts = table.remove(data, 1)
|
|
|
|
ret.stockpile_configs = data
|
|
|
|
for _,c in ipairs(ret.stockpile_configs) do
|
2023-01-23 11:35:26 -07:00
|
|
|
if not c.id or c.id == -1 then
|
|
|
|
c.name = "ERROR"
|
|
|
|
c.monitored = false
|
|
|
|
else
|
|
|
|
c.name = df.building.find(c.id).name
|
|
|
|
if not c.name or c.name == '' then
|
|
|
|
c.name = (fmt):format(tostring(df.building.find(c.id).stockpile_number))
|
|
|
|
end
|
|
|
|
c.monitored = c.monitored ~= 0
|
2023-01-22 23:56:33 -07:00
|
|
|
end
|
2023-01-23 11:36:12 -07:00
|
|
|
|
2023-01-20 15:58:38 -07:00
|
|
|
end
|
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
|
|
|
return _ENV
|