ESO Lua File v100014

ingame/feedback/keyboard/feedback_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
ZO_FEEDBACK = nil
local ZO_Feedback = ZO_Object:Subclass()
local BUG_REPORT_FRAMES_TO_WAIT = 3
local FEEDBACK_FRAMES_TO_WAIT = 3
local MINIMUM_FEEDBACK_TIME = 0
function ZO_Feedback:New(...)
    local feedback = ZO_Object.New(self)
    feedback:Initialize(...)
    return feedback
end
function ZO_Feedback:Initialize(control)
    self.queuedQuestFeedback = {}
    self.interactWindowShown = false
    self.control = control
    control.owner = self
    self.browser = control:GetNamedChild("Browser")
    self.browserAnimation = ANIMATION_MANAGER:CreateTimelineFromVirtual("FeedbackAnimation", self.browser)
    local loadLabel = control:GetNamedChild("LoadingLabel")
    self.loadLabelAnimation = ANIMATION_MANAGER:CreateTimelineFromVirtual("FeedbackAnimation", loadLabel)
    self.nextFeedbackTime = 0
    self.logoutOnClose = false
    self.quitOnClose = false
    
    INTERACT_WINDOW:RegisterCallback("Hidden", function() self:OnInteractWindowHidden() end)
    INTERACT_WINDOW:RegisterCallback("Shown", function() self:OnInteractWindowShown() end)
    EVENT_MANAGER:RegisterForUpdate("ZO_Feedback", 0, function() self:OnUpdate() end)
    control:RegisterForEvent(EVENT_FEEDBACK_REQUESTED, function(eventCode, ...) self:OnFeedbackRequested(...) end)
    control:RegisterForEvent(EVENT_FEEDBACK_TOO_FREQUENT_SCREENSHOT, function(eventCode, ...) self:OnFeedbackTooFrequentScreenshot(...) end)
    control:RegisterForEvent(EVENT_AGENT_CHAT_FORCED, function() self:OpenBrowserByType(BROWSER_TYPE_AGENT_CHAT) end)
    control:RegisterForEvent(EVENT_AGENT_CHAT_ACCEPTED, function() self:OpenBrowserByType(BROWSER_TYPE_AGENT_CHAT) end)
    for i=1, GetNumPendingFeedback() do
        local feedbackId = GetFeedbackIdByIndex(i)
        self:OnFeedbackRequested(feedbackId)
    end
end
-- Helper to fill out optional arguments and marshal them correctly to BrowserControl:Open
local browserOpenTypes = 
{ 
    ["number"] = 1, 
    ["string"] = 2
}
local browserOpenArguments = { 0, "" }
local function GetBrowserArguments(...)
    for argType, argIndex in pairs(browserOpenTypes) do
        browserOpenArguments[argIndex] = nil
    end
    for i = 1, select("#", ...) do
        local argument = select(i, ...)
        local argumentIndex = browserOpenTypes[type(argument)]
        if(argumentIndex ~= nil) then
            browserOpenArguments[argumentIndex] = argument
        end
    end
    return unpack(browserOpenArguments)
end
function ZO_Feedback:OpenBrowserPage(...)
    self.browser:Open(...)
    self.pageOpened = true
end
function ZO_Feedback:Toggle()
    MAIN_MENU_KEYBOARD:ToggleScene("helpCustomerSupport")
end
function ZO_Feedback:OpenBrowserByType(type, ...)
    if type == BROWSER_TYPE_USER_FEEDBACK and (self.feedbackId or #self.queuedQuestFeedback > 0) then
        self:ShowQueuedFeedback()
    else
        self:OpenBrowserPage(BROWSER_OPEN_TYPE_BUG, type, GetBrowserArguments(...))
        self.openingFramesToWait = BUG_REPORT_FRAMES_TO_WAIT
    end
    self.logoutOnClose =  false
    self.quitOnClose = false
end
function ZO_Feedback:ReportPlayer(entityName, reasonForReporting, optionalId)
    if(type(optionalId) == "number") then
        entityName = string.format("%s:%u", entityName, optionalId)
    end
    self:OpenBrowserByType(BROWSER_TYPE_USER_REPORT, entityName, reasonForReporting)
end
function ZO_Feedback:QuickReportForSpam(entityName, reasonForReporting, rawName)
    -- TODO: Needs to get wired up to something, for now, we definitely want to ignore this user for the rest of the session
    SubmitSpamReport(rawName or entityName, reasonForReporting)
end
function ZO_Feedback:OnUpdate()
    if self.openingFramesToWait and IsPlayerActivated() then
        self.openingFramesToWait = self.openingFramesToWait - 1
        if self.openingFramesToWait == 0 then
            self.openingFramesToWait = nil
            MAIN_MENU_KEYBOARD:ShowScene("helpCustomerSupport")
        end
    end
end
function ZO_Feedback:Quit()
    local QUIT = true
    self:ExitIngame(QUIT)
end
function ZO_Feedback:Logout()
    local LOGOUT = false
    self:ExitIngame(LOGOUT)
end
function ZO_Feedback:ExitIngame(quit)
    if (self.logoutOnClose or self.quitOnClose) and not self.control:IsHidden() then
        if quit then
            Quit()
        else
            Logout()
        end
        self.logoutOnClose = false
        self.quitOnClose = false
    elseif not self.openingFramesToWait then
        self:OpenBrowserPage(BROWSER_OPEN_TYPE_LOGOUT)
        self.logoutOnClose = not quit
        self.quitOnClose = quit
        self.openingFramesToWait = BUG_REPORT_FRAMES_TO_WAIT
    end
end
function ZO_Feedback:OnFeedbackRequested(feedbackId)
    if GetFeedbackType(feedbackId) == FEEDBACK_TYPE_QUEST then
        self:QueueQuestFeedback(feedbackId)
    end
end
function ZO_Feedback:OnFeedbackTooFrequentScreenshot()
    ZO_Dialogs_ShowDialog("TOO_FREQUENT_BUG_SCREENSHOT")
end
function ZO_Feedback:OnLoadStart()
    self.browser:SetAlpha(0)
    self.loadLabelAnimation:PlayForward()
end
function ZO_Feedback:OnLoadFinished()
    self.browserAnimation:PlayFromStart()
    self.loadLabelAnimation:PlayBackward()
end
function ZO_Feedback:QueueQuestFeedback(feedbackId)
    if self.interactWindowShown or (self.feedbackId and not self.control:IsHidden()) then
        self.queuedQuestFeedback[#self.queuedQuestFeedback + 1] = feedbackId
    else
        self:ShowFeedback(feedbackId)
    end
end
function ZO_Feedback:OnInteractWindowHidden()
    if self.interactWindowShown then
        self.interactWindowShown = false
        self:ShowQueuedFeedback()
    end
end
function ZO_Feedback:OnInteractWindowShown()
    if not self.interactWindowShown then
        self.interactWindowShown = true
    end
end
function ZO_Feedback:Close()
    if self.logoutOnClose then
        Logout()
    elseif self.quitOnClose then
        Quit()
    elseif self.feedbackId then
        RemovePendingFeedback(self.feedbackId)
        self.feedbackId = nil
        self.nextFeedbackTime = GetFrameTimeMilliseconds() + MINIMUM_FEEDBACK_TIME
    end
    self.logoutOnClose = false
    self.quitOnClose = false
end
function ZO_Feedback:ShowQueuedFeedback()
    if self.feedbackId and self.control:IsHidden() then
        --We already have feedback open, that was forced closed, reshow it
        self:ShowFeedback(self.feedbackId)
    elseif #self.queuedQuestFeedback > 0 then
        local feedbackId = table.remove(self.queuedQuestFeedback, 1)
        self:ShowFeedback(feedbackId)
    end
end
function ZO_Feedback:ShowFeedback(feedbackId)
    if GetFrameTimeMilliseconds() > self.nextFeedbackTime then
        self.feedbackId = feedbackId
        self:OpenBrowserPage(BROWSER_OPEN_TYPE_FEEDBACK, feedbackId)
        self.openingFramesToWait = FEEDBACK_FRAMES_TO_WAIT
        self.logoutOnClose = false
        self.quitOnClose = false
    elseif feedbackId then
        RemovePendingFeedback(feedbackId)
    end
end
    ZO_FEEDBACK = ZO_Feedback:New(control)
end
    control.owner:OnLoadStart()
end
    control.owner:OnLoadFinished()
end
    control.owner:Close()
end