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 |
--Layout consts, defining the widths of the list's columns as provided by design--
ZO_GAMEPAD_SOCIAL_LIST_STATUS_WIDTH = 100 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_SOCIAL_LIST_CLASS_WIDTH = 100 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_SOCIAL_LIST_ALLIANCE_WIDTH = 110 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_SOCIAL_LIST_LEVEL_WIDTH = 140 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_SOCIAL_LIST_CHAMPION_POINTS_ICON_OFFSET_X = 20
-----------------
-- Social List
-----------------
ZO_GamepadSocialListPanel = ZO_Object . MultiSubclass ( ZO_GamepadInteractiveSortFilterList , ZO_SocialOptionsDialogGamepad )
end
ZO_ScrollList_AddDataType ( self . list , ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_PRIMARY_DATA_TYPE , rowTemplate , ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_ROW_HEIGHT , function ( control , data ) self : SetupRow ( control , data ) end )
end
end
end
end
else
end
end
-- This function is meant to be overridden in subclasses to display the appropriate toolip information
end
end
end
end
local textColor2 = ZO_SELECTED_TEXT
local iconColor = ZO_SELECTED_TEXT
return textColor , iconColor , textColor2
end
local keybindDescriptor = { }
ZO_Gamepad_AddBackNavigationKeybindDescriptorsWithSound ( keybindDescriptor , GAME_NAVIGATION_TYPE_BUTTON , self : GetBackKeybindCallback ( ) )
if addKeybind then
end
local hideOfflineKeybind =
{
alignment = KEYBIND_STRIP_ALIGN_LEFT ,
else
end
end ,
SetSetting ( SETTING_TYPE_UI , UI_SETTING_SOCIAL_LIST_HIDE_OFFLINE , tostring ( not GetSetting_Bool ( SETTING_TYPE_UI , UI_SETTING_SOCIAL_LIST_HIDE_OFFLINE ) ) )
end ,
}
end
end
local text = zo_strformat ( SI_GAMEPAD_GUILD_STATUS_SELECTOR_FORMAT , statusTexture , GetString ( "SI_PLAYERSTATUS" , i ) )
end
end
end
self . control : RegisterForEvent ( EVENT_PLAYER_STATUS_CHANGED , function ( _ , oldStatus , newStatus ) self : UpdateStatusDropdownSelection ( newStatus ) end )
end
-- this function is meant be overridden in a subclass
end
table . insert ( scrollData , ZO_ScrollList_CreateDataEntry ( ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_PRIMARY_DATA_TYPE , data ) )
end
end
end
end
--Do nothing
end
end
end
do
local STATUS_UPDATE_DELAY = 1
end
end
end
end
end
end
local IGNORE_CALLBACK = true
end
end
return self : BuildOptionEntry ( header , GetGuildName ( guildId ) , inviteFunction , nil , GetLargeAllianceSymbolIcon ( GetGuildAlliance ( guildId ) ) )
end
if guildCount > 0 then
local guildInviteGroupingId = self : AddOptionTemplateGroup ( function ( ) return GetString ( SI_GAMEPAD_CONTACTS_INVITE_TO_GUILD_HEADER ) end )
for i = 1 , guildCount do
local visibleFunction = function ( ) return not self . socialData . isPlayer and DoesPlayerHaveGuildPermission ( guildId , GUILD_PERMISSION_INVITE ) end
end
end
end |