Back to Home

ESO Lua File v101041

ingame/voicechat/console/zo_voicechat_manager.lua

[◄ back to folders ]
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
--Global voice chat related functions and data
function ZO_VoiceChat_GetChannelDataFromName(channelName)
    local channelType, primaryId, guildRoomNumber = VoiceChatGetChannelInfo(channelName)
    local guildId
    if channelType == VOICE_CHANNEL_GUILD then
        guildId = primaryId
    end
    local channelData =
    {
        channelType = channelType,
        guildId = guildId, --this value is invalid when retrieved for a guild channel that is no longer available
        guildRoomNumber = guildRoomNumber
    }
    return channelData
end
function ZO_VoiceChat_IsNameLocalPlayers(displayName)
    return displayName == GetDisplayName()
end
VOICE_CHAT_ICON_MUTED_PLAYER = "EsoUI/Art/VOIP/Gamepad/gp_VOIP_muted.dds"
VOICE_CHAT_ICON_LISTENING_CHANNEL = "EsoUI/Art/VOIP/Gamepad/gp_VOIP_listening.dds"
--------------------------------------------------------------------------------
-- VoiceChat History Data
-- Helper class for saving and sorting the speaker history of each channel.
--------------------------------------------------------------------------------
local HISTORY_ENTRY_LIMIT = 15
local HistoryData = ZO_InitializingObject:Subclass()
function HistoryData:Initialize()
    self.list = {} --entries toward the end of the list are considered newer
    self.displayNameToEntry = {}
end
function HistoryData:UpdateUser(displayName)
    local newEntry =
    {
        displayName = displayName,
        lastTimeSpoken = GetFrameTimeMilliseconds(),
        isMuted = false,
    }
    if self.displayNameToEntry[displayName] then
        self:RemoveUser(displayName)
    end
    
    table.insert(self.list, newEntry)
    --Maintain max size
    if #self.list > HISTORY_ENTRY_LIMIT then
        local data = self.list[1]
        self.displayNameToEntry[data.displayName] = nil
        table.remove(self.list, 1)
    end
    self.displayNameToEntry[displayName] = newEntry
end
function HistoryData:UpdateMutedUsers(mutedUsers)
    for i, speakerData in ipairs(self.list) do
        speakerData.isMuted = mutedUsers[speakerData.displayName]
    end
end
function HistoryData:RemoveUser(displayName)
    for i, speakerData in ipairs(self.list) do
        if speakerData.displayName == displayName then
            table.remove(self.list, i)
            break
        end
    end
    self.displayNameToEntry[displayName] = nil
end
--------------------------------------------------------------------------------
-- VoiceChat Participants Data
-- Helper class for saving and sorting the participants of each channel.
--------------------------------------------------------------------------------
local SORT_KEYS =
{
    displayName = {}
}
local SORT_BY_OCCURRENCE = true
local DONT_SORT_BY_OCCURRENCE = false
local function SortParticipantEntries(entry1, entry2)
    return ZO_TableOrderingFunction(entry1, entry2, "displayName", SORT_KEYS, ZO_SORT_ORDER_UP)
end
local ParticipantsData = ZO_InitializingObject:Subclass()
function ParticipantsData:Initialize(sortByOccurrence)
    self.list = {}
    self.displayNameToEntry = {}
    self.sortByOccurrence = sortByOccurrence --when true, newer entries occur first in the list
end
function ParticipantsData:AddOrUpdateParticipant(displayName, speakStatus, isMuted)
    if self.displayNameToEntry[displayName] then
        self:UpdateParticipantStatus(displayName, speakStatus, isMuted)
        return
    end
    local newEntry =
    {
        displayName = displayName,
        speakStatus = speakStatus,
        isMuted = isMuted,
    }
    table.insert(self.list, 1, newEntry)
    self.displayNameToEntry[displayName] = newEntry
    if not self.sortByOccurrence then
        table.sort(self.list, SortParticipantEntries)
    end
end
function ParticipantsData:RemoveParticipant(displayName)
    local foundIndex = self:GetParticipantIndex(displayName)
    if foundIndex then
        table.remove(self.list, foundIndex)
        self.displayNameToEntry[displayName] = nil
    end
end
function ParticipantsData:GetParticipant(displayName)
    return self.displayNameToEntry[displayName]
end
function ParticipantsData:GetParticipantIndex(displayName)
    for i, speakerData in ipairs(self.list) do
        if speakerData.displayName == displayName then
            return i
        end
    end
    return nil
end
function ParticipantsData:UpdateParticipantStatus(displayName, speakStatus, isMuted)
    local index = self:GetParticipantIndex(displayName)
    if index then
        local speakerData = self.list[index]
        if speakStatus then
            speakerData.speakStatus = speakStatus
            if speakStatus == VOICE_CHAT_SPEAK_STATE_SPEAKING then
                speakerData.lastTimeSpoken = GetFrameTimeMilliseconds()
            end
        end
        --Only update the mute status if an argument was provided
        if isMuted ~= nil then
            speakerData.isMuted = isMuted
        end
    
        if self.sortByOccurrence then
            if speakStatus == VOICE_CHAT_SPEAK_STATE_SPEAKING then
                --Move the user to the end of the list
                table.remove(self.list, index)
                table.insert(self.list, 1, speakerData)
            end
        end
    end
end
function ParticipantsData:UpdateMutedUsers(mutedUsers)
    for i, speakerData in ipairs(self.list) do
        speakerData.isMuted = mutedUsers[speakerData.displayName]
    end
end
function ParticipantsData:ClearParticipants()
    self.list = {}
    self.displayNameToEntry = {}
end
--------------------------------------------------------------------------------
-- Voice Chat Manager
--------------------------------------------------------------------------------
ZO_VoiceChat_Manager = ZO_InitializingCallbackObject:Subclass()
function ZO_VoiceChat_Manager:Initialize()
    VOICE_CHAT_MANAGER = self
    self.channelData =
    {
        [VOICE_CHANNEL_AREA] =
        {
            channelType = VOICE_CHANNEL_AREA,
            guildId = 0,
            guildRoomNumber = 0,
            name = GetString(SI_GAMEPAD_VOICECHAT_CHANNEL_AREA),
            description = GetString(SI_GAMEPAD_VOICECHAT_CHANNEL_DESCRIPTION_AREA),
            historyData = HistoryData:New(),
            hasBadReputation = DoesLocalPlayerHaveBadReputation(),
        },
        [VOICE_CHANNEL_GROUP] =
        {
            channelType = VOICE_CHANNEL_GROUP,
            guildId = 0,
            guildRoomNumber = 0,
            name = GetString(SI_GAMEPAD_VOICECHAT_CHANNEL_GROUP),
            description = GetString(SI_GAMEPAD_VOICECHAT_CHANNEL_DESCRIPTION_GROUP),
            historyData = HistoryData:New(),
        },
        [VOICE_CHANNEL_GUILD] = {}, --populates during channel retrieval
        [VOICE_CHANNEL_BATTLEGROUP] =
        {
            channelType = VOICE_CHANNEL_BATTLEGROUP,
            guildId = 0,
            guildRoomNumber = 0,
            name = GetString(SI_GAMEPAD_VOICECHAT_CHANNEL_GROUP),
            description = GetString(SI_GAMEPAD_VOICECHAT_CHANNEL_DESCRIPTION_GROUP),
            historyData = HistoryData:New(),
        },
    }
    --The guild ids are dirtied and will need to be refreshed for all guild channels whenever a guild is joined or left.
    self.guildIdsDirty = false
    --The guild ids we can retrieve from engine are invalid for channels that just became unavailable. We'll need to keep
    --a local cache so we can id guilds for certain channel events.
    self.guildChannelsToIds = {}
    self.participantsData =
    {
        [VOICE_CHANNEL_AREA] = ParticipantsData:New(SORT_BY_OCCURRENCE),
        [VOICE_CHANNEL_GROUP] = ParticipantsData:New(DONT_SORT_BY_OCCURRENCE),
        [VOICE_CHANNEL_GUILD] = {}, --populates during channel retrieval
        [VOICE_CHANNEL_BATTLEGROUP] = ParticipantsData:New(DONT_SORT_BY_OCCURRENCE),
    }
    self.mutedUsers = {}
    self.activeChannel = nil --a channel we're joined to and transmitting on
    self.desiredActiveChannel = nil
    
    CHAT_ROUTER:SetTranscriptForwardingEnabled(GetSetting_Bool(SETTING_TYPE_ACCESSIBILITY, ACCESSIBILITY_SETTING_SEND_TRANSCRIPT_TO_TEXT_CHAT))
end
function ZO_VoiceChat_Manager:RegisterForEvents()
    local function RetrieveParticipants(channel)
        self:GetParticipantData(channel):ClearParticipants()
        if channel.channelName ~= nil then
            if channel.channelName ~= "" then
                VoiceChatRequestChannelUsers(channel.channelName)
            end
        end
    end
    local function TryClearActiveChannel(channel)
        if self.activeChannel == channel then
            self.activeChannel = nil
        end
    end
    --Event Handlers
    local function OnAddOnLoaded(event, name)
        if name == "ZO_Ingame" then
            EVENT_MANAGER:UnregisterForEvent("ZO_VoiceChat_OnAddOnLoaded", EVENT_ADD_ON_LOADED)
            --We wait to request the list of channels until after we've loaded settings
            VoiceChatGetChannels()
        end
    end
    local function OnGuildDataLoaded()
        self:RefreshGuildChannelIds()
    end
    --Voice Channel Event Handlers
    local function OnVoiceChannelJoined(event, channelName)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        if not self:DoesChannelExist(channelData) then
            return
        end
        local channel = self:GetChannel(channelData)
        channel.isJoined = true
        local transmitChannelType = VoiceChatGetTransmitChannelType()
        if transmitChannelType ~= VOICE_CHANNEL_NONE then
            if channelData.channelType == transmitChannelType then
                self.activeChannel = channel
                self.desiredActiveChannel = channel
            end
            RetrieveParticipants(channel)
        end
        self:FireCallbacks("ChannelsUpdate")
    end
    local function OnVoiceChannelLeft(event, channelName)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        --The guild id in the channel data is invalid for this event, so use the cache
        if channelData.channelType == VOICE_CHANNEL_GUILD then
            channelData.guildId = self.guildChannelsToIds[channelName]
            if not channelData.guildId then
                return
            end
        end
        local channel = self:GetChannel(channelData)
        channel.isJoined = false
        channel.isTransmitting = false
        TryClearActiveChannel(channel)
        self:FireCallbacks("ChannelsUpdate")
        self:FireCallbacks("ParticipantsUpdate")
    end
    local function OnVoiceChannelAvailable(event, channelName, isMuted, isJoined, isTransmitting)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        local channelType = channelData.channelType
        --Ignore invalid channels. Probably not necessary anymore, but it was a quick fix to an
        --early problem where the engine could send us invalid availability events.
        if channelType == VOICE_CHANNEL_NONE then
            return
        elseif channelType == VOICE_CHANNEL_BATTLEGROUP then
            local currentGroupChannel = self.channelData[VOICE_CHANNEL_GROUP]
            if currentGroupChannel.isAvailable then
                TryClearActiveChannel(currentGroupChannel)
            end
            self:SetDesiredActiveChannel(self:GetChannel(channelData))
        elseif channelType == VOICE_CHANNEL_GUILD then
            self:AddGuildChannelRoom(channelName, channelData)
            self.guildIdsDirty = true
        end
        local channel = self:GetChannel(channelData)
        channel.channelName = channelName
        channel.isAvailable = true
        channel.isJoined = isJoined
        channel.isTransmitting = isTransmitting
        if isJoined then
            if isTransmitting then
                self.activeChannel = channel
                self:SetDesiredActiveChannel(channel)
            end
            RetrieveParticipants(channel)
        end
        self:FireCallbacks("ChannelsUpdate")
    end
    local function OnVoiceChannelUnavailable(event, channelName)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        --The guild id in the channel data is invalid for this event, so use the cache
        if channelData.channelType == VOICE_CHANNEL_GUILD then
            channelData.guildId = self.guildChannelsToIds[channelName]
            if not channelData.guildId then
                return
            end
        end
        local channel = self:GetChannel(channelData)
        channel.isAvailable = false
        channel.isJoined = false
        channel.isTransmitting = false
        TryClearActiveChannel(channel)
        if channel.channelType == VOICE_CHANNEL_GUILD then
            self:RemoveGuildChannelRoom(channel.channelName, channel.guildId, channel.guildRoomNumber)
            self.guildIdsDirty = true
        end
        self:FireCallbacks("ChannelsUpdate")
    end
    local function OnVoiceTransmitChannelChanged(event, channelName)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        if not self:DoesChannelExist(channelData) then
            return
        end
        local channel = self:GetChannel(channelData)
        channel.isTransmitting = true
        self.activeChannel = channel
        self.desiredActiveChannel = channel
        self.activeChannel.isTransmitting = true
        self:FireCallbacks("ChannelsUpdate")
    end
    --Voice Participant Event Handlers
    local function OnVoiceUserJoinedChannel(event, channelName, displayName, characterName, isSpeaking)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        if not self:DoesChannelExist(channelData) then
            return
        end
        local channel = self:GetChannel(channelData)
        local speakStatus = isSpeaking and VOICE_CHAT_SPEAK_STATE_SPEAKING or VOICE_CHAT_SPEAK_STATE_IDLE
        local isMuted = self.mutedUsers[displayName]
        self:GetParticipantData(channel):AddOrUpdateParticipant(displayName, speakStatus, isMuted)
        self:FireCallbacks("ParticipantsUpdate")
    end
    local function OnVoiceUserLeftChannel(event, channelName, displayName)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        --The guild id in the channel data is invalid for this event, so use the cache
        if channelData.channelType == VOICE_CHANNEL_GUILD then
            channelData.guildId = self.guildChannelsToIds[channelName]
            if not channelData.guildId then
                return
            end
        end
        if not self:DoesChannelExist(channelData) then
            return
        end
        local channel = self:GetChannel(channelData)
        self:GetParticipantData(channel):RemoveParticipant(displayName)
        self:FireCallbacks("ParticipantsUpdate")
    end
    local function OnVoiceUserSpeaking(event, channelName, displayName, characterName, speaking)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        --Speak events can occur before the channels are mapped
        if not self:DoesChannelExist(channelData) then
            return
        end
        local channel = self:GetChannel(channelData)
        local speakStatus = speaking and VOICE_CHAT_SPEAK_STATE_SPEAKING or VOICE_CHAT_SPEAK_STATE_IDLE
        self:GetParticipantData(channel):UpdateParticipantStatus(displayName, speakStatus, nil)
        --Update history
        if speaking and not ZO_VoiceChat_IsNameLocalPlayers(displayName) then
            channel.historyData:UpdateUser(displayName)
        end
        self:FireCallbacks("ParticipantsUpdate")
    end
    local function OnVoiceMuteListUpdated()
        self:UpdateMutedUsers()
        self:FireCallbacks("ParticipantsUpdate")
        self:FireCallbacks("MuteUpdate")
    end
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_ADD_ON_LOADED, OnAddOnLoaded)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_GUILD_DATA_LOADED, OnGuildDataLoaded)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_CHANNEL_JOINED, OnVoiceChannelJoined)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_CHANNEL_LEFT, OnVoiceChannelLeft)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_CHANNEL_AVAILABLE, OnVoiceChannelAvailable)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_CHANNEL_UNAVAILABLE, OnVoiceChannelUnavailable)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_TRANSMIT_CHANNEL_CHANGED, OnVoiceTransmitChannelChanged)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_USER_JOINED_CHANNEL, OnVoiceUserJoinedChannel)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_USER_LEFT_CHANNEL, OnVoiceUserLeftChannel)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_USER_SPEAKING, OnVoiceUserSpeaking)
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_MUTE_LIST_UPDATED, OnVoiceMuteListUpdated)
    local function OnVoiceChatTranscript(eventId, channelName, fromName, text, fromDisplayName)
        local channelData = ZO_VoiceChat_GetChannelDataFromName(channelName)
        if not self:DoesChannelExist(channelData) then
            return
        end
        local channel = self:GetChannel(channelData)
        local userFacingName
        if not IsDecoratedDisplayName(fromName) and fromDisplayName ~= "" then
            --We have a character name and a display name, so follow the setting
            userFacingName = ZO_ShouldPreferUserId() and fromDisplayName or fromName
        else
            --We either have two display names, or we weren't given a guaranteed display name, so just use the default fromName
            userFacingName = fromName
        end
        userFacingName = zo_strformat(SI_CHAT_MESSAGE_PLAYER_FORMATTER, userFacingName)
        local fromLink = ZO_LinkHandler_CreatePlayerLink(userFacingName)
        local formattedText = string.format(GetString(SI_CHAT_MESSAGE_VOICE_TRANSCRIPT), channel.name, fromLink, text)
        self:FireCallbacks("VoiceChatTranscript", formattedText, fromDisplayName, text, channel.channelType)
    end
    EVENT_MANAGER:RegisterForEvent("ZO_VoiceChat_Manager", EVENT_VOICE_CHAT_TRANSCRIPT, OnVoiceChatTranscript)
    EVENT_MANAGER:RegisterForUpdate("ZO_VoiceChat_Manager", 0, function() self:OnUpdate() end)
end
function ZO_VoiceChat_Manager:JoinChannel(channel)
    self.desiredActiveChannel = channel
    VoiceChatChannelJoin(channel.channelName)
end
function ZO_VoiceChat_Manager:TransmitChannel(channel)
    self.desiredActiveChannel = channel
    local transmitChannelType = VoiceChatGetTransmitChannelType()
    if channel ~= nil and channel.channelType == transmitChannelType then
        if channel.channelType ~= VOICE_CHANNEL_GUILD then
            -- if the channel to transmit to is the same channel type as the channel currently transmitting
            -- and it's not a guild channel, then it must be the active channel since the other channel types
            -- only have one channel associated with them
            self.activeChannel = channel
            return
        end
    end
    VoiceChatChannelTransmit(channel.channelName)
end
function ZO_VoiceChat_Manager:StopTransmitting()
    local NULL_CHANNEL_NAME = "N00000000#00000000"
    VoiceChatChannelTransmit(NULL_CHANNEL_NAME)
end
function ZO_VoiceChat_Manager:GetActiveChannel()
    return self.activeChannel
end
function ZO_VoiceChat_Manager:HasActiveTransmitChannel()
    return self.activeChannel ~= nil and self.activeChannel.isTransmitting
end
function ZO_VoiceChat_Manager:LeaveChannel(channel)
    VoiceChatChannelLeave(channel.channelName)
end
function ZO_VoiceChat_Manager:UpdateMutedUsers()
    local mutedUsers = {}
    local numMutedUsers = VoiceChatGetNumberMutedPlayers()
    for i = 1, numMutedUsers do
        local displayName = VoiceChatGetMutedPlayerDisplayName(i)
        mutedUsers[displayName] = true
    end
    --Update participant data
    for channelType, participantData in pairs(self.participantsData) do
        if channelType == VOICE_CHANNEL_GUILD then
            for _, guildData in pairs(participantData) do
                for _, roomData in pairs(guildData) do
                    roomData:UpdateMutedUsers(mutedUsers)
                end
            end
        else
            participantData:UpdateMutedUsers(mutedUsers)
        end
    end
    --Update history data
    for channelType, channelData in pairs(self.channelData) do
        if channelType == VOICE_CHANNEL_GUILD then
            for _, guildData in pairs(channelData) do
                for _, roomData in pairs(guildData.rooms) do
                    roomData.historyData:UpdateMutedUsers(mutedUsers)
                end
            end
        else
            channelData.historyData:UpdateMutedUsers(mutedUsers)
        end
    end
    self.mutedUsers = mutedUsers
end
function ZO_VoiceChat_Manager:OnUpdate()
    if self.guildIdsDirty then
        self.guildIdsDirty = false
        self:RefreshGuildChannelIds()
    end
end
function ZO_VoiceChat_Manager:AddGuildChannelRoom(channelName, channelData)
    local guildId = channelData.guildId
    local guildRoomNumber = channelData.guildRoomNumber
    local guildName = GetGuildName(guildId)
    local guildChannels = self.channelData[VOICE_CHANNEL_GUILD]
    if not guildChannels[guildId] then
        guildChannels[guildId] =
        {
            header = zo_strformat(SI_GAMEPAD_VOICECHAT_CHANNEL_GUILD_HEADER, guildName),
            rooms = {},
        }
        self.participantsData[VOICE_CHANNEL_GUILD][guildId] = {}
    end
    --Check for duplicates
    if self.participantsData[VOICE_CHANNEL_GUILD][guildId][guildRoomNumber] then
        return
    end
    local name
    local description
    if guildRoomNumber == VOICE_CHAT_OFFICERS_ROOM_NUMBER then
        name = GetString(SI_GAMEPAD_VOICECHAT_ROOM_NAME_OFFICERS)
        description = GetString(SI_GAMEPAD_VOICECHAT_CHANNEL_DESCRIPTION_GUILD_OFFICERS)
    else
        name = zo_strformat(SI_GAMEPAD_VOICECHAT_ROOM_NAME, guildRoomNumber)
        description = GetString(SI_GAMEPAD_VOICECHAT_CHANNEL_DESCRIPTION_GUILD)
    end
    guildChannels[guildId].rooms[guildRoomNumber] =
    {
        channelType = VOICE_CHANNEL_GUILD,
        channelName = channelName,
        guildId = guildId,
        guildRoomNumber = guildRoomNumber,
        guildName = guildName,
        name = name,
        description = description,
        fullName = zo_strformat(SI_GAMEPAD_VOICECHAT_GUILD_CHANNEL_NAME, guildName, name),
        historyData = HistoryData:New(),
    }
    self.participantsData[VOICE_CHANNEL_GUILD][guildId][guildRoomNumber] = ParticipantsData:New(DONT_SORT_BY_OCCURRENCE)
    self.guildChannelsToIds[channelName] = guildId
end
function ZO_VoiceChat_Manager:RemoveGuildChannelRoom(channelName, guildId, guildRoomNumber)
    local guildChannels = self.channelData[VOICE_CHANNEL_GUILD]
    local guildData = guildChannels[guildId]
    if guildData then
        --Destroy the room
        guildData.rooms[guildRoomNumber] = nil
        self.participantsData[VOICE_CHANNEL_GUILD][guildId][guildRoomNumber] = nil
        --Destroy the guild entry
        if NonContiguousCount(guildData.rooms) == 0 then
            guildChannels[guildId] = nil
            self.participantsData[VOICE_CHANNEL_GUILD][guildId] = nil
        end
    end
    self.guildChannelsToIds[channelName] = nil
end
function ZO_VoiceChat_Manager:RefreshGuildChannelIds()
    local guildChannels = self.channelData[VOICE_CHANNEL_GUILD]
    local guildParticipants = self.participantsData[VOICE_CHANNEL_GUILD]
    local remappedGuildChannels = {}
    for oldGuildId, guildData in pairs(guildChannels) do
        local newGuildId
        for roomNumber, roomData in pairs(guildData.rooms) do
            if not newGuildId then
                local channelData = ZO_VoiceChat_GetChannelDataFromName(roomData.channelName)
                newGuildId = channelData.guildId
            end
            roomData.guildId = newGuildId
            self.guildChannelsToIds[roomData.channelName] = newGuildId
        end
        remappedGuildChannels[newGuildId] = guildChannels[oldGuildId]
        if oldGuildId ~= newGuildId then
            guildParticipants[newGuildId] = guildParticipants[oldGuildId]
            guildParticipants[oldGuildId] = nil
        end
    end
    self.channelData[VOICE_CHANNEL_GUILD] = remappedGuildChannels
end
function ZO_VoiceChat_Manager:DoesChannelExist(channelData)
    local channelType = channelData.channelType
    if channelType == VOICE_CHANNEL_GUILD then
        local guildId = channelData.guildId
        local guildRoomNumber = channelData.guildRoomNumber
        local guildData = self.channelData[channelType]
        return guildData[guildId] ~= nil and guildData[guildId].rooms[guildRoomNumber] ~= nil
    end
    return self.channelData[channelType] ~= nil
end
function ZO_VoiceChat_Manager:GetGuildChannelByName(guildName, guildRoomNumber)
    for _, guildData in pairs(self.channelData[VOICE_CHANNEL_GUILD]) do
        for roomIndex, roomChannel in pairs(guildData.rooms) do
            if roomChannel.guildName == guildName and roomChannel.guildRoomNumber == guildRoomNumber then
                return roomChannel
            end
        end
    end
    return nil
end
function ZO_VoiceChat_Manager:SetDesiredActiveChannel(channel)
    self.desiredActiveChannel = channel
end
--Intended Public Functions
function ZO_VoiceChat_Manager:GetChannel(channelData)
    local channelType = channelData.channelType
    if channelType == VOICE_CHANNEL_GUILD then
        local guildId = channelData.guildId
        local guildRoomNumber = channelData.guildRoomNumber
        return self.channelData[channelType][guildId].rooms[guildRoomNumber]
    else
        return self.channelData[channelType]
    end
end
function ZO_VoiceChat_Manager:GetParticipantData(channel)
    local channelType = channel.channelType
    local guildId = channel.guildId
    local guildRoomNumber = channel.guildRoomNumber
    if channelType == VOICE_CHANNEL_GUILD then
        return self.participantsData[channelType][guildId][guildRoomNumber]
    else
        return self.participantsData[channelType]
    end
end
function ZO_VoiceChat_Manager:GetParticipantDataList(channel)
    return self:GetParticipantData(channel).list
end
function ZO_VoiceChat_Manager:GetChannelData()
    local areaData
    local groupData
    local areaChannel = self.channelData[VOICE_CHANNEL_AREA]
    if areaChannel.isAvailable then
        areaData = areaChannel
    end
    local bgChannel = self.channelData[VOICE_CHANNEL_BATTLEGROUP]
    if bgChannel.isAvailable then
        groupData = bgChannel
    else
        local groupChannel = self.channelData[VOICE_CHANNEL_GROUP]
        if groupChannel.isAvailable then
            groupData = groupChannel
        end
    end
    local guildData = self.channelData[VOICE_CHANNEL_GUILD]
    return areaData, groupData, guildData
end
function ZO_VoiceChat_Manager:HasChannelData()
    local areaData, groupData, guildData = self:GetChannelData()
    return areaData or groupData or NonContiguousCount(guildData) > 0
end
function ZO_VoiceChat_Manager:GetDesiredActiveChannelType()
    if self.desiredActiveChannel then
        return self.desiredActiveChannel.channelType
    end
    return nil
end
--Globals
ZO_VoiceChat_Manager:New()