Back to Home

ESO Lua File v101041

ingame/repair/repairwindow.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
ZO_Repair = ZO_InitializingObject:Subclass()
local DATA_TYPE_REPAIR_ITEM = 1
function ZO_Repair:Initialize(control)
    self.control = control
    control.owner = self
    REPAIR_FRAGMENT = ZO_FadeSceneFragment:New(control)
    self.list = self.control:GetNamedChild("List")
    self.activeTab = self.control:GetNamedChild("TabsActive")
    self.tabs = self.control:GetNamedChild("Tabs")
    self.freeSlotsLabel = self.control:GetNamedChild("InfoBarFreeSlots")
    self.money = self.control:GetNamedChild("InfoBarMoney")
    self:InitializeList()
end
function ZO_Repair:InitializeList()
    ZO_ScrollList_AddDataType(self.list, DATA_TYPE_REPAIR_ITEM, "ZO_PlayerInventorySlot", 52, function(control, data) self:SetupRepairItem(control, data) end, nil, nil, ZO_InventorySlot_OnPoolReset)
end
function ZO_Repair:InitializeFilterBar()
    local menuBarData =
    {
        initialButtonAnchorPoint = RIGHT,
        buttonTemplate = "ZO_StoreTab", 
        normalSize = 51,
        downSize = 64,
        buttonPadding = -15,
        animationDuration = 180,
    }
    ZO_MenuBar_SetData(self.tabs, menuBarData)
    local repairFilter =
    {
        tooltipText = GetString("SI_ITEMFILTERTYPE", ITEMFILTERTYPE_DAMAGED),
        filterType = ITEMFILTERTYPE_DAMAGED,
        descriptor = ITEMFILTERTYPE_DAMAGED,
        normal = "EsoUI/Art/Repair/inventory_tabIcon_repair_up.dds", 
        pressed = "EsoUI/Art/Repair/inventory_tabIcon_repair_down.dds",
        highlight = "EsoUI/Art/Repair/inventory_tabIcon_repair_over.dds",
    }
    ZO_MenuBar_AddButton(self.tabs, repairFilter)
    ZO_MenuBar_SelectDescriptor(self.tabs, ITEMFILTERTYPE_DAMAGED)
    self.activeTab:SetText(GetString("SI_ITEMFILTERTYPE", ITEMFILTERTYPE_DAMAGED))
end
function ZO_Repair:InitializeSortHeader()
    self.sortHeaders = ZO_SortHeaderGroup:New(self.control:GetNamedChild("SortBy"), true)
    self.sortOrder = ZO_SORT_ORDER_UP
    self.sortKey = "name"
    local function OnSortHeaderClicked(key, order)
        self.sortKey = key
        self.sortOrder = order
        self:ApplySort()
    end
    self.sortHeaders:RegisterCallback(ZO_SortHeaderGroup.HEADER_CLICKED, OnSortHeaderClicked)
    self.sortHeaders:AddHeadersFromContainer()
    self.sortHeaders:SelectHeaderByKey("name", ZO_SortHeaderGroup.SUPPRESS_CALLBACKS)
    self.searchBox = self.control:GetNamedChild("SearchFiltersTextSearchBox")
    local function OnTextSearchTextChanged(editBox)
        TEXT_SEARCH_MANAGER:SetSearchText("storeTextSearch", editBox:GetText())
    end
    self.searchBox:SetHandler("OnTextChanged", OnTextSearchTextChanged)
    local SUPPRESS_TEXT_CHANGED_CALLBACK = true
    local function OnListTextFilterComplete()
        if REPAIR_FRAGMENT:IsShowing() then
            self.searchBox:SetText(TEXT_SEARCH_MANAGER:GetSearchText("storeTextSearch"), SUPPRESS_TEXT_CHANGED_CALLBACK)
            self:RefreshAll()
        end
    end
    TEXT_SEARCH_MANAGER:RegisterCallback("UpdateSearchResults", OnListTextFilterComplete)
end
function ZO_Repair:InitializeEvents()
    local function RefreshAll()
        if not self.control:IsControlHidden() then
            self:RefreshAll()
        end
    end
    self.control:RegisterForEvent(EVENT_MONEY_UPDATE, function() self:UpdateMoney() end)
    self.control:RegisterForEvent(EVENT_INVENTORY_SINGLE_SLOT_UPDATE, RefreshAll)
    self.control:RegisterForEvent(EVENT_INVENTORY_FULL_UPDATE, RefreshAll)
end
function ZO_Repair:RefreshAll()
    self:UpdateList()
end
function ZO_Repair:UpdateMoney()
    if not self.control:IsControlHidden() then
        ZO_CurrencyControl_SetSimpleCurrency(self.money, CURT_MONEY, GetCurrencyAmount(CURT_MONEY, CURRENCY_LOCATION_CHARACTER), ZO_KEYBOARD_CURRENCY_OPTIONS)
    end
end
function ZO_Repair:UpdateFreeSlots()
    if not self.control:IsControlHidden() then
        local numUsedSlots, numSlots = PLAYER_INVENTORY:GetNumSlots(INVENTORY_BACKPACK)
        if numUsedSlots < numSlots then
            self.freeSlotsLabel:SetText(zo_strformat(SI_INVENTORY_BACKPACK_REMAINING_SPACES, numUsedSlots, numSlots))
        else
            self.freeSlotsLabel:SetText(zo_strformat(SI_INVENTORY_BACKPACK_COMPLETELY_FULL, numUsedSlots, numSlots))
        end
    end
end
do
    local function GatherDamagedEquipmentFromBag(bagId, dataTable)
        for slotIndex in ZO_IterateBagSlots(bagId) do
            if TEXT_SEARCH_MANAGER:IsItemInSearchTextResults("storeTextSearch", BACKGROUND_LIST_FILTER_TARGET_BAG_SLOT, bagId, slotIndex) then
                local condition = GetItemCondition(bagId, slotIndex)
                if condition < 100 and not IsItemStolen(bagId, slotIndex) then
                    local icon, stackCount, _, _, _, _, _, functionalQuality, displayQuality = GetItemInfo(bagId, slotIndex)
                    if stackCount > 0 then
                        local repairCost = GetItemRepairCost(bagId, slotIndex)
                        if repairCost > 0 then
                            local name = zo_strformat(SI_TOOLTIP_ITEM_NAME, GetItemName(bagId, slotIndex))
                            local data =
                            {
                                bagId = bagId,
                                slotIndex = slotIndex,
                                name = name,
                                icon = icon,
                                stackCount = stackCount,
                                functionalQuality = functionalQuality,
                                displayQuality = displayQuality,
                                -- quality is deprecated, included here for addon backwards compatibility
                                quality = displayQuality,
                                condition = condition,
                                repairCost = repairCost
                            }
                            dataTable[#dataTable + 1] = ZO_ScrollList_CreateDataEntry(DATA_TYPE_REPAIR_ITEM, data)
                        end
                    end
                end
            end
        end
    end
    function ZO_Repair:UpdateList()
        if not self.control:IsControlHidden() then
            ZO_ScrollList_Clear(self.list)
            ZO_ScrollList_ResetToTop(self.list)
            local scrollData = ZO_ScrollList_GetDataList(self.list)
            GatherDamagedEquipmentFromBag(BAG_WORN, scrollData)
            GatherDamagedEquipmentFromBag(BAG_BACKPACK, scrollData)
            self:ApplySort()
        end
    end
end
local REPAIR_COST_CURRENCY_OPTIONS =
{
    showTooltips = false,
    font = "ZoFontGameShadow",
    iconSide = RIGHT,
}
function ZO_Repair:SetupRepairItem(control, data)
    local statusControl = GetControl(control, "Status")
    local slotControl = GetControl(control, "Button")
    local nameControl = GetControl(control, "Name")
    local repairCostControl = GetControl(control, "SellPrice")
    local itemConditionControl = GetControl(control, "ItemCondition")
    statusControl:SetHidden(true)
    ZO_Inventory_BindSlot(slotControl, SLOT_TYPE_REPAIR, data.slotIndex, data.bagId)
    ZO_Inventory_BindSlot(control, SLOT_TYPE_REPAIR, data.slotIndex, data.bagId)
    ZO_Inventory_SetupSlot(slotControl, data.stackCount, data.icon)
    nameControl:SetText(data.name) -- already formatted
    -- data.quality is deprecated, included here for addon backwards compatibility
    local displayQuality = data.displayQuality or data.quality
    nameControl:SetColor(GetInterfaceColor(INTERFACE_COLOR_TYPE_ITEM_QUALITY_COLORS, displayQuality))
    repairCostControl:SetHidden(false)
    ZO_CurrencyControl_SetSimpleCurrency(repairCostControl, CURT_MONEY, data.repairCost, REPAIR_COST_CURRENCY_OPTIONS)
    itemConditionControl:SetText(zo_strformat(SI_ITEM_CONDITION_PERCENT, data.condition))
end
do
    local sortKeys =
    {
        name = { },
        condition = { tiebreaker = "name", isNumeric = true },
        repairCost = { tiebreaker = "name", isNumeric = true },
    }
    function ZO_Repair:ApplySort()
        local function Comparator(left, right)
            return ZO_TableOrderingFunction(left.data, right.data, self.sortKey, sortKeys, self.sortOrder)
        end
        local scrollData = ZO_ScrollList_GetDataList(self.list)
        table.sort(scrollData, Comparator)
        ZO_ScrollList_Commit(self.list)
    end
end
function ZO_Repair:OnShown()
    self.searchBox:SetText(TEXT_SEARCH_MANAGER:GetSearchText("storeTextSearch"))
    self:UpdateList()
    self:UpdateMoney()
end
    REPAIR_WINDOW = ZO_Repair:New(control)
end