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 |
local REQUEST_TIMEOUT_MS = 4000
local TEXT_VALIDATION_OVERRIDE_REQUEST_TIMEOUT_MS = 30000
ZO_PLAYER_CONSOLE_INFO_REQUEST_BLOCK = true
ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK = false
local REQUEST_ID = "id"
local REQUEST_TEXT_VALIDATION = "textValidation"
return obj
end
EVENT_MANAGER : RegisterForEvent ( "PlayerConsoleInfoRequest" , EVENT_CONSOLE_INFO_RECEIVED , function ( _ , ... ) self : OnConsoleInfoReceived ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "PlayerConsoleInfoRequest" , EVENT_SELECT_FROM_USER_LIST_DIALOG_RESULT , function ( _ , ... ) self : OnSelectFromUserListDialogResult ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "PlayerConsoleInfoRequest" , EVENT_CONSOLE_TEXT_VALIDATION_RESULT , function ( _ , ... ) self : OnConsoleTextValidationResult ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "PlayerConsoleInfoRequest" , EVENT_RESUME_FROM_SUSPEND , function ( ... ) self : OnResumeFromSuspend ( ... ) end )
end
local NO_RESULT = false
end
ZO_ID_REQUEST_TYPE_ACCOUNT_ID = "accountId"
ZO_ID_REQUEST_TYPE_CHARACTER_NAME = "characterName"
ZO_ID_REQUEST_TYPE_DISPLAY_NAME = "displayName"
ZO_ID_REQUEST_TYPE_GUILD_INFO = "guildInfo"
ZO_ID_REQUEST_TYPE_GUILD_APPLICATION_INFO = "guildApplicationInfo"
ZO_ID_REQUEST_TYPE_GUILD_BLACKLIST_INFO = "guildBlacklistInfo"
ZO_ID_REQUEST_TYPE_FRIEND_INFO = "friendInfo"
ZO_ID_REQUEST_TYPE_IGNORE_INFO = "ignoreInfo"
ZO_ID_REQUEST_TYPE_GROUP_INFO = "groupInfo"
ZO_ID_REQUEST_TYPE_FRIEND_REQUEST = "friendRequest"
ZO_ID_REQUEST_TYPE_MAIL_ID = "mailId"
ZO_ID_REQUEST_TYPE_CAMPAIGN_LEADERBOARD = "campaignLeaderboard"
ZO_ID_REQUEST_TYPE_CAMPAIGN_ALLIANCE_LEADERBOARD = "campaignAllianceLeaderboard"
ZO_ID_REQUEST_TYPE_TRIAL_LEADERBOARD = "trialLeaderboard"
ZO_ID_REQUEST_TYPE_TRIAL_OF_THE_WEEK_LEADERBOARD = "trialOfTheWeekLeaderboard"
ZO_ID_REQUEST_TYPE_CHALLENGE_LEADERBOARD = "challengeLeaderboard"
ZO_ID_REQUEST_TYPE_CHALLENGE_OF_THE_WEEK_LEADERBOARD = "challengeOfTheWeekLeaderboard"
ZO_ID_REQUEST_TYPE_BATTLEGROUND_LEADERBOARD = "battlegroundLeaderboard"
ZO_ID_REQUEST_TYPE_TRIBUTE_LEADERBOARD = "tributeLeaderboard"
local CONSOLE_INFO_FUNCTIONS =
{
[ ZO_ID_REQUEST_TYPE_ACCOUNT_ID ] = GetConsoleInfoFromAccountId ,
[ ZO_ID_REQUEST_TYPE_CHARACTER_NAME ] = GetConsoleInfoFromCharName ,
[ ZO_ID_REQUEST_TYPE_DISPLAY_NAME ] = GetConsoleInfoFromDisplayName ,
[ ZO_ID_REQUEST_TYPE_GUILD_INFO ] = GetConsoleInfoFromGuildMember ,
[ ZO_ID_REQUEST_TYPE_GUILD_APPLICATION_INFO ] = GetConsoleInfoFromGuildApplicationIndex ,
[ ZO_ID_REQUEST_TYPE_GUILD_BLACKLIST_INFO ] = GetConsoleInfoFromGuildBlacklistIndex ,
[ ZO_ID_REQUEST_TYPE_FRIEND_INFO ] = GetConsoleInfoFromFriend ,
[ ZO_ID_REQUEST_TYPE_IGNORE_INFO ] = GetConsoleInfoFromIgnore ,
[ ZO_ID_REQUEST_TYPE_GROUP_INFO ] = GetConsoleInfoFromGroupMember ,
[ ZO_ID_REQUEST_TYPE_FRIEND_REQUEST ] = GetConsoleInfoFromIncomingFriendRequest ,
[ ZO_ID_REQUEST_TYPE_MAIL_ID ] = GetConsoleInfoFromMailId ,
[ ZO_ID_REQUEST_TYPE_CAMPAIGN_LEADERBOARD ] = GetConsoleInfoFromLeaderboardEntry ,
[ ZO_ID_REQUEST_TYPE_CAMPAIGN_ALLIANCE_LEADERBOARD ] = GetConsoleInfoFromAllianceLeaderboardEntry ,
[ ZO_ID_REQUEST_TYPE_TRIAL_LEADERBOARD ] = GetConsoleInfoFromTrialLeaderboardEntry ,
[ ZO_ID_REQUEST_TYPE_TRIAL_OF_THE_WEEK_LEADERBOARD ] = GetConsoleInfoFromTrialOfTheWeekLeaderboardEntry ,
[ ZO_ID_REQUEST_TYPE_CHALLENGE_LEADERBOARD ] = GetConsoleInfoFromChallengeLeaderboardEntry ,
[ ZO_ID_REQUEST_TYPE_CHALLENGE_OF_THE_WEEK_LEADERBOARD ] = GetConsoleInfoFromChallengeOfTheWeekLeaderboardEntry ,
[ ZO_ID_REQUEST_TYPE_BATTLEGROUND_LEADERBOARD ] = GetConsoleInfoFromBattlegroundLeaderboardEntry ,
[ ZO_ID_REQUEST_TYPE_TRIBUTE_LEADERBOARD ] = GetConsoleInfoFromTributeLeaderboardEntry ,
}
if wasFound then
else
{
requestKey = requestKey ,
}
end
end
end
end
end
--PlayStation doesn't have a console id so we can just return 0 for it immediately
else
end
end
function PlayerConsoleInfoRequestManager : RequestIdFromDisplayNameOrFallbackType ( displayName , block , fallbackRequestType , callback , ... )
end
end
function PlayerConsoleInfoRequestManager : RequestIdFromUserListDialog ( callback , titleText , includeOnlineFriends , includeOfflineFriends )
end
end
{
-- Prospero sometimes has slow text validation calls lasting up to 15 seconds, so we give these a bit more time
overrideTimeoutMS = TEXT_VALIDATION_OVERRIDE_REQUEST_TIMEOUT_MS
}
self : AddPendingRequest ( REQUEST_TEXT_VALIDATION , data , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , callback )
else
--for force console UI flow
end
end
else
{
blockingDialogName = "WAIT_FOR_CONSOLE_NAME_VALIDATION" ,
-- Prospero sometimes has slow text validation calls lasting up to 15 seconds, so we give these a bit more time
overrideTimeoutMS = TEXT_VALIDATION_OVERRIDE_REQUEST_TIMEOUT_MS
}
self : AddPendingRequest ( REQUEST_TEXT_VALIDATION , data , ZO_PLAYER_CONSOLE_INFO_REQUEST_BLOCK , callback )
else
--for force console UI flow
end
end
end
--Private API
pendingRequest . requestType = requestType
if block then
else
return
end
end
end
function PlayerConsoleInfoRequestManager : FindPendingRequestByField ( fieldName , fieldValue , requestType )
if fieldValue ~= nil then
if pendingRequest . requestType == requestType and pendingRequest [ fieldName ] == fieldValue then
return pendingRequest , i
end
end
end
end
local i = 1
local timeoutMS = REQUEST_TIMEOUT_MS
if pendingRequest . overrideTimeoutMS then
timeoutMS = pendingRequest . overrideTimeoutMS
end
if now - pendingRequest . requestMadeAtMS > timeoutMS then
else
i = i + 1
end
end
end
local dialogName = pendingRequest . blockingDialogName or "GAMEPAD_GENERIC_WAIT"
end
end
function PlayerConsoleInfoRequestManager : OnConsoleInfoReceived ( requestKey , displayName , consoleId , success )
if pendingRequest then
if success then
else
end
end
end
function PlayerConsoleInfoRequestManager : OnSelectFromUserListDialogResult ( hasResult , displayName , consoleId )
end
end
local pendingRequest , index = self : FindPendingRequestByField ( "validationKey" , key , REQUEST_TEXT_VALIDATION )
if pendingRequest then
end
end
|