llspeakers.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:25k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llspeakers.cpp
  3.  * @brief Management interface for muting and controlling volume of residents currently speaking
  4.  *
  5.  * $LicenseInfo:firstyear=2005&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2005-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "llviewerprecompiledheaders.h"
  33. #include "llspeakers.h"
  34. #include "llagent.h"
  35. #include "llappviewer.h"
  36. #include "llimview.h"
  37. #include "llmutelist.h"
  38. #include "llsdutil.h"
  39. #include "lluicolortable.h"
  40. #include "llviewerobjectlist.h"
  41. #include "llvoavatar.h"
  42. #include "llworld.h"
  43. const LLColor4 INACTIVE_COLOR(0.3f, 0.3f, 0.3f, 0.5f);
  44. const LLColor4 ACTIVE_COLOR(0.5f, 0.5f, 0.5f, 1.f);
  45. LLSpeaker::LLSpeaker(const LLUUID& id, const std::string& name, const ESpeakerType type) : 
  46. mStatus(LLSpeaker::STATUS_TEXT_ONLY),
  47. mLastSpokeTime(0.f), 
  48. mSpeechVolume(0.f), 
  49. mHasSpoken(FALSE),
  50. mHasLeftCurrentCall(FALSE),
  51. mDotColor(LLColor4::white),
  52. mID(id),
  53. mTyping(FALSE),
  54. mSortIndex(0),
  55. mType(type),
  56. mIsModerator(FALSE),
  57. mModeratorMutedVoice(FALSE),
  58. mModeratorMutedText(FALSE)
  59. {
  60. if (name.empty() && type == SPEAKER_AGENT)
  61. {
  62. lookupName();
  63. }
  64. else
  65. {
  66. mDisplayName = name;
  67. }
  68. }
  69. void LLSpeaker::lookupName()
  70. {
  71. gCacheName->get(mID, FALSE, boost::bind(&LLSpeaker::onAvatarNameLookup, this, _1, _2, _3, _4));
  72. }
  73. void LLSpeaker::onAvatarNameLookup(const LLUUID& id, const std::string& first, const std::string& last, BOOL is_group)
  74. {
  75. mDisplayName = first + " " + last;
  76. }
  77. bool LLSpeaker::isInVoiceChannel()
  78. {
  79. return mStatus == LLSpeaker::STATUS_VOICE_ACTIVE || mStatus == LLSpeaker::STATUS_MUTED;
  80. }
  81. LLSpeakerUpdateModeratorEvent::LLSpeakerUpdateModeratorEvent(LLSpeaker* source)
  82. : LLEvent(source, "Speaker add moderator event"),
  83.   mSpeakerID (source->mID),
  84.   mIsModerator (source->mIsModerator)
  85. {
  86. }
  87. LLSD LLSpeakerUpdateModeratorEvent::getValue()
  88. {
  89. LLSD ret;
  90. ret["id"] = mSpeakerID;
  91. ret["is_moderator"] = mIsModerator;
  92. return ret;
  93. }
  94. LLSpeakerTextModerationEvent::LLSpeakerTextModerationEvent(LLSpeaker* source)
  95. : LLEvent(source, "Speaker text moderation event")
  96. {
  97. }
  98. LLSD LLSpeakerTextModerationEvent::getValue()
  99. {
  100. return std::string("text");
  101. }
  102. LLSpeakerVoiceModerationEvent::LLSpeakerVoiceModerationEvent(LLSpeaker* source)
  103. : LLEvent(source, "Speaker voice moderation event")
  104. {
  105. }
  106. LLSD LLSpeakerVoiceModerationEvent::getValue()
  107. {
  108. return std::string("voice");
  109. }
  110. LLSpeakerListChangeEvent::LLSpeakerListChangeEvent(LLSpeakerMgr* source, const LLUUID& speaker_id)
  111. : LLEvent(source, "Speaker added/removed from speaker mgr"),
  112.   mSpeakerID(speaker_id)
  113. {
  114. }
  115. LLSD LLSpeakerListChangeEvent::getValue()
  116. {
  117. return mSpeakerID;
  118. }
  119. // helper sort class
  120. struct LLSortRecentSpeakers
  121. {
  122. bool operator()(const LLPointer<LLSpeaker> lhs, const LLPointer<LLSpeaker> rhs) const;
  123. };
  124. bool LLSortRecentSpeakers::operator()(const LLPointer<LLSpeaker> lhs, const LLPointer<LLSpeaker> rhs) const
  125. {
  126. // Sort first on status
  127. if (lhs->mStatus != rhs->mStatus) 
  128. {
  129. return (lhs->mStatus < rhs->mStatus);
  130. }
  131. // and then on last speaking time
  132. if(lhs->mLastSpokeTime != rhs->mLastSpokeTime)
  133. {
  134. return (lhs->mLastSpokeTime > rhs->mLastSpokeTime);
  135. }
  136. // and finally (only if those are both equal), on name.
  137. return( lhs->mDisplayName.compare(rhs->mDisplayName) < 0 );
  138. }
  139. LLSpeakerActionTimer::LLSpeakerActionTimer(action_callback_t action_cb, F32 action_period, const LLUUID& speaker_id)
  140. : LLEventTimer(action_period)
  141. , mActionCallback(action_cb)
  142. , mSpeakerId(speaker_id)
  143. {
  144. }
  145. BOOL LLSpeakerActionTimer::tick()
  146. {
  147. if (mActionCallback)
  148. {
  149. return (BOOL)mActionCallback(mSpeakerId);
  150. }
  151. return TRUE;
  152. }
  153. void LLSpeakerActionTimer::unset()
  154. {
  155. mActionCallback = 0;
  156. }
  157. LLSpeakersDelayActionsStorage::LLSpeakersDelayActionsStorage(LLSpeakerActionTimer::action_callback_t action_cb, F32 action_delay)
  158. : mActionCallback(action_cb)
  159. , mActionDelay(action_delay)
  160. {
  161. }
  162. LLSpeakersDelayActionsStorage::~LLSpeakersDelayActionsStorage()
  163. {
  164. removeAllTimers();
  165. }
  166. void LLSpeakersDelayActionsStorage::setActionTimer(const LLUUID& speaker_id)
  167. {
  168. bool not_found = true;
  169. if (mActionTimersMap.size() > 0)
  170. {
  171. not_found = mActionTimersMap.find(speaker_id) == mActionTimersMap.end();
  172. }
  173. // If there is already a started timer for the passed UUID don't do anything.
  174. if (not_found)
  175. {
  176. // Starting a timer to remove an participant after delay is completed
  177. mActionTimersMap.insert(LLSpeakerActionTimer::action_value_t(speaker_id,
  178. new LLSpeakerActionTimer(
  179. boost::bind(&LLSpeakersDelayActionsStorage::onTimerActionCallback, this, _1),
  180. mActionDelay, speaker_id)));
  181. }
  182. }
  183. void LLSpeakersDelayActionsStorage::unsetActionTimer(const LLUUID& speaker_id)
  184. {
  185. if (mActionTimersMap.size() == 0) return;
  186. LLSpeakerActionTimer::action_timer_iter_t it_speaker = mActionTimersMap.find(speaker_id);
  187. if (it_speaker != mActionTimersMap.end())
  188. {
  189. it_speaker->second->unset();
  190. mActionTimersMap.erase(it_speaker);
  191. }
  192. }
  193. void LLSpeakersDelayActionsStorage::removeAllTimers()
  194. {
  195. LLSpeakerActionTimer::action_timer_iter_t iter = mActionTimersMap.begin();
  196. for (; iter != mActionTimersMap.end(); ++iter)
  197. {
  198. delete iter->second;
  199. }
  200. mActionTimersMap.clear();
  201. }
  202. bool LLSpeakersDelayActionsStorage::onTimerActionCallback(const LLUUID& speaker_id)
  203. {
  204. unsetActionTimer(speaker_id);
  205. if (mActionCallback)
  206. {
  207. mActionCallback(speaker_id);
  208. }
  209. return true;
  210. }
  211. //
  212. // LLSpeakerMgr
  213. //
  214. LLSpeakerMgr::LLSpeakerMgr(LLVoiceChannel* channelp) : 
  215. mVoiceChannel(channelp)
  216. {
  217. static LLUICachedControl<F32> remove_delay ("SpeakerParticipantRemoveDelay", 10.0);
  218. mSpeakerDelayRemover = new LLSpeakersDelayActionsStorage(boost::bind(&LLSpeakerMgr::removeSpeaker, this, _1), remove_delay);
  219. }
  220. LLSpeakerMgr::~LLSpeakerMgr()
  221. {
  222. delete mSpeakerDelayRemover;
  223. }
  224. LLPointer<LLSpeaker> LLSpeakerMgr::setSpeaker(const LLUUID& id, const std::string& name, LLSpeaker::ESpeakerStatus status, LLSpeaker::ESpeakerType type)
  225. {
  226. if (id.isNull()) return NULL;
  227. LLPointer<LLSpeaker> speakerp;
  228. if (mSpeakers.find(id) == mSpeakers.end())
  229. {
  230. speakerp = new LLSpeaker(id, name, type);
  231. speakerp->mStatus = status;
  232. mSpeakers.insert(std::make_pair(speakerp->mID, speakerp));
  233. mSpeakersSorted.push_back(speakerp);
  234. fireEvent(new LLSpeakerListChangeEvent(this, speakerp->mID), "add");
  235. }
  236. else
  237. {
  238. speakerp = findSpeaker(id);
  239. if (speakerp.notNull())
  240. {
  241. // keep highest priority status (lowest value) instead of overriding current value
  242. speakerp->mStatus = llmin(speakerp->mStatus, status);
  243. // RN: due to a weird behavior where IMs from attached objects come from the wearer's agent_id
  244. // we need to override speakers that we think are objects when we find out they are really
  245. // residents
  246. if (type == LLSpeaker::SPEAKER_AGENT)
  247. {
  248. speakerp->mType = LLSpeaker::SPEAKER_AGENT;
  249. speakerp->lookupName();
  250. }
  251. }
  252. }
  253. mSpeakerDelayRemover->unsetActionTimer(speakerp->mID);
  254. return speakerp;
  255. }
  256. void LLSpeakerMgr::update(BOOL resort_ok)
  257. {
  258. if (!gVoiceClient)
  259. {
  260. return;
  261. }
  262. LLColor4 speaking_color = LLUIColorTable::instance().getColor("SpeakingColor");
  263. LLColor4 overdriven_color = LLUIColorTable::instance().getColor("OverdrivenColor");
  264. if(resort_ok) // only allow list changes when user is not interacting with it
  265. {
  266. updateSpeakerList();
  267. }
  268. // update status of all current speakers
  269. BOOL voice_channel_active = (!mVoiceChannel && gVoiceClient->inProximalChannel()) || (mVoiceChannel && mVoiceChannel->isActive());
  270. for (speaker_map_t::iterator speaker_it = mSpeakers.begin(); speaker_it != mSpeakers.end();)
  271. {
  272. LLUUID speaker_id = speaker_it->first;
  273. LLSpeaker* speakerp = speaker_it->second;
  274. speaker_map_t::iterator  cur_speaker_it = speaker_it++;
  275. if (voice_channel_active && gVoiceClient->getVoiceEnabled(speaker_id))
  276. {
  277. speakerp->mSpeechVolume = gVoiceClient->getCurrentPower(speaker_id);
  278. BOOL moderator_muted_voice = gVoiceClient->getIsModeratorMuted(speaker_id);
  279. if (moderator_muted_voice != speakerp->mModeratorMutedVoice)
  280. {
  281. speakerp->mModeratorMutedVoice = moderator_muted_voice;
  282. speakerp->fireEvent(new LLSpeakerVoiceModerationEvent(speakerp));
  283. }
  284. if (gVoiceClient->getOnMuteList(speaker_id) || speakerp->mModeratorMutedVoice)
  285. {
  286. speakerp->mStatus = LLSpeaker::STATUS_MUTED;
  287. }
  288. else if (gVoiceClient->getIsSpeaking(speaker_id))
  289. {
  290. // reset inactivity expiration
  291. if (speakerp->mStatus != LLSpeaker::STATUS_SPEAKING)
  292. {
  293. speakerp->mLastSpokeTime = mSpeechTimer.getElapsedTimeF32();
  294. speakerp->mHasSpoken = TRUE;
  295. }
  296. speakerp->mStatus = LLSpeaker::STATUS_SPEAKING;
  297. // interpolate between active color and full speaking color based on power of speech output
  298. speakerp->mDotColor = speaking_color;
  299. if (speakerp->mSpeechVolume > LLVoiceClient::OVERDRIVEN_POWER_LEVEL)
  300. {
  301. speakerp->mDotColor = overdriven_color;
  302. }
  303. }
  304. else
  305. {
  306. speakerp->mSpeechVolume = 0.f;
  307. speakerp->mDotColor = ACTIVE_COLOR;
  308. if (speakerp->mHasSpoken)
  309. {
  310. // have spoken once, not currently speaking
  311. speakerp->mStatus = LLSpeaker::STATUS_HAS_SPOKEN;
  312. }
  313. else
  314. {
  315. // default state for being in voice channel
  316. speakerp->mStatus = LLSpeaker::STATUS_VOICE_ACTIVE;
  317. }
  318. }
  319. }
  320. // speaker no longer registered in voice channel, demote to text only
  321. else if (speakerp->mStatus != LLSpeaker::STATUS_NOT_IN_CHANNEL)
  322. {
  323. if(speakerp->mType == LLSpeaker::SPEAKER_EXTERNAL)
  324. {
  325. // external speakers should be timed out when they leave the voice channel (since they only exist via SLVoice)
  326. speakerp->mStatus = LLSpeaker::STATUS_NOT_IN_CHANNEL;
  327. }
  328. else
  329. {
  330. speakerp->mStatus = LLSpeaker::STATUS_TEXT_ONLY;
  331. speakerp->mSpeechVolume = 0.f;
  332. speakerp->mDotColor = ACTIVE_COLOR;
  333. }
  334. }
  335. }
  336. if(resort_ok)  // only allow list changes when user is not interacting with it
  337. {
  338. // sort by status then time last spoken
  339. std::sort(mSpeakersSorted.begin(), mSpeakersSorted.end(), LLSortRecentSpeakers());
  340. }
  341. // for recent speakers who are not currently speaking, show "recent" color dot for most recent
  342. // fading to "active" color
  343. S32 recent_speaker_count = 0;
  344. S32 sort_index = 0;
  345. speaker_list_t::iterator sorted_speaker_it;
  346. for(sorted_speaker_it = mSpeakersSorted.begin(); 
  347. sorted_speaker_it != mSpeakersSorted.end(); ++sorted_speaker_it)
  348. {
  349. LLPointer<LLSpeaker> speakerp = *sorted_speaker_it;
  350. // color code recent speakers who are not currently speaking
  351. if (speakerp->mStatus == LLSpeaker::STATUS_HAS_SPOKEN)
  352. {
  353. speakerp->mDotColor = lerp(speaking_color, ACTIVE_COLOR, clamp_rescale((F32)recent_speaker_count, -2.f, 3.f, 0.f, 1.f));
  354. recent_speaker_count++;
  355. }
  356. // stuff sort ordinal into speaker so the ui can sort by this value
  357. speakerp->mSortIndex = sort_index++;
  358. }
  359. }
  360. void LLSpeakerMgr::updateSpeakerList()
  361. {
  362. // are we bound to the currently active voice channel?
  363. if ((!mVoiceChannel && gVoiceClient->inProximalChannel()) || (mVoiceChannel && mVoiceChannel->isActive()))
  364. {
  365. LLVoiceClient::participantMap* participants = gVoiceClient->getParticipantList();
  366. if(participants)
  367. {
  368. LLVoiceClient::participantMap::iterator participant_it;
  369. // add new participants to our list of known speakers
  370. for (participant_it = participants->begin(); participant_it != participants->end(); ++participant_it)
  371. {
  372. LLVoiceClient::participantState* participantp = participant_it->second;
  373. setSpeaker(participantp->mAvatarID, participantp->mDisplayName, LLSpeaker::STATUS_VOICE_ACTIVE, (participantp->isAvatar()?LLSpeaker::SPEAKER_AGENT:LLSpeaker::SPEAKER_EXTERNAL));
  374. }
  375. }
  376. }
  377. }
  378. void LLSpeakerMgr::setSpeakerNotInChannel(LLSpeaker* speakerp)
  379. {
  380. speakerp->mStatus = LLSpeaker::STATUS_NOT_IN_CHANNEL;
  381. speakerp->mDotColor = INACTIVE_COLOR;
  382. mSpeakerDelayRemover->setActionTimer(speakerp->mID);
  383. }
  384. bool LLSpeakerMgr::removeSpeaker(const LLUUID& speaker_id)
  385. {
  386. mSpeakers.erase(speaker_id);
  387. speaker_list_t::iterator sorted_speaker_it = mSpeakersSorted.begin();
  388. for(; sorted_speaker_it != mSpeakersSorted.end(); ++sorted_speaker_it)
  389. {
  390. if (speaker_id == (*sorted_speaker_it)->mID)
  391. {
  392. mSpeakersSorted.erase(sorted_speaker_it);
  393. break;
  394. }
  395. }
  396. fireEvent(new LLSpeakerListChangeEvent(this, speaker_id), "remove");
  397. update(TRUE);
  398. return false;
  399. }
  400. LLPointer<LLSpeaker> LLSpeakerMgr::findSpeaker(const LLUUID& speaker_id)
  401. {
  402. //In some conditions map causes crash if it is empty(Windows only), adding check (EK)
  403. if (mSpeakers.size() == 0)
  404. return NULL;
  405. speaker_map_t::iterator found_it = mSpeakers.find(speaker_id);
  406. if (found_it == mSpeakers.end())
  407. {
  408. return NULL;
  409. }
  410. return found_it->second;
  411. }
  412. void LLSpeakerMgr::getSpeakerList(speaker_list_t* speaker_list, BOOL include_text)
  413. {
  414. speaker_list->clear();
  415. for (speaker_map_t::iterator speaker_it = mSpeakers.begin(); speaker_it != mSpeakers.end(); ++speaker_it)
  416. {
  417. LLPointer<LLSpeaker> speakerp = speaker_it->second;
  418. // what about text only muted or inactive?
  419. if (include_text || speakerp->mStatus != LLSpeaker::STATUS_TEXT_ONLY)
  420. {
  421. speaker_list->push_back(speakerp);
  422. }
  423. }
  424. }
  425. const LLUUID LLSpeakerMgr::getSessionID() 
  426. return mVoiceChannel->getSessionID(); 
  427. }
  428. void LLSpeakerMgr::setSpeakerTyping(const LLUUID& speaker_id, BOOL typing)
  429. {
  430. LLPointer<LLSpeaker> speakerp = findSpeaker(speaker_id);
  431. if (speakerp.notNull())
  432. {
  433. speakerp->mTyping = typing;
  434. }
  435. }
  436. // speaker has chatted via either text or voice
  437. void LLSpeakerMgr::speakerChatted(const LLUUID& speaker_id)
  438. {
  439. LLPointer<LLSpeaker> speakerp = findSpeaker(speaker_id);
  440. if (speakerp.notNull())
  441. {
  442. speakerp->mLastSpokeTime = mSpeechTimer.getElapsedTimeF32();
  443. speakerp->mHasSpoken = TRUE;
  444. }
  445. }
  446. BOOL LLSpeakerMgr::isVoiceActive()
  447. {
  448. // mVoiceChannel = NULL means current voice channel, whatever it is
  449. return LLVoiceClient::voiceEnabled() && mVoiceChannel && mVoiceChannel->isActive();
  450. }
  451. //
  452. // LLIMSpeakerMgr
  453. //
  454. LLIMSpeakerMgr::LLIMSpeakerMgr(LLVoiceChannel* channel) : LLSpeakerMgr(channel)
  455. {
  456. }
  457. void LLIMSpeakerMgr::updateSpeakerList()
  458. {
  459. // don't do normal updates which are pulled from voice channel
  460. // rely on user list reported by sim
  461. // We need to do this to allow PSTN callers into group chats to show in the list.
  462. LLSpeakerMgr::updateSpeakerList();
  463. return;
  464. }
  465. void LLIMSpeakerMgr::setSpeakers(const LLSD& speakers)
  466. {
  467. if ( !speakers.isMap() ) return;
  468. if ( speakers.has("agent_info") && speakers["agent_info"].isMap() )
  469. {
  470. LLSD::map_const_iterator speaker_it;
  471. for(speaker_it = speakers["agent_info"].beginMap();
  472. speaker_it != speakers["agent_info"].endMap();
  473. ++speaker_it)
  474. {
  475. LLUUID agent_id(speaker_it->first);
  476. LLPointer<LLSpeaker> speakerp = setSpeaker(
  477. agent_id,
  478. LLStringUtil::null,
  479. LLSpeaker::STATUS_TEXT_ONLY);
  480. if ( speaker_it->second.isMap() )
  481. {
  482. BOOL is_moderator = speakerp->mIsModerator;
  483. speakerp->mIsModerator = speaker_it->second["is_moderator"];
  484. speakerp->mModeratorMutedText =
  485. speaker_it->second["mutes"]["text"];
  486. // Fire event only if moderator changed
  487. if ( is_moderator != speakerp->mIsModerator )
  488. fireEvent(new LLSpeakerUpdateModeratorEvent(speakerp), "update_moderator");
  489. }
  490. }
  491. }
  492. else if ( speakers.has("agents" ) && speakers["agents"].isArray() )
  493. {
  494. //older, more decprecated way.  Need here for
  495. //using older version of servers
  496. LLSD::array_const_iterator speaker_it;
  497. for(speaker_it = speakers["agents"].beginArray();
  498. speaker_it != speakers["agents"].endArray();
  499. ++speaker_it)
  500. {
  501. const LLUUID agent_id = (*speaker_it).asUUID();
  502. LLPointer<LLSpeaker> speakerp = setSpeaker(
  503. agent_id,
  504. LLStringUtil::null,
  505. LLSpeaker::STATUS_TEXT_ONLY);
  506. }
  507. }
  508. }
  509. void LLIMSpeakerMgr::updateSpeakers(const LLSD& update)
  510. {
  511. if ( !update.isMap() ) return;
  512. if ( update.has("agent_updates") && update["agent_updates"].isMap() )
  513. {
  514. LLSD::map_const_iterator update_it;
  515. for(
  516. update_it = update["agent_updates"].beginMap();
  517. update_it != update["agent_updates"].endMap();
  518. ++update_it)
  519. {
  520. LLUUID agent_id(update_it->first);
  521. LLPointer<LLSpeaker> speakerp = findSpeaker(agent_id);
  522. LLSD agent_data = update_it->second;
  523. if (agent_data.isMap() && agent_data.has("transition"))
  524. {
  525. if (agent_data["transition"].asString() == "LEAVE" && speakerp.notNull())
  526. {
  527. setSpeakerNotInChannel(speakerp);
  528. }
  529. else if (agent_data["transition"].asString() == "ENTER")
  530. {
  531. // add or update speaker
  532. speakerp = setSpeaker(agent_id);
  533. }
  534. else
  535. {
  536. llwarns << "bad membership list update " << ll_print_sd(agent_data["transition"]) << llendl;
  537. }
  538. }
  539. if (speakerp.isNull()) continue;
  540. // should have a valid speaker from this point on
  541. if (agent_data.isMap() && agent_data.has("info"))
  542. {
  543. LLSD agent_info = agent_data["info"];
  544. if (agent_info.has("is_moderator"))
  545. {
  546. BOOL is_moderator = speakerp->mIsModerator;
  547. speakerp->mIsModerator = agent_info["is_moderator"];
  548. // Fire event only if moderator changed
  549. if ( is_moderator != speakerp->mIsModerator )
  550. fireEvent(new LLSpeakerUpdateModeratorEvent(speakerp), "update_moderator");
  551. }
  552. if (agent_info.has("mutes"))
  553. {
  554. speakerp->mModeratorMutedText = agent_info["mutes"]["text"];
  555. }
  556. }
  557. }
  558. }
  559. else if ( update.has("updates") && update["updates"].isMap() )
  560. {
  561. LLSD::map_const_iterator update_it;
  562. for (
  563. update_it = update["updates"].beginMap();
  564. update_it != update["updates"].endMap();
  565. ++update_it)
  566. {
  567. LLUUID agent_id(update_it->first);
  568. LLPointer<LLSpeaker> speakerp = findSpeaker(agent_id);
  569. std::string agent_transition = update_it->second.asString();
  570. if (agent_transition == "LEAVE" && speakerp.notNull())
  571. {
  572. setSpeakerNotInChannel(speakerp);
  573. }
  574. else if ( agent_transition == "ENTER")
  575. {
  576. // add or update speaker
  577. speakerp = setSpeaker(agent_id);
  578. }
  579. else
  580. {
  581. llwarns << "bad membership list update "
  582. << agent_transition << llendl;
  583. }
  584. }
  585. }
  586. }
  587. class ModerationResponder : public LLHTTPClient::Responder
  588. {
  589. public:
  590. ModerationResponder(const LLUUID& session_id)
  591. {
  592. mSessionID = session_id;
  593. }
  594. virtual void error(U32 status, const std::string& reason)
  595. {
  596. llwarns << status << ": " << reason << llendl;
  597. if ( gIMMgr )
  598. {
  599. //403 == you're not a mod
  600. //should be disabled if you're not a moderator
  601. if ( 403 == status )
  602. {
  603. gIMMgr->showSessionEventError(
  604. "mute",
  605. "not_a_mod_error",
  606. mSessionID);
  607. }
  608. else
  609. {
  610. gIMMgr->showSessionEventError(
  611. "mute",
  612. "generic_request_error",
  613. mSessionID);
  614. }
  615. }
  616. }
  617. private:
  618. LLUUID mSessionID;
  619. };
  620. void LLIMSpeakerMgr::toggleAllowTextChat(const LLUUID& speaker_id)
  621. {
  622. LLPointer<LLSpeaker> speakerp = findSpeaker(speaker_id);
  623. if (!speakerp) return;
  624. std::string url = gAgent.getRegion()->getCapability("ChatSessionRequest");
  625. LLSD data;
  626. data["method"] = "mute update";
  627. data["session-id"] = getSessionID();
  628. data["params"] = LLSD::emptyMap();
  629. data["params"]["agent_id"] = speaker_id;
  630. data["params"]["mute_info"] = LLSD::emptyMap();
  631. //current value represents ability to type, so invert
  632. data["params"]["mute_info"]["text"] = !speakerp->mModeratorMutedText;
  633. LLHTTPClient::post(url, data, new ModerationResponder(getSessionID()));
  634. }
  635. void LLIMSpeakerMgr::moderateVoiceParticipant(const LLUUID& avatar_id, bool unmute)
  636. {
  637. LLPointer<LLSpeaker> speakerp = findSpeaker(avatar_id);
  638. if (!speakerp) return;
  639. // *NOTE: mantipov: probably this condition will be incorrect when avatar will be blocked for
  640. // text chat via moderation (LLSpeaker::mModeratorMutedText == TRUE)
  641. bool is_in_voice = speakerp->mStatus <= LLSpeaker::STATUS_VOICE_ACTIVE || speakerp->mStatus == LLSpeaker::STATUS_MUTED;
  642. // do not send voice moderation changes for avatars not in voice channel
  643. if (!is_in_voice) return;
  644. std::string url = gAgent.getRegion()->getCapability("ChatSessionRequest");
  645. LLSD data;
  646. data["method"] = "mute update";
  647. data["session-id"] = getSessionID();
  648. data["params"] = LLSD::emptyMap();
  649. data["params"]["agent_id"] = avatar_id;
  650. data["params"]["mute_info"] = LLSD::emptyMap();
  651. data["params"]["mute_info"]["voice"] = !unmute;
  652. LLHTTPClient::post(
  653. url,
  654. data,
  655. new ModerationResponder(getSessionID()));
  656. }
  657. void LLIMSpeakerMgr::moderateVoiceOtherParticipants(const LLUUID& excluded_avatar_id, bool unmute_everyone_else)
  658. {
  659. // *TODO: mantipov: add more intellectual processing of several following requests if it is needed.
  660. /*
  661. Such situation should be tested:
  662.  "Moderator sends the same second request before first response is come"
  663. Moderator sends "mute everyone else" for A and then for B
  664. two requests to disallow voice chat are sent
  665. UUID of B is stored.
  666. Then first response (to disallow voice chat) is come
  667. request to allow voice for stored avatar (B)
  668. Then second response (to disallow voice chat) is come
  669. have nothing to do, the latest selected speaker is already enabled
  670. What can happen?
  671. If request to allow voice for stored avatar (B) is processed on server BEFORE 
  672. second request to disallow voice chat all speakers will be disabled on voice.
  673. But I'm not sure such situation is possible. 
  674. See EXT-3431.
  675. */
  676. mReverseVoiceModeratedAvatarID = excluded_avatar_id;
  677. moderateVoiceSession(getSessionID(), !unmute_everyone_else);
  678. }
  679. void LLIMSpeakerMgr::processSessionUpdate(const LLSD& session_update)
  680. {
  681. if (mReverseVoiceModeratedAvatarID.isNull()) return;
  682. if (session_update.has("moderated_mode") &&
  683. session_update["moderated_mode"].has("voice"))
  684. {
  685. BOOL voice_moderated = session_update["moderated_mode"]["voice"];
  686. moderateVoiceParticipant(mReverseVoiceModeratedAvatarID, voice_moderated);
  687. mReverseVoiceModeratedAvatarID = LLUUID::null;
  688. }
  689. }
  690. void LLIMSpeakerMgr::moderateVoiceSession(const LLUUID& session_id, bool disallow_voice)
  691. {
  692. std::string url = gAgent.getRegion()->getCapability("ChatSessionRequest");
  693. LLSD data;
  694. data["method"] = "session update";
  695. data["session-id"] = session_id;
  696. data["params"] = LLSD::emptyMap();
  697. data["params"]["update_info"] = LLSD::emptyMap();
  698. data["params"]["update_info"]["moderated_mode"] = LLSD::emptyMap();
  699. data["params"]["update_info"]["moderated_mode"]["voice"] = disallow_voice;
  700. LLHTTPClient::post(url, data, new ModerationResponder(session_id));
  701. }
  702. //
  703. // LLActiveSpeakerMgr
  704. //
  705. LLActiveSpeakerMgr::LLActiveSpeakerMgr() : LLSpeakerMgr(NULL)
  706. {
  707. }
  708. void LLActiveSpeakerMgr::updateSpeakerList()
  709. {
  710. // point to whatever the current voice channel is
  711. mVoiceChannel = LLVoiceChannel::getCurrentVoiceChannel();
  712. // always populate from active voice channel
  713. if (LLVoiceChannel::getCurrentVoiceChannel() != mVoiceChannel) //MA: seems this is always false
  714. {
  715. fireEvent(new LLSpeakerListChangeEvent(this, LLUUID::null), "clear");
  716. mSpeakers.clear();
  717. mSpeakersSorted.clear();
  718. mVoiceChannel = LLVoiceChannel::getCurrentVoiceChannel();
  719. mSpeakerDelayRemover->removeAllTimers();
  720. }
  721. LLSpeakerMgr::updateSpeakerList();
  722. // clean up text only speakers
  723. for (speaker_map_t::iterator speaker_it = mSpeakers.begin(); speaker_it != mSpeakers.end(); ++speaker_it)
  724. {
  725. LLUUID speaker_id = speaker_it->first;
  726. LLSpeaker* speakerp = speaker_it->second;
  727. if (speakerp->mStatus == LLSpeaker::STATUS_TEXT_ONLY)
  728. {
  729. // automatically flag text only speakers for removal
  730. speakerp->mStatus = LLSpeaker::STATUS_NOT_IN_CHANNEL;
  731. }
  732. }
  733. }
  734. //
  735. // LLLocalSpeakerMgr
  736. //
  737. LLLocalSpeakerMgr::LLLocalSpeakerMgr() : LLSpeakerMgr(LLVoiceChannelProximal::getInstance())
  738. {
  739. }
  740. LLLocalSpeakerMgr::~LLLocalSpeakerMgr ()
  741. {
  742. }
  743. void LLLocalSpeakerMgr::updateSpeakerList()
  744. {
  745. // pull speakers from voice channel
  746. LLSpeakerMgr::updateSpeakerList();
  747. if (gDisconnected)//the world is cleared.
  748. {
  749. return ;
  750. }
  751. // pick up non-voice speakers in chat range
  752. std::vector<LLUUID> avatar_ids;
  753. std::vector<LLVector3d> positions;
  754. LLWorld::getInstance()->getAvatars(&avatar_ids, &positions, gAgent.getPositionGlobal(), CHAT_NORMAL_RADIUS);
  755. for(U32 i=0; i<avatar_ids.size(); i++)
  756. {
  757. setSpeaker(avatar_ids[i]);
  758. }
  759. // check if text only speakers have moved out of chat range
  760. for (speaker_map_t::iterator speaker_it = mSpeakers.begin(); speaker_it != mSpeakers.end(); ++speaker_it)
  761. {
  762. LLUUID speaker_id = speaker_it->first;
  763. LLSpeaker* speakerp = speaker_it->second;
  764. if (speakerp->mStatus == LLSpeaker::STATUS_TEXT_ONLY)
  765. {
  766. LLVOAvatar* avatarp = (LLVOAvatar*)gObjectList.findObject(speaker_id);
  767. if (!avatarp || dist_vec(avatarp->getPositionAgent(), gAgent.getPositionAgent()) > CHAT_NORMAL_RADIUS)
  768. {
  769. setSpeakerNotInChannel(speakerp);
  770. }
  771. }
  772. }
  773. }