-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathempty-bin.lua
More file actions
75 lines (68 loc) · 2.55 KB
/
empty-bin.lua
File metadata and controls
75 lines (68 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
-- Empty a bin onto the floor
-- Based on 'emptybin' by StoneToad
-- https://gist.github.com/stonetoad/11129025
-- http://dwarffortresswiki.org/index.php/DF2014_Talk:Bin
local argparse = require('argparse')
local options, args = {
help = false,
recursive = false,
force = false
},
{...}
local function emptyContainer(container)
local items = dfhack.items.getContainedItems(container)
if #items > 0 then
print('Emptying ' .. dfhack.items.getReadableDescription(container))
local pos = xyz2pos(dfhack.items.getPosition(container))
for _, item in ipairs(items) do
local itemType = item:getType()
local skip = not options.force and (itemType == df.item_type.LIQUID_MISC or itemType == df.item_type.DRINK or itemType == df.item_type.POWDER_MISC)
if skip then
print(' ' .. dfhack.items.getReadableDescription(item) .. ' was skipped (use --force to override)')
else
print(' ' .. dfhack.items.getReadableDescription(item))
dfhack.items.moveToGround(item, pos)
if options.recursive then
emptyContainer(item)
end
end
end
end
end
argparse.processArgsGetopt(args,{
{ 'h', 'help', handler = function() options.help = true end },
{ 'r', 'recursive', handler = function() options.recursive = true end },
{ 'f', 'force', handler = function() options.force = true end }
})
if options.help then
print(dfhack.script_help())
return
end
local viewsheets = df.global.game.main_interface.view_sheets
local stockpile = dfhack.gui.getSelectedStockpile(true)
local selectedItem = dfhack.gui.getSelectedItem(true)
local selectedBuilding = dfhack.gui.getSelectedBuilding(true)
if stockpile then
local contents = dfhack.buildings.getStockpileContents(stockpile)
for _, container in ipairs(contents) do
emptyContainer(container)
end
elseif selectedItem then
emptyContainer(selectedItem)
elseif selectedBuilding then
if not selectedBuilding:isActual() then
return
end
for _, contained in ipairs(selectedBuilding.contained_items) do
if contained.use_mode == df.building_item_role_type.TEMP then
emptyContainer(contained.item)
end
end
elseif viewsheets.open then
for _, item_id in ipairs(viewsheets.viewing_itid) do
local item = df.item.find(item_id)
emptyContainer(item)
end
else
qerror('Please select a container, building, stockpile, or tile with a list of items.')
end