Back to Home

ESO Lua File v101041

ingame/contacts/gamepad/friendslist_gamepad.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
--Layout consts, defining the widths of the list's columns as provided by design--
ZO_GAMEPAD_FRIENDS_LIST_USER_FACING_NAME_WIDTH = 310 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_FRIENDS_LIST_CHARACTER_NAME_WIDTH = 205 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_FRIENDS_LIST_ZONE_WIDTH = 260 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
-----------------
-- Friend List
-----------------
local FriendsList_Gamepad = ZO_GamepadSocialListPanel:Subclass()
function FriendsList_Gamepad:New(...)
    return ZO_GamepadSocialListPanel.New(self, ...)
end
function FriendsList_Gamepad:Initialize(control, rowTemplate)
    ZO_GamepadSocialListPanel.Initialize(self, control, FRIENDS_LIST_MANAGER, rowTemplate)
    self:SetTitle(GetString(SI_GAMEPAD_CONTACTS_FRIENDS_LIST_TITLE))
    self:SetEmptyText(GetString(SI_GAMEPAD_CONTACTS_FRIENDS_LIST_NO_FRIENDS_MESSAGE));
    self:SetupSort(FRIENDS_LIST_ENTRY_SORT_KEYS, "status", ZO_SORT_ORDER_UP)
    GAMEPAD_FRIENDS_LIST_SCENE = ZO_Scene:New("gamepad_friends", SCENE_MANAGER)
    GAMEPAD_FRIENDS_LIST_SCENE:AddFragment(self:GetListFragment())
    if ZO_IsPlaystationPlatform() then
        EVENT_MANAGER:RegisterForEvent("FriendsList_Gamepad", EVENT_FRIEND_CHARACTER_INFO_RECEIVED, function(eventId, ...) self:OnFriendCharacterInfoReceived(...) end)
    end
end
function FriendsList_Gamepad:OnFriendCharacterInfoReceived(displayName, hasCharacter, characterName, zoneName, class, alliance, level, championPoints)
    if not hasCharacter or not ZO_Dialogs_IsShowing("GAMEPAD_SOCIAL_OPTIONS_DIALOG") then
        return
    end
    local entryData = self:GetSelectedData()
    if not entryData then
        return
    end
    if entryData.displayName == displayName then
        local gender = GetGenderFromNameDescriptor(characterName)
        local formattedZonename = ZO_CachedStrFormat(SI_ZONE_NAME, zoneName)
        local formattedAllianceName = ZO_CachedStrFormat(SI_ALLIANCE_NAME, GetAllianceName(alliance))
        local parametricDialog = ZO_GenericGamepadDialog_GetControl(GAMEPAD_DIALOGS.PARAMETRIC)
        ZO_GenericGamepadDialog_ShowTooltip(parametricDialog)
        GAMEPAD_TOOLTIPS:LayoutFriend(GAMEPAD_LEFT_DIALOG_TOOLTIP, ZO_FormatUserFacingDisplayName(entryData.displayName), characterName, class, gender, level, championPoints, formattedAllianceName, formattedZonename, not entryData.online, entryData.secsSinceLogoff, entryData.timeStamp)
    end
end
function FriendsList_Gamepad:GetAddKeybind()
    local platform = GetUIPlatform()
    if platform ~= UI_PLATFORM_XBOX then
        local keybind =
        {
            alignment = KEYBIND_STRIP_ALIGN_LEFT,
            name = GetString(SI_GAMEPAD_CONTACTS_ADD_FRIEND_BUTTON_LABEL),
            keybind = "UI_SHORTCUT_SECONDARY",
            callback = function()
                if ZO_IsPCUI() then
                    ZO_Dialogs_ShowGamepadDialog("GAMEPAD_SOCIAL_ADD_FRIEND_DIALOG")
                else
                    ZO_ShowConsoleAddFriendDialogFromUserListSelector()
                end
            end,
        }
        return keybind
    end
end
function FriendsList_Gamepad:LayoutTooltip(tooltipManager, tooltip, data)
    -- PlayStation will not show a tooltip here, we will show the tooltip if the player opens the social options dialog
    if not ZO_IsPlaystationPlatform() then
        tooltipManager:LayoutFriend(tooltip, ZO_FormatUserFacingDisplayName(data.displayName), data.characterName, data.class, data.gender, data.level, data.championPoints, data.formattedAllianceName, data.formattedZone, not data.online, data.secsSinceLogoff, data.timeStamp)
    end
end
function FriendsList_Gamepad:OnNumOnlineChanged()
    if GAMEPAD_CONTACTS then
        GAMEPAD_CONTACTS:UpdateOnline()
    end
end
function FriendsList_Gamepad:OnNumTotalFriendsChanged()
    if GAMEPAD_CONTACTS then
        GAMEPAD_CONTACTS:UpdateOnline()
    end
end
function FriendsList_Gamepad:OnShowing()
        EVENT_MANAGER:RegisterForUpdate("FriendsListConsoleRefresh", 60000, function() RequestSocialListForActiveProfile() end)
    end
    FRIENDS_LIST_MANAGER:RefreshData()
    self:Activate()
    ZO_GamepadSocialListPanel.OnShowing(self)
end
function FriendsList_Gamepad:OnHidden()
    if IsConsoleUI() then
        EVENT_MANAGER:UnregisterForUpdate("FriendsListConsoleRefresh")
    end
end
function FriendsList_Gamepad:CommitScrollList()
    ZO_GamepadSocialListPanel.CommitScrollList(self)
    --This just sets the empty text, the visibility of the empty text is controlled by SortFilterList when the filtered list is empty
    --The text is reset by GamepadInteractiveSortFilterList.CommitScrollList where it sets the text to No Friends or Filter Returned None as appropriate and this overrides it if the players are offline
    if #self.masterList > 0 then
        if self:GetCurrentSearch() == "" and GetSetting_Bool(SETTING_TYPE_UI, UI_SETTING_SOCIAL_LIST_HIDE_OFFLINE) then
            self.emptyRowMessage:SetText(GetString(SI_FRIENDS_LIST_ALL_FRIENDS_OFFLINE))
        end
    end
end
-- Overriding version from ZO_GamepadSocialListPanel
function FriendsList_Gamepad:ColorRow(control, data, selected)
    if not ZO_IsPlaystationPlatform() then
        ZO_GamepadSocialListPanel.ColorRow(self, control, data, selected)
    else
        local textColor = self:GetRowColors(data, selected)
        local displayNameControl = control:GetNamedChild("DisplayName")
        displayNameControl:SetColor(textColor:UnpackRGBA())
    end
end
function FriendsList_Gamepad:BuildOptionsList()
    local groupId = self:AddOptionTemplateGroup(ZO_SocialOptionsDialogGamepad.GetDefaultHeader)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildWhisperOption, ZO_SocialOptionsDialogGamepad.ShouldAddWhisperOption)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildInviteToGroupOption, ZO_SocialOptionsDialogGamepad.ShouldAddInviteToGroupOptionAndCanSelectedDataBeInvited)
    local function BuildTravelToFriendPlayerOption()
        return self:BuildTravelToPlayerOption(JumpToFriend)
    end
    self:AddOptionTemplate(groupId, BuildTravelToFriendPlayerOption, ZO_SocialOptionsDialogGamepad.SelectedDataIsLoggedIn)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildVisitPlayerHouseOption)
    local function ShouldShowInviteToTribute()
        -- As part of SelectedDataIsLoggedIn we check if we have character information for the player in question
        -- On PlayStation we don't have character info when we run this check, so remove the hasCharacter check
        -- All other platforms will have character information as appropriate
        if ZO_IsPlaystationPlatform() then
            return self.socialData.online and not self:SelectedDataIsPlayer()
        else
            return self:SelectedDataIsLoggedIn()
        end
    end
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildInviteToTributeOption, ShouldShowInviteToTribute)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildSendMailOption)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildGamerCardOption, IsConsoleUI)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildIgnoreOption)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildRemoveFriendOption, ZO_SocialOptionsDialogGamepad.ShouldAddRemoveFriendOption)
end
function FriendsList_Gamepad:GetSelectedNarrationText()
    local ROW_ENTRY_PAUSE_TIME_MS = 100
    local narrations = {}
    local entryData = self:GetSelectedData()
    if entryData then
        if entryData.status then
            local narrationStrings = { GetString(SI_GAMEPAD_CONTACTS_LIST_HEADER_STATUS), GetString("SI_PLAYERSTATUS", entryData.status) }
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(narrationStrings, ROW_ENTRY_PAUSE_TIME_MS))
        end
        if entryData.displayName then
            local narrationStrings = { ZO_GetPlatformAccountLabel(), ZO_FormatUserFacingDisplayName(entryData.displayName) }
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(narrationStrings, ROW_ENTRY_PAUSE_TIME_MS))
        end
        --Playstation does not show any of the character fields
        local hideCharacterFields = ZO_IsPlaystationPlatform() or not entryData.hasCharacter or (zo_strlen(entryData.characterName) <= 0)
        if not hideCharacterFields then
            ZO_AppendNarration(narrations, self:GetCharacterFieldsNarration(entryData))
        end
    end
    return narrations
end
function FriendsList_Gamepad:GetFooterNarration()
    if GAMEPAD_CONTACTS_FRAGMENT:IsShowing() then
        return GAMEPAD_CONTACTS:GetNarrationText()
    end
end
-- Overriding from ZO_SocialOptionsDialogGamepad
function FriendsList_Gamepad:GetDialogData()
    local data = ZO_SocialOptionsDialogGamepad.GetDialogData(self)
    if ZO_IsPlaystationPlatform() then
        data.setupFunction = function(dialog)
            local entryData = self:GetSelectedData()
            if entryData.online then
                RequestCharacterDataForFriend(entryData.displayName)
            end
        end
    end
    return data
end
---
-- Global XML Function
---
    -- Set up columns before initializing panel
    local rowTemplate
    local headersTemplate
    if ZO_IsPlaystationPlatform() then
        rowTemplate = "ZO_GamepadFriendsListRow_Playstation"
        headersTemplate = "ZO_GamepadFriendsListHeaders_Playstation"
    else
        rowTemplate = "ZO_GamepadFriendsListRow"
        headersTemplate = "ZO_GamepadFriendsListHeaders"
    end
    ApplyTemplateToControl(control:GetNamedChild("ContainerHeaders"), headersTemplate)
    ZO_FRIENDS_LIST_GAMEPAD = FriendsList_Gamepad:New(control, rowTemplate)
end