2014-12-02 12:00:16 -07:00
|
|
|
local _ENV = mkmodule('plugins.stockpiles')
|
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local argparse = require('argparse')
|
2023-04-22 20:03:58 -06:00
|
|
|
local gui = require('gui')
|
|
|
|
local logistics = require('plugins.logistics')
|
|
|
|
local overlay = require('plugins.overlay')
|
|
|
|
local widgets = require('gui.widgets')
|
2014-12-02 12:00:16 -07:00
|
|
|
|
2023-04-24 12:24:43 -06:00
|
|
|
local STOCKPILES_DIR = 'dfhack-config/stockpiles'
|
|
|
|
local STOCKPILES_LIBRARY_DIR = 'hack/data/stockpiles'
|
|
|
|
|
|
|
|
local BAD_FILENAME_REGEX = '[^%w._]'
|
2014-12-02 12:00:16 -07:00
|
|
|
|
2023-04-22 20:03:58 -06:00
|
|
|
--------------------
|
|
|
|
-- plugin logic
|
|
|
|
--------------------
|
2023-04-23 00:13:50 -06:00
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local function get_sp_name(name, num)
|
|
|
|
if #name > 0 then return name end
|
|
|
|
return ('Stockpile %d'):format(num)
|
2014-12-04 03:52:38 -07:00
|
|
|
end
|
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local STATUS_FMT = '%6s %s'
|
|
|
|
local function print_status()
|
|
|
|
local sps = df.global.world.buildings.other.STOCKPILE
|
|
|
|
print(('Current stockpiles: %d'):format(#sps))
|
|
|
|
if #sps > 0 then
|
|
|
|
print()
|
|
|
|
print(STATUS_FMT:format('ID', 'Name'))
|
|
|
|
print(STATUS_FMT:format('------', '----------'))
|
2014-12-05 06:49:40 -07:00
|
|
|
end
|
2023-04-23 00:13:50 -06:00
|
|
|
for _, sp in ipairs(sps) do
|
2023-03-15 18:16:42 -06:00
|
|
|
print(STATUS_FMT:format(sp.id, get_sp_name(sp.name, sp.stockpile_number)))
|
2014-12-05 06:49:40 -07:00
|
|
|
end
|
2023-03-15 18:16:42 -06:00
|
|
|
end
|
2014-12-05 06:49:40 -07:00
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local function list_dir(path, prefix, filters)
|
|
|
|
local paths = dfhack.filesystem.listdir_recursive(path, 0, false)
|
|
|
|
if not paths then
|
|
|
|
dfhack.printerr(('Cannot find stockpile settings directory: "%s"'):format(path))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local normalized_filters = {}
|
2023-04-23 00:13:50 -06:00
|
|
|
for _, filter in ipairs(filters or {}) do table.insert(normalized_filters, filter:lower()) end
|
|
|
|
for _, v in ipairs(paths) do
|
2023-03-15 18:16:42 -06:00
|
|
|
local normalized_path = prefix .. v.path:lower()
|
|
|
|
if v.isdir or not normalized_path:endswith('.dfstock') then goto continue end
|
|
|
|
normalized_path = normalized_path:sub(1, -9)
|
|
|
|
if #normalized_filters > 0 then
|
|
|
|
local matched = false
|
2023-04-23 00:13:50 -06:00
|
|
|
for _, filter in ipairs(normalized_filters) do
|
2023-03-15 18:16:42 -06:00
|
|
|
if normalized_path:find(filter, 1, true) then
|
|
|
|
matched = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if not matched then goto continue end
|
2014-12-05 06:49:40 -07:00
|
|
|
end
|
2023-03-15 18:16:42 -06:00
|
|
|
print(('%s%s'):format(prefix, v.path:sub(1, -9)))
|
|
|
|
::continue::
|
2014-12-05 06:49:40 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local function list_settings_files(filters)
|
|
|
|
list_dir(STOCKPILES_DIR, '', filters)
|
|
|
|
list_dir(STOCKPILES_LIBRARY_DIR, 'library/', filters)
|
2014-12-05 06:49:40 -07:00
|
|
|
end
|
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local function assert_safe_name(name)
|
2023-04-23 00:13:50 -06:00
|
|
|
if not name or #name == 0 then qerror('name missing or empty') end
|
2023-04-24 12:24:43 -06:00
|
|
|
if name:find(BAD_FILENAME_REGEX) then
|
2023-03-23 00:58:02 -06:00
|
|
|
qerror('name can only contain numbers, letters, periods, and underscores')
|
2014-12-02 12:00:16 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local function get_sp_id(opts)
|
|
|
|
if opts.id then return opts.id end
|
2023-05-04 03:39:49 -06:00
|
|
|
local sp = dfhack.gui.getSelectedStockpile(true)
|
2023-03-15 18:16:42 -06:00
|
|
|
if sp then return sp.id end
|
|
|
|
return nil
|
2015-07-29 12:17:14 -06:00
|
|
|
end
|
|
|
|
|
2023-06-12 11:59:13 -06:00
|
|
|
local included_elements = {containers=1, general=2, categories=4, types=8}
|
2023-03-15 22:54:48 -06:00
|
|
|
|
2023-05-20 17:00:59 -06:00
|
|
|
function export_stockpile(name, opts)
|
2023-03-15 18:16:42 -06:00
|
|
|
assert_safe_name(name)
|
|
|
|
name = STOCKPILES_DIR .. '/' .. name
|
2023-03-15 22:54:48 -06:00
|
|
|
|
|
|
|
local includedElements = 0
|
2023-04-23 00:13:50 -06:00
|
|
|
for _, inc in ipairs(opts.includes) do
|
2023-04-18 09:22:52 -06:00
|
|
|
includedElements = includedElements | included_elements[inc]
|
2023-03-15 22:54:48 -06:00
|
|
|
end
|
|
|
|
|
2023-03-20 01:32:19 -06:00
|
|
|
if includedElements == 0 then
|
2023-04-23 00:13:50 -06:00
|
|
|
for _, v in pairs(included_elements) do includedElements = includedElements | v end
|
2023-03-20 01:32:19 -06:00
|
|
|
end
|
|
|
|
|
2023-03-15 22:54:48 -06:00
|
|
|
stockpiles_export(name, get_sp_id(opts), includedElements)
|
2015-07-29 12:17:14 -06:00
|
|
|
end
|
|
|
|
|
2023-05-28 03:26:06 -06:00
|
|
|
local function normalize_name(name)
|
2023-03-15 18:16:42 -06:00
|
|
|
local is_library = false
|
|
|
|
if name:startswith('library/') then
|
|
|
|
name = name:sub(9)
|
|
|
|
is_library = true
|
2015-07-29 12:17:14 -06:00
|
|
|
end
|
2023-03-15 18:16:42 -06:00
|
|
|
assert_safe_name(name)
|
|
|
|
if not is_library and dfhack.filesystem.exists(STOCKPILES_DIR .. '/' .. name .. '.dfstock') then
|
2023-05-28 03:26:06 -06:00
|
|
|
return STOCKPILES_DIR .. '/' .. name
|
2023-03-15 18:16:42 -06:00
|
|
|
end
|
2023-05-28 03:26:06 -06:00
|
|
|
return STOCKPILES_LIBRARY_DIR .. '/' .. name
|
|
|
|
end
|
|
|
|
|
|
|
|
function import_stockpile(name, opts)
|
|
|
|
name = normalize_name(name)
|
|
|
|
stockpiles_import(name, get_sp_id(opts), opts.mode, table.concat(opts.filters or {}, ','))
|
|
|
|
end
|
|
|
|
|
|
|
|
function import_route(name, route_id, stop_id, mode, filters)
|
|
|
|
name = normalize_name(name)
|
|
|
|
stockpiles_route_import(name, route_id, stop_id, mode, table.concat(filters or {}, ','))
|
2023-03-15 22:54:48 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
local function parse_include(arg)
|
|
|
|
local includes = argparse.stringList(arg, 'include')
|
2023-04-23 00:13:50 -06:00
|
|
|
for _, v in ipairs(includes) do
|
|
|
|
if not included_elements[v] then qerror(('invalid included element: "%s"'):format(v)) end
|
2023-03-15 22:54:48 -06:00
|
|
|
end
|
|
|
|
return includes
|
|
|
|
end
|
|
|
|
|
|
|
|
local valid_modes = {set=true, enable=true, disable=true}
|
|
|
|
|
|
|
|
local function parse_mode(arg)
|
2023-04-23 00:13:50 -06:00
|
|
|
if not valid_modes[arg] then qerror(('invalid mode: "%s"'):format(arg)) end
|
2023-03-15 22:54:48 -06:00
|
|
|
return arg
|
2015-07-29 12:17:14 -06:00
|
|
|
end
|
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local function process_args(opts, args)
|
|
|
|
if args[1] == 'help' then
|
|
|
|
opts.help = true
|
2014-12-04 03:52:38 -07:00
|
|
|
return
|
|
|
|
end
|
2014-12-05 06:49:40 -07:00
|
|
|
|
2023-03-15 22:54:48 -06:00
|
|
|
opts.includes = {}
|
|
|
|
opts.mode = 'set'
|
2023-03-21 00:25:52 -06:00
|
|
|
opts.filters = {}
|
2023-03-15 22:54:48 -06:00
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
return argparse.processArgsGetopt(args, {
|
2023-04-23 00:13:50 -06:00
|
|
|
{
|
|
|
|
'h',
|
|
|
|
'help',
|
|
|
|
handler=function()
|
|
|
|
opts.help = true
|
|
|
|
end,
|
|
|
|
}, {
|
|
|
|
'm',
|
|
|
|
'mode',
|
|
|
|
hasArg=true,
|
|
|
|
handler=function(arg)
|
|
|
|
opts.mode = parse_mode(arg)
|
|
|
|
end,
|
|
|
|
}, {
|
|
|
|
'f',
|
|
|
|
'filter',
|
|
|
|
hasArg=true,
|
|
|
|
handler=function(arg)
|
|
|
|
opts.filters = argparse.stringList(arg)
|
|
|
|
end,
|
|
|
|
}, {
|
|
|
|
'i',
|
|
|
|
'include',
|
|
|
|
hasArg=true,
|
|
|
|
handler=function(arg)
|
|
|
|
opts.includes = parse_include(arg)
|
|
|
|
end,
|
|
|
|
}, {
|
|
|
|
's',
|
|
|
|
'stockpile',
|
|
|
|
hasArg=true,
|
|
|
|
handler=function(arg)
|
|
|
|
opts.id = argparse.nonnegativeInt(arg, 'stockpile')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
})
|
2014-12-02 12:00:16 -07:00
|
|
|
end
|
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
function parse_commandline(args)
|
|
|
|
local opts = {}
|
|
|
|
local positionals = process_args(opts, args)
|
2014-12-04 03:52:38 -07:00
|
|
|
|
2023-04-23 00:13:50 -06:00
|
|
|
if opts.help or not positionals then return false end
|
2014-12-02 12:00:16 -07:00
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
local command = table.remove(positionals, 1)
|
|
|
|
if not command or command == 'status' then
|
|
|
|
print_status()
|
|
|
|
elseif command == 'list' then
|
|
|
|
list_settings_files(positionals)
|
|
|
|
elseif command == 'export' then
|
|
|
|
export_stockpile(positionals[1], opts)
|
|
|
|
elseif command == 'import' then
|
|
|
|
import_stockpile(positionals[1], opts)
|
|
|
|
else
|
|
|
|
return false
|
2014-12-04 03:52:38 -07:00
|
|
|
end
|
2014-12-02 12:00:16 -07:00
|
|
|
|
2023-03-15 18:16:42 -06:00
|
|
|
return true
|
2014-12-02 12:23:12 -07:00
|
|
|
end
|
|
|
|
|
2023-04-23 17:09:31 -06:00
|
|
|
--------------------
|
2023-04-23 00:13:50 -06:00
|
|
|
-- dialogs
|
2023-04-22 20:03:58 -06:00
|
|
|
--------------------
|
2023-04-23 00:13:50 -06:00
|
|
|
|
|
|
|
StockpilesExport = defclass(StockpilesExport, widgets.Window)
|
2023-05-04 03:39:49 -06:00
|
|
|
StockpilesExport.ATTRS{frame_title='Export stockpile settings', frame={w=33, h=15}, resizable=true}
|
2023-04-23 00:13:50 -06:00
|
|
|
|
|
|
|
function StockpilesExport:init()
|
|
|
|
self:addviews{
|
2023-04-24 12:24:43 -06:00
|
|
|
widgets.EditField{
|
|
|
|
view_id='edit',
|
|
|
|
frame={t=0, l=0, r=0},
|
|
|
|
label_text='name: ',
|
|
|
|
on_char=function(ch)
|
|
|
|
return not ch:match(BAD_FILENAME_REGEX)
|
|
|
|
end,
|
|
|
|
}, widgets.Label{frame={t=2, l=0}, text='Include which elements?'},
|
|
|
|
widgets.ToggleHotkeyLabel{frame={t=4, l=0}, label='General settings', initial_option=false},
|
|
|
|
widgets.ToggleHotkeyLabel{
|
|
|
|
frame={t=5, l=0},
|
|
|
|
label='Container settings',
|
|
|
|
initial_option=false,
|
|
|
|
}, widgets.ToggleHotkeyLabel{frame={t=6, l=0}, label='Categories', initial_option=true},
|
|
|
|
widgets.ToggleHotkeyLabel{frame={t=7, l=0}, label='Subtypes', initial_option=true},
|
|
|
|
widgets.HotkeyLabel{
|
|
|
|
frame={t=10, l=0},
|
|
|
|
label='export',
|
|
|
|
key='SELECT',
|
|
|
|
enabled=function()
|
|
|
|
return #self.subviews.edit.text > 0
|
|
|
|
end,
|
|
|
|
on_activate=self:callback('on_submit'),
|
|
|
|
},
|
2023-04-23 00:13:50 -06:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2023-04-24 12:24:43 -06:00
|
|
|
function StockpilesExport:on_submit(text)
|
|
|
|
self:dismiss()
|
2023-04-23 00:13:50 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
StockpilesExportScreen = defclass(StockpilesExportScreen, gui.ZScreenModal)
|
|
|
|
StockpilesExportScreen.ATTRS{focus_path='stockpiles/export'}
|
|
|
|
|
|
|
|
function StockpilesExportScreen:init()
|
|
|
|
self:addviews{StockpilesExport{}}
|
|
|
|
end
|
|
|
|
|
|
|
|
function StockpilesExportScreen:onDismiss()
|
|
|
|
export_view = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
local function do_export()
|
|
|
|
export_view = export_view and export_view:raise() or StockpilesExportScreen{}:show()
|
|
|
|
end
|
|
|
|
|
2023-10-06 19:25:24 -06:00
|
|
|
--------------------
|
|
|
|
-- ConfigModal
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
ConfigModal = defclass(ConfigModal, gui.ZScreenModal)
|
|
|
|
ConfigModal.ATTRS{
|
|
|
|
focus_path='stockpiles_config',
|
|
|
|
on_close=DEFAULT_NIL,
|
|
|
|
}
|
|
|
|
|
|
|
|
function ConfigModal:init()
|
|
|
|
local sp = dfhack.gui.getSelectedStockpile(true)
|
|
|
|
local cur_setting = false
|
|
|
|
if sp then
|
|
|
|
local config = logistics.logistics_getStockpileConfigs(sp.stockpile_number)[1]
|
|
|
|
cur_setting = config.melt_masterworks == 1
|
|
|
|
end
|
|
|
|
|
|
|
|
self:addviews{
|
|
|
|
widgets.Window{
|
|
|
|
frame={w=35, h=10},
|
|
|
|
frame_title='Advanced logistics settings',
|
|
|
|
subviews={
|
|
|
|
widgets.ToggleHotkeyLabel{
|
|
|
|
view_id='melt_masterworks',
|
|
|
|
frame={l=0, t=0},
|
|
|
|
key='CUSTOM_M',
|
|
|
|
label='Melt masterworks',
|
|
|
|
initial_option=cur_setting,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function ConfigModal:onDismiss()
|
|
|
|
self.on_close{melt_masterworks=self.subviews.melt_masterworks:getOptionValue()}
|
|
|
|
end
|
|
|
|
|
2023-04-23 17:09:31 -06:00
|
|
|
--------------------
|
2023-04-23 20:44:22 -06:00
|
|
|
-- MinimizeButton
|
2023-04-22 20:03:58 -06:00
|
|
|
--------------------
|
|
|
|
|
2023-04-23 20:44:22 -06:00
|
|
|
MinimizeButton = defclass(MinimizeButton, widgets.Widget)
|
|
|
|
MinimizeButton.ATTRS{
|
|
|
|
label_unminimized='minimize',
|
|
|
|
label_minimized='restore',
|
|
|
|
label_pos='left',
|
2023-04-23 21:00:57 -06:00
|
|
|
symbol_minimize=string.char(31),
|
|
|
|
symbol_restore=string.char(30),
|
2023-04-23 20:44:22 -06:00
|
|
|
get_minimized_fn=DEFAULT_NIL,
|
|
|
|
on_click=DEFAULT_NIL,
|
|
|
|
}
|
2023-04-23 17:09:31 -06:00
|
|
|
|
|
|
|
function MinimizeButton:init()
|
2023-04-23 20:44:22 -06:00
|
|
|
self.hovered = false
|
|
|
|
|
2023-04-23 21:00:57 -06:00
|
|
|
ensure_key(self, 'frame').h = 1
|
|
|
|
|
2023-04-24 12:24:43 -06:00
|
|
|
local is_hovered = function()
|
|
|
|
return self.hovered
|
|
|
|
end
|
|
|
|
local is_not_hovered = function()
|
|
|
|
return not self.hovered
|
|
|
|
end
|
2023-04-23 20:44:22 -06:00
|
|
|
local get_action_symbol = function()
|
2023-04-23 21:00:57 -06:00
|
|
|
return self.get_minimized_fn() and self.symbol_minimize or self.symbol_restore
|
2023-04-23 20:44:22 -06:00
|
|
|
end
|
|
|
|
local get_label = function()
|
|
|
|
local label = self.get_minimized_fn() and self.label_minimized or self.label_unminimized
|
|
|
|
return (' %s '):format(label)
|
|
|
|
end
|
|
|
|
|
|
|
|
local hovered_text = {'[', {text=get_action_symbol}, ']'}
|
2023-04-24 12:24:43 -06:00
|
|
|
table.insert(hovered_text, self.label_pos == 'left' and 1 or #hovered_text + 1,
|
|
|
|
{text=get_label, hpen=dfhack.pen.parse{fg=COLOR_BLACK, bg=COLOR_WHITE}})
|
2023-04-23 17:09:31 -06:00
|
|
|
|
|
|
|
self:addviews{
|
|
|
|
widgets.Label{
|
2023-04-23 20:44:22 -06:00
|
|
|
view_id='unhovered_label',
|
2023-04-23 21:00:57 -06:00
|
|
|
frame={t=0, w=3, h=1},
|
2023-04-23 20:44:22 -06:00
|
|
|
text={'[', {text=get_action_symbol}, ']'},
|
2023-04-23 17:09:31 -06:00
|
|
|
text_pen=dfhack.pen.parse{fg=COLOR_BLACK, bg=COLOR_LIGHTRED},
|
|
|
|
text_hpen=dfhack.pen.parse{fg=COLOR_WHITE, bg=COLOR_RED},
|
2023-04-24 12:24:43 -06:00
|
|
|
on_click=function()
|
|
|
|
self.on_click()
|
|
|
|
self:updateLayout()
|
|
|
|
end,
|
2023-04-23 20:44:22 -06:00
|
|
|
visible=is_not_hovered,
|
2023-04-23 17:09:31 -06:00
|
|
|
}, widgets.Label{
|
2023-04-23 20:44:22 -06:00
|
|
|
view_id='hovered_label',
|
2023-04-23 21:00:57 -06:00
|
|
|
frame={t=0, h=1},
|
2023-04-23 20:44:22 -06:00
|
|
|
text=hovered_text,
|
|
|
|
auto_width=true,
|
2023-04-23 17:10:54 -06:00
|
|
|
text_pen=dfhack.pen.parse{fg=COLOR_BLACK, bg=COLOR_LIGHTRED},
|
|
|
|
text_hpen=dfhack.pen.parse{fg=COLOR_WHITE, bg=COLOR_RED},
|
2023-04-24 12:24:43 -06:00
|
|
|
on_click=function()
|
|
|
|
self.on_click()
|
|
|
|
self:updateLayout()
|
|
|
|
end,
|
2023-04-23 20:44:22 -06:00
|
|
|
visible=is_hovered,
|
2023-04-23 17:09:31 -06:00
|
|
|
},
|
|
|
|
}
|
2023-04-23 21:00:57 -06:00
|
|
|
|
|
|
|
if self.label_pos == 'left' then
|
|
|
|
self.subviews.unhovered_label.frame.r = 0
|
|
|
|
self.subviews.hovered_label.frame.r = 0
|
|
|
|
else
|
|
|
|
self.subviews.unhovered_label.frame.l = 0
|
|
|
|
self.subviews.hovered_label.frame.l = 0
|
|
|
|
end
|
2023-04-23 17:09:31 -06:00
|
|
|
end
|
|
|
|
|
2023-04-23 20:44:22 -06:00
|
|
|
function MinimizeButton:onRenderFrame()
|
|
|
|
local prev_hovered = self.hovered
|
|
|
|
if self.hovered then
|
|
|
|
self.hovered = self.subviews.hovered_label:getMousePos()
|
|
|
|
else
|
|
|
|
self.hovered = self.subviews.unhovered_label:getMousePos()
|
|
|
|
end
|
|
|
|
if self.hovered ~= prev_hovered then
|
|
|
|
self:updateLayout()
|
|
|
|
df.global.gps.force_full_display_count = 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------
|
|
|
|
-- StockpilesOverlay
|
|
|
|
--------------------
|
|
|
|
|
2023-04-22 20:03:58 -06:00
|
|
|
StockpilesOverlay = defclass(StockpilesOverlay, overlay.OverlayWidget)
|
|
|
|
StockpilesOverlay.ATTRS{
|
2023-06-14 17:06:00 -06:00
|
|
|
default_pos={x=24, y=-6},
|
2023-04-23 00:13:50 -06:00
|
|
|
default_enabled=true,
|
|
|
|
viewscreens='dwarfmode/Some/Stockpile',
|
2023-06-12 13:52:47 -06:00
|
|
|
frame={w=65, h=4},
|
2023-04-22 20:03:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
function StockpilesOverlay:init()
|
|
|
|
self.minimized = false
|
2023-04-23 00:13:50 -06:00
|
|
|
|
2023-10-26 09:55:46 -06:00
|
|
|
local function is_expanded()
|
|
|
|
return not self.minimized
|
|
|
|
end
|
|
|
|
|
2023-05-04 03:39:49 -06:00
|
|
|
local main_panel = widgets.Panel{
|
2023-04-23 00:13:50 -06:00
|
|
|
view_id='main',
|
|
|
|
frame_style=gui.MEDIUM_FRAME,
|
|
|
|
frame_background=gui.CLEAR_PEN,
|
2023-10-26 09:55:46 -06:00
|
|
|
visible=is_expanded,
|
2023-04-23 00:13:50 -06:00
|
|
|
subviews={
|
2023-06-12 13:52:47 -06:00
|
|
|
-- widgets.HotkeyLabel{
|
|
|
|
-- frame={t=0, l=0},
|
|
|
|
-- label='import settings',
|
|
|
|
-- auto_width=true,
|
|
|
|
-- key='CUSTOM_CTRL_I',
|
|
|
|
-- on_activate=do_import,
|
|
|
|
-- }, widgets.HotkeyLabel{
|
|
|
|
-- frame={t=1, l=0},
|
|
|
|
-- label='export settings',
|
|
|
|
-- auto_width=true,
|
|
|
|
-- key='CUSTOM_CTRL_E',
|
|
|
|
-- on_activate=do_export,
|
|
|
|
-- },
|
|
|
|
widgets.Panel{
|
2023-04-23 00:13:50 -06:00
|
|
|
frame={t=0, l=0},
|
|
|
|
subviews={
|
|
|
|
widgets.Label{
|
2023-05-04 03:39:49 -06:00
|
|
|
frame={t=0, l=0, h=1},
|
2023-04-23 00:13:50 -06:00
|
|
|
auto_height=false,
|
2023-06-12 13:52:47 -06:00
|
|
|
text={'Designate items/animals brought to this stockpile for:'},
|
2023-05-04 03:39:49 -06:00
|
|
|
text_pen=COLOR_DARKGREY,
|
|
|
|
}, widgets.ToggleHotkeyLabel{
|
|
|
|
view_id='melt',
|
|
|
|
frame={t=1, l=0},
|
|
|
|
auto_width=true,
|
|
|
|
key='CUSTOM_CTRL_M',
|
|
|
|
option_gap=-1,
|
|
|
|
options={{label='Melting', value=true, pen=COLOR_RED},
|
|
|
|
{label='Melting', value=false}},
|
2023-06-12 13:52:47 -06:00
|
|
|
initial_option=false,
|
2023-05-04 03:39:49 -06:00
|
|
|
on_change=self:callback('toggleLogisticsFeature', 'melt'),
|
|
|
|
}, widgets.ToggleHotkeyLabel{
|
|
|
|
view_id='trade',
|
|
|
|
frame={t=1, l=16},
|
|
|
|
auto_width=true,
|
|
|
|
key='CUSTOM_CTRL_T',
|
|
|
|
option_gap=-1,
|
|
|
|
options={{label='Trading', value=true, pen=COLOR_YELLOW},
|
|
|
|
{label='Trading', value=false}},
|
2023-06-12 13:52:47 -06:00
|
|
|
initial_option=false,
|
2023-05-04 03:39:49 -06:00
|
|
|
on_change=self:callback('toggleLogisticsFeature', 'trade'),
|
|
|
|
}, widgets.ToggleHotkeyLabel{
|
|
|
|
view_id='dump',
|
|
|
|
frame={t=1, l=32},
|
|
|
|
auto_width=true,
|
|
|
|
key='CUSTOM_CTRL_U',
|
|
|
|
option_gap=-1,
|
|
|
|
options={{label='Dumping', value=true, pen=COLOR_LIGHTMAGENTA},
|
|
|
|
{label='Dumping', value=false}},
|
2023-06-12 13:52:47 -06:00
|
|
|
initial_option=false,
|
2023-05-04 03:39:49 -06:00
|
|
|
on_change=self:callback('toggleLogisticsFeature', 'dump'),
|
2023-06-12 00:31:54 -06:00
|
|
|
}, widgets.ToggleHotkeyLabel{
|
|
|
|
view_id='train',
|
|
|
|
frame={t=1, l=48},
|
|
|
|
auto_width=true,
|
|
|
|
key='CUSTOM_CTRL_A',
|
|
|
|
option_gap=-1,
|
|
|
|
options={{label='Training', value=true, pen=COLOR_LIGHTBLUE},
|
|
|
|
{label='Training', value=false}},
|
2023-06-12 13:52:47 -06:00
|
|
|
initial_option=false,
|
2023-06-12 00:31:54 -06:00
|
|
|
on_change=self:callback('toggleLogisticsFeature', 'train'),
|
2023-04-23 00:13:50 -06:00
|
|
|
},
|
2023-04-22 20:03:58 -06:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-04-23 20:44:22 -06:00
|
|
|
self:addviews{
|
2023-10-06 19:25:24 -06:00
|
|
|
main_panel,
|
|
|
|
MinimizeButton{
|
2023-06-14 17:06:00 -06:00
|
|
|
frame={t=0, r=9},
|
2023-10-06 19:25:24 -06:00
|
|
|
get_minimized_fn=function() return self.minimized end,
|
2023-04-23 20:44:22 -06:00
|
|
|
on_click=self:callback('toggleMinimized'),
|
2023-04-22 20:03:58 -06:00
|
|
|
},
|
2023-10-16 04:27:08 -06:00
|
|
|
widgets.ConfigureButton{
|
|
|
|
frame={t=0, r=5},
|
2023-10-06 19:25:24 -06:00
|
|
|
on_click=function() ConfigModal{on_close=self:callback('on_custom_config')}:show() end,
|
2023-10-26 09:55:46 -06:00
|
|
|
visible=is_expanded,
|
2023-10-06 19:25:24 -06:00
|
|
|
},
|
2023-10-16 04:27:08 -06:00
|
|
|
widgets.HelpButton{
|
|
|
|
frame={t=0, r=1},
|
|
|
|
command='stockpiles',
|
2023-10-26 09:55:46 -06:00
|
|
|
visible=is_expanded,
|
2023-10-06 19:25:24 -06:00
|
|
|
},
|
2023-04-22 20:03:58 -06:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function StockpilesOverlay:overlay_onupdate()
|
2023-04-23 00:13:50 -06:00
|
|
|
-- periodically pick up changes made from other interfaces
|
2023-04-22 20:03:58 -06:00
|
|
|
self.cur_stockpile = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
function StockpilesOverlay:onRenderFrame()
|
2023-05-04 03:39:49 -06:00
|
|
|
local sp = dfhack.gui.getSelectedStockpile(true)
|
|
|
|
if sp and self.cur_stockpile ~= sp then
|
2023-04-22 20:03:58 -06:00
|
|
|
local config = logistics.logistics_getStockpileConfigs(sp.stockpile_number)[1]
|
|
|
|
self.subviews.melt:setOption(config.melt == 1)
|
|
|
|
self.subviews.trade:setOption(config.trade == 1)
|
|
|
|
self.subviews.dump:setOption(config.dump == 1)
|
2023-06-12 00:31:54 -06:00
|
|
|
self.subviews.train:setOption(config.train == 1)
|
2023-04-22 20:03:58 -06:00
|
|
|
self.cur_stockpile = sp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function StockpilesOverlay:toggleLogisticsFeature(feature)
|
2023-05-04 03:39:49 -06:00
|
|
|
self.cur_stockpile = nil
|
|
|
|
local sp = dfhack.gui.getSelectedStockpile(true)
|
|
|
|
if not sp then return end
|
2023-04-22 20:03:58 -06:00
|
|
|
local config = logistics.logistics_getStockpileConfigs(sp.stockpile_number)[1]
|
|
|
|
-- logical xor
|
|
|
|
logistics.logistics_setStockpileConfig(config.stockpile_number,
|
2023-04-23 00:13:50 -06:00
|
|
|
(feature == 'melt') ~= (config.melt == 1), (feature == 'trade') ~= (config.trade == 1),
|
2023-10-06 19:25:24 -06:00
|
|
|
(feature == 'dump') ~= (config.dump == 1), (feature == 'train') ~= (config.train == 1),
|
|
|
|
config.melt_masterworks == 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
function StockpilesOverlay:on_custom_config(custom)
|
|
|
|
local sp = dfhack.gui.getSelectedStockpile(true)
|
|
|
|
if not sp then return end
|
|
|
|
local config = logistics.logistics_getStockpileConfigs(sp.stockpile_number)[1]
|
|
|
|
logistics.logistics_setStockpileConfig(config.stockpile_number,
|
|
|
|
config.melt == 1, config.trade == 1, config.dump == 1, config.train == 1, custom.melt_masterworks)
|
2023-04-23 00:13:50 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
function StockpilesOverlay:toggleMinimized()
|
|
|
|
self.minimized = not self.minimized
|
|
|
|
self.cur_stockpile = nil
|
2023-04-22 20:03:58 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
function StockpilesOverlay:onInput(keys)
|
|
|
|
if keys.CUSTOM_ALT_M then
|
2023-04-23 00:13:50 -06:00
|
|
|
self:toggleMinimized()
|
2023-04-22 20:03:58 -06:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
return StockpilesOverlay.super.onInput(self, keys)
|
|
|
|
end
|
|
|
|
|
2023-04-23 00:13:50 -06:00
|
|
|
OVERLAY_WIDGETS = {overlay=StockpilesOverlay}
|
|
|
|
|
2014-12-02 12:00:16 -07:00
|
|
|
return _ENV
|