Skip to content
Snippets Groups Projects
Commit d5a0fd79 authored by Mike Antipov's avatar Mike Antipov
Browse files

Work on major bug EXT-5562 (Misleading Active Voice Indicators in Group Chat...

Work on major bug EXT-5562 (Misleading Active Voice Indicators in Group Chat Window, when Speakers are in Spatial Chat Only)
- updated interfaces of LLSpeakingIndicatorManager::registerSpeakingIndicator & LLOutputMonitorCtrl::setSpeakerId
    to take a target session id for which registered indicator should be shown.

--HG--
branch : product-engine
parent d47ca7a6
No related branches found
No related tags found
No related merge requests found
...@@ -247,7 +247,7 @@ void LLOutputMonitorCtrl::draw() ...@@ -247,7 +247,7 @@ void LLOutputMonitorCtrl::draw()
gl_rect_2d(0, monh, monw, 0, sColorBound, FALSE); gl_rect_2d(0, monh, monw, 0, sColorBound, FALSE);
} }
void LLOutputMonitorCtrl::setSpeakerId(const LLUUID& speaker_id) void LLOutputMonitorCtrl::setSpeakerId(const LLUUID& speaker_id, const LLUUID& session_id/* = LLUUID::null*/)
{ {
if (speaker_id.isNull() && mSpeakerId.notNull()) if (speaker_id.isNull() && mSpeakerId.notNull())
{ {
......
...@@ -86,7 +86,15 @@ class LLOutputMonitorCtrl ...@@ -86,7 +86,15 @@ class LLOutputMonitorCtrl
void setIsTalking(bool val) { mIsTalking = val; } void setIsTalking(bool val) { mIsTalking = val; }
void setSpeakerId(const LLUUID& speaker_id); /**
* Sets avatar UUID to interact with voice channel.
*
* @param speaker_id LLUUID of an avatar whose voice level is displayed.
* @param session_id session UUID for which indicator should be shown only. Passed to LLSpeakingIndicatorManager
* If this parameter is set registered indicator will be shown only in voice channel
* which has the same session id (EXT-5562).
*/
void setSpeakerId(const LLUUID& speaker_id, const LLUUID& session_id = LLUUID::null);
//called by mute list //called by mute list
virtual void onChange(); virtual void onChange();
......
...@@ -65,8 +65,12 @@ class SpeakingIndicatorManager : public LLSingleton<SpeakingIndicatorManager>, L ...@@ -65,8 +65,12 @@ class SpeakingIndicatorManager : public LLSingleton<SpeakingIndicatorManager>, L
* *
* @param speaker_id LLUUID of an avatar whose speaking indicator is registered. * @param speaker_id LLUUID of an avatar whose speaking indicator is registered.
* @param speaking_indicator instance of the speaking indicator to be registered. * @param speaking_indicator instance of the speaking indicator to be registered.
* @param session_id session UUID for which indicator should be shown only.
* If this parameter is set registered indicator will be shown only in voice channel
* which has the same session id (EXT-5562).
*/ */
void registerSpeakingIndicator(const LLUUID& speaker_id, LLSpeakingIndicator* const speaking_indicator); void registerSpeakingIndicator(const LLUUID& speaker_id, LLSpeakingIndicator* const speaking_indicator,
const LLUUID& session_id = LLUUID::null);
/** /**
* Removes passed speaking indicator from observing. * Removes passed speaking indicator from observing.
...@@ -138,7 +142,8 @@ class SpeakingIndicatorManager : public LLSingleton<SpeakingIndicatorManager>, L ...@@ -138,7 +142,8 @@ class SpeakingIndicatorManager : public LLSingleton<SpeakingIndicatorManager>, L
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// PUBLIC SECTION // PUBLIC SECTION
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
void SpeakingIndicatorManager::registerSpeakingIndicator(const LLUUID& speaker_id, LLSpeakingIndicator* const speaking_indicator) void SpeakingIndicatorManager::registerSpeakingIndicator(const LLUUID& speaker_id, LLSpeakingIndicator* const speaking_indicator,
const LLUUID& session_id)
{ {
// do not exclude agent's indicators. They should be processed in the same way as others. See EXT-3889. // do not exclude agent's indicators. They should be processed in the same way as others. See EXT-3889.
...@@ -274,9 +279,10 @@ void SpeakingIndicatorManager::ensureInstanceDoesNotExist(LLSpeakingIndicator* c ...@@ -274,9 +279,10 @@ void SpeakingIndicatorManager::ensureInstanceDoesNotExist(LLSpeakingIndicator* c
/* LLSpeakingIndicatorManager namespace implementation */ /* LLSpeakingIndicatorManager namespace implementation */
/************************************************************************/ /************************************************************************/
void LLSpeakingIndicatorManager::registerSpeakingIndicator(const LLUUID& speaker_id, LLSpeakingIndicator* const speaking_indicator) void LLSpeakingIndicatorManager::registerSpeakingIndicator(const LLUUID& speaker_id, LLSpeakingIndicator* const speaking_indicator,
const LLUUID& session_id/* = LLUUID::null*/)
{ {
SpeakingIndicatorManager::instance().registerSpeakingIndicator(speaker_id, speaking_indicator); SpeakingIndicatorManager::instance().registerSpeakingIndicator(speaker_id, speaking_indicator, session_id);
} }
void LLSpeakingIndicatorManager::unregisterSpeakingIndicator(const LLUUID& speaker_id, const LLSpeakingIndicator* const speaking_indicator) void LLSpeakingIndicatorManager::unregisterSpeakingIndicator(const LLUUID& speaker_id, const LLSpeakingIndicator* const speaking_indicator)
......
...@@ -52,8 +52,12 @@ namespace LLSpeakingIndicatorManager ...@@ -52,8 +52,12 @@ namespace LLSpeakingIndicatorManager
* *
* @param speaker_id LLUUID of an avatar whose speaker indicator is registered. * @param speaker_id LLUUID of an avatar whose speaker indicator is registered.
* @param speaking_indicator instance of the speaker indicator to be registered. * @param speaking_indicator instance of the speaker indicator to be registered.
* @param session_id session UUID for which indicator should be shown only.
* If this parameter is set registered indicator will be shown only in voice channel
* which has the same session id (EXT-5562).
*/ */
void registerSpeakingIndicator(const LLUUID& speaker_id, LLSpeakingIndicator* const speaking_indicator); void registerSpeakingIndicator(const LLUUID& speaker_id, LLSpeakingIndicator* const speaking_indicator,
const LLUUID& session_id = LLUUID::null);
/** /**
* Removes passed speaking indicator from observing. * Removes passed speaking indicator from observing.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment