ESO Lua File v100010

common/zo_uierrors/errorframe.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
local queuedErrors = {}
local suppressErrorDialog = false
local displayingError = false
local function GetNextQueuedError()
    if(#queuedErrors > 0) then
        return table.remove(queuedErrors, 1)
    end
end
function OnUIError(eventCode, errorString)
    if((suppressErrorDialog == false) and errorString) then
        queuedErrors[#queuedErrors + 1] = errorString
        if(not displayingError) then
            displayingError = true
            ZO_UIErrors:SetHidden(false)
            ZO_UIErrorsTextEdit:SetText(GetNextQueuedError())
            ZO_UIErrorsTextEdit:SetTopLineIndex(1)
        end
    end
end
    if(suppressErrorDialog == false) then
        if(displayingError) then
            displayingError = false
            ZO_UIErrors:SetHidden(true)
            ZO_UIErrorsTextEdit:SetText("")
        end
        
        OnUIError(EVENT_LUA_ERROR, GetNextQueuedError())
    end
end
function ZO_UIErrors_HideAll()
    if(suppressErrorDialog == false) then
        queuedErrors = {}
        ZO_UIErrors_HideCurrent()
    end
end
    if(suppressErrorDialog == false) then
        ZO_UIErrors_HideAll()            
    end
    suppressErrorDialog = not suppressErrorDialog
    d("Error dialog suppression has been set to: "..tostring(suppressErrorDialog))
end
local function OnLowMemory()
    OnUIError(EVENT_LUA_LOW_MEMORY, GetString(SI_LUA_LOW_MEMORY))
end
function ZO_UIErrors_Init()
    EVENT_MANAGER:RegisterForEvent("ZO_UIErrors_OnEvent", EVENT_LUA_ERROR, OnUIError)
    EVENT_MANAGER:RegisterForEvent("ZO_UIErrors_OnEvent", EVENT_LUA_LOW_MEMORY, OnLowMemory)
end