ESO Lua File v100012

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
GAMEPAD_GUILD_HOME_SCENE_NAME = "gamepad_guild_home"
local ZO_GamepadGuildHome = ZO_Gamepad_ParametricList_Screen:Subclass()
function ZO_GamepadGuildHome:New(...)
    return ZO_Gamepad_ParametricList_Screen.New(self, ...)
end
function ZO_GamepadGuildHome:Initialize(control)
    ZO_Gamepad_ParametricList_Screen.Initialize(self, control, ZO_GAMEPAD_HEADER_TABBAR_DONT_CREATE)
    self.headerData = {}
    GAMEPAD_GUILD_HOME_SCENE = ZO_Scene:New(GAMEPAD_GUILD_HOME_SCENE_NAME, SCENE_MANAGER)
    GAMEPAD_GUILD_HOME_SCENE:RegisterCallback("StateChange", function(oldState, newState)
        if newState == SCENE_SHOWING then
            self:PerformDeferredInitializationHome()
            self:PerformUpdate()
            if self.activeScreenCallback then
                self.activeScreenCallback()
            end
            ZO_GamepadGenericHeader_Activate(self.header)
            
            self.control:RegisterForEvent(EVENT_GUILD_DATA_LOADED, function() self:Update() end)
            self.control:RegisterForEvent(EVENT_GUILD_MEMBER_REMOVED, function(_, guildId, displayName) if(self:IsCurrentGuildId(guildId)) then self:Update() end end)
            self.control:RegisterForEvent(EVENT_GUILD_MEMBER_ADDED, function(_, guildId, displayName) if(self:IsCurrentGuildId(guildId)) then self:Update() end end)
            self.control:RegisterForEvent(EVENT_GUILD_MEMBER_RANK_CHANGED, function(_, guildId, displayName, rankIndex) if(self:IsCurrentGuildId(guildId)) then self:Update() end end)
            self.control:RegisterForEvent(EVENT_GUILD_MEMBER_PLAYER_STATUS_CHANGED, function(_, guildId, displayName, oldStatus, newStatus) if(self:IsCurrentGuildId(guildId)) then self:Update() end end)
        elseif newState == SCENE_HIDDEN then
            self:RemoveCurrentPage()
            
            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
        
        ZO_Gamepad_ParametricList_Screen.OnStateChanged(self, oldState, newState)
    end)
end
function ZO_GamepadGuildHome:PerformDeferredInitializationHome()
    if self.deferredInitialized then return end
    self.deferredInitialized = true
    
    self.itemList = self:GetMainList()
    self.optionsList = self:AddList("Options", SetupOptionsList)
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_SCENE_NAME)
    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 = {}
    GUILD_ROSTER_GAMEPAD:SetHeader(self.contentHeader, 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
    if(self.currentFragment == GUILD_HERALDRY_GAMEPAD_FRAGMENT) then
        contentHeaderData.data1HeaderText, contentHeaderData.data1Text = GUILD_HERALDRY_GAMEPAD:GetPurchaseCost()
    end
    ZO_GamepadGenericHeader_Refresh(self.contentHeader, contentHeaderData)
    -- list header
    self.headerData.messageText = nil;
    if(self.currentFragment == GUILD_RANKS_GAMEPAD_FRAGMENT) then
        self.headerData.messageText = GUILD_RANKS_GAMEPAD:GetMessageText()
    end
    ZO_GamepadGenericHeader_Refresh(self.header, self.headerData, blockTabBarCallbacks)
end
function ZO_GamepadGuildHome:InitializeFooter()
    self.footerData = {
        data1HeaderText = GetString(SI_GAMEPAD_GUILD_HEADER_MEMBERS_ONLINE_LABEL),
        data2HeaderText = GetString(SI_GAMEPAD_GUILD_HEADER_GUILD_MASTER_LABEL),
    }
end
function ZO_GamepadGuildHome:SetHeaderHidden(hide)
    self.header:SetHidden(hide)
end
function ZO_GamepadGuildHome:RefreshFooter()
    local numGuildMembers, numOnline, guildMasterName = GetGuildInfo(self.guildId)
    self.footerData.data1Text = zo_strformat(GetString(SI_GAMEPAD_GUILD_HEADER_MEMBERS_ONLINE_FORMAT), numOnline, numGuildMembers)
    self.footerData.data2Text = ZO_FormatUserFacingDisplayName(guildMasterName)
    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
    end
end
function ZO_GamepadGuildHome:SetCurrentPage(fragment, screenObject)
    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)
            self:SetCurrentList(self.itemList)
        end
        self:RefreshHeader()
    end
end
function ZO_GamepadGuildHome:ShowRoster()
    self:SetCurrentPage(GUILD_ROSTER_GAMEPAD_FRAGMENT, GUILD_ROSTER_MANAGER)
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
--------------------
    GAMEPAD_GUILD_HOME = ZO_GamepadGuildHome:New(control)
end