Back to Home

ESO Lua File v100016

ingame/crafting/sharedenchanting.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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
ZO_SharedEnchanting = ZO_Object:Subclass()
function ZO_SharedEnchanting:New(...)
    local enchanting = ZO_Object.New(self)
    enchanting:Initialize(...)
    return enchanting
end
ENCHANTING_MODE_NONE = 0
ENCHANTING_MODE_CREATION = 1
ENCHANTING_MODE_EXTRACTION = 2
NO_FILTER = -1
EXTRACTION_FILTER = -2
    return SCENE_MANAGER:IsShowing("enchanting") or SCENE_MANAGER:IsShowing("gamepad_enchanting_mode") or SCENE_MANAGER:IsShowing("gamepad_enchanting_creation") or SCENE_MANAGER:IsShowing("gamepad_enchanting_extraction")
end
    if SCENE_MANAGER:IsShowing("enchanting") then
        return ENCHANTING
    else
        return GAMEPAD_ENCHANTING
    end
end
    if SCENE_MANAGER:IsShowing("enchanting") and ENCHANTING:GetEnchantingMode() == ENCHANTING_MODE_CREATION then
        return true
    elseif SCENE_MANAGER:IsShowing("gamepad_enchanting_creation") then
        return true
    end
    return false
end
function ZO_SharedEnchanting:Initialize(control)
    self.control = control
    self.skillInfo = self.control:GetNamedChild("SkillInfo")
    ZO_Skills_TieSkillInfoHeaderToCraftingSkill(self.skillInfo, CRAFTING_TYPE_ENCHANTING)
    
end
function ZO_SharedEnchanting:InitializeInventory()
end
function ZO_SharedEnchanting:InitializeModes()
end
function ZO_SharedEnchanting:InitializeEnchantingScenes()
end
function ZO_SharedEnchanting:InitializeCreationSlots()
    self.runeSlotContainer = self.control:GetNamedChild("RuneSlotContainer")
    self.runeSlots = {
        [ENCHANTING_RUNE_POTENCY] = ZO_SharedEnchantRuneSlot:New(self,
            self.runeSlotContainer:GetNamedChild("PotencyRune"),
            "EsoUI/Art/Crafting/crafting_runestone03_slot.dds",
            "EsoUI/Art/Crafting/crafting_runestone03_drag.dds",
            "EsoUI/Art/Crafting/crafting_runestone03_negative.dds",
            SOUNDS.ENCHANTING_POTENCY_RUNE_PLACED,
            SOUNDS.ENCHANTING_POTENCY_RUNE_REMOVED,
            ENCHANTING_RUNE_POTENCY,
            self.inventory
        ),
        [ENCHANTING_RUNE_ESSENCE] = ZO_SharedEnchantRuneSlot:New(self,
            self.runeSlotContainer:GetNamedChild("EssenceRune"),
            "EsoUI/Art/Crafting/crafting_runestone02_slot.dds",
            "EsoUI/Art/Crafting/crafting_runestone02_drag.dds",
            "EsoUI/Art/Crafting/crafting_runestone02_negative.dds",
            SOUNDS.ENCHANTING_ESSENCE_RUNE_PLACED,
            SOUNDS.ENCHANTING_ESSENCE_RUNE_REMOVED,
            ENCHANTING_RUNE_ESSENCE,
            self.inventory
        ),
        [ENCHANTING_RUNE_ASPECT] = ZO_SharedEnchantRuneSlot:New(self,
            self.runeSlotContainer:GetNamedChild("AspectRune"),
            "EsoUI/Art/Crafting/crafting_runestone01_slot.dds",
            "EsoUI/Art/Crafting/crafting_runestone01_drag.dds",
            "EsoUI/Art/Crafting/crafting_runestone01_negative.dds",
            SOUNDS.ENCHANTING_ASPECT_RUNE_PLACED,
            SOUNDS.ENCHANTING_ASPECT_RUNE_REMOVED,
            ENCHANTING_RUNE_ASPECT,
            self.inventory
         ),
    }
    self.control:RegisterForEvent(EVENT_NON_COMBAT_BONUS_CHANGED, function(eventCode, nonCombatBonusType)
        if nonCombatBonusType == NON_COMBAT_BONUS_ENCHANTING_LEVEL or nonCombatBonusType == NON_COMBAT_BONUS_ENCHANTING_RARITY_LEVEL then
            self.inventory:HandleDirtyEvent()
        elseif nonCombatBonusType == NON_COMBAT_BONUS_ENCHANTING_CRAFT_PERCENT_DISCOUNT then
            KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
        end
    end)
    
    self.resultTooltip = self.control:GetNamedChild("Tooltip")
        local function OnTooltipMouseUp(control, button, upInside)
            if upInside and button == MOUSE_BUTTON_INDEX_RIGHT then
                if link ~= "" then
                    ClearMenu()
                    local function AddLink()
                        ZO_LinkHandler_InsertLink(zo_strformat(SI_TOOLTIP_ITEM_NAME, link))
                    end
                    AddMenuItem(GetString(SI_ITEM_ACTION_LINK_TO_CHAT), AddLink)
                    
                    ShowMenu(self)
                end
            end
        end
        self.resultTooltip:SetHandler("OnMouseUp", OnTooltipMouseUp)
        self.resultTooltip:GetNamedChild("Icon"):SetHandler("OnMouseUp", OnTooltipMouseUp)
    end
    self.creationSlotAnimation = ZO_SharedEnchantingSlotAnimation:New(self.slotCreationAnimationName, function() return self.enchantingMode == ENCHANTING_MODE_CREATION end)
    self.creationSlotAnimation:AddSlot(self.runeSlots[ENCHANTING_RUNE_POTENCY])
    self.creationSlotAnimation:AddSlot(self.runeSlots[ENCHANTING_RUNE_ESSENCE])
    self.creationSlotAnimation:AddSlot(self.runeSlots[ENCHANTING_RUNE_ASPECT])
end
function ZO_SharedEnchanting:InitializeExtractionSlots()
    self.extractionSlotContainer = self.control:GetNamedChild("ExtractionSlotContainer")
    self.extractionSlot = ZO_SharedEnchantExtractionSlot:New(self, self.extractionSlotContainer:GetNamedChild("ExtractionSlot"), self.inventory)
    -- TODO: replace with extraction assets when they're made
    self.extractionSlotAnimation = ZO_CraftingEnchantExtractSlotAnimation:New("enchanting", function() return self.enchantingMode == ENCHANTING_MODE_EXTRACTION end)
    self.extractionSlotAnimation:AddSlot(self.extractionSlot)
end
function ZO_SharedEnchanting:InitializeKeybindStripDescriptors()
end
function ZO_SharedEnchanting:GetEnchantingMode()
    return self.enchantingMode
end
function ZO_SharedEnchanting:GetLastRunestoneSoundParams()
    return self.potencySound, self.potencyLength, self.essenceSound, self.essenceLength, self.aspectSound, self.aspectLength
end
function ZO_SharedEnchanting:ClearSelections()
    if self.enchantingMode == ENCHANTING_MODE_CREATION then
        for i, slot in ipairs(self.runeSlots) do
            slot:SetItem(nil)
        end
    elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
        self.extractionSlot:SetItem(nil)
        self.extractionSlot.dropCallout:SetTexture("EsoUI/Art/Crafting/crafting_enchanting_glyphSlot_empty.dds")
    end
    self:OnSlotChanged()
end
function ZO_SharedEnchanting:HasSelections()
    if self.enchantingMode == ENCHANTING_MODE_CREATION then
        for i, slot in ipairs(self.runeSlots) do
            if slot:HasItem() then
                return true
            end
        end
        return false
    elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
        return self.extractionSlot:HasItem()
    end
end
function ZO_SharedEnchanting:IsCurrentSelected()
    if self.enchantingMode == ENCHANTING_MODE_CREATION then
        for i, slot in ipairs(self.runeSlots) do
            if slot:HasItem() then
                local bagId, slotIndex = slot:GetBagAndSlot()
                local selectedBagId, selectedSlotIndex = self.inventory:CurrentSelectionBagAndSlot()
                if bagId == selectedBagId and slotIndex == selectedSlotIndex then
                    return true
                end
            end
        end
        return false
    elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
        if self.extractionSlot:HasItem() then
            local bagId, slotIndex = self.extractionSlot:GetBagAndSlot()
            local selectedBagId, selectedSlotIndex = self.inventory:CurrentSelectionBagAndSlot()
            return bagId == selectedBagId and slotIndex == selectedSlotIndex
        end
    end
end
function ZO_SharedEnchanting:IsCraftable()
    if self.enchantingMode == ENCHANTING_MODE_CREATION then
        for i, slot in ipairs(self.runeSlots) do
            if not slot:HasItem() then
                return false
            end
        end
        return true
    elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
        return self.extractionSlot:HasItem()
    end
end
function ZO_SharedEnchanting:Create()
    if self.enchantingMode == ENCHANTING_MODE_CREATION then
        local rune1BagId, rune1SlotIndex, rune2BagId, rune2SlotIndex, rune3BagId, rune3SlotIndex = self:GetAllCraftingBagAndSlots()
        self.potencySound, self.potencyLength = GetRunestoneSoundInfo(rune1BagId, rune1SlotIndex)
        self.essenceSound, self.essenceLength = GetRunestoneSoundInfo(rune2BagId, rune2SlotIndex)
        self.aspectSound, self.aspectLength = GetRunestoneSoundInfo(rune3BagId, rune3SlotIndex)
        CraftEnchantingItem(rune1BagId, rune1SlotIndex, rune2BagId, rune2SlotIndex, rune3BagId, rune3SlotIndex)
    elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
        ExtractEnchantingItem(self.extractionSlot:GetBagAndSlot())
        self.extractionSlot:ClearDropCalloutTexture()
    end
end
function ZO_SharedEnchanting:GetAllCraftingBagAndSlots()
    local rune1BagId, rune1SlotIndex = self.runeSlots[ENCHANTING_RUNE_POTENCY]:GetBagAndSlot()
    local rune2BagId, rune2SlotIndex = self.runeSlots[ENCHANTING_RUNE_ESSENCE]:GetBagAndSlot()
    local rune3BagId, rune3SlotIndex = self.runeSlots[ENCHANTING_RUNE_ASPECT]:GetBagAndSlot()
    return rune1BagId, rune1SlotIndex, rune2BagId, rune2SlotIndex, rune3BagId, rune3SlotIndex
end
function ZO_SharedEnchanting:OnMouseEnterCraftingComponent(bagId, slotIndex)
    if self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
        self.extractionSlot:SetBackdrop(bagId, slotIndex)
    end
end
function ZO_SharedEnchanting:OnMouseExitCraftingComponent()
    if self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
        self.extractionSlot:ClearDropCalloutTexture()
    end
end
function ZO_SharedEnchanting:OnSlotChanged()
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
    self:UpdateTooltip()
    self.inventory:HandleVisibleDirtyEvent()
end
function ZO_SharedEnchanting:UpdateTooltip()
    if self.enchantingMode == ENCHANTING_MODE_CREATION and self:IsCraftable() then
        self.resultTooltip:SetHidden(false)
        self.resultTooltip:ClearLines()
    elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION and self:IsCraftable() then
        self.resultTooltip:SetHidden(false)
        self.resultTooltip:ClearLines()
        self.resultTooltip:SetBagItem(self.extractionSlot:GetBagAndSlot())
    else
        self.resultTooltip:SetHidden(true)
    end
end
function DoesRunePassRequirements(runeType, rankRequirement, rarityRequirement)
    if runeType == ENCHANTING_RUNE_POTENCY then
        return rankRequirement <= GetNonCombatBonus(NON_COMBAT_BONUS_ENCHANTING_LEVEL)
    elseif runeType == ENCHANTING_RUNE_ASPECT then
        return rarityRequirement <= GetNonCombatBonus(NON_COMBAT_BONUS_ENCHANTING_RARITY_LEVEL)
    end
    return true
end
function ZO_SharedEnchanting:IsItemAlreadySlottedToCraft(bagId, slotIndex)
    local usedInCraftingType, _, runeType, rankRequirement, rarityRequirement = GetItemCraftingInfo(bagId, slotIndex)
    if usedInCraftingType == CRAFTING_TYPE_ENCHANTING then
        if self.enchantingMode == ENCHANTING_MODE_CREATION then
            local itemId = GetItemInstanceId(bagId, slotIndex)
            local slot = self.runeSlots[runeType]
            if slot:IsItemId(itemId) then
                return true
            end
        elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
            local itemId = GetItemInstanceId(bagId, slotIndex)
            if self.extractionSlot:IsItemId(itemId) then
                return true
            end
        end
    end
    return false
end
function ZO_SharedEnchanting:CanItemBeAddedToCraft(bagId, slotIndex)
    local usedInCraftingType, _, runeType, rankRequirement, rarityRequirement = GetItemCraftingInfo(bagId, slotIndex)
    if usedInCraftingType == CRAFTING_TYPE_ENCHANTING then
        if self.enchantingMode == ENCHANTING_MODE_CREATION then
            if DoesRunePassRequirements(runeType, rankRequirement, rarityRequirement) then
                return true
            end
        elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
            return true
        end
    end
end
function ZO_SharedEnchanting:AddItemToCraft(bagId, slotIndex)
    if not IsPerformingCraftProcess() then
        local usedInCraftingType, _, runeType, rankRequirement, rarityRequirement = GetItemCraftingInfo(bagId, slotIndex)
        if usedInCraftingType == CRAFTING_TYPE_ENCHANTING then
            if self.enchantingMode == ENCHANTING_MODE_CREATION then
                if DoesRunePassRequirements(runeType, rankRequirement, rarityRequirement) then
                    self:SetRuneSlotItem(runeType, bagId, slotIndex)
                end
            elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
                self:SetExtractionSlotItem(bagId, slotIndex)
            end
        end
    end
end
function ZO_SharedEnchanting:RemoveItemFromCraft(bagId, slotIndex)
    if not IsPerformingCraftProcess() then
        local usedInCraftingType, _, runeType, rankRequirement, rarityRequirement = GetItemCraftingInfo(bagId, slotIndex)
        if usedInCraftingType == CRAFTING_TYPE_ENCHANTING then
            if self.enchantingMode == ENCHANTING_MODE_CREATION then
                self:SetRuneSlotItem(runeType, nil)
            elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
                self:SetExtractionSlotItem(nil)
            end
        end
    end
end
function ZO_SharedEnchanting:SetRuneSlotItem(runeType, bagId, slotIndex)
    self.runeSlots[runeType]:SetItem(bagId, slotIndex)
    self:OnSlotChanged()
end
function ZO_SharedEnchanting:SetExtractionSlotItem(bagId, slotIndex)
    self.extractionSlot:SetItem(bagId, slotIndex)
    self:OnSlotChanged()
end
function ZO_SharedEnchanting:ShowAppropriateSlotDropCallouts(craftingSubItemType, runeType, rankRequirement, rarityRequirement)
    for i, slot in ipairs(self.runeSlots) do
        slot:ShowDropCallout(runeType == slot:GetRuneType() and DoesRunePassRequirements(runeType, rankRequirement, rarityRequirement))
    end 
    self.extractionSlot:ShowDropCallout(craftingSubItemType == ITEMTYPE_GLYPH_WEAPON or craftingSubItemType == ITEMTYPE_GLYPH_ARMOR or craftingSubItemType == ITEMTYPE_GLYPH_JEWELRY)
end
function ZO_SharedEnchanting:HideAllSlotDropCallouts()
    for i, slot in ipairs(self.runeSlots) do
        slot:HideDropCallout()
    end
    self.extractionSlot:HideDropCallout()
end
function ZO_SharedEnchanting:OnInventoryUpdate(validItemIds)
    local changed = false
    for i, slot in ipairs(self.runeSlots) do
        if not slot:ValidateItemId(validItemIds) then
            changed = true
        end
    end
    if not self.extractionSlot:ValidateItemId(validItemIds) then
        changed = true
    end
    if changed then
        self:OnSlotChanged()
    else
        self:UpdateTooltip()
    end
end
function ZO_SharedEnchanting:IsSlotted(bagId, slotIndex)
    if self.enchantingMode == ENCHANTING_MODE_CREATION then
        for i, slot in ipairs(self.runeSlots) do
            if slot:IsBagAndSlot(bagId, slotIndex) then
                return true
            end
        end
    elseif self.enchantingMode == ENCHANTING_MODE_EXTRACTION then
        return self.extractionSlot:IsBagAndSlot(bagId, slotIndex)
    end
    return false
end
ZO_SharedEnchantRuneSlot = ZO_CraftingSlotBase:Subclass()
function ZO_SharedEnchantRuneSlot:New(...)
    return ZO_CraftingSlotBase.New(self, ...)
end
function ZO_SharedEnchantRuneSlot:Initialize(owner, control, emptyTexture, dropCalloutTexturePositive, dropCalloutTextureNegative, placeSound, removeSound, runeType, craftingInventory, emptySlotIcon)
    ZO_CraftingSlotBase.Initialize(self, owner, control, SLOT_TYPE_PENDING_CRAFTING_COMPONENT, emptyTexture, craftingInventory, emptySlotIcon)
    self.nameLabel = control:GetNamedChild("Name")
    self.dropCalloutTexturePositive = dropCalloutTexturePositive
    self.dropCalloutTextureNegative = dropCalloutTextureNegative
    self.placeSound = placeSound
    self.pendingRemoveSound = removeSound
    self.runeType = runeType
end
function ZO_SharedEnchantRuneSlot:SetItem(bagId, slotIndex)
    local hadItem = self:HasItem()
    local oldItemInstanceId = self:GetItemId()
    self:SetupItem(bagId, slotIndex)
    if self:HasItem() then
        if oldItemInstanceId ~= self:GetItemId() then
            PlaySound(self.placeSound)
        end
    elseif hadItem then
        PlaySound(self.pendingRemoveSound)
    end
    if self.nameLabel then
        if bagId and slotIndex then
            self.nameLabel:SetHidden(false)
            self.nameLabel:SetText(zo_strformat(SI_TOOLTIP_ITEM_NAME, GetItemName(bagId, slotIndex)))
        else
            self.nameLabel:SetHidden(true)
        end
    end
end
function ZO_SharedEnchantRuneSlot:ShowDropCallout(isCorrectType)
    self.dropCallout:SetHidden(false)
    self.dropCallout:SetTexture(isCorrectType and self.dropCalloutTexturePositive or self.dropCalloutTextureNegative)
end
function ZO_SharedEnchantRuneSlot:GetRuneType()
    return self.runeType
end
ZO_SharedEnchantExtractionSlot = ZO_CraftingSlotBase:Subclass()
function ZO_SharedEnchantExtractionSlot:New(...)
    return ZO_CraftingSlotBase.New(self, ...)
end
function ZO_SharedEnchantExtractionSlot:Initialize(owner, control, craftingInventory)
    ZO_CraftingSlotBase.Initialize(self, owner, control, SLOT_TYPE_PENDING_CRAFTING_COMPONENT, "", craftingInventory)
    self.dropCallout:SetDimensions(128, 128)
    self.dropCallout:SetHidden(false)
end
function ZO_SharedEnchantExtractionSlot:ClearDropCalloutTexture()
    self.dropCallout:SetTexture("EsoUI/Art/Crafting/crafting_enchanting_glyphSlot_empty.dds")
end
local function GetSoundsForGlyphType(craftingSubItemType)
    if craftingSubItemType == ITEMTYPE_GLYPH_WEAPON then
        return SOUNDS.ENCHANTING_WEAPON_GLYPH_PLACED, SOUNDS.ENCHANTING_WEAPON_GLYPH_REMOVED
    elseif craftingSubItemType == ITEMTYPE_GLYPH_ARMOR then
        return SOUNDS.ENCHANTING_ARMOR_GLYPH_PLACED, SOUNDS.ENCHANTING_ARMOR_GLYPH_REMOVED
    elseif craftingSubItemType == ITEMTYPE_GLYPH_JEWELRY then
        return SOUNDS.ENCHANTING_JEWELRY_GLYPH_PLACED, SOUNDS.ENCHANTING_JEWELRY_GLYPH_REMOVED
    end
end
function ZO_SharedEnchantExtractionSlot:SetItem(bagId, slotIndex)
    local oldItemInstanceId = self:GetItemId()
    ZO_CraftingSlotBase.SetItem(self, bagId, slotIndex)
    local usedInCraftingType, craftingSubItemType, runeType = GetItemCraftingInfo(self.bagId, self.slotIndex)
    local placeSound, removeSound = GetSoundsForGlyphType(craftingSubItemType)
    if self:HasItem() then
        self.dropCallout:SetHidden(true)
        if oldItemInstanceId ~= self:GetItemId() then
            PlaySound(placeSound)
        end
        self.pendingRemoveSound = removeSound
    else
        self.dropCallout:SetHidden(false)
        if self.pendingRemoveSound then
            PlaySound(self.pendingRemoveSound)
            self.pendingRemoveSound = nil
        end
    end
    if self.nameLabel then
        if bagId and slotIndex then
            self.nameLabel:SetHidden(false)
            self.nameLabel:SetText(zo_strformat(ZO_GetSpecializedItemTypeTextBySlot(bagId, slotIndex)))
        else
            self.nameLabel:SetHidden(true)
        end
    end
end
function ZO_SharedEnchantExtractionSlot:ShowDropCallout()
    -- no drop callout behavior
end
function ZO_SharedEnchantExtractionSlot:HideDropCallout()
    -- no drop callout behavior
end
function ZO_SharedEnchantExtractionSlot:SetBackdrop(bagId, slotIndex)
    local usedInCraftingType, craftingSubItemType, runeType = GetItemCraftingInfo(bagId, slotIndex)
    if craftingSubItemType == ITEMTYPE_GLYPH_WEAPON then
        self.dropCallout:SetTexture("EsoUI/Art/Crafting/crafting_enchanting_glyphSlot_pentagon.dds")
    elseif craftingSubItemType == ITEMTYPE_GLYPH_ARMOR then
        self.dropCallout:SetTexture("EsoUI/Art/Crafting/crafting_enchanting_glyphSlot_shield.dds")
    elseif craftingSubItemType == ITEMTYPE_GLYPH_JEWELRY then
        self.dropCallout:SetTexture("EsoUI/Art/Crafting/crafting_enchanting_glyphSlot_round.dds")
    end
end
ZO_SharedEnchantingSlotAnimation = ZO_CraftingCreateSlotAnimation:Subclass()
function ZO_SharedEnchantingSlotAnimation:New(...)
    return ZO_CraftingCreateSlotAnimation.New(self, ...)
end
function ZO_SharedEnchantingSlotAnimation:Initialize(...)
    ZO_CraftingCreateSlotAnimation.Initialize(self, ...)
end
function ZO_SharedEnchantingSlotAnimation:GetAnimationOffset(slot)
    return select(2, GetRunestoneSoundInfo(slot:GetBagAndSlot()))
end
function ZO_SharedEnchantingSlotAnimation:GetLockInSound(slot)
    -- there's a special sound player in CraftingResults.lua for enchanting
    return nil
end