Back to Home

ESO Lua File v101041

ingame/inventory/inventorylandingarea.lua

[◄ back to folders ]
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
76
77
78
79
80
local function PlaceCursorInInventory(bagId, cursorType)
    -- If the cursor contains a store item, just let that system handle it...
    if cursorType == MOUSE_CONTENT_STORE_ITEM then
        PlaceInInventory(bagId, 0)
        return
    end
    if cursorType == MOUSE_CONTENT_QUEST_ITEM then
        if bagId == BAG_BANK then
            ZO_Alert(UI_ALERT_CATEGORY_ERROR, SOUNDS.NEGATIVE_CLICK, GetString(SI_INVENTORY_ERROR_NO_QUEST_ITEMS_IN_BANK))
        end
        -- can't really move quest items anywhere, so return no matter what
        return
    end
    -- If we are moving from the Craft Bag we need to prompt the transfer dialog
    local sourceBag = GetCursorBagId()
    if sourceBag == BAG_VIRTUAL then
        if bagId == BAG_BACKPACK then
            local sourceSlotIndex = GetCursorSlotIndex()
            ZO_TryMoveToInventoryFromBagAndSlot(sourceBag, sourceSlotIndex)
        end
        -- no support for going from Craft bag directly to a bag other than backpack
        return
    end
    -- Should not auto-stack, that's what right click is for as of now.
    -- This is only called after all cursor data has been checked.
end
local dropHandlers =
{
    ["inventory"] = function(landingArea, cursorType)
        PlaceCursorInInventory(landingArea.bagId, cursorType)
    end,
    ["store"] = function(landingArea, cursorType)
        PlaceInStoreWindow()
    end,
}
-- Allow calling from external systems (the inventory system will once again begin using this
-- to auto-drop into inventory (bank/bag) when the split stack menu item is chosen.
function ZO_InventoryLandingArea_DropCursor(landingArea)
    local cursorType = GetCursorContentType()
    local handler = dropHandlers[landingArea.descriptor]
    if handler and (cursorType ~= MOUSE_CONTENT_EMPTY) then
        handler(landingArea, cursorType)
    end
end
end
function ZO_InventoryLandingArea_SetHidden(landingArea, hidden)
    landingArea:SetHidden(hidden)
    if not hidden then
        -- It's assumed that landing areas are children of a ZO_ScrollListContents control that hold ZO_ListInventorySlots
        -- which is how the offsets are determined when there are icons present in the list.
        -- The right offset is determined from the scrollbar.
        local scrollList = landingArea:GetParent():GetParent()
        landingArea:ClearAnchors()
        landingArea:SetAnchor(TOPLEFT, scrollList, TOPLEFT, 0, 0)
        landingArea:SetAnchor(BOTTOMRIGHT, scrollList, BOTTOMRIGHT, 0, 0)
    end
end
function ZO_InventoryLandingArea_Initialize(landingArea, descriptor, bagId)
    local newParent = landingArea:GetParent():GetNamedChild("Contents")
    landingArea:SetParent(newParent)
    landingArea.bagId = bagId
    landingArea.descriptor = descriptor
end