Back to Home

ESO Lua File v101041

ingame/guild/gamepad/zo_guildhome_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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
ZO_GamepadGuildHome = ZO_Gamepad_ParametricList_Screen:Subclass()
function ZO_GamepadGuildHome:Initialize(control)
    GAMEPAD_GUILD_HOME_SCENE = ZO_Scene:New("gamepad_guild_home", SCENE_MANAGER)
    local DONT_ACTIVATE_ON_SHOW = false
    ZO_Gamepad_ParametricList_Screen.Initialize(self, control, ZO_GAMEPAD_HEADER_TABBAR_DONT_CREATE, DONT_ACTIVATE_ON_SHOW, GAMEPAD_GUILD_HOME_SCENE)
    self.headerData = {}
end
function ZO_GamepadGuildHome:OnDeferredInitialize()
    self.itemList = self:GetMainList()
    self.optionsList = self:AddList("Options")
end
function ZO_GamepadGuildHome:OnShowing()
    ZO_Gamepad_ParametricList_Screen.OnShowing(self)
    if self.activeScreenCallback then
        self.activeScreenCallback()
    end
    local function UpdateIfGuildMatches(_, guildId)
        if self:IsCurrentGuildId(guildId) then
            self:Update()
        end
    end
    self.control:RegisterForEvent(EVENT_GUILD_DATA_LOADED, function() self:Update() end)
    self.control:RegisterForEvent(EVENT_GUILD_MEMBER_REMOVED, UpdateIfGuildMatches)
    self.control:RegisterForEvent(EVENT_GUILD_MEMBER_ADDED, UpdateIfGuildMatches)
    self.control:RegisterForEvent(EVENT_GUILD_MEMBER_RANK_CHANGED, UpdateIfGuildMatches)
    self.control:RegisterForEvent(EVENT_GUILD_MEMBER_PLAYER_STATUS_CHANGED, UpdateIfGuildMatches)
end
function ZO_GamepadGuildHome:OnHide()
    ZO_Gamepad_ParametricList_Screen.OnHide(self)
            
    self.control:UnregisterForEvent(EVENT_GUILD_DATA_LOADED)
    self.control:UnregisterForEvent(EVENT_GUILD_MEMBER_REMOVED)
    self.control:UnregisterForEvent(EVENT_GUILD_MEMBER_ADDED)
    self.control:UnregisterForEvent(EVENT_GUILD_MEMBER_RANK_CHANGED)
    self.control:UnregisterForEvent(EVENT_GUILD_MEMBER_PLAYER_STATUS_CHANGED)
end
function ZO_GamepadGuildHome:PerformUpdate()
    self:RefreshHeader()
    self:RefreshFooter()
    self:ValidateGuildId() 
end
function ZO_GamepadGuildHome:SetActivateScreenInfo(callback, title)
    self.headerData.titleText = title
end
function ZO_GamepadGuildHome:SetGuildId(guildId)
    self.guildId = guildId
end
function ZO_GamepadGuildHome:IsCurrentGuildId(guildId)
    return self.guildId == guildId
end
function ZO_GamepadGuildHome:ValidateGuildId()
    if not ZO_ValidatePlayerGuildId(self.guildId) then
        self.guildId = nil
        SCENE_MANAGER:Hide("gamepad_guild_home")
    end
end
------------
-- Header --
------------
function ZO_GamepadGuildHome:ShouldShowEditRankHeaderTitle()
    return self.currentFragment == GUILD_RANKS_GAMEPAD_FRAGMENT and GUILD_RANKS_GAMEPAD:IsEditingRank()
end
function ZO_GamepadGuildHome:InitializeHeader()
    local rightPane = self.control:GetNamedChild("RightPane")
    local contentContainer = rightPane:GetNamedChild("ContentHeader")
    self.contentHeader = contentContainer:GetNamedChild("Header")
    ZO_GamepadGenericHeader_Initialize(self.contentHeader, ZO_GAMEPAD_HEADER_TABBAR_DONT_CREATE, ZO_GAMEPAD_HEADER_LAYOUTS.DATA_PAIRS_TOGETHER)
    self.contentHeaderData = {}
end
function ZO_GamepadGuildHome:RefreshHeader(blockTabBarCallbacks)
    -- content header
    local contentHeaderData = self.contentHeaderData
    contentHeaderData.titleText = GetGuildName(self.guildId)
    contentHeaderData.data1HeaderText = nil
    contentHeaderData.data1Text = nil
    contentHeaderData.data1TextNarration = nil
    if self.currentFragment == GUILD_HERALDRY_GAMEPAD_FRAGMENT then
        contentHeaderData.data1HeaderText, contentHeaderData.data1Text, contentHeaderData.data1TextNarration = GUILD_HERALDRY_GAMEPAD:GetPurchaseCost()
    end
    ZO_GamepadGenericHeader_Refresh(self.contentHeader, contentHeaderData)
    -- list header
    self.headerData.messageText = nil
    self.headerData.data1HeaderText = nil
    self.headerData.data1Text = nil
    self.headerData.data2HeaderText = nil
    self.headerData.data2Text = nil
    if self.currentFragment == GUILD_RANKS_GAMEPAD_FRAGMENT then
        self.headerData.messageText = GUILD_RANKS_GAMEPAD:GetMessageText()
    elseif self.currentFragment == GUILD_RECRUITMENT_GAMEPAD_FRAGMENT then
        local headerData = GUILD_RECRUITMENT_GAMEPAD:GetHeaderData()
        self.headerData.data1HeaderText = headerData.data1HeaderText
        self.headerData.data1Text = headerData.data1Text
        self.headerData.data2HeaderText = headerData.data2HeaderText
        self.headerData.data2Text = headerData.data2Text
    end
    ZO_GamepadGenericHeader_Refresh(self.header, self.headerData, blockTabBarCallbacks)
    --Roster
    local rosterHeaderData = GUILD_ROSTER_GAMEPAD:GetContentHeaderData()
    rosterHeaderData.data1Text = contentHeaderData.titleText
    rosterHeaderData.data2Text = ZO_FormatUserFacingDisplayName(select(3, GetGuildInfo(self.guildId)))
    ZO_GamepadGenericHeader_Refresh(GUILD_ROSTER_GAMEPAD.contentHeader, rosterHeaderData)
end
function ZO_GamepadGuildHome:InitializeFooter()
    self.footerData =
    {
        data1HeaderText = GetString(SI_GAMEPAD_GUILD_HEADER_MEMBERS_ONLINE_LABEL),
    }
end
function ZO_GamepadGuildHome:SetHeaderHidden(hide)
    self.header:SetHidden(hide)
end
function ZO_GamepadGuildHome:SetContentHeaderHidden(hide)
    self.contentHeader:SetHidden(hide)
end
function ZO_GamepadGuildHome:RefreshFooter()
    local numGuildMembers, numOnline, _, numInvitees = GetGuildInfo(self.guildId)
    self.footerData.data1Text = zo_strformat(GetString(SI_GAMEPAD_GUILD_HEADER_MEMBERS_ONLINE_FORMAT), numOnline, numGuildMembers + numInvitees)
    GAMEPAD_GENERIC_FOOTER:Refresh(self.footerData)
end
----------
-- List --
----------
function ZO_GamepadGuildHome:OnTargetChanged(list, selectedData, oldSelectedData)
    if self.currentScreenObject ~= nil and self.currentScreenObject.OnTargetChanged ~= nil then
        self.currentScreenObject:OnTargetChanged(list, selectedData, oldSelectedData)
    end
end
-----------
-- Pages --
-----------
function ZO_GamepadGuildHome:RemoveCurrentPage()
    if self.currentFragment ~= nil then
        GAMEPAD_GUILD_HOME_SCENE:RemoveFragment(self.currentFragment)
        self.currentFragment = nil
        self.currentScreenObject = nil
    end
end
function ZO_GamepadGuildHome:SetCurrentPage(fragment, screenObject, activateCurrentList)
    if self.currentFragment ~= fragment then
        self:RemoveCurrentPage()
        self.currentFragment = fragment
        self.currentScreenObject = screenObject
    
        if fragment ~= nil and screenObject ~= nil then
            screenObject:SetGuildId(self.guildId)
            if screenObject.SetMainList ~= nil then
                screenObject:SetMainList(self.itemList)
            end
            if screenObject.SetOptionsList ~= nil then
                screenObject:SetOptionsList(self.optionsList)
            end
            if screenObject.SetOwningScreen ~= nil then
                screenObject:SetOwningScreen(self)
            end
            self.itemList:Clear()
            GAMEPAD_GUILD_HOME_SCENE:AddFragment(fragment)
            --Treat nil as true
            if activateCurrentList ~= false then
                self:SetCurrentList(self.itemList)
            end
        end
        self:RefreshHeader()
    end
end
function ZO_GamepadGuildHome:ShowRoster()
    local DONT_ACTIVATE_CURRENT_LIST = false
    self:SetCurrentPage(GUILD_ROSTER_GAMEPAD:GetListFragment(), GUILD_ROSTER_MANAGER, DONT_ACTIVATE_CURRENT_LIST)
end
function ZO_GamepadGuildHome:ShowRanks()
    self:SetCurrentPage(GUILD_RANKS_GAMEPAD_FRAGMENT, GUILD_RANKS_GAMEPAD)
end
function ZO_GamepadGuildHome:ShowHeraldry()
    self:SetCurrentPage(GUILD_HERALDRY_GAMEPAD_FRAGMENT, GUILD_HERALDRY_GAMEPAD)
end
function ZO_GamepadGuildHome:ShowHistory()
    self:SetCurrentPage(GUILD_HISTORY_GAMEPAD_FRAGMENT, GUILD_HISTORY_GAMEPAD)
end
function ZO_GamepadGuildHome:ShowRecruitment()
    self:SetCurrentPage(GUILD_RECRUITMENT_GAMEPAD_FRAGMENT, GUILD_RECRUITMENT_GAMEPAD)
end
function ZO_GamepadGuildHome:ShowWeeklyBids()
    local DONT_ACTIVATE_CURRENT_LIST = false
    self:SetCurrentPage(GUILD_WEEKLY_BIDS_GAMEPAD:GetListFragment(), GUILD_WEEKLY_BIDS_GAMEPAD, DONT_ACTIVATE_CURRENT_LIST)
end
function ZO_GamepadGuildHome:GetContentHeaderNarrationText()
    return ZO_GamepadGenericHeader_GetNarrationText(self.contentHeader, self.contentHeaderData)
end
function ZO_GamepadGuildHome:GetFooterNarrationText()
    return GAMEPAD_GENERIC_FOOTER:GetNarrationText(self.footerData)
end
--------------------
    GAMEPAD_GUILD_HOME = ZO_GamepadGuildHome:New(control)
end