Back to Home

ESO Lua File v101041

ingame/lfg/searchingforgroup.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
local SearchingForGroupManager = ZO_Object:Subclass()
function SearchingForGroupManager:New(...)
    local manager = ZO_Object.New(self)
    manager:Initialize(...)
    return manager
end
do
    local STATUS_HEADER_TEXT = GetString(SI_LFG_QUEUE_STATUS)
    local ESTIMATED_HEADER_TEXT = GetString(SI_GAMEPAD_LFG_QUEUE_ESTIMATED)
    local ACTUAL_HEADER_TEXT = GetString(SI_GAMEPAD_LFG_QUEUE_ACTUAL)
    local NO_ICON = ""
    local LOADING_ICON = zo_iconFormat(ZO_TIMER_ICON_32, 24, 24)
    function SearchingForGroupManager:Initialize(control)
        self.control = control
        self.leaveQueueButton = control:GetNamedChild("LeaveQueueButton")
    
        self.statusLabel = control:GetNamedChild("Status")
        self.estimatedTimeLabel = control:GetNamedChild("EstimatedTime")
        self.actualTimeLabel = control:GetNamedChild("ActualTime")
    
        self:Update()
        local function OnActivityFinderStatusUpdate(status)
            if self.activityFinderStatus ~= status then
                local wasSearching = self.activityFinderStatus == ACTIVITY_FINDER_STATUS_QUEUED
                self.activityFinderStatus = status
                local searching = self.activityFinderStatus == ACTIVITY_FINDER_STATUS_QUEUED
                local icon = searching and LOADING_ICON or NO_ICON
                local statusLabelText = zo_strformat(SI_ACTIVITY_QUEUE_STATUS_LABEL_FORMAT, STATUS_HEADER_TEXT, icon, GetString("SI_ACTIVITYFINDERSTATUS", status))
                self.statusLabel:SetText(statusLabelText)
                self.leaveQueueButton:SetEnabled(searching and IsUnitSoloOrGroupLeader("player"))
                
                if not searching then
                    self.actualTimeLabel:SetText("")
                    self.estimatedTimeLabel:SetText("")
                end
                self:Update()
                if searching then
                    PlaySound(SOUNDS.LFG_SEARCH_STARTED)
                elseif wasSearching then
                    PlaySound(SOUNDS.LFG_SEARCH_FINISHED)
                end
            end
        end
        local lastUpdateS = 0
        local function OnUpdate(control, currentFrameTimeSeconds)
            if currentFrameTimeSeconds - lastUpdateS > 1 then
                self:Update()
                lastUpdateS = currentFrameTimeSeconds
            end
        end
        ZO_ACTIVITY_FINDER_ROOT_MANAGER:RegisterCallback("OnActivityFinderStatusUpdate", OnActivityFinderStatusUpdate)
        control:SetHandler("OnUpdate", OnUpdate)
    end
    function SearchingForGroupManager:Update()
        if self.activityFinderStatus == ACTIVITY_FINDER_STATUS_QUEUED then
            local searchStartTimeMs, searchEstimatedCompletionTimeMs = GetLFGSearchTimes()
            local timeSinceSearchStartMs = GetFrameTimeMilliseconds() - searchStartTimeMs
            local textStartTime = ZO_FormatTimeMilliseconds(timeSinceSearchStartMs, TIME_FORMAT_STYLE_COLONS, TIME_FORMAT_PRECISION_TWELVE_HOUR)
            self.actualTimeLabel:SetText(zo_strformat(SI_ACTIVITY_QUEUE_STATUS_LABEL_FORMAT, ACTUAL_HEADER_TEXT, NO_ICON, textStartTime))
            if searchEstimatedCompletionTimeMs > 0 then
                local textEstimatedTime = ZO_GetSimplifiedTimeEstimateText(searchEstimatedCompletionTimeMs)
                self.estimatedTimeLabel:SetText(zo_strformat(SI_ACTIVITY_QUEUE_STATUS_LABEL_FORMAT, ESTIMATED_HEADER_TEXT, NO_ICON, textEstimatedTime))
            else
                self.estimatedTimeLabel:SetText("")
            end
        end
    end
end
    SEARCHING_FOR_GROUP = SearchingForGroupManager:New(self)
end
    if button == MOUSE_BUTTON_INDEX_LEFT then
        ZO_Dialogs_ShowDialog("LFG_LEAVE_QUEUE_CONFIRMATION")
    end
end