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 |
--AppAndIngame version of ZO_FormatUserFacingDisplayName for local use
end
ZO_VOICE_CHAT_CHANNEL_TO_COLOR =
{
[ VOICE_CHANNEL_AREA ] = VOICE_CHAT_COLORS_AREA ,
[ VOICE_CHANNEL_GROUP ] = VOICE_CHAT_COLORS_GROUP ,
[ VOICE_CHANNEL_GUILD ] = VOICE_CHAT_COLORS_GUILD ,
[ VOICE_CHANNEL_BATTLEGROUP ] = VOICE_CHAT_COLORS_GROUP ,
}
ZO_VOICE_CHAT_CHANNEL_TO_ICON =
{
[ VOICE_CHANNEL_AREA ] = "EsoUI/Art/VOIP/voip-area.dds" ,
[ VOICE_CHANNEL_GROUP ] = "EsoUI/Art/VOIP/voip-group.dds" ,
[ VOICE_CHANNEL_GUILD ] = "EsoUI/Art/VOIP/voip-guild.dds" ,
[ VOICE_CHANNEL_BATTLEGROUP ] = "EsoUI/Art/VOIP/voip-group.dds" ,
}
--------------------------------------------------------------------------------
-- Speaker List
-- A helper class for generating hud speaker entries and anchoring them to
-- form a list. Allows the VoiceChat HUD to only have to deal with adding
-- to and clearing from a list.
--------------------------------------------------------------------------------
local SpeakerList = { }
end
--Initialize control
if not newEntry then
-- can't just call CreateControlFromVirtual as that is defined in GlobalVars.lua which we don't load in the App GUI
newEntry = GetWindowManager ( ) : CreateControlFromVirtual ( self . nextControlId , self . control , "ZO_VoiceChatHUDEntry" )
end
--Set text
local textControl = newEntry . textControl
textControl : SetColor ( GetInterfaceColor ( INTERFACE_COLOR_TYPE_VOICE_CHAT_COLORS , ZO_VOICE_CHAT_CHANNEL_TO_COLOR [ channelType ] ) )
--Set anchor
else
end
--Set icon
local icon = newEntry . icon
icon : SetColor ( GetInterfaceColor ( INTERFACE_COLOR_TYPE_VOICE_CHAT_COLORS , ZO_VOICE_CHAT_CHANNEL_TO_COLOR [ channelType ] ) )
end
end
end
--------------------------------------------------------------------------------
-- VoiceChat HUD
-- Class for displaying a list of current voice chat speakers. Templated
-- outside the ingame UI layer so that we can also create one for the loading
-- screen.
--------------------------------------------------------------------------------
local LIST_ENTRY_LIMIT = 4
local CLEAR_DELAY_MS = 500 --after a user quits speaking, their HUD entry will persist for this duration before clearing
local channelData =
{
channelName = channelName ,
channelType = channelType ,
guildId = guildId ,
guildRoomNumber = guildRoomNumber
}
return channelData
end
ZO_VoiceChatHUD = { }
self . speakerData = { } --list of currently speaking users, including users who have stopped talking but their HUD entry is waiting to clear
self . delayedClears = { } --table that maps users who have stopped talking to the time that their HUD entry should clear
end
--Clear entries for users who haven't spoken recently
if currentTime >= clearTime then
end
end
--Create the list
self . speakerList : AddLine ( ZO_FormatUserFacingDisplayName ( speaker . displayName ) , speaker . channelData . channelType )
end
end
--The list is a stack with the users who spoke most recently on the bottom. The local player is an
--exception to this and always shows at the bottom.
local speakerDataEntry =
{
channelData = channelData ,
displayName = displayName ,
}
--Remove any existing entry so it can be reinserted at the bottom
--Remove the oldest entry if we're over the limit
end
end
if speaker . displayName == displayName then
break
end
end
end
if speaker . channelData . channelName == channelData . channelName then
end
end
end
end
end
if not firstEntry then
return false
end
end
--Events
self . control : RegisterForEvent ( EVENT_VOICE_CHANNEL_LEFT , function ( eventCode , ... ) self : OnVoiceChannelLeft ( ... ) end )
self . control : RegisterForEvent ( EVENT_VOICE_CHANNEL_UNAVAILABLE , function ( eventCode , ... ) self : OnVoiceChannelUnavailable ( ... ) end )
self . control : RegisterForEvent ( EVENT_VOICE_USER_SPEAKING , function ( eventCode , ... ) self : OnUserSpeaking ( ... ) end )
self . control : RegisterForEvent ( EVENT_VOICE_USER_JOINED_CHANNEL , function ( eventCode , ... ) self : OnVoiceUserJoinedChannel ( ... ) end )
self . control : RegisterForEvent ( EVENT_VOICE_USER_LEFT_CHANNEL , function ( eventCode , ... ) self : OnVoiceUserLeftChannel ( ... ) end )
end
end
end
if speaking then
else
end
end
function ZO_VoiceChatHUD : OnVoiceUserJoinedChannel ( channelName , displayName , characterName , isSpeaking )
if isSpeaking then
end
end
end |