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 |
--------------------------------------------------------------------------------
-- Voice Chat Participants
-- Participants list for a selected voice chat channel. Displays
-- information about the speakers, and allows performing social actions
-- on them.
--------------------------------------------------------------------------------
return object
end
self . channel = nil --the channel set externally that we'll update for
end
local headerData =
{
}
end
end
self . fragment = GAMEPAD_VOICECHAT_PARTICIPANTS_FRAGMENT
end
end
self . channel = channel
end
end
--ZO_Gamepad_ParametricList_Screen overrides
list : AddDataTemplate ( "ZO_VoiceChatParticipantsEntryGamepad" , ZO_SharedGamepadEntry_OnSetup , ZO_GamepadMenuEntryTemplateParametricListFunction )
end
if selectedData then
local speakerData = selectedData . speakerData
local displayName = speakerData . displayName
local channelName = selectedData . channelName
local lastTimeSpoken = speakerData . lastTimeSpoken
GAMEPAD_TOOLTIPS : LayoutVoiceChatParticipantHistory ( GAMEPAD_LEFT_TOOLTIP , displayName , channelName , lastTimeSpoken )
end
end
end
self . keybindStripDescriptor = { } --ZO_VoiceChatSocialOptions_Gamepad will add the social keybinds
ZO_Gamepad_AddBackNavigationKeybindDescriptors ( self . keybindStripDescriptor , GAME_NAVIGATION_TYPE_BUTTON )
end
self . dirty = false
local channel = self . channel
if not channel then
return
end
--Populate list
local displayName = speakerData . displayName
local newEntry = ZO_GamepadEntryData : New ( ZO_FormatUserFacingDisplayName ( displayName ) , speakerData . isMuted and VOICE_CHAT_ICON_MUTED_PLAYER )
newEntry . speakerData = speakerData
newEntry . channel = channel
end
end
end |