Back to Home

ESO Lua File v101041

ingame/characterwindow/keyboard/characterwindow_keyboard.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
local g_isReadOnly = false
local isDeadReadOnly = false
local isShowingReadOnlyFragment = false
local MOUSE_OVER_TEXTURE = "EsoUI/Art/ActionBar/actionBar_mouseOver.dds"
local function RestoreMouseOverTexture(slotControl)
    slotControl:SetMouseOverTexture(not ZO_Character_IsReadOnly() and MOUSE_OVER_TEXTURE or nil)
    slotControl:SetPressedMouseOverTexture(not ZO_Character_IsReadOnly() and MOUSE_OVER_TEXTURE or nil)
    ZO_ResetSparkleAnimationColor(slotControl)
end
local slots = nil
local heldSlotLinkage = nil
local function InitializeSlots()
    slots =
    {
        [EQUIP_SLOT_HEAD]           = ZO_CharacterEquipmentSlotsHead,
        [EQUIP_SLOT_NECK]           = ZO_CharacterEquipmentSlotsNeck,
        [EQUIP_SLOT_CHEST]          = ZO_CharacterEquipmentSlotsChest,
        [EQUIP_SLOT_SHOULDERS]      = ZO_CharacterEquipmentSlotsShoulder,
        [EQUIP_SLOT_MAIN_HAND]      = ZO_CharacterEquipmentSlotsMainHand,
        [EQUIP_SLOT_OFF_HAND]       = ZO_CharacterEquipmentSlotsOffHand,
        [EQUIP_SLOT_POISON]         = ZO_CharacterEquipmentSlotsPoison,
        [EQUIP_SLOT_WAIST]          = ZO_CharacterEquipmentSlotsBelt,
        [EQUIP_SLOT_LEGS]           = ZO_CharacterEquipmentSlotsLeg,
        [EQUIP_SLOT_FEET]           = ZO_CharacterEquipmentSlotsFoot,
        [EQUIP_SLOT_COSTUME]        = ZO_CharacterEquipmentSlotsCostume,
        [EQUIP_SLOT_RING1]          = ZO_CharacterEquipmentSlotsRing1,
        [EQUIP_SLOT_RING2]          = ZO_CharacterEquipmentSlotsRing2,
        [EQUIP_SLOT_HAND]           = ZO_CharacterEquipmentSlotsGlove,
        [EQUIP_SLOT_BACKUP_MAIN]    = ZO_CharacterEquipmentSlotsBackupMain,
        [EQUIP_SLOT_BACKUP_OFF]     = ZO_CharacterEquipmentSlotsBackupOff,
        [EQUIP_SLOT_BACKUP_POISON]  = ZO_CharacterEquipmentSlotsBackupPoison,
    }
    heldSlotLinkage =
    {
        [EQUIP_SLOT_MAIN_HAND] = { linksTo = EQUIP_SLOT_OFF_HAND },
        [EQUIP_SLOT_BACKUP_MAIN] = { linksTo = EQUIP_SLOT_BACKUP_OFF },
        [EQUIP_SLOT_OFF_HAND] =
        {
            pullFromConditionFn =   function()
                return GetItemEquipType(BAG_WORN, EQUIP_SLOT_MAIN_HAND) == EQUIP_TYPE_TWO_HAND
            end,
            pullFromFn =    function()
                local slotHasItem, iconFile, _, _, locked = GetWornItemInfo(BAG_WORN, EQUIP_SLOT_MAIN_HAND)
                return iconFile, slotHasItem, locked
            end,
        },
        [EQUIP_SLOT_BACKUP_OFF] =
        {
            pullFromConditionFn =   function()
                return GetItemEquipType(BAG_WORN, EQUIP_SLOT_BACKUP_MAIN) == EQUIP_TYPE_TWO_HAND 
            end,
            pullFromFn =    function()
                local slotHasItem, iconFile, _, _, locked = GetWornItemInfo(BAG_WORN, EQUIP_SLOT_BACKUP_MAIN)
                return iconFile, slotHasItem, locked
            end,
        },
    }
    for slotId, slotControl in pairs(slots) do
        ZO_Inventory_BindSlot(slotControl, SLOT_TYPE_EQUIPMENT, slotId, BAG_WORN)
        slotControl.CustomOnStopCallback = RestoreMouseOverTexture
        ZO_CreateSparkleAnimation(slotControl)
    end
end
local PLAY_ANIMATION = true
local NO_ANIMATION = false
local function UpdateSlotAppearance(slotId, slotControl, animationOption, copyFromLinkedFn)
    local iconControl = slotControl:GetNamedChild("Icon")
    local slotHasItem, iconFile, locked
    if copyFromLinkedFn then
        iconFile, slotHasItem, locked = copyFromLinkedFn()
    else
        -- make _ local so it doesn't leak globally
        local _
        slotHasItem, iconFile, _, _, locked = GetWornItemInfo(BAG_WORN, slotId)
    end
    local disabled = ((slotId == EQUIP_SLOT_BACKUP_MAIN) or (slotId == EQUIP_SLOT_BACKUP_OFF) or (slotId == EQUIP_SLOT_BACKUP_POISON)) and GetUnitLevel("player") < GetWeaponSwapUnlockedLevel()
    slotControl:SetMouseEnabled(not disabled)
    if disabled then
        iconControl:SetTexture("EsoUI/Art/CharacterWindow/weaponSwap_locked.dds")
    elseif slotHasItem then
        iconControl:SetTexture(iconFile)
        if animationOption == PLAY_ANIMATION then
            ZO_PlaySparkleAnimation(slotControl)
        end
    else
        iconControl:SetTexture(ZO_Character_GetEmptyEquipSlotTexture(slotId))
    end
    local stackCountLabel = GetControl(slotControl, "StackCount")
    if slotId == EQUIP_SLOT_POISON or slotId == EQUIP_SLOT_BACKUP_POISON then
        slotControl.stackCount = select(2, GetItemInfo(BAG_WORN, slotId))
        if slotControl.stackCount > 1 then
            local USE_LOWERCASE_NUMBER_SUFFIXES = false
            stackCountLabel:SetText(ZO_AbbreviateAndLocalizeNumber(slotControl.stackCount, NUMBER_ABBREVIATION_PRECISION_LARGEST_UNIT, USE_LOWERCASE_NUMBER_SUFFIXES))
        else
            stackCountLabel:SetText("")
        end
    else
        slotControl.stackCount = slotHasItem and 1 or 0
        stackCountLabel:SetText("")
    end
    if not disabled and copyFromLinkedFn then
        iconControl:SetDesaturation(0)
        local r, g, b = ZO_ERROR_COLOR:UnpackRGB()
        iconControl:SetColor(r, g, b, 0.5)
    else
        local alpha = g_isReadOnly and 0.5 or 1
        local r, g, b = ZO_WHITE:UnpackRGB()
        iconControl:SetColor(r, g, b, alpha)
        if not disabled and locked then
            iconControl:SetDesaturation(1)
        else
            iconControl:SetDesaturation(0)
        end
    end
end
local function RefreshSingleSlot(slotId, slotControl, animationOption, updateReason)
    local linkData = heldSlotLinkage[slotId]
    local pullFromFn = nil
    -- If this slot links to or pulls from another slot, it must have the right fields
    -- in the heldSlotLinkage table. If it doesn't, the data needs to be fixed up.
    if linkData then
        if linkData.linksTo then
            local animateLinkedSlot = animationOption
            if updateReason == INVENTORY_UPDATE_REASON_ITEM_CHARGE or updateReason == INVENTORY_UPDATE_REASON_PLAYER_LOCKED then
                animateLinkedSlot = false
            end
            RefreshSingleSlot(linkData.linksTo, slots[linkData.linksTo], animateLinkedSlot)
        elseif linkData.pullFromConditionFn() then
            pullFromFn = linkData.pullFromFn
            animationOption = NO_ANIMATION
        end
    end
    UpdateSlotAppearance(slotId, slotControl, animationOption, pullFromFn)
    if not pullFromFn then
        CALLBACK_MANAGER:FireCallbacks("WornSlotUpdate", slotControl)
    end
end
local function RefreshWornInventory()
    for slotId, slotControl in pairs(slots) do
        RefreshSingleSlot(slotId, slotControl)
    end
end
local function RefreshBackUpWeaponSlotStates()
    RefreshSingleSlot(EQUIP_SLOT_BACKUP_MAIN, ZO_CharacterEquipmentSlotsBackupMain)
    RefreshSingleSlot(EQUIP_SLOT_BACKUP_OFF, ZO_CharacterEquipmentSlotsBackupOff)
    RefreshSingleSlot(EQUIP_SLOT_BACKUP_POISON, ZO_CharacterEquipmentSlotsBackupPoison)
end
local function OnUnitCreated(eventCode, unitTag)
    if unitTag == "player" then
        ZO_CharacterPaperDoll:SetTexture(GetUnitSilhouetteTexture(unitTag))
        RefreshWornInventory()
    end
end
local function FullInventoryUpdated()
end
local function DoWornSlotUpdate(bagId, slotId, animationOption, updateReason)
    if bagId == BAG_WORN and slotId and slots[slotId] then
        RefreshSingleSlot(slotId, slots[slotId], animationOption, updateReason)
    end
end
local function InventorySlotUpdated(eventCode, bagId, slotId, isNewItem, itemSoundCategory, updateReason)
    DoWornSlotUpdate(bagId, slotId, PLAY_ANIMATION, updateReason)
end
local function InventoryEquipMythicFailed(eventCode, bagId, slotId)
    local mythicColor = GetItemQualityColor(ITEM_DISPLAY_QUALITY_MYTHIC_OVERRIDE)
    ZO_PlayColorSparkleAnimation(slots[slotId], mythicColor)
end
local function InventorySlotLocked(eventCode, bagId, slotId)
    DoWornSlotUpdate(bagId, slotId)
end
local function InventorySlotUnlocked(eventCode, bagId, slotId)
    DoWornSlotUpdate(bagId, slotId)
end
local function HideAllEquipSlotDropCallouts()
    for equipSlot, slotControl in pairs(slots) do
        slotControl:GetNamedChild("DropCallout"):SetHidden(true)
    end
end
local function ShowSlotDropCallout(calloutControl, meetsUsageRequirement)
    calloutControl:SetHidden(false)
    if meetsUsageRequirement then
        calloutControl:SetColor(ZO_DEFAULT_ENABLED_COLOR:UnpackRGBA())
    else
        calloutControl:SetColor(ZO_ERROR_COLOR:UnpackRGBA())
    end
end
local function ShowAppropriateEquipSlotDropCallouts(bagId, slotIndex)
    if ZO_Character_IsReadOnly() then
        return
    end
    local _, _, _, meetsUsageRequirement, _, equipType = GetItemInfo(bagId, slotIndex)
    for equipSlot, equipTypes in ZO_Character_EnumerateEquipSlotToEquipTypes() do
        local slotControl = slots[equipSlot]
        local locked = IsLockedWeaponSlot(equipSlot)
        if slotControl and not locked then
            for i = 1, #equipTypes do
                if equipTypes[i] == equipType then
                    ShowSlotDropCallout(slotControl:GetNamedChild("DropCallout"), meetsUsageRequirement)
                    break
                end
            end
        end
    end
end
local function HandleEquipSlotPickup(slotId)
    ShowAppropriateEquipSlotDropCallouts(BAG_WORN, slotId)
end
local function HandleInventorySlotPickup(bagId, slotId)
    ShowAppropriateEquipSlotDropCallouts(bagId, slotId)
end
local function HandleCursorPickup(eventCode, cursorType, param1, param2, param3)
    if cursorType == MOUSE_CONTENT_EQUIPPED_ITEM then
        HandleEquipSlotPickup(param1)
    elseif cursorType == MOUSE_CONTENT_INVENTORY_ITEM then
        HandleInventorySlotPickup(param1, param2)
    end
end
local function HandleCursorCleared()
end
local function OnReadOnlyStateChanged(readOnly)
    for equipSlot, slotControl in pairs(slots) do
        RestoreMouseOverTexture(slotControl)
        --Make sure slots with a condition on them meet that condition.
        local linkData = heldSlotLinkage[equipSlot]
        local meetsRequirements = nil
        if linkData and linkData.pullFromConditionFn then
            meetsRequirements = not linkData.pullFromConditionFn()
        end
        ZO_ItemSlot_SetupUsableAndLockedColor(slotControl, meetsRequirements, readOnly)
    end
end
    local readOnly = isDeadReadOnly or isShowingReadOnlyFragment
    if readOnly ~= g_isReadOnly then
        g_isReadOnly = readOnly
        OnReadOnlyStateChanged(g_isReadOnly)
        ZO_WeaponSwap_SetExternallyLocked(ZO_CharacterWeaponSwap, g_isReadOnly)
    end
end
    return g_isReadOnly
end
    isShowingReadOnlyFragment = isReadOnly
end
local function OnPlayerDead()
    isDeadReadOnly = true
end
local function OnPlayerAlive()
    isDeadReadOnly = false
end
local function OnPlayerActivated()
    isDeadReadOnly = IsUnitDead("player")
end
    InitializeSlots()
    ZO_Character:RegisterForEvent(EVENT_UNIT_CREATED, OnUnitCreated)
    ZO_Character:RegisterForEvent(EVENT_INVENTORY_FULL_UPDATE, FullInventoryUpdated)
    ZO_Character:RegisterForEvent(EVENT_INVENTORY_SINGLE_SLOT_UPDATE, InventorySlotUpdated)
    ZO_Character:RegisterForEvent(EVENT_INVENTORY_EQUIP_MYTHIC_FAILED, InventoryEquipMythicFailed)
    ZO_Character:RegisterForEvent(EVENT_INVENTORY_SLOT_LOCKED, InventorySlotLocked)
    ZO_Character:RegisterForEvent(EVENT_INVENTORY_SLOT_UNLOCKED, InventorySlotUnlocked)
    ZO_Character:RegisterForEvent(EVENT_CURSOR_PICKUP, HandleCursorPickup)
    ZO_Character:RegisterForEvent(EVENT_CURSOR_DROPPED, HandleCursorCleared)
    ZO_Character:RegisterForEvent(EVENT_PLAYER_DEAD, OnPlayerDead)
    ZO_Character:RegisterForEvent(EVENT_PLAYER_ALIVE, OnPlayerAlive)
    ZO_Character:RegisterForEvent(EVENT_PLAYER_ACTIVATED, OnPlayerActivated)
    local function OnActiveWeaponPairChanged(event, activeWeaponPair)
        local unlockLevel = GetWeaponSwapUnlockedLevel()
        local playerLevel = GetUnitLevel("player")
        local disabled = playerLevel < unlockLevel
        ZO_CharacterEquipmentSlotsMainHandHighlight:SetHidden(disabled or activeWeaponPair ~= ACTIVE_WEAPON_PAIR_MAIN)
        ZO_CharacterEquipmentSlotsOffHandHighlight:SetHidden(disabled or activeWeaponPair ~= ACTIVE_WEAPON_PAIR_MAIN)
        ZO_CharacterEquipmentSlotsPoisonHighlight:SetHidden(disabled or activeWeaponPair ~= ACTIVE_WEAPON_PAIR_MAIN)
        ZO_CharacterEquipmentSlotsBackupMainHighlight:SetHidden(disabled or activeWeaponPair ~= ACTIVE_WEAPON_PAIR_BACKUP)
        ZO_CharacterEquipmentSlotsBackupOffHighlight:SetHidden(disabled or activeWeaponPair ~= ACTIVE_WEAPON_PAIR_BACKUP)
        ZO_CharacterEquipmentSlotsBackupPoisonHighlight:SetHidden(disabled or activeWeaponPair ~= ACTIVE_WEAPON_PAIR_BACKUP)
    end
    local function OnLevelUpdate(_, unitTag)
        if unitTag == "player" then
            RefreshBackUpWeaponSlotStates()
            OnActiveWeaponPairChanged(nil, GetActiveWeaponPairInfo())
        end
    end
    ZO_Character:RegisterForEvent(EVENT_LEVEL_UPDATE, OnLevelUpdate)
    ZO_Character:RegisterForEvent(EVENT_ACTIVE_WEAPON_PAIR_CHANGED, OnActiveWeaponPairChanged)
    local apparelText = control:GetNamedChild("ApparelSectionText")
    local isApparelHidden = IsEquipSlotVisualCategoryHidden(EQUIP_SLOT_VISUAL_CATEGORY_APPAREL, GAMEPLAY_ACTOR_CATEGORY_PLAYER)
    local apparelString = isApparelHidden and GetString(SI_CHARACTER_EQUIP_APPAREL_HIDDEN) or GetString("SI_EQUIPSLOTVISUALCATEGORY", EQUIP_SLOT_VISUAL_CATEGORY_APPAREL)
    apparelText:SetText(apparelString)
    local headerSection = control:GetNamedChild("HeaderSection")
    CHARACTER_WINDOW_HEADER_FRAGMENT = ZO_SimpleSceneFragment:New(headerSection)
    OnUnitCreated(nil, "player")
end
local DEFAULT_STAT_SPACING = 0
local STAT_GROUP_SPACING = 20
local STAT_GROUP_OFFSET_X = 10
local CHARACTER_STAT_CONTROLS = {}
    local parentControl = control:GetNamedChild("ScrollScrollChild")
    local lastControl = nil
    local nextPaddingY = 0
    for _, statGroup in ipairs(ZO_INVENTORY_STAT_GROUPS) do
        for _, stat in ipairs(statGroup) do
            local statControl = CreateControlFromVirtual("$(parent)StatEntry", parentControl, "ZO_StatsEntry", stat)
            CHARACTER_STAT_CONTROLS[stat] = statControl
            if lastControl then
                statControl:SetAnchor(TOP, lastControl, BOTTOM, 0, nextPaddingY)
            else
                statControl:SetAnchor(TOP, lastControl, TOP, STAT_GROUP_OFFSET_X, nextPaddingY)
            end
            local statEntry = ZO_StatEntry_Keyboard:New(statControl, stat)
            statEntry.tooltipAnchorSide = LEFT
            lastControl = statControl
            nextPaddingY = DEFAULT_STAT_SPACING
        end
        nextPaddingY = STAT_GROUP_SPACING
    end
end
    local statDeltaLookup = ZO_GetStatDeltaLookupFromItemComparisonReturns(CompareBagItemToCurrentlyEquipped(bagId, slotId))
    for _, statGroup in ipairs(ZO_INVENTORY_STAT_GROUPS) do
        for _, stat in ipairs(statGroup) do
            local statDelta = statDeltaLookup[stat]
            if statDelta then
                local statControl = CHARACTER_STAT_CONTROLS[stat]
                statControl.statEntry:ShowComparisonValue(statDelta)
            end
        end
    end
end
    for _, statGroup in ipairs(ZO_INVENTORY_STAT_GROUPS) do
        for _, stat in ipairs(statGroup) do
            local statControl = CHARACTER_STAT_CONTROLS[stat]
            statControl.statEntry:HideComparisonValue()
        end
    end
end