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 |
--------------------------------------------------------------------------------
-- Voice Chat Participants
-- Participants list for a selected voice chat channel. Displays
-- information about the speakers, and allows performing social actions
-- on them.
--------------------------------------------------------------------------------
GAMEPAD_VOICECHAT_PARTICIPANTS_SCENE = ZO_Scene : New ( "gamepad_voice_chat_participants" , SCENE_MANAGER )
local ACTIVATE_ON_SHOW = true
ZO_Gamepad_ParametricList_Screen . Initialize ( self , control , ZO_DO_NOT_CREATE_TAB_BAR , ACTIVATE_ON_SHOW , GAMEPAD_VOICECHAT_PARTICIPANTS_SCENE )
end
local headerData =
{
}
end
end
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
ZO_Gamepad_AddBackNavigationKeybindDescriptors ( self . keybindStripDescriptor , GAME_NAVIGATION_TYPE_BUTTON )
end
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 |