Back to Home

ESO Lua File v101041

ingame/interactwindow/keyboard/interactwindow_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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
local CHATTER_OPTION_INDENT = 30
local REWARD_STRIDE = 3
local REWARD_PADDING_X = 10
local REWARD_PADDING_Y = 10
local REWARD_ROOT_OFFSET_X = 0
local REWARD_ROOT_OFFSET_Y = 10
ZO_REWARD_SIZE_X = 290
ZO_REWARD_SIZE_Y = 56
local ENABLED_PLAYER_OPTION_COLOR = ZO_ColorDef:New(GetInterfaceColor(INTERFACE_COLOR_TYPE_TEXT_COLORS, INTERFACE_TEXT_COLOR_CHATTER_PLAYER_OPTION))
local SEEN_PLAYER_OPTION_COLOR = ZO_ColorDef:New(GetInterfaceColor(INTERFACE_COLOR_TYPE_GENERAL, INTERFACE_GENERAL_COLOR_DISABLED))
local DISABLED_PLAYER_OPTION_COLOR = ZO_ERROR_COLOR
local DISABLED_UNUSABLE_PLAYER_OPTION_COLOR = ZO_DISABLED_TEXT
--Keyboard Interaction
---------------------
ZO_Interaction = ZO_SharedInteraction:Subclass()
function ZO_Interaction:New(...)
    local interaction = ZO_SharedInteraction.New(self)
    interaction:Initialize(...)
    return interaction
end
function ZO_Interaction:Initialize(control)
    self.control = control
    self.sceneName = "interaction"
    ZO_SharedInteraction.Initialize(self, control)
    local function OnStateChange(oldState, newState)
        if(newState == SCENE_HIDDEN) then
            ZO_SharedInteraction.OnHidden(self)
        end
    end
    local interactScene = self:CreateInteractScene("interact")
    interactScene:RegisterCallback("StateChange", OnStateChange)
    SYSTEMS:RegisterKeyboardObject(ZO_INTERACTION_SYSTEM_NAME, self)
end
function ZO_Interaction:InitInteraction()
    self.titleControl = self.control:GetNamedChild("TargetAreaTitle")
    self.chatterOptionName = "ZO_ChatterOption"
    self.questRewardName = "ZO_QuestReward"
    self.currencyTemplateName = "ZO_CurrencyTemplate"
    --create options
    CreateControlRangeFromVirtual(self.chatterOptionName, self.control:GetNamedChild("PlayerAreaOptions"), self.chatterOptionName, 1, MAX_CHATTER_OPTIONS)
    self.optionControls = {}
    local currentAnchor = ZO_Anchor:New(TOPLEFT, ZO_InteractWindowPlayerAreaOptions, TOPLEFT, CHATTER_OPTION_INDENT, 0)
    for i = 1, MAX_CHATTER_OPTIONS do
        local currentOption = GetControl(self.chatterOptionName, i)
        self.optionControls[i] = currentOption
        currentOption:SetHidden(true)
        currentAnchor:Set(currentOption)
        currentAnchor:SetTarget(currentOption)
        currentAnchor:SetOffsets(0, 8)
        currentAnchor:SetRelativePoint(BOTTOMLEFT)
    end
    --create rewards
    self.givenRewardPool = ZO_ControlPool:New(self.questRewardName, self.control:GetNamedChild("CollapseContainerRewardArea"), "Given")
    self.currencyRewardPool = ZO_ControlPool:New(self.currencyTemplateName, self.control:GetNamedChild("CollapseContainerRewardArea"), "Currency")
end
function ZO_Interaction:ResetInteraction(bodyText)
    self.titleControl:SetText(zo_strformat(GetString(SI_INTERACT_TITLE_FORMAT), GetUnitName("interact")))
    self.control:GetNamedChild("TargetAreaBodyText"):SetText(bodyText)
    for i = 1, MAX_CHATTER_OPTIONS do
        local option = self.optionControls[i]
        option:SetHandler("OnUpdate", nil)
        option.optionIndex = nil
        option:SetHidden(true)
    end
    self.givenRewardPool:ReleaseAllObjects()
    self.currencyRewardPool:ReleaseAllObjects()
    self.control:GetNamedChild("CollapseContainerRewardArea"):SetHidden(true)
    self.control:GetNamedChild("CollapseContainerRewardArea"):SetHeight(0)
end
local INTERACTION_AREA_PERC_WIDTH = 0.4
local INTERACTION_AREA_RIGHT_OFFSET_PERC = 0.0534
function ZO_Interaction:OnScreenResized()
    local uiWidth, uiHeight = GuiRoot:GetDimensions()
    local divider = self.control:GetNamedChild("Divider")
    divider:SetAnchor(RIGHT, GuiRoot, TOPRIGHT, -uiWidth * INTERACTION_AREA_RIGHT_OFFSET_PERC, uiHeight * .5)
    local interactionElementWidth = uiWidth * INTERACTION_AREA_PERC_WIDTH
    divider:SetWidth(interactionElementWidth)
    for i = 1, MAX_CHATTER_OPTIONS do
        local currentOption = GetControl(self.chatterOptionName, i)
        currentOption:SetWidth(interactionElementWidth - CHATTER_OPTION_INDENT)
    end
end
function ZO_Interaction:DimOtherImportantOptions(chatterControl)
    for i, control in ipairs(self.importantOptions) do
        if control ~= chatterControl then
            control:SetColor(DISABLED_PLAYER_OPTION_COLOR:UnpackRGBA())
        end
    end
end
function ZO_Interaction:RestoreOtherImportantOptions(chatterControl)
    for i, control in ipairs(self.importantOptions) do
        if control ~= chatterControl then
            if control.chosenBefore then
                control:SetColor(SEEN_PLAYER_OPTION_COLOR:UnpackRGBA())
            elseif control.enabled then
                control:SetColor(ENABLED_PLAYER_OPTION_COLOR:UnpackRGBA())
            else
                control:SetColor(DISABLED_PLAYER_OPTION_COLOR:UnpackRGBA())
            end
        end
    end
end
local function DisableChatterOption(option, useDisabledColor, optionUsable)
    if useDisabledColor and not optionUsable then
        option:SetColor(DISABLED_UNUSABLE_PLAYER_OPTION_COLOR:UnpackRGBA())
    elseif useDisabledColor then
        option:SetColor(DISABLED_PLAYER_OPTION_COLOR:UnpackRGBA())
    end
    GetControl(option, "IconImage"):SetDesaturation(1)
    option.enabled = false
end
local function EnableChatterOption(option)
    if(option.chosenBefore) then
        option:SetColor(SEEN_PLAYER_OPTION_COLOR:UnpackRGBA())
    else
        option:SetColor(ENABLED_PLAYER_OPTION_COLOR:UnpackRGBA())
    end
    GetControl(option, "IconImage"):SetDesaturation(0)
    option.enabled = true
end
function ZO_Interaction:PopulateChatterOption(controlID, optionIndex, optionText, optionType, optionalArg, isImportant, chosenBefore, importantOptions, teleportNPCId, teleportWaypointIdTable)
    local optionControl = self.optionControls[controlID]
    optionControl:SetHidden(false)
    local chatterData = self:GetChatterOptionData(optionIndex, optionText, optionType, optionalArg, isImportant, chosenBefore, teleportNPCId, teleportWaypointIdTable)
    optionControl.optionIndex = chatterData.optionIndex
    optionControl.optionType = chatterData.optionType
    optionControl.isImportant = chatterData.isImportant
    optionControl.chosenBefore = chatterData.chosenBefore
    optionControl.teleportNPC = chatterData.teleportNPC
    optionControl.teleportWaypointIdTable = chatterData.teleportWaypointIdTable
    optionControl.gold = chatterData.gold
    optionControl.optionText = chatterData.optionText
    if optionControl.isImportant then
        importantOptions[#importantOptions + 1] = optionControl
        TriggerTutorial(TUTORIAL_TRIGGER_IMPORTANT_DIALOGUE)
    end
    if chatterData.optionsEnabled then
        if chatterData.optionUsable then
            EnableChatterOption(optionControl)
        else
            DisableChatterOption(optionControl, chatterData.recolorIfUnusable, chatterData.optionUsable)
        end
        optionControl:SetText(chatterData.optionText)
        optionControl:SetHandler("OnUpdate", chatterData.labelUpdateFunction)
        local icon = optionControl:GetNamedChild("IconImage")
        icon:ClearIcons()
        for iconIndex, iconFile in pairs(chatterData.iconFiles) do
            icon:AddIcon(iconFile)
        end
        icon:Show()
        local _, textHeight = optionControl:GetTextDimensions()
        return textHeight
    end
    return 0
end
function ZO_Interaction:AnchorBottomBG(optionControl)
    -- NOTE: The -10 and 120 come from the XML offset...see how $(parent)TopBG is set up.
    self.control:GetNamedChild("BottomBG"):ClearAnchors()
    self.control:GetNamedChild("BottomBG"):SetAnchor(TOPRIGHT, GuiRoot, RIGHT)
    self.control:GetNamedChild("BottomBG"):SetAnchor(BOTTOMLEFT, optionControl, BOTTOMLEFT, -10 - CHATTER_OPTION_INDENT, 120)
end
function ZO_Interaction:FinalizeChatterOptions(optionCount)
    self:AnchorBottomBG(self.optionControls[optionCount])
end
function ZO_Interaction:UpdateChatterOptions(optionCount, backToTOCOption)
    self.optionCount, self.importantOptions = self:PopulateChatterOptions(optionCount, backToTOCOption)
    if #self.importantOptions > 0 and self.currentMouseLabel then
        self:DimOtherImportantOptions(self.currentMouseLabel)
    end
end
function ZO_Interaction:SelectChatterOptionByIndex(optionIndex)
    local option = self.optionControls[optionIndex]
    if option and option.optionIndex then
        self:HandleChatterOptionClicked(option)
    end
end
function ZO_Interaction:SelectLastChatterOption()
    self:SelectChatterOptionByIndex(self.optionCount)
end
function ZO_Interaction:ShowQuestRewards(journalQuestIndex)
    local anchorIndex = 0
    local ROOT_REWARD_ANCHOR = ZO_Anchor:New(TOPLEFT, self.control:GetNamedChild("CollapseContainerRewardAreaHeader"), BOTTOMLEFT, 0, 0)
    local rewardCurrencyOptions =
    {
        showTooltips = true,
        font = "ZoFontConversationQuestReward",
        iconSize = 24,
        iconSide = LEFT
    }
    local moneyAnchorControl = ZO_InteractWindowCollapseContainerRewardAreaHeader
    local moneyControls = {}
    local IS_KEYBOARD = false
    local rewardData = self:GetRewardData(journalQuestIndex, IS_KEYBOARD)
    local numRewards = #rewardData
    local currenciesWithMaxWarning = {}
    local amountsAcquiredWithMaxWarning = {}
    for i, reward in ipairs(rewardData) do
        local creatorFunc = self:GetRewardCreateFunc(reward.rewardType)
        if creatorFunc then
            if self:IsCurrencyReward(reward.rewardType) then
                local control = self.currencyRewardPool:AcquireObject()
                creatorFunc(control, reward.name, reward.amount, rewardCurrencyOptions)
                if #moneyControls ~= 0 then
                    control:ClearAnchors()
                    control:SetAnchor(TOPLEFT, moneyControls[#moneyControls], BOTTOMLEFT, 0, 4)
                end
                moneyControls[#moneyControls + 1] = control
                --warn the player they aren't going to get their money when they hit complete
                if self:WouldCurrencyExceedMax(reward.rewardType, reward.amount) then
                    local currencyType = self:GetCurrencyTypeFromReward(reward.rewardType)
                    local currencyText = GetCurrencyName(currencyType)
                    table.insert(currenciesWithMaxWarning, currencyText)
                    local playerStoredLocation = GetCurrencyPlayerStoredLocation(currencyType)
                    local currencyAmount = zo_max(0, GetMaxPossibleCurrency(currencyType, playerStoredLocation) - (GetCurrencyAmount(currencyType, playerStoredLocation)))
                    local isSingular = currencyAmount == 1
                    currencyText = GetCurrencyName(currencyType, isSingular)
                    table.insert(amountsAcquiredWithMaxWarning, string.format('%s %s', currencyAmount, currencyText))
                end
            else
                local control = self.givenRewardPool:AcquireObject()
                control.index = reward.index
                control.itemType = reward.itemType
                if control.itemType == REWARD_ITEM_TYPE_COLLECTIBLE then
                    control.itemId = GetJournalQuestRewardCollectibleId(journalQuestIndex, i)
                elseif control.itemType == REWARD_ITEM_TYPE_TRIBUTE_CARD_UPGRADE then
                    local patronDefId, cardIndex = GetJournalQuestRewardTributeCardUpgradeInfo(journalQuestIndex, i)
                    local patronData = TRIBUTE_DATA_MANAGER:GetTributePatronData(patronDefId)
                    local baseCardId, upgradeCardId = patronData:GetDockCardInfoByIndex(cardIndex)
                    control.patronDefId = patronDefId
                    control.upgradeCardId = upgradeCardId
                end
                -- reward.quality is deprecated, included here for addon backwards compatibility
                local displayQuality = reward.displayQuality or reward.quality
                creatorFunc(control, reward.name, reward.amount, reward.icon, reward.meetsUsageRequirement, displayQuality, reward.itemType)
                -- Money rewards do not get box-anchored, they're shown after all the reward icons (or immediately if there were no icons)
                ZO_Anchor_BoxLayout(ROOT_REWARD_ANCHOR, control, anchorIndex, REWARD_STRIDE, REWARD_PADDING_X, REWARD_PADDING_Y, ZO_REWARD_SIZE_X, ZO_REWARD_SIZE_Y, REWARD_ROOT_OFFSET_X, REWARD_ROOT_OFFSET_Y)
                anchorIndex = anchorIndex + 1
                -- Controls in the first column and last row serve as the anchor for the money reward control
                if zo_mod(anchorIndex, REWARD_STRIDE) == 1 then
                    moneyAnchorControl = control
                end
            end
        end
    end
    local confirmError
    if #currenciesWithMaxWarning > 0 then
        local currencyList = ZO_GenerateCommaSeparatedListWithOr(currenciesWithMaxWarning)
        confirmError = ZO_ERROR_COLOR:Colorize(zo_strformat(SI_QUEST_REWARD_MAX_CURRENCY_ERROR, currencyList))
    end
    local rewardWindowHeight = zo_ceil(anchorIndex / REWARD_STRIDE) * (ZO_REWARD_SIZE_Y + REWARD_PADDING_Y) + 50
    local initialMoneyControl = moneyControls[1]
    if initialMoneyControl then
        rewardWindowHeight = rewardWindowHeight + (#moneyControls * 28)
        initialMoneyControl:ClearAnchors()
        initialMoneyControl:SetAnchor(TOPLEFT, moneyAnchorControl, BOTTOMLEFT, 0, 28)
    end
    ZO_InteractWindowCollapseContainerRewardArea:SetHidden(numRewards == 0)
    ZO_InteractWindowCollapseContainerRewardArea:SetHeight(rewardWindowHeight)
    return confirmError, currenciesWithMaxWarning, amountsAcquiredWithMaxWarning
end
function ZO_SharedInteraction:UpdateClemencyOnTimeComplete(control, data)
    control:SetText(control.optionText)
    control.enabled = true
    data.optionUsable = true
    control.optionType = CHATTER_TALK_CHOICE_USE_CLEMENCY
    control:SetColor(ENABLED_PLAYER_OPTION_COLOR:UnpackRGBA())
end
function ZO_SharedInteraction:UpdateShadowyConnectionsOnTimeComplete(control, data)
    control:SetText(control.optionText)
    control.enabled = true
    data.optionUsable = true
    control.optionType = CHATTER_TALK_CHOICE_USE_SHADOWY_CONNECTIONS
    control:SetColor(ENABLED_PLAYER_OPTION_COLOR:UnpackRGBA())
end
--XML Handlers
--------------
function ZO_ChatterOption_MouseUp(label, button, upInside)
    if(button == MOUSE_BUTTON_INDEX_LEFT and upInside) then
        INTERACTION:HandleChatterOptionClicked(label)
    end
end
function ZO_ChatterOption_MouseEnter(label)
    local highlight = ZO_InteractWindowPlayerAreaHighlight
    highlight:ClearAnchors()
    highlight:SetAnchorFill(label)
    highlight:SetHidden(false)
    if label.optionType ~= CHATTER_GOODBYE then
        INTERACTION:DimOtherImportantOptions(label)
    end
    INTERACTION.currentMouseLabel = label
end
function ZO_ChatterOption_MouseExit(label)
    ZO_InteractWindowPlayerAreaHighlight:SetHidden(true)
    if label.optionType ~= CHATTER_GOODBYE then
        INTERACTION:RestoreOtherImportantOptions(label)
    end
    INTERACTION.currentMouseLabel = nil
end
    if control.allowTooltip then
        if control.itemType == REWARD_ITEM_TYPE_ITEM then
            InitializeTooltip(ItemTooltip)
            ItemTooltip:SetQuestReward(control.index)
            ItemTooltip:HideComparativeTooltips()
            ItemTooltip:ShowComparativeTooltips()
            ZO_PlayShowAnimationOnComparisonTooltip(ComparativeTooltip1)
            ZO_PlayShowAnimationOnComparisonTooltip(ComparativeTooltip2)
            ZO_Tooltips_SetupDynamicTooltipAnchors(ItemTooltip, control, ComparativeTooltip1, ComparativeTooltip2)
        elseif control.itemType == REWARD_ITEM_TYPE_COLLECTIBLE then
            InitializeTooltip(ItemTooltip, control, RIGHT, -5, 0, LEFT)
            ItemTooltip:SetCollectible(control.itemId)
        elseif control.itemType == REWARD_ITEM_TYPE_TRIBUTE_CARD_UPGRADE then
            InitializeTooltip(ItemTooltip, control, RIGHT, -5, 0, LEFT)
            ItemTooltip:SetTributeCard(control.patronDefId, control.upgradeCardId)
        end
    end
end
    if control.allowTooltip then
        ClearTooltip(ItemTooltip)
        if control.itemType == REWARD_ITEM_TYPE_ITEM then
            ZO_PlayHideAnimationOnComparisonTooltip(ComparativeTooltip1)
            ZO_PlayHideAnimationOnComparisonTooltip(ComparativeTooltip2)
        end
    end
end
    local questRewardControl = label:GetParent()
    if questRewardControl.allowTooltip then
        ZO_QuestReward_MouseEnter(questRewardControl)
    else
    end
end
    local questRewardControl = label:GetParent()
    if questRewardControl.allowTooltip then
        ZO_QuestReward_MouseExit(questRewardControl)
    else
    end
end
    INTERACTION = ZO_Interaction:New(control)
end