ESO Lua File v100012

ingame/dyeing/dyeing_shared.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
-- NOTE: The set of entries in ZO_DYEABLE_EQUIP_SLOTS and ZO_DYEABLE_EQUIP_SLOTS_GAMEPAD_ORDER
-- must match, however their orders may differ.
ZO_DYEABLE_EQUIP_SLOTS =
{
    EQUIP_SLOT_HEAD,
    EQUIP_SLOT_CHEST,
    EQUIP_SLOT_SHOULDERS,
    EQUIP_SLOT_WAIST,
    EQUIP_SLOT_LEGS,
    EQUIP_SLOT_FEET,
    EQUIP_SLOT_HAND,
}
ZO_DYEABLE_EQUIP_SLOTS_GAMEPAD_ORDER =
{
    EQUIP_SLOT_FEET,
    EQUIP_SLOT_WAIST,
    EQUIP_SLOT_CHEST,
    EQUIP_SLOT_HEAD,
    EQUIP_SLOT_SHOULDERS,
    EQUIP_SLOT_HAND,
    EQUIP_SLOT_LEGS,
}
ZO_DYEING_SWATCH_SELECTION_SCALE = 1.3
-- Common Index Constants
ZO_DYEING_SORT_STYLE_RARITY = 1
ZO_DYEING_SORT_STYLE_HUE = 2
ZO_DYEING_SWATCH_INDEX = 1
ZO_DYEING_FRAME_INDEX = 2
ZO_DYEING_MUNGE_INDEX = 3
ZO_DYEING_LOCK_INDEX = 4
ZO_DYEING_SAVED_VARIABLES_DEFAULTS =
{
    showLocked = true,
    sortStyle = ZO_DYEING_SORT_STYLE_RARITY,
}
-- Interaction Mode Setup
ZO_DYEING_STATION_INTERACTION =
{
    type = "Dyeing Station",
    End = function()
        SYSTEMS:HideScene("dyeing")
    end,
    interactTypes = { INTERACTION_DYE_STATION },
}
-- Shared Show Events
EVENT_MANAGER:RegisterForEvent("Dyeing_Shared", EVENT_DYEING_STATION_INTERACT_START, function(eventCode)
    SYSTEMS:ShowScene("dyeing")
end)
EVENT_MANAGER:RegisterForEvent("Dyeing_Shared", EVENT_DYEING_STATION_INTERACT_END, function(eventCode)
    SYSTEMS:HideScene("dyeing")
end)
-- Shared Functions
function ZO_Dyeing_GetAchivementText(dyeKnown, achievementId)
    local achievementName = GetAchievementInfo(achievementId)
    if dyeKnown then
        if achievementName ~= "" then
            return zo_strformat(SI_DYEING_SWATCH_TOOLTIP_BODY, achievementName), nil
        else
            return GetString(SI_DYEING_SWATCH_TOOLTIP_BODY_HIDDEN), nil
        end
    else
        if achievementName ~= "" then
            return zo_strformat(SI_DYEING_SWATCH_TOOLTIP_BODY_LOCKED, achievementName), GetString(SI_DYEING_SWATCH_TOOLTIP_SEE_ACHIEVEMENT)
        else
            return GetString(SI_DYEING_SWATCH_TOOLTIP_BODY_HIDDEN_LOCKED), nil
        end
    end
    -- All cases should be handled above.
    assert(false)
end
function ZO_Dyeing_InitializeSwatchPool(owner, sharedHighlight, parentControl, template, canSelectLocked, highlightDimensions)
    local swatchInterpolator = ZO_SimpleControlScaleInterpolator:New(1.0, ZO_DYEING_SWATCH_SELECTION_SCALE)
    local swatchPool = ZO_ControlPool:New(template, parentControl)
    local function UpdateSelectedState(swatch, skipAnim)
        if (canSelectLocked or (not swatch.locked)) and (swatch.mousedOver or swatch.selected) then
            if skipAnim then
                swatchInterpolator:ResetToMax(swatch)
            else
                swatchInterpolator:ScaleUp(swatch)
            end
        else
            if skipAnim then
                swatchInterpolator:ResetToMin(swatch)
            else
                swatchInterpolator:ScaleDown(swatch)
            end
        end
        if swatch.selected then
            sharedHighlight:ClearAnchors()
            sharedHighlight:SetAnchor(TOPLEFT, swatch, TOPLEFT, -highlightDimensions, -highlightDimensions)
            sharedHighlight:SetAnchor(BOTTOMRIGHT, swatch, BOTTOMRIGHT, highlightDimensions, highlightDimensions)
            sharedHighlight:SetHidden(false)
        end
    end
    local function SetSelected(swatch, selected, skipAnim, skipSound)
        if swatch.selected ~= selected then
            swatch.selected = selected
            if selected and (not skipSound) and (not owner.suppressSounds) then
                PlaySound(SOUNDS.DYEING_SWATCH_SELECTED)
            end
        end
        UpdateSelectedState(swatch, skipAnim)
    end
    local function SetLocked(swatch, locked)
        swatch.locked = locked
        swatch:SetSurfaceHidden(ZO_DYEING_LOCK_INDEX, not locked)
        UpdateSelectedState(swatch, SKIP_ANIM)
    end
    local function IsLocked(swatch)
        return swatch.locked
    end
    local function OnClicked(swatch, button, upInside)
        if upInside then
            if button == MOUSE_BUTTON_INDEX_LEFT then
                if not swatch.locked then
                    owner:SwitchToDyeingWithDyeIndex(swatch.dyeIndex)
                end
            elseif button == MOUSE_BUTTON_INDEX_RIGHT then
                local achievementName = GetAchievementInfo(swatch.achievementId)
                if achievementName ~= "" then
                    ClearMenu()
                    AddMenuItem(GetString(SI_DYEING_SWATCH_VIEW_ACHIEVEMENT), function() owner:AttemptExit(swatch.achievementId) end)
                    ShowMenu(swatch)
                end
            end
        end
    end
    local function OnSwatchCreated(swatch)
        swatch:SetHandler("OnMouseUp", OnClicked)
        swatch.SetSelected = SetSelected
        swatch.SetLocked = SetLocked
        swatch.IsLocked = IsLocked
        swatch.UpdateSelectedState = UpdateSelectedState
    end
    local function OnSwatchReset(swatch)
        swatch:SetSelected(false, SKIP_ANIM)
        swatch:SetLocked(false, SKIP_ANIM)
    end
    return swatchPool
end
    local icon, stackCount = GetItemInfo(BAG_WORN, equipSlot)
    ZO_Inventory_BindSlot(control, SLOT_TYPE_DYEABLE_EQUIPMENT, equipSlot, BAG_WORN)
    if stackCount == 0 then
        icon = ZO_Character_GetEmptyEquipSlotTexture(equipSlot)
    end
    ZO_ItemSlot_SetupSlot(control, stackCount, icon)
end
    for i, equipSlot in ipairs(ZO_DYEABLE_EQUIP_SLOTS) do
        SetPendingEquippedItemDye(equipSlot, GetCurrentItemDyes(BAG_WORN, equipSlot))
    end
end
function ZO_Dyeing_DyeSortComparator(left, right)
    return left.sortKey < right.sortKey
end
function ZO_Dyeing_RefreshEquipControlDyes_Colors(slotControl, isDyeable, ...)
    for dyeChannel, dyeControl in ipairs(slotControl.dyeControls) do
        if isDyeable then
            dyeControl:SetHidden(false)
            local currentDyeIndex = select(dyeChannel, ...)
            ZO_DyeingUtils_SetSlotDyeSwatchDyeIndex(dyeChannel, dyeControl, currentDyeIndex)
        else
            dyeControl:SetHidden(true)
        end
    end
end
local function GetFrameForDyeChannel(empty)
    return empty and "EsoUI/Art/Dye/dye_amorSlot_empty.dds" or "EsoUI/Art/Dye/dye_amorSlot.dds"
end
function ZO_Dyeing_RefreshEquipControlDyes(slotControl, equipSlot)
    ZO_Dyeing_RefreshEquipControlDyes_Colors(slotControl, IsItemDyeable(BAG_WORN, equipSlot), GetPendingEquippedItemDye(equipSlot))
end
function ZO_DyeingUtils_SetSlotDyeSwatchDyeIndex(dyeChannel, dyeControl, dyeIndex)
    if dyeIndex then
        local dyeName, known, rarity, hueCategory, achievementId, r, g, b, sortKey = GetDyeInfo(dyeIndex)
        dyeControl.swatchTexture:SetColor(r, g, b, 1)
        if dyeControl.frameTexture then
            local NOT_EMPTY = false
            dyeControl.frameTexture:SetTexture(GetFrameForDyeChannel(NOT_EMPTY))
        end
        dyeControl.mungeTexture:SetHidden(false)
    else
        dyeControl.swatchTexture:SetColor(0, 0, 0, 0)
        if dyeControl.frameTexture then
            local EMPTY = true
            dyeControl.frameTexture:SetTexture(GetFrameForDyeChannel(EMPTY))
        end
        dyeControl.mungeTexture:SetHidden(true)
    end
end
function ZO_DyeingUtils_GetHeaderTextFromSortType(sortStyleType, rarityOrHueCategory)
    if sortStyleType == ZO_DYEING_SORT_STYLE_RARITY then
        return GetString("SI_DYERARITY", rarityOrHueCategory)
    elseif sortStyleType == ZO_DYEING_SORT_STYLE_HUE then
        return GetString("SI_DYEHUECATEGORY", rarityOrHueCategory)
    end
end
    local primaryDyeIndex = getRandomUnlockedDyeIndexFunction()
    local secondaryDyeIndex = getRandomUnlockedDyeIndexFunction()
    local accentDyeIndex = getRandomUnlockedDyeIndexFunction()
    for i, equipSlot in ipairs(ZO_DYEABLE_EQUIP_SLOTS) do
        SetPendingEquippedItemDye(equipSlot, primaryDyeIndex, secondaryDyeIndex, accentDyeIndex)
    end
    PlaySound(SOUNDS.DYEING_RANDOMIZE_DYES)
end
    for i, equipSlot in ipairs(ZO_DYEABLE_EQUIP_SLOTS) do
        for j = 1, 3 do
            if select(j, GetCurrentItemDyes(BAG_WORN, equipSlot)) ~= select(j, GetPendingEquippedItemDye(equipSlot)) then
                return true
            end
        end
    end
    return false
end
    for i, equipSlot in ipairs(ZO_DYEABLE_EQUIP_SLOTS) do
        if HasItemInSlot(BAG_WORN, equipSlot) and not IsItemBound(BAG_WORN, equipSlot) then
            return false
        end
    end
    return true
end
do
    local TEXTURE_WIDTH = 128
    local TEXTURE_HEIGHT = 128
    local FRAME_WIDTH = 24
    local FRAME_HEIGHT = 24
    local FRAME_SLICE_WIDTH = 32
    local FRAME_SLICE_HEIGHT = 32
    local FRAME_PADDING_X = (FRAME_SLICE_WIDTH - FRAME_WIDTH)
    local FRAME_PADDING_Y = (FRAME_SLICE_HEIGHT - FRAME_HEIGHT)
    local FRAME_WIDTH_TEX_COORD = FRAME_WIDTH / TEXTURE_WIDTH
    local FRAME_HEIGHT_TEX_COORD = FRAME_HEIGHT / TEXTURE_HEIGHT
    local FRAME_PADDING_X_TEX_COORD = FRAME_PADDING_X / TEXTURE_WIDTH
    local FRAME_PADDING_Y_TEX_COORD = FRAME_PADDING_Y / TEXTURE_HEIGHT
    local FRAME_START_TEXCOORD_X = 0.5 + FRAME_PADDING_X_TEX_COORD * .5
    local FRAME_START_TEXCOORD_Y = 0.0 + FRAME_PADDING_Y_TEX_COORD * .5
    local FRAME_NUM_COLS = 2
    local FRAME_NUM_ROWS = 4
    local function PickRandomFrame(self)
        local col = zo_random(FRAME_NUM_COLS)
        local row = zo_random(FRAME_NUM_ROWS)
        local left = FRAME_START_TEXCOORD_X + (col - 1) * (FRAME_WIDTH_TEX_COORD + FRAME_PADDING_X_TEX_COORD)
        local right = left + FRAME_WIDTH_TEX_COORD
        local top = FRAME_START_TEXCOORD_Y + (row - 1) * (FRAME_HEIGHT_TEX_COORD + FRAME_PADDING_Y_TEX_COORD)
        local bottom = top + FRAME_HEIGHT_TEX_COORD
        self:SetTextureCoords(ZO_DYEING_FRAME_INDEX, left, right, top, bottom)
    end
    local MUNGE_WIDTH = 24
    local MUNGE_HEIGHT = 24
    local MUNGE_WIDTH_TEX_COORD = MUNGE_WIDTH / TEXTURE_WIDTH
    local MUNGE_HEIGHT_TEX_COORD = MUNGE_HEIGHT / TEXTURE_HEIGHT
    local MUNGE_START_TEXCOORD_X = 0.0
    local MUNGE_START_TEXCOORD_Y = 0.5
    local MUNGE_END_TEXCOORD_X = 0.5
    local MUNGE_END_TEXCOORD_Y = 1.0
    local function PickRandomMunge(self)
        local left = zo_lerp(MUNGE_START_TEXCOORD_X, MUNGE_END_TEXCOORD_X - MUNGE_WIDTH_TEX_COORD, zo_random())
        local right = left + MUNGE_WIDTH_TEX_COORD
        local top = zo_lerp(MUNGE_START_TEXCOORD_Y, MUNGE_END_TEXCOORD_Y - MUNGE_HEIGHT_TEX_COORD, zo_random())
        local bottom = top + MUNGE_HEIGHT_TEX_COORD
        self:SetTextureCoords(ZO_DYEING_MUNGE_INDEX, left, right, top, bottom)
    end
        PickRandomFrame(self)
        PickRandomMunge(self)
    end
end
do
    local STRIDE = 16
    local SWATCH_SIZE = 24
    local GAMEPAD_SWATCH_SIZE = 32
    local PADDING = 6
    local INITIAL_OFFSET_X = 27
    local INITIAL_OFFSET_Y = 18
    local GAMEPAD_INITIAL_OFFSET_X = 27
    local GAMEPAD_INITIAL_OFFSET_Y = 1
    function AnchorDyeSwatch(currentAnchor, swatch, index)
        local _, _, _, offsetY = ZO_Anchor_BoxLayout(currentAnchor, swatch, index - 1, STRIDE, PADDING, PADDING, SWATCH_SIZE, SWATCH_SIZE, INITIAL_OFFSET_X, INITIAL_OFFSET_Y)
        return offsetY
    end
    function AnchorDyeSwatch_Gamepad(currentAnchor, swatch, index)
        local _, _, _, offsetY = ZO_Anchor_BoxLayout(currentAnchor, swatch, index - 1, STRIDE, PADDING, PADDING, GAMEPAD_SWATCH_SIZE, GAMEPAD_SWATCH_SIZE, GAMEPAD_INITIAL_OFFSET_X, GAMEPAD_INITIAL_OFFSET_Y)
        return offsetY
    end
    function GetNextDyeHeaderOffsetY(maxOffsetY, lastHeader)
        return maxOffsetY + SWATCH_SIZE + PADDING + lastHeader:GetHeight()
    end
    function GetDyeSwatchNumRows(swatchCount)
        return math.ceil(swatchCount / STRIDE)
    end
    function GetDyeSwatchRow(swatchIndex)
        return math.ceil(swatchIndex / STRIDE)
    end
    function GetDyeSwatchMaxRowWidth_Gamepad()
        return ((GAMEPAD_SWATCH_SIZE + PADDING) * STRIDE) - PADDING
    end
    function GetDyeSwatchSize_Gamepad()
        return GAMEPAD_SWATCH_SIZE
    end
end
local function GetOrCreateDyeParentCategory(sortStyle, activeSwatches, rarity, hueCategory)
    if sortStyle == ZO_DYEING_SORT_STYLE_RARITY then
        if not activeSwatches[rarity] then
            activeSwatches[rarity] = {}
        end
        return activeSwatches[rarity]
    elseif sortStyle == ZO_DYEING_SORT_STYLE_HUE then
        if not activeSwatches[hueCategory] then
            activeSwatches[hueCategory] = {}
        end
        return activeSwatches[hueCategory]
    end
end
function ZO_Dyeing_LayoutSwatches(includeLocked, sortStyle, swatchPool, headerPool, layoutOptions, container)
    local activeSwatches = {}
    local swatchByDyeIndex = {}
    swatchPool:ReleaseAllObjects()
    for i=1, GetNumDyes() do
        local dyeName, known, rarity, hueCategory, achievementId, r, g, b, sortKey = GetDyeInfo(i)
        if known or includeLocked then
            local parentCategory = GetOrCreateDyeParentCategory(sortStyle, activeSwatches, rarity, hueCategory)
            local swatch = swatchPool:AcquireObject()
            swatch:SetColor(ZO_DYEING_SWATCH_INDEX, r, g, b)
            swatch.sortKey = sortKey
            swatch.dyeName = dyeName
            swatch.known = known
            swatch.dyeIndex = i
            swatch.achievementId = achievementId
            swatch:SetLocked(not known)
            table.insert(parentCategory, swatch)
            swatchByDyeIndex[i] = swatch
        end
    end
    headerPool:ReleaseAllObjects()
    local sortedCategories = {}
    for category in pairs(activeSwatches) do
        table.insert(sortedCategories, category)
    end
    table.sort(sortedCategories)
    local nextHeaderOffsetY = 0
    local totalHeaderOffsetY = 0
    local lastHeader
    local swatchesByPosition = {}
    local positionByDyeIndex = {}
    local unlockedDyeIndices = {}
    local stride
    local padding = layoutOptions.padding
    local leftMargin = layoutOptions.leftMargin
    local topMargin = layoutOptions.topMargin
    local rightMargin = layoutOptions.rightMargin
    local bottomMargin = layoutOptions.bottomMargin
    for i, category in ipairs(sortedCategories) do
        local swatches = activeSwatches[category]
        local header = headerPool:AcquireObject()
        header:SetAnchor(TOPLEFT, lastHeader, TOPLEFT, 0, nextHeaderOffsetY)
        header:SetText(ZO_DyeingUtils_GetHeaderTextFromSortType(sortStyle, category))
        local currentAnchor = ZO_Anchor:New(CENTER, header, BOTTOMLEFT)
        local currentRowTable
        table.sort(swatches, ZO_Dyeing_DyeSortComparator)
        local maxHeaderOffsetY = 0
        for j, swatch in ipairs(swatches) do
            if not stride then
                swatchWidth, swatchHeight = swatch:GetDimensions()
                halfSelectedSwatchHeight = (swatchHeight * layoutOptions.selectionScale) / 2
                local containerWidth = container:GetDimensions()
                stride = zo_floor((containerWidth - leftMargin + rightMargin) / (swatchWidth + padding))
            end
            local _, _, _, offsetY = ZO_Anchor_BoxLayout(currentAnchor, swatch, j - 1, stride, padding, padding, swatchWidth, swatchHeight, leftMargin, topMargin)
            maxHeaderOffsetY = zo_max(maxHeaderOffsetY, offsetY)
            if (j % stride) == 1 then
                currentRowTable = {}
                table.insert(swatchesByPosition, currentRowTable)
            end
            table.insert(currentRowTable, swatch)
            positionByDyeIndex[swatch.dyeIndex] = {#swatchesByPosition, #currentRowTable}
            swatch.effectiveTop = totalHeaderOffsetY + offsetY - halfSelectedSwatchHeight
            swatch.effectiveBottom = totalHeaderOffsetY + offsetY + swatchHeight + halfSelectedSwatchHeight + header:GetHeight()
            if not swatch:IsLocked() then
                table.insert(unlockedDyeIndices, swatch.dyeIndex)
            end
        end
        nextHeaderOffsetY = maxHeaderOffsetY + swatchHeight + bottomMargin + header:GetHeight()
        totalHeaderOffsetY = totalHeaderOffsetY + nextHeaderOffsetY
        lastHeader = header
    end
    return swatchesByPosition, positionByDyeIndex, unlockedDyeIndices, swatchByDyeIndex
end
function ZO_DyeingSwatch_OnMouseEnter(swatch)
    swatch.mousedOver = true
    swatch:UpdateSelectedState()
end
function ZO_DyeingSwatch_OnMouseExit(swatch)
    swatch.mousedOver = false
    swatch:UpdateSelectedState()
     
end
    if swatch then
        InitializeTooltip(InformationTooltip, swatch:GetParent(), TOPRIGHT, -15, select(2, swatch:GetCenter()) - swatch:GetParent():GetTop())
        SetTooltipText(InformationTooltip, zo_strformat(SI_DYEING_SWATCH_TOOLTIP_TITLE, swatch.dyeName))
        InformationTooltip:AddVerticalPadding(10)
        local line1, line2 = ZO_Dyeing_GetAchivementText(swatch.known, swatch.achievementId)
        InformationTooltip:AddLine(line1, "", ZO_NORMAL_TEXT:UnpackRGB())
        if line2 then
            InformationTooltip:AddLine(line2, "", ZO_NORMAL_TEXT:UnpackRGB())
        end
    end
end
    ClearTooltip(InformationTooltip)
end