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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llviewermedia.cpp
  3.  * @brief Client interface to the media engine
  4.  *
  5.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2007-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 "llagent.h"
  34. #include "llviewermedia.h"
  35. #include "llviewermediafocus.h"
  36. #include "llmimetypes.h"
  37. #include "llmediaentry.h"
  38. #include "llversioninfo.h"
  39. #include "llviewercontrol.h"
  40. #include "llviewertexture.h"
  41. #include "llviewerparcelmedia.h"
  42. #include "llviewerparcelmgr.h"
  43. #include "llviewertexturelist.h"
  44. #include "llvovolume.h"
  45. #include "llpluginclassmedia.h"
  46. #include "llviewerwindow.h"
  47. #include "llfocusmgr.h"
  48. #include "llcallbacklist.h"
  49. #include "llparcel.h"
  50. #include "llaudioengine.h"  // for gAudiop
  51. #include "llvoavatar.h"
  52. #include "llvoavatarself.h"
  53. #include "llviewerregion.h"
  54. #include "llevent.h" // LLSimpleListener
  55. #include "llnotificationsutil.h"
  56. #include "lluuid.h"
  57. #include "llkeyboard.h"
  58. #include "llmutelist.h"
  59. //#include "llfirstuse.h"
  60. #include "llwindow.h"
  61. #include <boost/bind.hpp> // for SkinFolder listener
  62. #include <boost/signals2.hpp>
  63. /*static*/ const char* LLViewerMedia::AUTO_PLAY_MEDIA_SETTING = "ParcelMediaAutoPlayEnable";
  64. /*static*/ const char* LLViewerMedia::SHOW_MEDIA_ON_OTHERS_SETTING = "MediaShowOnOthers";
  65. /*static*/ const char* LLViewerMedia::SHOW_MEDIA_WITHIN_PARCEL_SETTING = "MediaShowWithinParcel";
  66. /*static*/ const char* LLViewerMedia::SHOW_MEDIA_OUTSIDE_PARCEL_SETTING = "MediaShowOutsideParcel";
  67. // Move this to its own file.
  68. LLViewerMediaEventEmitter::~LLViewerMediaEventEmitter()
  69. {
  70. observerListType::iterator iter = mObservers.begin();
  71. while( iter != mObservers.end() )
  72. {
  73. LLViewerMediaObserver *self = *iter;
  74. iter++;
  75. remObserver(self);
  76. }
  77. }
  78. ///////////////////////////////////////////////////////////////////////////////
  79. //
  80. bool LLViewerMediaEventEmitter::addObserver( LLViewerMediaObserver* observer )
  81. {
  82. if ( ! observer )
  83. return false;
  84. if ( std::find( mObservers.begin(), mObservers.end(), observer ) != mObservers.end() )
  85. return false;
  86. mObservers.push_back( observer );
  87. observer->mEmitters.push_back( this );
  88. return true;
  89. }
  90. ///////////////////////////////////////////////////////////////////////////////
  91. //
  92. bool LLViewerMediaEventEmitter::remObserver( LLViewerMediaObserver* observer )
  93. {
  94. if ( ! observer )
  95. return false;
  96. mObservers.remove( observer );
  97. observer->mEmitters.remove(this);
  98. return true;
  99. }
  100. ///////////////////////////////////////////////////////////////////////////////
  101. //
  102. void LLViewerMediaEventEmitter::emitEvent( LLPluginClassMedia* media, LLViewerMediaObserver::EMediaEvent event )
  103. {
  104. // Broadcast the event to any observers.
  105. observerListType::iterator iter = mObservers.begin();
  106. while( iter != mObservers.end() )
  107. {
  108. LLViewerMediaObserver *self = *iter;
  109. ++iter;
  110. self->handleMediaEvent( media, event );
  111. }
  112. }
  113. // Move this to its own file.
  114. LLViewerMediaObserver::~LLViewerMediaObserver()
  115. {
  116. std::list<LLViewerMediaEventEmitter *>::iterator iter = mEmitters.begin();
  117. while( iter != mEmitters.end() )
  118. {
  119. LLViewerMediaEventEmitter *self = *iter;
  120. iter++;
  121. self->remObserver( this );
  122. }
  123. }
  124. // Move this to its own file.
  125. // helper class that tries to download a URL from a web site and calls a method
  126. // on the Panel Land Media and to discover the MIME type
  127. class LLMimeDiscoveryResponder : public LLHTTPClient::Responder
  128. {
  129. LOG_CLASS(LLMimeDiscoveryResponder);
  130. public:
  131. LLMimeDiscoveryResponder( viewer_media_t media_impl)
  132. : mMediaImpl(media_impl),
  133.   mInitialized(false)
  134. {
  135. if(mMediaImpl->mMimeTypeProbe != NULL)
  136. {
  137. llerrs << "impl already has an outstanding responder" << llendl;
  138. }
  139. mMediaImpl->mMimeTypeProbe = this;
  140. }
  141. ~LLMimeDiscoveryResponder()
  142. {
  143. disconnectOwner();
  144. }
  145. virtual void completedHeader(U32 status, const std::string& reason, const LLSD& content)
  146. {
  147. std::string media_type = content["content-type"].asString();
  148. std::string::size_type idx1 = media_type.find_first_of(";");
  149. std::string mime_type = media_type.substr(0, idx1);
  150. lldebugs << "status is " << status << ", media type "" << media_type << """ << llendl;
  151. // 2xx status codes indicate success.
  152. // Most 4xx status codes are successful enough for our purposes.
  153. // 499 is the error code for host not found, timeout, etc.
  154. // 500 means "Internal Server error" but we decided it's okay to 
  155. //     accept this and go past it in the MIME type probe
  156. // 302 means the resource can be found temporarily in a different place - added this for join.secondlife.com
  157. // 499 is a code specifc to join.secondlife.com (????) apparently safe to ignore
  158. // if( ((status >= 200) && (status < 300)) ||
  159. // ((status >= 400) && (status < 499)) || 
  160. // (status == 500) ||
  161. // (status == 302) ||
  162. // (status == 499) 
  163. // )
  164. // We now no longer check the error code returned from the probe.
  165. // If we have a mime type, use it.  If not, default to the web plugin and let it handle error reporting.
  166. if(1)
  167. {
  168. // The probe was successful.
  169. if(mime_type.empty())
  170. {
  171. // Some sites don't return any content-type header at all.
  172. // Treat an empty mime type as text/html.
  173. mime_type = "text/html";
  174. }
  175. completeAny(status, mime_type);
  176. }
  177. else
  178. {
  179. llwarns << "responder failed with status " << status << ", reason " << reason << llendl;
  180. if(mMediaImpl)
  181. {
  182. mMediaImpl->mMediaSourceFailed = true;
  183. }
  184. }
  185. }
  186. void completeAny(U32 status, const std::string& mime_type)
  187. {
  188. // the call to initializeMedia may disconnect the responder, which will clear mMediaImpl.
  189. // Make a local copy so we can call loadURI() afterwards.
  190. LLViewerMediaImpl *impl = mMediaImpl;
  191. if(impl && !mInitialized && ! mime_type.empty())
  192. {
  193. if(impl->initializeMedia(mime_type))
  194. {
  195. mInitialized = true;
  196. impl->loadURI();
  197. disconnectOwner();
  198. }
  199. }
  200. }
  201. void cancelRequest()
  202. {
  203. disconnectOwner();
  204. }
  205. private:
  206. void disconnectOwner()
  207. {
  208. if(mMediaImpl)
  209. {
  210. if(mMediaImpl->mMimeTypeProbe != this)
  211. {
  212. llerrs << "internal error: mMediaImpl->mMimeTypeProbe != this" << llendl;
  213. }
  214. mMediaImpl->mMimeTypeProbe = NULL;
  215. }
  216. mMediaImpl = NULL;
  217. }
  218. public:
  219. LLViewerMediaImpl *mMediaImpl;
  220. bool mInitialized;
  221. };
  222. static LLViewerMedia::impl_list sViewerMediaImplList;
  223. static LLViewerMedia::impl_id_map sViewerMediaTextureIDMap;
  224. static LLTimer sMediaCreateTimer;
  225. static const F32 LLVIEWERMEDIA_CREATE_DELAY = 1.0f;
  226. static F32 sGlobalVolume = 1.0f;
  227. static F64 sLowestLoadableImplInterest = 0.0f;
  228. static bool sAnyMediaShowing = false;
  229. static boost::signals2::connection sTeleportFinishConnection;
  230. //////////////////////////////////////////////////////////////////////////////////////////
  231. static void add_media_impl(LLViewerMediaImpl* media)
  232. {
  233. sViewerMediaImplList.push_back(media);
  234. }
  235. //////////////////////////////////////////////////////////////////////////////////////////
  236. static void remove_media_impl(LLViewerMediaImpl* media)
  237. {
  238. LLViewerMedia::impl_list::iterator iter = sViewerMediaImplList.begin();
  239. LLViewerMedia::impl_list::iterator end = sViewerMediaImplList.end();
  240. for(; iter != end; iter++)
  241. {
  242. if(media == *iter)
  243. {
  244. sViewerMediaImplList.erase(iter);
  245. return;
  246. }
  247. }
  248. }
  249. class LLViewerMediaMuteListObserver : public LLMuteListObserver
  250. {
  251. /* virtual */ void onChange()  { LLViewerMedia::muteListChanged();}
  252. };
  253. static LLViewerMediaMuteListObserver sViewerMediaMuteListObserver;
  254. static bool sViewerMediaMuteListObserverInitialized = false;
  255. static bool sInWorldMediaDisabled = false;
  256. //////////////////////////////////////////////////////////////////////////////////////////
  257. // LLViewerMedia
  258. //////////////////////////////////////////////////////////////////////////////////////////
  259. // static
  260. viewer_media_t LLViewerMedia::newMediaImpl(
  261.  const LLUUID& texture_id,
  262.  S32 media_width, 
  263.  S32 media_height, 
  264.  U8 media_auto_scale,
  265.  U8 media_loop)
  266. {
  267. LLViewerMediaImpl* media_impl = getMediaImplFromTextureID(texture_id);
  268. if(media_impl == NULL || texture_id.isNull())
  269. {
  270. // Create the media impl
  271. media_impl = new LLViewerMediaImpl(texture_id, media_width, media_height, media_auto_scale, media_loop);
  272. }
  273. else
  274. {
  275. media_impl->unload();
  276. media_impl->setTextureID(texture_id);
  277. media_impl->mMediaWidth = media_width;
  278. media_impl->mMediaHeight = media_height;
  279. media_impl->mMediaAutoScale = media_auto_scale;
  280. media_impl->mMediaLoop = media_loop;
  281. }
  282. return media_impl;
  283. }
  284. viewer_media_t LLViewerMedia::updateMediaImpl(LLMediaEntry* media_entry, const std::string& previous_url, bool update_from_self)
  285. {
  286. // Try to find media with the same media ID
  287. viewer_media_t media_impl = getMediaImplFromTextureID(media_entry->getMediaID());
  288. lldebugs << "called, current URL is "" << media_entry->getCurrentURL() 
  289. << "", previous URL is "" << previous_url 
  290. << "", update_from_self is " << (update_from_self?"true":"false")
  291. << llendl;
  292. bool was_loaded = false;
  293. bool needs_navigate = false;
  294. if(media_impl)
  295. {
  296. was_loaded = media_impl->hasMedia();
  297. media_impl->setHomeURL(media_entry->getHomeURL());
  298. media_impl->mMediaAutoScale = media_entry->getAutoScale();
  299. media_impl->mMediaLoop = media_entry->getAutoLoop();
  300. media_impl->mMediaWidth = media_entry->getWidthPixels();
  301. media_impl->mMediaHeight = media_entry->getHeightPixels();
  302. media_impl->mMediaAutoPlay = media_entry->getAutoPlay();
  303. media_impl->mMediaEntryURL = media_entry->getCurrentURL();
  304. if (media_impl->mMediaSource)
  305. {
  306. media_impl->mMediaSource->setAutoScale(media_impl->mMediaAutoScale);
  307. media_impl->mMediaSource->setLoop(media_impl->mMediaLoop);
  308. media_impl->mMediaSource->setSize(media_entry->getWidthPixels(), media_entry->getHeightPixels());
  309. }
  310. bool url_changed = (media_impl->mMediaEntryURL != previous_url);
  311. if(media_impl->mMediaEntryURL.empty())
  312. {
  313. if(url_changed)
  314. {
  315. // The current media URL is now empty.  Unload the media source.
  316. media_impl->unload();
  317. lldebugs << "Unloading media instance (new current URL is empty)." << llendl;
  318. }
  319. }
  320. else
  321. {
  322. // The current media URL is not empty.
  323. // If (the media was already loaded OR the media was set to autoplay) AND this update didn't come from this agent,
  324. // do a navigate.
  325. bool auto_play = media_impl->isAutoPlayable();
  326. if((was_loaded || auto_play) && !update_from_self)
  327. {
  328. needs_navigate = url_changed;
  329. }
  330. lldebugs << "was_loaded is " << (was_loaded?"true":"false") 
  331. << ", auto_play is " << (auto_play?"true":"false") 
  332. << ", needs_navigate is " << (needs_navigate?"true":"false") << llendl;
  333. }
  334. }
  335. else
  336. {
  337. media_impl = newMediaImpl(
  338. media_entry->getMediaID(), 
  339. media_entry->getWidthPixels(),
  340. media_entry->getHeightPixels(), 
  341. media_entry->getAutoScale(), 
  342. media_entry->getAutoLoop());
  343. media_impl->setHomeURL(media_entry->getHomeURL());
  344. media_impl->mMediaAutoPlay = media_entry->getAutoPlay();
  345. media_impl->mMediaEntryURL = media_entry->getCurrentURL();
  346. if(media_impl->isAutoPlayable())
  347. {
  348. needs_navigate = true;
  349. }
  350. }
  351. if(media_impl)
  352. {
  353. if(needs_navigate)
  354. {
  355. media_impl->navigateTo(media_impl->mMediaEntryURL, "", true, true);
  356. lldebugs << "navigating to URL " << media_impl->mMediaEntryURL << llendl;
  357. }
  358. else if(!media_impl->mMediaURL.empty() && (media_impl->mMediaURL != media_impl->mMediaEntryURL))
  359. {
  360. // If we already have a non-empty media URL set and we aren't doing a navigate, update the media URL to match the media entry.
  361. media_impl->mMediaURL = media_impl->mMediaEntryURL;
  362. // If this causes a navigate at some point (such as after a reload), it should be considered server-driven so it isn't broadcast.
  363. media_impl->mNavigateServerRequest = true;
  364. lldebugs << "updating URL in the media impl to " << media_impl->mMediaEntryURL << llendl;
  365. }
  366. }
  367. return media_impl;
  368. }
  369. //////////////////////////////////////////////////////////////////////////////////////////
  370. // static
  371. LLViewerMediaImpl* LLViewerMedia::getMediaImplFromTextureID(const LLUUID& texture_id)
  372. {
  373. LLViewerMediaImpl* result = NULL;
  374. // Look up the texture ID in the texture id->impl map.
  375. impl_id_map::iterator iter = sViewerMediaTextureIDMap.find(texture_id);
  376. if(iter != sViewerMediaTextureIDMap.end())
  377. {
  378. result = iter->second;
  379. }
  380. return result;
  381. }
  382. //////////////////////////////////////////////////////////////////////////////////////////
  383. // static
  384. std::string LLViewerMedia::getCurrentUserAgent()
  385. {
  386. // Don't use user-visible string to avoid 
  387. // punctuation and strange characters.
  388. std::string skin_name = gSavedSettings.getString("SkinCurrent");
  389. // Just in case we need to check browser differences in A/B test
  390. // builds.
  391. std::string channel = gSavedSettings.getString("VersionChannelName");
  392. // append our magic version number string to the browser user agent id
  393. // See the HTTP 1.0 and 1.1 specifications for allowed formats:
  394. // http://www.ietf.org/rfc/rfc1945.txt section 10.15
  395. // http://www.ietf.org/rfc/rfc2068.txt section 3.8
  396. // This was also helpful:
  397. // http://www.mozilla.org/build/revised-user-agent-strings.html
  398. std::ostringstream codec;
  399. codec << "SecondLife/";
  400. codec << LLVersionInfo::getVersion();
  401. codec << " (" << channel << "; " << skin_name << " skin)";
  402. llinfos << codec.str() << llendl;
  403. return codec.str();
  404. }
  405. //////////////////////////////////////////////////////////////////////////////////////////
  406. // static
  407. void LLViewerMedia::updateBrowserUserAgent()
  408. {
  409. std::string user_agent = getCurrentUserAgent();
  410. impl_list::iterator iter = sViewerMediaImplList.begin();
  411. impl_list::iterator end = sViewerMediaImplList.end();
  412. for(; iter != end; iter++)
  413. {
  414. LLViewerMediaImpl* pimpl = *iter;
  415. if(pimpl->mMediaSource && pimpl->mMediaSource->pluginSupportsMediaBrowser())
  416. {
  417. pimpl->mMediaSource->setBrowserUserAgent(user_agent);
  418. }
  419. }
  420. }
  421. //////////////////////////////////////////////////////////////////////////////////////////
  422. // static
  423. bool LLViewerMedia::handleSkinCurrentChanged(const LLSD& /*newvalue*/)
  424. {
  425. // gSavedSettings is already updated when this function is called.
  426. updateBrowserUserAgent();
  427. return true;
  428. }
  429. //////////////////////////////////////////////////////////////////////////////////////////
  430. // static
  431. bool LLViewerMedia::textureHasMedia(const LLUUID& texture_id)
  432. {
  433. impl_list::iterator iter = sViewerMediaImplList.begin();
  434. impl_list::iterator end = sViewerMediaImplList.end();
  435. for(; iter != end; iter++)
  436. {
  437. LLViewerMediaImpl* pimpl = *iter;
  438. if(pimpl->getMediaTextureID() == texture_id)
  439. {
  440. return true;
  441. }
  442. }
  443. return false;
  444. }
  445. //////////////////////////////////////////////////////////////////////////////////////////
  446. // static
  447. void LLViewerMedia::setVolume(F32 volume)
  448. {
  449. if(volume != sGlobalVolume)
  450. {
  451. sGlobalVolume = volume;
  452. impl_list::iterator iter = sViewerMediaImplList.begin();
  453. impl_list::iterator end = sViewerMediaImplList.end();
  454. for(; iter != end; iter++)
  455. {
  456. LLViewerMediaImpl* pimpl = *iter;
  457. pimpl->updateVolume();
  458. }
  459. }
  460. }
  461. //////////////////////////////////////////////////////////////////////////////////////////
  462. // static
  463. F32 LLViewerMedia::getVolume()
  464. {
  465. return sGlobalVolume;
  466. }
  467. //////////////////////////////////////////////////////////////////////////////////////////
  468. // static
  469. void LLViewerMedia::muteListChanged()
  470. {
  471. // When the mute list changes, we need to check mute status on all impls.
  472. impl_list::iterator iter = sViewerMediaImplList.begin();
  473. impl_list::iterator end = sViewerMediaImplList.end();
  474. for(; iter != end; iter++)
  475. {
  476. LLViewerMediaImpl* pimpl = *iter;
  477. pimpl->mNeedsMuteCheck = true;
  478. }
  479. }
  480. //////////////////////////////////////////////////////////////////////////////////////////
  481. // static
  482. void LLViewerMedia::setInWorldMediaDisabled(bool disabled)
  483. {
  484. sInWorldMediaDisabled = disabled;
  485. }
  486. //////////////////////////////////////////////////////////////////////////////////////////
  487. // static
  488. bool LLViewerMedia::getInWorldMediaDisabled()
  489. {
  490. return sInWorldMediaDisabled;
  491. }
  492. //////////////////////////////////////////////////////////////////////////////////////////
  493. // static
  494. bool LLViewerMedia::isInterestingEnough(const LLVOVolume *object, const F64 &object_interest)
  495. {
  496. bool result = false;
  497. if (NULL == object)
  498. {
  499. result = false;
  500. }
  501. // Focused?  Then it is interesting!
  502. else if (LLViewerMediaFocus::getInstance()->getFocusedObjectID() == object->getID())
  503. {
  504. result = true;
  505. }
  506. // Selected?  Then it is interesting!
  507. // XXX Sadly, 'contains()' doesn't take a const :(
  508. else if (LLSelectMgr::getInstance()->getSelection()->contains(const_cast<LLVOVolume*>(object)))
  509. {
  510. result = true;
  511. }
  512. else 
  513. {
  514. lldebugs << "object interest = " << object_interest << ", lowest loadable = " << sLowestLoadableImplInterest << llendl;
  515. if(object_interest >= sLowestLoadableImplInterest)
  516. result = true;
  517. }
  518. return result;
  519. }
  520. LLViewerMedia::impl_list &LLViewerMedia::getPriorityList()
  521. {
  522. return sViewerMediaImplList;
  523. }
  524. // This is the predicate function used to sort sViewerMediaImplList by priority.
  525. bool LLViewerMedia::priorityComparitor(const LLViewerMediaImpl* i1, const LLViewerMediaImpl* i2)
  526. {
  527. if(i1->isForcedUnloaded() && !i2->isForcedUnloaded())
  528. {
  529. // Muted or failed items always go to the end of the list, period.
  530. return false;
  531. }
  532. else if(i2->isForcedUnloaded() && !i1->isForcedUnloaded())
  533. {
  534. // Muted or failed items always go to the end of the list, period.
  535. return true;
  536. }
  537. else if(i1->hasFocus())
  538. {
  539. // The item with user focus always comes to the front of the list, period.
  540. return true;
  541. }
  542. else if(i2->hasFocus())
  543. {
  544. // The item with user focus always comes to the front of the list, period.
  545. return false;
  546. }
  547. else if(i1->isParcelMedia())
  548. {
  549. // The parcel media impl sorts above all other inworld media, unless one has focus.
  550. return true;
  551. }
  552. else if(i2->isParcelMedia())
  553. {
  554. // The parcel media impl sorts above all other inworld media, unless one has focus.
  555. return false;
  556. }
  557. else if(i1->getUsedInUI() && !i2->getUsedInUI())
  558. {
  559. // i1 is a UI element, i2 is not.  This makes i1 "less than" i2, so it sorts earlier in our list.
  560. return true;
  561. }
  562. else if(i2->getUsedInUI() && !i1->getUsedInUI())
  563. {
  564. // i2 is a UI element, i1 is not.  This makes i2 "less than" i1, so it sorts earlier in our list.
  565. return false;
  566. }
  567. else if(i1->isPlayable() && !i2->isPlayable())
  568. {
  569. // Playable items sort above ones that wouldn't play even if they got high enough priority
  570. return true;
  571. }
  572. else if(!i1->isPlayable() && i2->isPlayable())
  573. {
  574. // Playable items sort above ones that wouldn't play even if they got high enough priority
  575. return false;
  576. }
  577. else if(i1->getInterest() == i2->getInterest())
  578. {
  579. // Generally this will mean both objects have zero interest.  In this case, sort on distance.
  580. return (i1->getProximityDistance() < i2->getProximityDistance());
  581. }
  582. else
  583. {
  584. // The object with the larger interest value should be earlier in the list, so we reverse the sense of the comparison here.
  585. return (i1->getInterest() > i2->getInterest());
  586. }
  587. }
  588. static bool proximity_comparitor(const LLViewerMediaImpl* i1, const LLViewerMediaImpl* i2)
  589. {
  590. if(i1->getProximityDistance() < i2->getProximityDistance())
  591. {
  592. return true;
  593. }
  594. else if(i1->getProximityDistance() > i2->getProximityDistance())
  595. {
  596. return false;
  597. }
  598. else
  599. {
  600. // Both objects have the same distance.  This most likely means they're two faces of the same object.
  601. // They may also be faces on different objects with exactly the same distance (like HUD objects).
  602. // We don't actually care what the sort order is for this case, as long as it's stable and doesn't change when you enable/disable media.
  603. // Comparing the impl pointers gives a completely arbitrary ordering, but it will be stable.
  604. return (i1 < i2);
  605. }
  606. }
  607. //////////////////////////////////////////////////////////////////////////////////////////
  608. // static
  609. void LLViewerMedia::updateMedia(void *dummy_arg)
  610. {
  611. sAnyMediaShowing = false;
  612. impl_list::iterator iter = sViewerMediaImplList.begin();
  613. impl_list::iterator end = sViewerMediaImplList.end();
  614. for(; iter != end; iter++)
  615. {
  616. LLViewerMediaImpl* pimpl = *iter;
  617. pimpl->update();
  618. pimpl->calculateInterest();
  619. }
  620. // Sort the static instance list using our interest criteria
  621. std::stable_sort(sViewerMediaImplList.begin(), sViewerMediaImplList.end(), priorityComparitor);
  622. // Go through the list again and adjust according to priority.
  623. iter = sViewerMediaImplList.begin();
  624. end = sViewerMediaImplList.end();
  625. F64 total_cpu = 0.0f;
  626. int impl_count_total = 0;
  627. int impl_count_interest_low = 0;
  628. int impl_count_interest_normal = 0;
  629. std::vector<LLViewerMediaImpl*> proximity_order;
  630. bool inworld_media_enabled = gSavedSettings.getBOOL("AudioStreamingMedia");
  631. U32 max_instances = gSavedSettings.getU32("PluginInstancesTotal");
  632. U32 max_normal = gSavedSettings.getU32("PluginInstancesNormal");
  633. U32 max_low = gSavedSettings.getU32("PluginInstancesLow");
  634. F32 max_cpu = gSavedSettings.getF32("PluginInstancesCPULimit");
  635. // Setting max_cpu to 0.0 disables CPU usage checking.
  636. bool check_cpu_usage = (max_cpu != 0.0f);
  637. LLViewerMediaImpl* lowest_interest_loadable = NULL;
  638. // Notes on tweakable params:
  639. // max_instances must be set high enough to allow the various instances used in the UI (for the help browser, search, etc.) to be loaded.
  640. // If max_normal + max_low is less than max_instances, things will tend to get unloaded instead of being set to slideshow.
  641. for(; iter != end; iter++)
  642. {
  643. LLViewerMediaImpl* pimpl = *iter;
  644. LLPluginClassMedia::EPriority new_priority = LLPluginClassMedia::PRIORITY_NORMAL;
  645. if(pimpl->isForcedUnloaded() || (impl_count_total >= (int)max_instances))
  646. {
  647. // Never load muted or failed impls.
  648. // Hard limit on the number of instances that will be loaded at one time
  649. new_priority = LLPluginClassMedia::PRIORITY_UNLOADED;
  650. }
  651. else if(!pimpl->getVisible())
  652. {
  653. new_priority = LLPluginClassMedia::PRIORITY_HIDDEN;
  654. }
  655. else if(pimpl->hasFocus())
  656. {
  657. new_priority = LLPluginClassMedia::PRIORITY_HIGH;
  658. impl_count_interest_normal++; // count this against the count of "normal" instances for priority purposes
  659. }
  660. else if(pimpl->getUsedInUI())
  661. {
  662. new_priority = LLPluginClassMedia::PRIORITY_NORMAL;
  663. impl_count_interest_normal++;
  664. }
  665. else if(pimpl->isParcelMedia())
  666. {
  667. new_priority = LLPluginClassMedia::PRIORITY_NORMAL;
  668. impl_count_interest_normal++;
  669. }
  670. else
  671. {
  672. // Look at interest and CPU usage for instances that aren't in any of the above states.
  673. // Heuristic -- if the media texture's approximate screen area is less than 1/4 of the native area of the texture,
  674. // turn it down to low instead of normal.  This may downsample for plugins that support it.
  675. bool media_is_small = false;
  676. F64 approximate_interest = pimpl->getApproximateTextureInterest();
  677. if(approximate_interest == 0.0f)
  678. {
  679. // this media has no current size, which probably means it's not loaded.
  680. media_is_small = true;
  681. }
  682. else if(pimpl->getInterest() < (approximate_interest / 4))
  683. {
  684. media_is_small = true;
  685. }
  686. if(pimpl->getInterest() == 0.0f)
  687. {
  688. // This media is completely invisible, due to being outside the view frustrum or out of range.
  689. new_priority = LLPluginClassMedia::PRIORITY_HIDDEN;
  690. }
  691. else if(check_cpu_usage && (total_cpu > max_cpu))
  692. {
  693. // Higher priority plugins have already used up the CPU budget.  Set remaining ones to slideshow priority.
  694. new_priority = LLPluginClassMedia::PRIORITY_SLIDESHOW;
  695. }
  696. else if((impl_count_interest_normal < (int)max_normal) && !media_is_small)
  697. {
  698. // Up to max_normal inworld get normal priority
  699. new_priority = LLPluginClassMedia::PRIORITY_NORMAL;
  700. impl_count_interest_normal++;
  701. }
  702. else if (impl_count_interest_low + impl_count_interest_normal < (int)max_low + (int)max_normal)
  703. {
  704. // The next max_low inworld get turned down
  705. new_priority = LLPluginClassMedia::PRIORITY_LOW;
  706. impl_count_interest_low++;
  707. // Set the low priority size for downsampling to approximately the size the texture is displayed at.
  708. {
  709. F32 approximate_interest_dimension = fsqrtf(pimpl->getInterest());
  710. pimpl->setLowPrioritySizeLimit(llround(approximate_interest_dimension));
  711. }
  712. }
  713. else
  714. {
  715. // Any additional impls (up to max_instances) get very infrequent time
  716. new_priority = LLPluginClassMedia::PRIORITY_SLIDESHOW;
  717. }
  718. }
  719. if(!pimpl->getUsedInUI() && (new_priority != LLPluginClassMedia::PRIORITY_UNLOADED))
  720. {
  721. // This is a loadable inworld impl -- the last one in the list in this class defines the lowest loadable interest.
  722. lowest_interest_loadable = pimpl;
  723. impl_count_total++;
  724. }
  725. // Overrides if the window is minimized or we lost focus (taking care
  726. // not to accidentally "raise" the priority either)
  727. if (!gViewerWindow->getActive() /* viewer window minimized? */ 
  728. && new_priority > LLPluginClassMedia::PRIORITY_HIDDEN)
  729. {
  730. new_priority = LLPluginClassMedia::PRIORITY_HIDDEN;
  731. }
  732. else if (!gFocusMgr.getAppHasFocus() /* viewer window lost focus? */
  733.  && new_priority > LLPluginClassMedia::PRIORITY_LOW)
  734. {
  735. new_priority = LLPluginClassMedia::PRIORITY_LOW;
  736. }
  737. if(!inworld_media_enabled)
  738. {
  739. // If inworld media is locked out, force all inworld media to stay unloaded.
  740. if(!pimpl->getUsedInUI())
  741. {
  742. new_priority = LLPluginClassMedia::PRIORITY_UNLOADED;
  743. }
  744. }
  745. pimpl->setPriority(new_priority);
  746. if(pimpl->getUsedInUI())
  747. {
  748. // Any impls used in the UI should not be in the proximity list.
  749. pimpl->mProximity = -1;
  750. }
  751. else
  752. {
  753. proximity_order.push_back(pimpl);
  754. }
  755. total_cpu += pimpl->getCPUUsage();
  756. if (!pimpl->getUsedInUI() && pimpl->hasMedia())
  757. {
  758. sAnyMediaShowing = true;
  759. }
  760. }
  761. // Re-calculate this every time.
  762. sLowestLoadableImplInterest = 0.0f;
  763. // Only do this calculation if we've hit the impl count limit -- up until that point we always need to load media data.
  764. if(lowest_interest_loadable && (impl_count_total >= (int)max_instances))
  765. {
  766. // Get the interest value of this impl's object for use by isInterestingEnough
  767. LLVOVolume *object = lowest_interest_loadable->getSomeObject();
  768. if(object)
  769. {
  770. // NOTE: Don't use getMediaInterest() here.  We want the pixel area, not the total media interest,
  771. //  so that we match up with the calculation done in LLMediaDataClient.
  772. sLowestLoadableImplInterest = object->getPixelArea();
  773. }
  774. }
  775. if(gSavedSettings.getBOOL("MediaPerformanceManagerDebug"))
  776. {
  777. // Give impls the same ordering as the priority list
  778. // they're already in the right order for this.
  779. }
  780. else
  781. {
  782. // Use a distance-based sort for proximity values.  
  783. std::stable_sort(proximity_order.begin(), proximity_order.end(), proximity_comparitor);
  784. }
  785. // Transfer the proximity order to the proximity fields in the objects.
  786. for(int i = 0; i < (int)proximity_order.size(); i++)
  787. {
  788. proximity_order[i]->mProximity = i;
  789. }
  790. LL_DEBUGS("PluginPriority") << "Total reported CPU usage is " << total_cpu << llendl;
  791. }
  792. //////////////////////////////////////////////////////////////////////////////////////////
  793. // static
  794. bool LLViewerMedia::isAnyMediaShowing()
  795. {
  796. return sAnyMediaShowing;
  797. }
  798. //////////////////////////////////////////////////////////////////////////////////////////
  799. // static
  800. void LLViewerMedia::setAllMediaEnabled(bool val)
  801. {
  802. // Set "tentative" autoplay first.  We need to do this here or else
  803. // re-enabling won't start up the media below.
  804. gSavedSettings.setBOOL("MediaTentativeAutoPlay", val);
  805. // Then 
  806. impl_list::iterator iter = sViewerMediaImplList.begin();
  807. impl_list::iterator end = sViewerMediaImplList.end();
  808. for(; iter != end; iter++)
  809. {
  810. LLViewerMediaImpl* pimpl = *iter;
  811. if (!pimpl->getUsedInUI())
  812. {
  813. pimpl->setDisabled(!val);
  814. }
  815. }
  816. // Also do Parcel Media and Parcel Audio
  817. if (val)
  818. {
  819. if (!LLViewerMedia::isParcelMediaPlaying() && LLViewerMedia::hasParcelMedia())
  820. {
  821. LLViewerParcelMedia::play(LLViewerParcelMgr::getInstance()->getAgentParcel());
  822. }
  823. if (!LLViewerMedia::isParcelAudioPlaying() && gAudiop && LLViewerMedia::hasParcelAudio())
  824. {
  825. gAudiop->startInternetStream(LLViewerMedia::getParcelAudioURL());
  826. }
  827. }
  828. else {
  829. // This actually unloads the impl, as opposed to "stop"ping the media
  830. LLViewerParcelMedia::stop();
  831. if (gAudiop) gAudiop->stopInternetStream();
  832. }
  833. }
  834. //////////////////////////////////////////////////////////////////////////////////////////
  835. // static
  836. bool LLViewerMedia::isParcelMediaPlaying()
  837. {
  838. return (LLViewerMedia::hasParcelMedia() && LLViewerParcelMedia::getParcelMedia() && LLViewerParcelMedia::getParcelMedia()->hasMedia());
  839. }
  840. /////////////////////////////////////////////////////////////////////////////////////////
  841. // static
  842. bool LLViewerMedia::isParcelAudioPlaying()
  843. {
  844. return (LLViewerMedia::hasParcelAudio() && gAudiop && LLAudioEngine::AUDIO_PLAYING == gAudiop->isInternetStreamPlaying());
  845. }
  846. bool LLViewerMedia::hasInWorldMedia()
  847. {
  848. if (! gSavedSettings.getBOOL("AudioStreamingMedia")) return false;
  849. if (sInWorldMediaDisabled) return false;
  850. impl_list::iterator iter = sViewerMediaImplList.begin();
  851. impl_list::iterator end = sViewerMediaImplList.end();
  852. // This should be quick, because there should be very few non-in-world-media impls
  853. for (; iter != end; iter++)
  854. {
  855. LLViewerMediaImpl* pimpl = *iter;
  856. if (!pimpl->getUsedInUI() && !pimpl->isParcelMedia())
  857. {
  858. // Found an in-world media impl
  859. return true;
  860. }
  861. }
  862. return false;
  863. }
  864. //////////////////////////////////////////////////////////////////////////////////////////
  865. // static
  866. bool LLViewerMedia::hasParcelMedia()
  867. {
  868. return !LLViewerParcelMedia::getURL().empty();
  869. }
  870. //////////////////////////////////////////////////////////////////////////////////////////
  871. // static
  872. bool LLViewerMedia::hasParcelAudio()
  873. {
  874. return !LLViewerMedia::getParcelAudioURL().empty();
  875. }
  876. //////////////////////////////////////////////////////////////////////////////////////////
  877. // static
  878. std::string LLViewerMedia::getParcelAudioURL()
  879. {
  880. return LLViewerParcelMgr::getInstance()->getAgentParcel()->getMusicURL();
  881. }
  882. //////////////////////////////////////////////////////////////////////////////////////////
  883. // static
  884. void LLViewerMedia::initClass()
  885. {
  886. gIdleCallbacks.addFunction(LLViewerMedia::updateMedia, NULL);
  887. sTeleportFinishConnection = LLViewerParcelMgr::getInstance()->
  888. setTeleportFinishedCallback(boost::bind(&LLViewerMedia::onTeleportFinished));
  889. }
  890. //////////////////////////////////////////////////////////////////////////////////////////
  891. // static
  892. void LLViewerMedia::cleanupClass()
  893. {
  894. gIdleCallbacks.deleteFunction(LLViewerMedia::updateMedia, NULL);
  895. sTeleportFinishConnection.disconnect();
  896. }
  897. //////////////////////////////////////////////////////////////////////////////////////////
  898. // static
  899. void LLViewerMedia::onTeleportFinished()
  900. {
  901. // On teleport, clear this setting (i.e. set it to true)
  902. gSavedSettings.setBOOL("MediaTentativeAutoPlay", true);
  903. }
  904. //////////////////////////////////////////////////////////////////////////////////////////
  905. // LLViewerMediaImpl
  906. //////////////////////////////////////////////////////////////////////////////////////////
  907. LLViewerMediaImpl::LLViewerMediaImpl(   const LLUUID& texture_id, 
  908.   S32 media_width, 
  909.   S32 media_height, 
  910.   U8 media_auto_scale, 
  911.   U8 media_loop)
  912. :
  913. mMediaSource( NULL ),
  914. mMovieImageHasMips(false),
  915. mMediaWidth(media_width),
  916. mMediaHeight(media_height),
  917. mMediaAutoScale(media_auto_scale),
  918. mMediaLoop(media_loop),
  919. mNeedsNewTexture(true),
  920. mTextureUsedWidth(0),
  921. mTextureUsedHeight(0),
  922. mSuspendUpdates(false),
  923. mVisible(true),
  924. mLastSetCursor( UI_CURSOR_ARROW ),
  925. mMediaNavState( MEDIANAVSTATE_NONE ),
  926. mInterest(0.0f),
  927. mUsedInUI(false),
  928. mHasFocus(false),
  929. mPriority(LLPluginClassMedia::PRIORITY_UNLOADED),
  930. mNavigateRediscoverType(false),
  931. mNavigateServerRequest(false),
  932. mMediaSourceFailed(false),
  933. mRequestedVolume(1.0f),
  934. mIsMuted(false),
  935. mNeedsMuteCheck(false),
  936. mPreviousMediaState(MEDIA_NONE),
  937. mPreviousMediaTime(0.0f),
  938. mIsDisabled(false),
  939. mIsParcelMedia(false),
  940. mProximity(-1),
  941. mProximityDistance(0.0f),
  942. mMimeTypeProbe(NULL),
  943. mMediaAutoPlay(false),
  944. mInNearbyMediaList(false),
  945. mClearCache(false),
  946. mBackgroundColor(LLColor4::white),
  947. mNavigateSuspended(false),
  948. mNavigateSuspendedDeferred(false),
  949. mIsUpdated(false)
  950. // Set up the mute list observer if it hasn't been set up already.
  951. if(!sViewerMediaMuteListObserverInitialized)
  952. {
  953. LLMuteList::getInstance()->addObserver(&sViewerMediaMuteListObserver);
  954. sViewerMediaMuteListObserverInitialized = true;
  955. }
  956. add_media_impl(this);
  957. setTextureID(texture_id);
  958. // connect this media_impl to the media texture, creating it if it doesn't exist.0
  959. // This is necessary because we need to be able to use getMaxVirtualSize() even if the media plugin is not loaded.
  960. LLViewerMediaTexture* media_tex = LLViewerTextureManager::getMediaTexture(mTextureId);
  961. if(media_tex)
  962. {
  963. media_tex->setMediaImpl();
  964. }
  965. }
  966. //////////////////////////////////////////////////////////////////////////////////////////
  967. LLViewerMediaImpl::~LLViewerMediaImpl()
  968. {
  969. if( gEditMenuHandler == this )
  970. {
  971. gEditMenuHandler = NULL;
  972. }
  973. destroyMediaSource();
  974. LLViewerMediaTexture::removeMediaImplFromTexture(mTextureId) ;
  975. setTextureID();
  976. remove_media_impl(this);
  977. }
  978. //////////////////////////////////////////////////////////////////////////////////////////
  979. void LLViewerMediaImpl::emitEvent(LLPluginClassMedia* plugin, LLViewerMediaObserver::EMediaEvent event)
  980. {
  981. // Broadcast to observers using the superclass version
  982. LLViewerMediaEventEmitter::emitEvent(plugin, event);
  983. // If this media is on one or more LLVOVolume objects, tell them about the event as well.
  984. std::list< LLVOVolume* >::iterator iter = mObjectList.begin() ;
  985. while(iter != mObjectList.end())
  986. {
  987. LLVOVolume *self = *iter;
  988. ++iter;
  989. self->mediaEvent(this, plugin, event);
  990. }
  991. }
  992. //////////////////////////////////////////////////////////////////////////////////////////
  993. bool LLViewerMediaImpl::initializeMedia(const std::string& mime_type)
  994. {
  995. bool mimeTypeChanged = (mMimeType != mime_type);
  996. bool pluginChanged = (LLMIMETypes::implType(mCurrentMimeType) != LLMIMETypes::implType(mime_type));
  997. if(!mMediaSource || pluginChanged)
  998. {
  999. // We don't have a plugin at all, or the new mime type is handled by a different plugin than the old mime type.
  1000. (void)initializePlugin(mime_type);
  1001. }
  1002. else if(mimeTypeChanged)
  1003. {
  1004. // The same plugin should be able to handle the new media -- just update the stored mime type.
  1005. mMimeType = mime_type;
  1006. }
  1007. return (mMediaSource != NULL);
  1008. }
  1009. //////////////////////////////////////////////////////////////////////////////////////////
  1010. void LLViewerMediaImpl::createMediaSource()
  1011. {
  1012. if(mPriority == LLPluginClassMedia::PRIORITY_UNLOADED)
  1013. {
  1014. // This media shouldn't be created yet.
  1015. return;
  1016. }
  1017. if(! mMediaURL.empty())
  1018. {
  1019. navigateInternal();
  1020. }
  1021. else if(! mMimeType.empty())
  1022. {
  1023. initializeMedia(mMimeType);
  1024. }
  1025. }
  1026. //////////////////////////////////////////////////////////////////////////////////////////
  1027. void LLViewerMediaImpl::destroyMediaSource()
  1028. {
  1029. mNeedsNewTexture = true;
  1030. // Tell the viewer media texture it's no longer active
  1031. LLViewerMediaTexture* oldImage = LLViewerTextureManager::findMediaTexture( mTextureId );
  1032. if (oldImage)
  1033. {
  1034. oldImage->setPlaying(FALSE) ;
  1035. }
  1036. cancelMimeTypeProbe();
  1037. if(mMediaSource)
  1038. {
  1039. delete mMediaSource;
  1040. mMediaSource = NULL;
  1041. }
  1042. }
  1043. //////////////////////////////////////////////////////////////////////////////////////////
  1044. void LLViewerMediaImpl::setMediaType(const std::string& media_type)
  1045. {
  1046. mMimeType = media_type;
  1047. }
  1048. //////////////////////////////////////////////////////////////////////////////////////////
  1049. /*static*/
  1050. LLPluginClassMedia* LLViewerMediaImpl::newSourceFromMediaType(std::string media_type, LLPluginClassMediaOwner *owner /* may be NULL */, S32 default_width, S32 default_height)
  1051. {
  1052. std::string plugin_basename = LLMIMETypes::implType(media_type);
  1053. if(plugin_basename.empty())
  1054. {
  1055. LL_WARNS("Media") << "Couldn't find plugin for media type " << media_type << LL_ENDL;
  1056. }
  1057. else
  1058. {
  1059. std::string launcher_name = gDirUtilp->getLLPluginLauncher();
  1060. std::string plugin_name = gDirUtilp->getLLPluginFilename(plugin_basename);
  1061. std::string user_data_path = gDirUtilp->getOSUserAppDir();
  1062. user_data_path += gDirUtilp->getDirDelimiter();
  1063. // See if the plugin executable exists
  1064. llstat s;
  1065. if(LLFile::stat(launcher_name, &s))
  1066. {
  1067. LL_WARNS("Media") << "Couldn't find launcher at " << launcher_name << LL_ENDL;
  1068. }
  1069. else if(LLFile::stat(plugin_name, &s))
  1070. {
  1071. LL_WARNS("Media") << "Couldn't find plugin at " << plugin_name << LL_ENDL;
  1072. }
  1073. else
  1074. {
  1075. LLPluginClassMedia* media_source = new LLPluginClassMedia(owner);
  1076. media_source->setSize(default_width, default_height);
  1077. if (media_source->init(launcher_name, plugin_name, gSavedSettings.getBOOL("PluginAttachDebuggerToPlugins"), user_data_path))
  1078. {
  1079. return media_source;
  1080. }
  1081. else
  1082. {
  1083. LL_WARNS("Media") << "Failed to init plugin.  Destroying." << LL_ENDL;
  1084. delete media_source;
  1085. }
  1086. }
  1087. }
  1088. LL_WARNS("Plugin") << "plugin intialization failed for mime type: " << media_type << LL_ENDL;
  1089. LLSD args;
  1090. args["MIME_TYPE"] = media_type;
  1091. LLNotificationsUtil::add("NoPlugin", args);
  1092. return NULL;
  1093. }
  1094. //////////////////////////////////////////////////////////////////////////////////////////
  1095. bool LLViewerMediaImpl::initializePlugin(const std::string& media_type)
  1096. {
  1097. if(mMediaSource)
  1098. {
  1099. // Save the previous media source's last set size before destroying it.
  1100. mMediaWidth = mMediaSource->getSetWidth();
  1101. mMediaHeight = mMediaSource->getSetHeight();
  1102. }
  1103. // Always delete the old media impl first.
  1104. destroyMediaSource();
  1105. // and unconditionally set the mime type
  1106. mMimeType = media_type;
  1107. if(mPriority == LLPluginClassMedia::PRIORITY_UNLOADED)
  1108. {
  1109. // This impl should not be loaded at this time.
  1110. LL_DEBUGS("PluginPriority") << this << "Not loading (PRIORITY_UNLOADED)" << LL_ENDL;
  1111. return false;
  1112. }
  1113. // If we got here, we want to ignore previous init failures.
  1114. mMediaSourceFailed = false;
  1115. // Save the MIME type that really caused the plugin to load
  1116. mCurrentMimeType = mMimeType;
  1117. LLPluginClassMedia* media_source = newSourceFromMediaType(mMimeType, this, mMediaWidth, mMediaHeight);
  1118. if (media_source)
  1119. {
  1120. media_source->setDisableTimeout(gSavedSettings.getBOOL("DebugPluginDisableTimeout"));
  1121. media_source->setLoop(mMediaLoop);
  1122. media_source->setAutoScale(mMediaAutoScale);
  1123. media_source->setBrowserUserAgent(LLViewerMedia::getCurrentUserAgent());
  1124. media_source->focus(mHasFocus);
  1125. media_source->setBackgroundColor(mBackgroundColor);
  1126. if(mClearCache)
  1127. {
  1128. mClearCache = false;
  1129. media_source->clear_cache();
  1130. }
  1131. mMediaSource = media_source;
  1132. updateVolume();
  1133. return true;
  1134. }
  1135. // Make sure the timer doesn't try re-initing this plugin repeatedly until something else changes.
  1136. mMediaSourceFailed = true;
  1137. return false;
  1138. }
  1139. //////////////////////////////////////////////////////////////////////////////////////////
  1140. void LLViewerMediaImpl::loadURI()
  1141. {
  1142. if(mMediaSource)
  1143. {
  1144. // trim whitespace from front and back of URL - fixes EXT-5363
  1145. LLStringUtil::trim( mMediaURL );
  1146. // *HACK: we don't know if the URI coming in is properly escaped
  1147. // (the contract doesn't specify whether it is escaped or not.
  1148. // but LLQtWebKit expects it to be, so we do our best to encode
  1149. // special characters)
  1150. // The strings below were taken right from http://www.ietf.org/rfc/rfc1738.txt
  1151. // Note especially that '%' and '/' are there.
  1152. std::string uri = LLURI::escape(mMediaURL,
  1153. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
  1154. "0123456789"
  1155. "$-_.+"
  1156. "!*'(),"
  1157. "{}|\^~[]`"
  1158. "<>#%"
  1159. ";/?:@&=",
  1160. false);
  1161. llinfos << "Asking media source to load URI: " << uri << llendl;
  1162. mMediaSource->loadURI( uri );
  1163. if(mPreviousMediaState == MEDIA_PLAYING)
  1164. {
  1165. // This media was playing before this instance was unloaded.
  1166. if(mPreviousMediaTime != 0.0f)
  1167. {
  1168. // Seek back to where we left off, if possible.
  1169. seek(mPreviousMediaTime);
  1170. }
  1171. start();
  1172. }
  1173. else if(mPreviousMediaState == MEDIA_PAUSED)
  1174. {
  1175. // This media was paused before this instance was unloaded.
  1176. if(mPreviousMediaTime != 0.0f)
  1177. {
  1178. // Seek back to where we left off, if possible.
  1179. seek(mPreviousMediaTime);
  1180. }
  1181. pause();
  1182. }
  1183. else
  1184. {
  1185. // No relevant previous media play state -- if we're loading the URL, we want to start playing.
  1186. start();
  1187. }
  1188. }
  1189. }
  1190. //////////////////////////////////////////////////////////////////////////////////////////
  1191. void LLViewerMediaImpl::setSize(int width, int height)
  1192. {
  1193. mMediaWidth = width;
  1194. mMediaHeight = height;
  1195. if(mMediaSource)
  1196. {
  1197. mMediaSource->setSize(width, height);
  1198. }
  1199. }
  1200. //////////////////////////////////////////////////////////////////////////////////////////
  1201. void LLViewerMediaImpl::play()
  1202. {
  1203. // If the media source isn't there, try to initialize it and load an URL.
  1204. if(mMediaSource == NULL)
  1205. {
  1206.   if(!initializeMedia(mMimeType))
  1207. {
  1208. // This may be the case where the plugin's priority is PRIORITY_UNLOADED
  1209. return;
  1210. }
  1211. // Only do this if the media source was just loaded.
  1212. loadURI();
  1213. }
  1214. // always start the media
  1215. start();
  1216. }
  1217. //////////////////////////////////////////////////////////////////////////////////////////
  1218. void LLViewerMediaImpl::stop()
  1219. {
  1220. if(mMediaSource)
  1221. {
  1222. mMediaSource->stop();
  1223. // destroyMediaSource();
  1224. }
  1225. }
  1226. //////////////////////////////////////////////////////////////////////////////////////////
  1227. void LLViewerMediaImpl::pause()
  1228. {
  1229. if(mMediaSource)
  1230. {
  1231. mMediaSource->pause();
  1232. }
  1233. }
  1234. //////////////////////////////////////////////////////////////////////////////////////////
  1235. void LLViewerMediaImpl::start()
  1236. {
  1237. if(mMediaSource)
  1238. {
  1239. mMediaSource->start();
  1240. }
  1241. }
  1242. //////////////////////////////////////////////////////////////////////////////////////////
  1243. void LLViewerMediaImpl::seek(F32 time)
  1244. {
  1245. if(mMediaSource)
  1246. {
  1247. mMediaSource->seek(time);
  1248. }
  1249. }
  1250. //////////////////////////////////////////////////////////////////////////////////////////
  1251. void LLViewerMediaImpl::skipBack(F32 step_scale)
  1252. {
  1253. if(mMediaSource)
  1254. {
  1255. if(mMediaSource->pluginSupportsMediaTime())
  1256. {
  1257. F64 back_step = mMediaSource->getCurrentTime() - (mMediaSource->getDuration()*step_scale);
  1258. if(back_step < 0.0)
  1259. {
  1260. back_step = 0.0;
  1261. }
  1262. mMediaSource->seek(back_step);
  1263. }
  1264. }
  1265. }
  1266. //////////////////////////////////////////////////////////////////////////////////////////
  1267. void LLViewerMediaImpl::skipForward(F32 step_scale)
  1268. {
  1269. if(mMediaSource)
  1270. {
  1271. if(mMediaSource->pluginSupportsMediaTime())
  1272. {
  1273. F64 forward_step = mMediaSource->getCurrentTime() + (mMediaSource->getDuration()*step_scale);
  1274. if(forward_step > mMediaSource->getDuration())
  1275. {
  1276. forward_step = mMediaSource->getDuration();
  1277. }
  1278. mMediaSource->seek(forward_step);
  1279. }
  1280. }
  1281. }
  1282. //////////////////////////////////////////////////////////////////////////////////////////
  1283. void LLViewerMediaImpl::setVolume(F32 volume)
  1284. {
  1285. mRequestedVolume = volume;
  1286. updateVolume();
  1287. }
  1288. //////////////////////////////////////////////////////////////////////////////////////////
  1289. void LLViewerMediaImpl::updateVolume()
  1290. {
  1291. if(mMediaSource)
  1292. {
  1293. mMediaSource->setVolume(mRequestedVolume * LLViewerMedia::getVolume());
  1294. }
  1295. }
  1296. //////////////////////////////////////////////////////////////////////////////////////////
  1297. F32 LLViewerMediaImpl::getVolume()
  1298. {
  1299. return mRequestedVolume;
  1300. }
  1301. //////////////////////////////////////////////////////////////////////////////////////////
  1302. void LLViewerMediaImpl::focus(bool focus)
  1303. {
  1304. mHasFocus = focus;
  1305. if (mMediaSource)
  1306. {
  1307. // call focus just for the hell of it, even though this apopears to be a nop
  1308. mMediaSource->focus(focus);
  1309. if (focus)
  1310. {
  1311. // spoof a mouse click to *actually* pass focus
  1312. // Don't do this anymore -- it actually clicks through now.
  1313. // mMediaSource->mouseEvent(LLPluginClassMedia::MOUSE_EVENT_DOWN, 1, 1, 0);
  1314. // mMediaSource->mouseEvent(LLPluginClassMedia::MOUSE_EVENT_UP, 1, 1, 0);
  1315. }
  1316. }
  1317. }
  1318. //////////////////////////////////////////////////////////////////////////////////////////
  1319. bool LLViewerMediaImpl::hasFocus() const
  1320. {
  1321. // FIXME: This might be able to be a bit smarter by hooking into LLViewerMediaFocus, etc.
  1322. return mHasFocus;
  1323. }
  1324. std::string LLViewerMediaImpl::getCurrentMediaURL()
  1325. {
  1326. if(!mCurrentMediaURL.empty())
  1327. {
  1328. return mCurrentMediaURL;
  1329. }
  1330. return mMediaURL;
  1331. }
  1332. //////////////////////////////////////////////////////////////////////////////////////////
  1333. void LLViewerMediaImpl::clearCache()
  1334. {
  1335. if(mMediaSource)
  1336. {
  1337. mMediaSource->clear_cache();
  1338. }
  1339. else
  1340. {
  1341. mClearCache = true;
  1342. }
  1343. }
  1344. //////////////////////////////////////////////////////////////////////////////////////////
  1345. void LLViewerMediaImpl::mouseDown(S32 x, S32 y, MASK mask, S32 button)
  1346. {
  1347. scaleMouse(&x, &y);
  1348. mLastMouseX = x;
  1349. mLastMouseY = y;
  1350. // llinfos << "mouse down (" << x << ", " << y << ")" << llendl;
  1351. if (mMediaSource)
  1352. {
  1353. mMediaSource->mouseEvent(LLPluginClassMedia::MOUSE_EVENT_DOWN, button, x, y, mask);
  1354. }
  1355. }
  1356. //////////////////////////////////////////////////////////////////////////////////////////
  1357. void LLViewerMediaImpl::mouseUp(S32 x, S32 y, MASK mask, S32 button)
  1358. {
  1359. scaleMouse(&x, &y);
  1360. mLastMouseX = x;
  1361. mLastMouseY = y;
  1362. // llinfos << "mouse up (" << x << ", " << y << ")" << llendl;
  1363. if (mMediaSource)
  1364. {
  1365. mMediaSource->mouseEvent(LLPluginClassMedia::MOUSE_EVENT_UP, button, x, y, mask);
  1366. }
  1367. }
  1368. //////////////////////////////////////////////////////////////////////////////////////////
  1369. void LLViewerMediaImpl::mouseMove(S32 x, S32 y, MASK mask)
  1370. {
  1371.     scaleMouse(&x, &y);
  1372. mLastMouseX = x;
  1373. mLastMouseY = y;
  1374. // llinfos << "mouse move (" << x << ", " << y << ")" << llendl;
  1375. if (mMediaSource)
  1376. {
  1377. mMediaSource->mouseEvent(LLPluginClassMedia::MOUSE_EVENT_MOVE, 0, x, y, mask);
  1378. }
  1379. }
  1380. //////////////////////////////////////////////////////////////////////////////////////////
  1381. //static 
  1382. void LLViewerMediaImpl::scaleTextureCoords(const LLVector2& texture_coords, S32 *x, S32 *y)
  1383. {
  1384. F32 texture_x = texture_coords.mV[VX];
  1385. F32 texture_y = texture_coords.mV[VY];
  1386. // Deal with repeating textures by wrapping the coordinates into the range [0, 1.0)
  1387. texture_x = fmodf(texture_x, 1.0f);
  1388. if(texture_x < 0.0f)
  1389. texture_x = 1.0 + texture_x;
  1390. texture_y = fmodf(texture_y, 1.0f);
  1391. if(texture_y < 0.0f)
  1392. texture_y = 1.0 + texture_y;
  1393. // scale x and y to texel units.
  1394. *x = llround(texture_x * mMediaSource->getTextureWidth());
  1395. *y = llround((1.0f - texture_y) * mMediaSource->getTextureHeight());
  1396. // Adjust for the difference between the actual texture height and the amount of the texture in use.
  1397. *y -= (mMediaSource->getTextureHeight() - mMediaSource->getHeight());
  1398. }
  1399. //////////////////////////////////////////////////////////////////////////////////////////
  1400. void LLViewerMediaImpl::mouseDown(const LLVector2& texture_coords, MASK mask, S32 button)
  1401. {
  1402. if(mMediaSource)
  1403. {
  1404. S32 x, y;
  1405. scaleTextureCoords(texture_coords, &x, &y);
  1406. mouseDown(x, y, mask, button);
  1407. }
  1408. }
  1409. void LLViewerMediaImpl::mouseUp(const LLVector2& texture_coords, MASK mask, S32 button)
  1410. {
  1411. if(mMediaSource)
  1412. {
  1413. S32 x, y;
  1414. scaleTextureCoords(texture_coords, &x, &y);
  1415. mouseUp(x, y, mask, button);
  1416. }
  1417. }
  1418. void LLViewerMediaImpl::mouseMove(const LLVector2& texture_coords, MASK mask)
  1419. {
  1420. if(mMediaSource)
  1421. {
  1422. S32 x, y;
  1423. scaleTextureCoords(texture_coords, &x, &y);
  1424. mouseMove(x, y, mask);
  1425. }
  1426. }
  1427. //////////////////////////////////////////////////////////////////////////////////////////
  1428. void LLViewerMediaImpl::mouseDoubleClick(S32 x, S32 y, MASK mask, S32 button)
  1429. {
  1430. scaleMouse(&x, &y);
  1431. mLastMouseX = x;
  1432. mLastMouseY = y;
  1433. if (mMediaSource)
  1434. {
  1435. mMediaSource->mouseEvent(LLPluginClassMedia::MOUSE_EVENT_DOUBLE_CLICK, button, x, y, mask);
  1436. }
  1437. }
  1438. //////////////////////////////////////////////////////////////////////////////////////////
  1439. void LLViewerMediaImpl::scrollWheel(S32 x, S32 y, MASK mask)
  1440. {
  1441. scaleMouse(&x, &y);
  1442. mLastMouseX = x;
  1443. mLastMouseY = y;
  1444. if (mMediaSource)
  1445. {
  1446. mMediaSource->scrollEvent(x, y, mask);
  1447. }
  1448. }
  1449. //////////////////////////////////////////////////////////////////////////////////////////
  1450. void LLViewerMediaImpl::onMouseCaptureLost()
  1451. {
  1452. if (mMediaSource)
  1453. {
  1454. mMediaSource->mouseEvent(LLPluginClassMedia::MOUSE_EVENT_UP, 0, mLastMouseX, mLastMouseY, 0);
  1455. }
  1456. }
  1457. //////////////////////////////////////////////////////////////////////////////////////////
  1458. BOOL LLViewerMediaImpl::handleMouseUp(S32 x, S32 y, MASK mask) 
  1459. // NOTE: this is called when the mouse is released when we have capture.
  1460. // Due to the way mouse coordinates are mapped to the object, we can't use the x and y coordinates that come in with the event.
  1461. if(hasMouseCapture())
  1462. {
  1463. // Release the mouse -- this will also send a mouseup to the media
  1464. gFocusMgr.setMouseCapture( FALSE );
  1465. }
  1466. return TRUE; 
  1467. }
  1468. //////////////////////////////////////////////////////////////////////////////////////////
  1469. std::string LLViewerMediaImpl::getName() const 
  1470. if (mMediaSource)
  1471. {
  1472. return mMediaSource->getMediaName();
  1473. }
  1474. return LLStringUtil::null; 
  1475. };
  1476. //////////////////////////////////////////////////////////////////////////////////////////
  1477. void LLViewerMediaImpl::navigateBack()
  1478. {
  1479. if (mMediaSource)
  1480. {
  1481. mMediaSource->browse_back();
  1482. }
  1483. }
  1484. //////////////////////////////////////////////////////////////////////////////////////////
  1485. void LLViewerMediaImpl::navigateForward()
  1486. {
  1487. if (mMediaSource)
  1488. {
  1489. mMediaSource->browse_forward();
  1490. }
  1491. }
  1492. //////////////////////////////////////////////////////////////////////////////////////////
  1493. void LLViewerMediaImpl::navigateReload()
  1494. {
  1495. navigateTo(getCurrentMediaURL(), "", true, false);
  1496. }
  1497. //////////////////////////////////////////////////////////////////////////////////////////
  1498. void LLViewerMediaImpl::navigateHome()
  1499. {
  1500. navigateTo(mHomeURL, "", true, false);
  1501. }
  1502. //////////////////////////////////////////////////////////////////////////////////////////
  1503. void LLViewerMediaImpl::unload()
  1504. {
  1505. // Unload the media impl and clear its state.
  1506. destroyMediaSource();
  1507. resetPreviousMediaState();
  1508. mMediaURL.clear();
  1509. mMimeType.clear();
  1510. mCurrentMediaURL.clear();
  1511. mCurrentMimeType.clear();
  1512. }
  1513. //////////////////////////////////////////////////////////////////////////////////////////
  1514. void LLViewerMediaImpl::navigateTo(const std::string& url, const std::string& mime_type,  bool rediscover_type, bool server_request)
  1515. {
  1516. cancelMimeTypeProbe();
  1517. if(mMediaURL != url)
  1518. {
  1519. // Don't carry media play state across distinct URLs.
  1520. resetPreviousMediaState();
  1521. }
  1522. // Always set the current URL and MIME type.
  1523. mMediaURL = url;
  1524. mMimeType = mime_type;
  1525. // Clear the current media URL, since it will no longer be correct.
  1526. mCurrentMediaURL.clear();
  1527. // if mime type discovery was requested, we'll need to do it when the media loads
  1528. mNavigateRediscoverType = rediscover_type;
  1529. // and if this was a server request, the navigate on load will also need to be one.
  1530. mNavigateServerRequest = server_request;
  1531. // An explicit navigate resets the "failed" flag.
  1532. mMediaSourceFailed = false;
  1533. if(mPriority == LLPluginClassMedia::PRIORITY_UNLOADED)
  1534. {
  1535. // Helpful to have media urls in log file. Shouldn't be spammy.
  1536. llinfos << "NOT LOADING media id= " << mTextureId << " url=" << url << " mime_type=" << mime_type << llendl;
  1537. // This impl should not be loaded at this time.
  1538. LL_DEBUGS("PluginPriority") << this << "Not loading (PRIORITY_UNLOADED)" << LL_ENDL;
  1539. return;
  1540. }
  1541. navigateInternal();
  1542. }
  1543. //////////////////////////////////////////////////////////////////////////////////////////
  1544. void LLViewerMediaImpl::navigateInternal()
  1545. {
  1546. // Helpful to have media urls in log file. Shouldn't be spammy.
  1547. llinfos << "media id= " << mTextureId << " url=" << mMediaURL << " mime_type=" << mMimeType << llendl;
  1548. if(mNavigateSuspended)
  1549. {
  1550. llwarns << "Deferring navigate." << llendl;
  1551. mNavigateSuspendedDeferred = true;
  1552. return;
  1553. }
  1554. if(mMimeTypeProbe != NULL)
  1555. {
  1556. llwarns << "MIME type probe already in progress -- bailing out." << llendl;
  1557. return;
  1558. }
  1559. if(mNavigateServerRequest)
  1560. {
  1561. setNavState(MEDIANAVSTATE_SERVER_SENT);
  1562. }
  1563. else
  1564. {
  1565. setNavState(MEDIANAVSTATE_NONE);
  1566. }
  1567. // If the caller has specified a non-empty MIME type, look that up in our MIME types list.
  1568. // If we have a plugin for that MIME type, use that instead of attempting auto-discovery.
  1569. // This helps in supporting legacy media content where the server the media resides on returns a bogus MIME type
  1570. // but the parcel owner has correctly set the MIME type in the parcel media settings.
  1571. if(!mMimeType.empty() && (mMimeType != "none/none"))
  1572. {
  1573. std::string plugin_basename = LLMIMETypes::implType(mMimeType);
  1574. if(!plugin_basename.empty())
  1575. {
  1576. // We have a plugin for this mime type
  1577. mNavigateRediscoverType = false;
  1578. }
  1579. }
  1580. if(mNavigateRediscoverType)
  1581. {
  1582. LLURI uri(mMediaURL);
  1583. std::string scheme = uri.scheme();
  1584. if(scheme.empty() || "http" == scheme || "https" == scheme)
  1585. {
  1586. // If we don't set an Accept header, LLHTTPClient will add one like this:
  1587. //    Accept: application/llsd+xml
  1588. // which is really not what we want.
  1589. LLSD headers = LLSD::emptyMap();
  1590. headers["Accept"] = "*/*";
  1591. LLHTTPClient::getHeaderOnly( mMediaURL, new LLMimeDiscoveryResponder(this), headers, 10.0f);
  1592. }
  1593. else if("data" == scheme || "file" == scheme || "about" == scheme)
  1594. {
  1595. // FIXME: figure out how to really discover the type for these schemes
  1596. // We use "data" internally for a text/html url for loading the login screen
  1597. if(initializeMedia("text/html"))
  1598. {
  1599. loadURI();
  1600. }
  1601. }
  1602. else
  1603. {
  1604. // This catches 'rtsp://' urls
  1605. if(initializeMedia(scheme))
  1606. {
  1607. loadURI();
  1608. }
  1609. }
  1610. }
  1611. else if(initializeMedia(mMimeType))
  1612. {
  1613. loadURI();
  1614. }
  1615. else
  1616. {
  1617. LL_WARNS("Media") << "Couldn't navigate to: " << mMediaURL << " as there is no media type for: " << mMimeType << LL_ENDL;
  1618. }
  1619. }
  1620. //////////////////////////////////////////////////////////////////////////////////////////
  1621. void LLViewerMediaImpl::navigateStop()
  1622. {
  1623. if(mMediaSource)
  1624. {
  1625. mMediaSource->browse_stop();
  1626. }
  1627. }
  1628. //////////////////////////////////////////////////////////////////////////////////////////
  1629. bool LLViewerMediaImpl::handleKeyHere(KEY key, MASK mask)
  1630. {
  1631. bool result = false;
  1632. if (mMediaSource)
  1633. {
  1634. // FIXME: THIS IS SO WRONG.
  1635. // Menu keys should be handled by the menu system and not passed to UI elements, but this is how LLTextEditor and LLLineEditor do it...
  1636. if( MASK_CONTROL & mask )
  1637. {
  1638. if( 'C' == key )
  1639. {
  1640. mMediaSource->copy();
  1641. result = true;
  1642. }
  1643. else
  1644. if( 'V' == key )
  1645. {
  1646. mMediaSource->paste();
  1647. result = true;
  1648. }
  1649. else
  1650. if( 'X' == key )
  1651. {
  1652. mMediaSource->cut();
  1653. result = true;
  1654. }
  1655. }
  1656. if(!result)
  1657. {
  1658. LLSD native_key_data = gViewerWindow->getWindow()->getNativeKeyData();
  1659. result = mMediaSource->keyEvent(LLPluginClassMedia::KEY_EVENT_DOWN ,key, mask, native_key_data);
  1660. // Since the viewer internal event dispatching doesn't give us key-up events, simulate one here.
  1661. (void)mMediaSource->keyEvent(LLPluginClassMedia::KEY_EVENT_UP ,key, mask, native_key_data);
  1662. }
  1663. }
  1664. return result;
  1665. }
  1666. //////////////////////////////////////////////////////////////////////////////////////////
  1667. bool LLViewerMediaImpl::handleUnicodeCharHere(llwchar uni_char)
  1668. {
  1669. bool result = false;
  1670. if (mMediaSource)
  1671. {
  1672. // only accept 'printable' characters, sigh...
  1673. if (uni_char >= 32 // discard 'control' characters
  1674. && uni_char != 127) // SDL thinks this is 'delete' - yuck.
  1675. {
  1676. LLSD native_key_data = gViewerWindow->getWindow()->getNativeKeyData();
  1677. mMediaSource->textInput(wstring_to_utf8str(LLWString(1, uni_char)), gKeyboard->currentMask(FALSE), native_key_data);
  1678. }
  1679. }
  1680. return result;
  1681. }
  1682. //////////////////////////////////////////////////////////////////////////////////////////
  1683. bool LLViewerMediaImpl::canNavigateForward()
  1684. {
  1685. BOOL result = FALSE;
  1686. if (mMediaSource)
  1687. {
  1688. result = mMediaSource->getHistoryForwardAvailable();
  1689. }
  1690. return result;
  1691. }
  1692. //////////////////////////////////////////////////////////////////////////////////////////
  1693. bool LLViewerMediaImpl::canNavigateBack()
  1694. {
  1695. BOOL result = FALSE;
  1696. if (mMediaSource)
  1697. {
  1698. result = mMediaSource->getHistoryBackAvailable();
  1699. }
  1700. return result;
  1701. }
  1702. //////////////////////////////////////////////////////////////////////////////////////////
  1703. void LLViewerMediaImpl::update()
  1704. {
  1705. if(mMediaSource == NULL)
  1706. {
  1707. if(mPriority == LLPluginClassMedia::PRIORITY_UNLOADED)
  1708. {
  1709. // This media source should not be loaded.
  1710. }
  1711. else if(mPriority <= LLPluginClassMedia::PRIORITY_SLIDESHOW)
  1712. {
  1713. // Don't load new instances that are at PRIORITY_SLIDESHOW or below.  They're just kept around to preserve state.
  1714. }
  1715. else if(mMimeTypeProbe != NULL)
  1716. {
  1717. // this media source is doing a MIME type probe -- don't try loading it again.
  1718. }
  1719. else
  1720. {
  1721. // This media may need to be loaded.
  1722. if(sMediaCreateTimer.hasExpired())
  1723. {
  1724. LL_DEBUGS("PluginPriority") << this << ": creating media based on timer expiration" << LL_ENDL;
  1725. createMediaSource();
  1726. sMediaCreateTimer.setTimerExpirySec(LLVIEWERMEDIA_CREATE_DELAY);
  1727. }
  1728. else
  1729. {
  1730. LL_DEBUGS("PluginPriority") << this << ": NOT creating media (waiting on timer)" << LL_ENDL;
  1731. }
  1732. }
  1733. }
  1734. if(mMediaSource == NULL)
  1735. {
  1736. return;
  1737. }
  1738. // Make sure a navigate doesn't happen during the idle -- it can cause mMediaSource to get destroyed, which can cause a crash.
  1739. setNavigateSuspended(true);
  1740. mMediaSource->idle();
  1741. setNavigateSuspended(false);
  1742. if(mMediaSource == NULL)
  1743. {
  1744. return;
  1745. }
  1746. if(mMediaSource->isPluginExited())
  1747. {
  1748. resetPreviousMediaState();
  1749. destroyMediaSource();
  1750. return;
  1751. }
  1752. if(!mMediaSource->textureValid())
  1753. {
  1754. return;
  1755. }
  1756. if(mSuspendUpdates || !mVisible)
  1757. {
  1758. return;
  1759. }
  1760. LLViewerMediaTexture* placeholder_image = updatePlaceholderImage();
  1761. if(placeholder_image)
  1762. {
  1763. LLRect dirty_rect;
  1764. // Since we're updating this texture, we know it's playing.  Tell the texture to do its replacement magic so it gets rendered.
  1765. placeholder_image->setPlaying(TRUE);
  1766. if(mMediaSource->getDirty(&dirty_rect))
  1767. {
  1768. // Constrain the dirty rect to be inside the texture
  1769. S32 x_pos = llmax(dirty_rect.mLeft, 0);
  1770. S32 y_pos = llmax(dirty_rect.mBottom, 0);
  1771. S32 width = llmin(dirty_rect.mRight, placeholder_image->getWidth()) - x_pos;
  1772. S32 height = llmin(dirty_rect.mTop, placeholder_image->getHeight()) - y_pos;
  1773. if(width > 0 && height > 0)
  1774. {
  1775. U8* data = mMediaSource->getBitsData();
  1776. // Offset the pixels pointer to match x_pos and y_pos
  1777. data += ( x_pos * mMediaSource->getTextureDepth() * mMediaSource->getBitsWidth() );
  1778. data += ( y_pos * mMediaSource->getTextureDepth() );
  1779. placeholder_image->setSubImage(
  1780. data, 
  1781. mMediaSource->getBitsWidth(), 
  1782. mMediaSource->getBitsHeight(),
  1783. x_pos, 
  1784. y_pos, 
  1785. width, 
  1786. height);
  1787. }
  1788. mMediaSource->resetDirty();
  1789. }
  1790. }
  1791. }
  1792. //////////////////////////////////////////////////////////////////////////////////////////
  1793. void LLViewerMediaImpl::updateImagesMediaStreams()
  1794. {
  1795. }
  1796. //////////////////////////////////////////////////////////////////////////////////////////
  1797. LLViewerMediaTexture* LLViewerMediaImpl::updatePlaceholderImage()
  1798. {
  1799. if(mTextureId.isNull())
  1800. {
  1801. // The code that created this instance will read from the plugin's bits.
  1802. return NULL;
  1803. }
  1804. LLViewerMediaTexture* placeholder_image = LLViewerTextureManager::getMediaTexture( mTextureId );
  1805. if (mNeedsNewTexture 
  1806. || placeholder_image->getUseMipMaps()
  1807. || (placeholder_image->getWidth() != mMediaSource->getTextureWidth())
  1808. || (placeholder_image->getHeight() != mMediaSource->getTextureHeight())
  1809. || (mTextureUsedWidth != mMediaSource->getWidth())
  1810. || (mTextureUsedHeight != mMediaSource->getHeight())
  1811. )
  1812. {
  1813. LL_DEBUGS("Media") << "initializing media placeholder" << LL_ENDL;
  1814. LL_DEBUGS("Media") << "movie image id " << mTextureId << LL_ENDL;
  1815. int texture_width = mMediaSource->getTextureWidth();
  1816. int texture_height = mMediaSource->getTextureHeight();
  1817. int texture_depth = mMediaSource->getTextureDepth();
  1818. // MEDIAOPT: check to see if size actually changed before doing work
  1819. placeholder_image->destroyGLTexture();
  1820. // MEDIAOPT: apparently just calling setUseMipMaps(FALSE) doesn't work?
  1821. placeholder_image->reinit(FALSE); // probably not needed
  1822. // MEDIAOPT: seems insane that we actually have to make an imageraw then
  1823. // immediately discard it
  1824. LLPointer<LLImageRaw> raw = new LLImageRaw(texture_width, texture_height, texture_depth);
  1825. // Clear the texture to the background color, ignoring alpha.
  1826. // convert background color channels from [0.0, 1.0] to [0, 255];
  1827. raw->clear(int(mBackgroundColor.mV[VX] * 255.0f), int(mBackgroundColor.mV[VY] * 255.0f), int(mBackgroundColor.mV[VZ] * 255.0f), 0xff);
  1828. int discard_level = 0;
  1829. // ask media source for correct GL image format constants
  1830. placeholder_image->setExplicitFormat(mMediaSource->getTextureFormatInternal(),
  1831.  mMediaSource->getTextureFormatPrimary(),
  1832.  mMediaSource->getTextureFormatType(),
  1833.  mMediaSource->getTextureFormatSwapBytes());
  1834. placeholder_image->createGLTexture(discard_level, raw);
  1835. // MEDIAOPT: set this dynamically on play/stop
  1836. // FIXME
  1837. // placeholder_image->mIsMediaTexture = true;
  1838. mNeedsNewTexture = false;
  1839. // If the amount of the texture being drawn by the media goes down in either width or height, 
  1840. // recreate the texture to avoid leaving parts of the old image behind.
  1841. mTextureUsedWidth = mMediaSource->getWidth();
  1842. mTextureUsedHeight = mMediaSource->getHeight();
  1843. }
  1844. return placeholder_image;
  1845. }
  1846. //////////////////////////////////////////////////////////////////////////////////////////
  1847. LLUUID LLViewerMediaImpl::getMediaTextureID() const
  1848. {
  1849. return mTextureId;
  1850. }
  1851. //////////////////////////////////////////////////////////////////////////////////////////
  1852. void LLViewerMediaImpl::setVisible(bool visible)
  1853. {
  1854. mVisible = visible;
  1855. if(mVisible)
  1856. {
  1857. if(mMediaSource && mMediaSource->isPluginExited())
  1858. {
  1859. destroyMediaSource();
  1860. }
  1861. if(!mMediaSource)
  1862. {
  1863. createMediaSource();
  1864. }
  1865. }
  1866. }
  1867. //////////////////////////////////////////////////////////////////////////////////////////
  1868. void LLViewerMediaImpl::mouseCapture()
  1869. {
  1870. gFocusMgr.setMouseCapture(this);
  1871. }
  1872. //////////////////////////////////////////////////////////////////////////////////////////
  1873. void LLViewerMediaImpl::scaleMouse(S32 *mouse_x, S32 *mouse_y)
  1874. {
  1875. #if 0
  1876. S32 media_width, media_height;
  1877. S32 texture_width, texture_height;
  1878. getMediaSize( &media_width, &media_height );
  1879. getTextureSize( &texture_width, &texture_height );
  1880. S32 y_delta = texture_height - media_height;
  1881. *mouse_y -= y_delta;
  1882. #endif
  1883. }
  1884. //////////////////////////////////////////////////////////////////////////////////////////
  1885. bool LLViewerMediaImpl::isMediaTimeBased()
  1886. {
  1887. bool result = false;
  1888. if(mMediaSource)
  1889. {
  1890. result = mMediaSource->pluginSupportsMediaTime();
  1891. }
  1892. return result;
  1893. }
  1894. //////////////////////////////////////////////////////////////////////////////////////////
  1895. bool LLViewerMediaImpl::isMediaPlaying()
  1896. {
  1897. bool result = false;
  1898. if(mMediaSource)
  1899. {
  1900. EMediaStatus status = mMediaSource->getStatus();
  1901. if(status == MEDIA_PLAYING || status == MEDIA_LOADING)
  1902. result = true;
  1903. }
  1904. return result;
  1905. }
  1906. //////////////////////////////////////////////////////////////////////////////////////////
  1907. bool LLViewerMediaImpl::isMediaPaused()
  1908. {
  1909. bool result = false;
  1910. if(mMediaSource)
  1911. {
  1912. if(mMediaSource->getStatus() == MEDIA_PAUSED)
  1913. result = true;
  1914. }
  1915. return result;
  1916. }
  1917. //////////////////////////////////////////////////////////////////////////////////////////
  1918. //
  1919. bool LLViewerMediaImpl::hasMedia() const
  1920. {
  1921. return mMediaSource != NULL;
  1922. }
  1923. //////////////////////////////////////////////////////////////////////////////////////////
  1924. //
  1925. void LLViewerMediaImpl::resetPreviousMediaState()
  1926. {
  1927. mPreviousMediaState = MEDIA_NONE;
  1928. mPreviousMediaTime = 0.0f;
  1929. }
  1930. //////////////////////////////////////////////////////////////////////////////////////////
  1931. //
  1932. void LLViewerMediaImpl::setDisabled(bool disabled, bool forcePlayOnEnable)
  1933. {
  1934. if(mIsDisabled != disabled)
  1935. {
  1936. // Only do this on actual state transitions.
  1937. mIsDisabled = disabled;
  1938. if(mIsDisabled)
  1939. {
  1940. // We just disabled this media.  Clear all state.
  1941. unload();
  1942. }
  1943. else
  1944. {
  1945. // We just (re)enabled this media.  Do a navigate if auto-play is in order.
  1946. if(isAutoPlayable() || forcePlayOnEnable)
  1947. {
  1948. navigateTo(mMediaEntryURL, "", true, true);
  1949. }
  1950. }
  1951. }
  1952. };
  1953. //////////////////////////////////////////////////////////////////////////////////////////
  1954. //
  1955. bool LLViewerMediaImpl::isForcedUnloaded() const
  1956. {
  1957. if(mIsMuted || mMediaSourceFailed || mIsDisabled)
  1958. {
  1959. return true;
  1960. }
  1961. if(sInWorldMediaDisabled)
  1962. {
  1963. // When inworld media is disabled, all instances that aren't marked as "used in UI" will not be loaded.
  1964. if(!mUsedInUI)
  1965. {
  1966. return true;
  1967. }
  1968. }
  1969. // If this media's class is not supposed to be shown, unload
  1970. if (!shouldShowBasedOnClass())
  1971. {
  1972. return true;
  1973. }
  1974. return false;
  1975. }
  1976. //////////////////////////////////////////////////////////////////////////////////////////
  1977. //
  1978. bool LLViewerMediaImpl::isPlayable() const
  1979. {
  1980. if(isForcedUnloaded())
  1981. {
  1982. // All of the forced-unloaded criteria also imply not playable.
  1983. return false;
  1984. }
  1985. if(hasMedia())
  1986. {
  1987. // Anything that's already playing is, by definition, playable.
  1988. return true;
  1989. }
  1990. if(!mMediaURL.empty())
  1991. {
  1992. // If something has navigated the instance, it's ready to be played.
  1993. return true;
  1994. }
  1995. return false;
  1996. }
  1997. //////////////////////////////////////////////////////////////////////////////////////////
  1998. void LLViewerMediaImpl::handleMediaEvent(LLPluginClassMedia* plugin, LLPluginClassMediaOwner::EMediaEvent event)
  1999. {
  2000. switch(event)
  2001. {
  2002. case MEDIA_EVENT_PLUGIN_FAILED_LAUNCH:
  2003. {
  2004. // The plugin failed to load properly.  Make sure the timer doesn't retry.
  2005. // TODO: maybe mark this plugin as not loadable somehow?
  2006. mMediaSourceFailed = true;
  2007. // Reset the last known state of the media to defaults.
  2008. resetPreviousMediaState();
  2009. // TODO: may want a different message for this case?
  2010. LLSD args;
  2011. args["PLUGIN"] = LLMIMETypes::implType(mCurrentMimeType);
  2012. LLNotificationsUtil::add("MediaPluginFailed", args);
  2013. }
  2014. break;
  2015. case MEDIA_EVENT_PLUGIN_FAILED:
  2016. {
  2017. // The plugin crashed.
  2018. mMediaSourceFailed = true;
  2019. // Reset the last known state of the media to defaults.
  2020. resetPreviousMediaState();
  2021. LLSD args;
  2022. args["PLUGIN"] = LLMIMETypes::implType(mCurrentMimeType);
  2023. // SJB: This is getting called every frame if the plugin fails to load, continuously respawining the alert!
  2024. //LLNotificationsUtil::add("MediaPluginFailed", args);
  2025. }
  2026. break;
  2027. case MEDIA_EVENT_CURSOR_CHANGED:
  2028. {
  2029. LL_DEBUGS("Media") <<  "Media event:  MEDIA_EVENT_CURSOR_CHANGED, new cursor is " << plugin->getCursorName() << LL_ENDL;
  2030. std::string cursor = plugin->getCursorName();
  2031. if(cursor == "arrow")
  2032. mLastSetCursor = UI_CURSOR_ARROW;
  2033. else if(cursor == "ibeam")
  2034. mLastSetCursor = UI_CURSOR_IBEAM;
  2035. else if(cursor == "splith")
  2036. mLastSetCursor = UI_CURSOR_SIZEWE;
  2037. else if(cursor == "splitv")
  2038. mLastSetCursor = UI_CURSOR_SIZENS;
  2039. else if(cursor == "hand")
  2040. mLastSetCursor = UI_CURSOR_HAND;
  2041. else // for anything else, default to the arrow
  2042. mLastSetCursor = UI_CURSOR_ARROW;
  2043. }
  2044. break;
  2045. case LLViewerMediaObserver::MEDIA_EVENT_NAVIGATE_BEGIN:
  2046. {
  2047. LL_DEBUGS("Media") << "MEDIA_EVENT_NAVIGATE_BEGIN, uri is: " << plugin->getNavigateURI() << LL_ENDL;
  2048. if(getNavState() == MEDIANAVSTATE_SERVER_SENT)
  2049. {
  2050. setNavState(MEDIANAVSTATE_SERVER_BEGUN);
  2051. }
  2052. else
  2053. {
  2054. setNavState(MEDIANAVSTATE_BEGUN);
  2055. }
  2056. }
  2057. break;
  2058. case LLViewerMediaObserver::MEDIA_EVENT_NAVIGATE_COMPLETE:
  2059. {
  2060. LL_DEBUGS("Media") << "MEDIA_EVENT_NAVIGATE_COMPLETE, uri is: " << plugin->getNavigateURI() << LL_ENDL;
  2061. if(getNavState() == MEDIANAVSTATE_BEGUN)
  2062. {
  2063. mCurrentMediaURL = plugin->getNavigateURI();
  2064. setNavState(MEDIANAVSTATE_COMPLETE_BEFORE_LOCATION_CHANGED);
  2065. }
  2066. else if(getNavState() == MEDIANAVSTATE_SERVER_BEGUN)
  2067. {
  2068. mCurrentMediaURL = plugin->getNavigateURI();
  2069. setNavState(MEDIANAVSTATE_SERVER_COMPLETE_BEFORE_LOCATION_CHANGED);
  2070. }
  2071. else
  2072. {
  2073. // all other cases need to leave the state alone.
  2074. }
  2075. }
  2076. break;
  2077. case LLViewerMediaObserver::MEDIA_EVENT_LOCATION_CHANGED:
  2078. {
  2079. LL_DEBUGS("Media") << "MEDIA_EVENT_LOCATION_CHANGED, uri is: " << plugin->getLocation() << LL_ENDL;
  2080. if(getNavState() == MEDIANAVSTATE_BEGUN)
  2081. {
  2082. mCurrentMediaURL = plugin->getLocation();
  2083. setNavState(MEDIANAVSTATE_FIRST_LOCATION_CHANGED);
  2084. }
  2085. else if(getNavState() == MEDIANAVSTATE_SERVER_BEGUN)
  2086. {
  2087. mCurrentMediaURL = plugin->getLocation();
  2088. setNavState(MEDIANAVSTATE_SERVER_FIRST_LOCATION_CHANGED);
  2089. }
  2090. else
  2091. {
  2092. // Don't track redirects.
  2093. setNavState(MEDIANAVSTATE_NONE);
  2094. }
  2095. }
  2096. break;
  2097. default:
  2098. break;
  2099. }
  2100. // Just chain the event to observers.
  2101. emitEvent(plugin, event);
  2102. }
  2103. ////////////////////////////////////////////////////////////////////////////////
  2104. // virtual
  2105. void
  2106. LLViewerMediaImpl::cut()
  2107. {
  2108. if (mMediaSource)
  2109. mMediaSource->cut();
  2110. }
  2111. ////////////////////////////////////////////////////////////////////////////////
  2112. // virtual
  2113. BOOL
  2114. LLViewerMediaImpl::canCut() const
  2115. {
  2116. if (mMediaSource)
  2117. return mMediaSource->canCut();
  2118. else
  2119. return FALSE;
  2120. }
  2121. ////////////////////////////////////////////////////////////////////////////////
  2122. // virtual
  2123. void
  2124. LLViewerMediaImpl::copy()
  2125. {
  2126. if (mMediaSource)
  2127. mMediaSource->copy();
  2128. }
  2129. ////////////////////////////////////////////////////////////////////////////////
  2130. // virtual
  2131. BOOL
  2132. LLViewerMediaImpl::canCopy() const
  2133. {
  2134. if (mMediaSource)
  2135. return mMediaSource->canCopy();
  2136. else
  2137. return FALSE;
  2138. }
  2139. ////////////////////////////////////////////////////////////////////////////////
  2140. // virtual
  2141. void
  2142. LLViewerMediaImpl::paste()
  2143. {
  2144. if (mMediaSource)
  2145. mMediaSource->paste();
  2146. }
  2147. ////////////////////////////////////////////////////////////////////////////////
  2148. // virtual
  2149. BOOL
  2150. LLViewerMediaImpl::canPaste() const
  2151. {
  2152. if (mMediaSource)
  2153. return mMediaSource->canPaste();
  2154. else
  2155. return FALSE;
  2156. }
  2157. void LLViewerMediaImpl::setUpdated(BOOL updated)
  2158. {
  2159. mIsUpdated = updated ;
  2160. }
  2161. BOOL LLViewerMediaImpl::isUpdated()
  2162. {
  2163. return mIsUpdated ;
  2164. }
  2165. void LLViewerMediaImpl::calculateInterest()
  2166. {
  2167. LLViewerMediaTexture* texture = LLViewerTextureManager::findMediaTexture( mTextureId );
  2168. if(texture != NULL)
  2169. {
  2170. mInterest = texture->getMaxVirtualSize();
  2171. }
  2172. else
  2173. {
  2174. // This will be a relatively common case now, since it will always be true for unloaded media.
  2175. mInterest = 0.0f;
  2176. }
  2177. // Calculate distance from the avatar, for use in the proximity calculation.
  2178. mProximityDistance = 0.0f;
  2179. if(!mObjectList.empty())
  2180. {
  2181. // Just use the first object in the list.  We could go through the list and find the closest object, but this should work well enough.
  2182. LLVector3d global_delta = gAgent.getPositionGlobal() - (*mObjectList.begin())->getPositionGlobal();
  2183. mProximityDistance = global_delta.magVecSquared();  // use distance-squared because it's cheaper and sorts the same.
  2184. }
  2185. if(mNeedsMuteCheck)
  2186. {
  2187. // Check all objects this instance is associated with, and those objects' owners, against the mute list
  2188. mIsMuted = false;
  2189. std::list< LLVOVolume* >::iterator iter = mObjectList.begin() ;
  2190. for(; iter != mObjectList.end() ; ++iter)
  2191. {
  2192. LLVOVolume *obj = *iter;
  2193. llassert(obj);
  2194. if (!obj) continue;
  2195. if(LLMuteList::getInstance() &&
  2196.    LLMuteList::getInstance()->isMuted(obj->getID()))
  2197. {
  2198. mIsMuted = true;
  2199. }
  2200. else
  2201. {
  2202. // We won't have full permissions data for all objects.  Attempt to mute objects when we can tell their owners are muted.
  2203. if (LLSelectMgr::getInstance())
  2204. {
  2205. LLPermissions* obj_perm = LLSelectMgr::getInstance()->findObjectPermissions(obj);
  2206. if(obj_perm)
  2207. {
  2208. if(LLMuteList::getInstance() &&
  2209.    LLMuteList::getInstance()->isMuted(obj_perm->getOwner()))
  2210. mIsMuted = true;
  2211. }
  2212. }
  2213. }
  2214. }
  2215. mNeedsMuteCheck = false;
  2216. }
  2217. }
  2218. F64 LLViewerMediaImpl::getApproximateTextureInterest()
  2219. {
  2220. F64 result = 0.0f;
  2221. if(mMediaSource)
  2222. {
  2223. result = mMediaSource->getFullWidth();
  2224. result *= mMediaSource->getFullHeight();
  2225. }
  2226. else
  2227. {
  2228. // No media source is loaded -- all we have to go on is the texture size that has been set on the impl, if any.
  2229. result = mMediaWidth;
  2230. result *= mMediaHeight;
  2231. }
  2232. return result;
  2233. }
  2234. void LLViewerMediaImpl::setUsedInUI(bool used_in_ui)
  2235. {
  2236. mUsedInUI = used_in_ui; 
  2237. // HACK: Force elements used in UI to load right away.
  2238. // This fixes some issues where UI code that uses the browser instance doesn't expect it to be unloaded.
  2239. if(mUsedInUI && (mPriority == LLPluginClassMedia::PRIORITY_UNLOADED))
  2240. {
  2241. if(getVisible())
  2242. {
  2243. setPriority(LLPluginClassMedia::PRIORITY_NORMAL);
  2244. }
  2245. else
  2246. {
  2247. setPriority(LLPluginClassMedia::PRIORITY_HIDDEN);
  2248. }
  2249. createMediaSource();
  2250. }
  2251. };
  2252. void LLViewerMediaImpl::setBackgroundColor(LLColor4 color)
  2253. {
  2254. mBackgroundColor = color; 
  2255. if(mMediaSource)
  2256. {
  2257. mMediaSource->setBackgroundColor(mBackgroundColor);
  2258. }
  2259. };
  2260. F64 LLViewerMediaImpl::getCPUUsage() const
  2261. {
  2262. F64 result = 0.0f;
  2263. if(mMediaSource)
  2264. {
  2265. result = mMediaSource->getCPUUsage();
  2266. }
  2267. return result;
  2268. }
  2269. void LLViewerMediaImpl::setPriority(LLPluginClassMedia::EPriority priority)
  2270. {
  2271. if(mPriority != priority)
  2272. {
  2273. LL_DEBUGS("PluginPriority")
  2274. << "changing priority of media id " << mTextureId
  2275. << " from " << LLPluginClassMedia::priorityToString(mPriority)
  2276. << " to " << LLPluginClassMedia::priorityToString(priority)
  2277. << LL_ENDL;
  2278. }
  2279. mPriority = priority;
  2280. if(priority == LLPluginClassMedia::PRIORITY_UNLOADED)
  2281. {
  2282. if(mMediaSource)
  2283. {
  2284. // Need to unload the media source
  2285. // First, save off previous media state
  2286. mPreviousMediaState = mMediaSource->getStatus();
  2287. mPreviousMediaTime = mMediaSource->getCurrentTime();
  2288. destroyMediaSource();
  2289. }
  2290. }
  2291. if(mMediaSource)
  2292. {
  2293. mMediaSource->setPriority(mPriority);
  2294. }
  2295. // NOTE: loading (or reloading) media sources whose priority has risen above PRIORITY_UNLOADED is done in update().
  2296. }
  2297. void LLViewerMediaImpl::setLowPrioritySizeLimit(int size)
  2298. {
  2299. if(mMediaSource)
  2300. {
  2301. mMediaSource->setLowPrioritySizeLimit(size);
  2302. }
  2303. }
  2304. void LLViewerMediaImpl::setNavState(EMediaNavState state)
  2305. {
  2306. mMediaNavState = state;
  2307. switch (state) 
  2308. {
  2309. case MEDIANAVSTATE_NONE: LL_DEBUGS("Media") << "Setting nav state to MEDIANAVSTATE_NONE" << llendl; break;
  2310. case MEDIANAVSTATE_BEGUN: LL_DEBUGS("Media") << "Setting nav state to MEDIANAVSTATE_BEGUN" << llendl; break;
  2311. case MEDIANAVSTATE_FIRST_LOCATION_CHANGED: LL_DEBUGS("Media") << "Setting nav state to MEDIANAVSTATE_FIRST_LOCATION_CHANGED" << llendl; break;
  2312. case MEDIANAVSTATE_COMPLETE_BEFORE_LOCATION_CHANGED: LL_DEBUGS("Media") << "Setting nav state to MEDIANAVSTATE_COMPLETE_BEFORE_LOCATION_CHANGED" << llendl; break;
  2313. case MEDIANAVSTATE_SERVER_SENT: LL_DEBUGS("Media") << "Setting nav state to MEDIANAVSTATE_SERVER_SENT" << llendl; break;
  2314. case MEDIANAVSTATE_SERVER_BEGUN: LL_DEBUGS("Media") << "Setting nav state to MEDIANAVSTATE_SERVER_BEGUN" << llendl; break;
  2315. case MEDIANAVSTATE_SERVER_FIRST_LOCATION_CHANGED: LL_DEBUGS("Media") << "Setting nav state to MEDIANAVSTATE_SERVER_FIRST_LOCATION_CHANGED" << llendl; break;
  2316. case MEDIANAVSTATE_SERVER_COMPLETE_BEFORE_LOCATION_CHANGED: LL_DEBUGS("Media") << "Setting nav state to MEDIANAVSTATE_SERVER_COMPLETE_BEFORE_LOCATION_CHANGED" << llendl; break;
  2317. }
  2318. }
  2319. void LLViewerMediaImpl::setNavigateSuspended(bool suspend)
  2320. {
  2321. if(mNavigateSuspended != suspend)
  2322. {
  2323. mNavigateSuspended = suspend;
  2324. if(!suspend)
  2325. {
  2326. // We're coming out of suspend.  If someone tried to do a navigate while suspended, do one now instead.
  2327. if(mNavigateSuspendedDeferred)
  2328. {
  2329. mNavigateSuspendedDeferred = false;
  2330. navigateInternal();
  2331. }
  2332. }
  2333. }
  2334. }
  2335. void LLViewerMediaImpl::cancelMimeTypeProbe()
  2336. {
  2337. if(mMimeTypeProbe != NULL)
  2338. {
  2339. // There doesn't seem to be a way to actually cancel an outstanding request.
  2340. // Simulate it by telling the LLMimeDiscoveryResponder not to write back any results.
  2341. mMimeTypeProbe->cancelRequest();
  2342. // The above should already have set mMimeTypeProbe to NULL.
  2343. if(mMimeTypeProbe != NULL)
  2344. {
  2345. llerrs << "internal error: mMimeTypeProbe is not NULL after cancelling request." << llendl;
  2346. }
  2347. }
  2348. }
  2349. void LLViewerMediaImpl::addObject(LLVOVolume* obj) 
  2350. {
  2351. std::list< LLVOVolume* >::iterator iter = mObjectList.begin() ;
  2352. for(; iter != mObjectList.end() ; ++iter)
  2353. {
  2354. if(*iter == obj)
  2355. {
  2356. return ; //already in the list.
  2357. }
  2358. }
  2359. mObjectList.push_back(obj) ;
  2360. mNeedsMuteCheck = true;
  2361. }
  2362. void LLViewerMediaImpl::removeObject(LLVOVolume* obj) 
  2363. {
  2364. mObjectList.remove(obj) ;
  2365. mNeedsMuteCheck = true;
  2366. }
  2367. const std::list< LLVOVolume* >* LLViewerMediaImpl::getObjectList() const 
  2368. {
  2369. return &mObjectList ;
  2370. }
  2371. LLVOVolume *LLViewerMediaImpl::getSomeObject()
  2372. {
  2373. LLVOVolume *result = NULL;
  2374. std::list< LLVOVolume* >::iterator iter = mObjectList.begin() ;
  2375. if(iter != mObjectList.end())
  2376. {
  2377. result = *iter;
  2378. }
  2379. return result;
  2380. }
  2381. void LLViewerMediaImpl::setTextureID(LLUUID id)
  2382. {
  2383. if(id != mTextureId)
  2384. {
  2385. if(mTextureId.notNull())
  2386. {
  2387. // Remove this item's entry from the map
  2388. sViewerMediaTextureIDMap.erase(mTextureId);
  2389. }
  2390. if(id.notNull())
  2391. {
  2392. sViewerMediaTextureIDMap.insert(LLViewerMedia::impl_id_map::value_type(id, this));
  2393. }
  2394. mTextureId = id;
  2395. }
  2396. }
  2397. //////////////////////////////////////////////////////////////////////////////////////////
  2398. //
  2399. bool LLViewerMediaImpl::isAutoPlayable() const
  2400. {
  2401. return (mMediaAutoPlay && 
  2402. gSavedSettings.getBOOL(LLViewerMedia::AUTO_PLAY_MEDIA_SETTING) &&
  2403. gSavedSettings.getBOOL("MediaTentativeAutoPlay"));
  2404. }
  2405. //////////////////////////////////////////////////////////////////////////////////////////
  2406. //
  2407. bool LLViewerMediaImpl::shouldShowBasedOnClass() const
  2408. {
  2409. // If this is parcel media or in the UI, return true always
  2410. if (getUsedInUI() || isParcelMedia()) return true;
  2411. bool attached_to_another_avatar = isAttachedToAnotherAvatar();
  2412. bool inside_parcel = isInAgentParcel();
  2413. // llinfos << " hasFocus = " << hasFocus() <<
  2414. // " others = " << (attached_to_another_avatar && gSavedSettings.getBOOL(LLViewerMedia::SHOW_MEDIA_ON_OTHERS_SETTING)) <<
  2415. // " within = " << (inside_parcel && gSavedSettings.getBOOL(LLViewerMedia::SHOW_MEDIA_WITHIN_PARCEL_SETTING)) <<
  2416. // " outside = " << (!inside_parcel && gSavedSettings.getBOOL(LLViewerMedia::SHOW_MEDIA_OUTSIDE_PARCEL_SETTING)) << llendl;
  2417. // If it has focus, we should show it
  2418. if (hasFocus())
  2419. return true;
  2420. // If it is attached to an avatar and the pref is off, we shouldn't show it
  2421. if (attached_to_another_avatar)
  2422. return gSavedSettings.getBOOL(LLViewerMedia::SHOW_MEDIA_ON_OTHERS_SETTING);
  2423. if (inside_parcel)
  2424. return gSavedSettings.getBOOL(LLViewerMedia::SHOW_MEDIA_WITHIN_PARCEL_SETTING);
  2425. else 
  2426. return gSavedSettings.getBOOL(LLViewerMedia::SHOW_MEDIA_OUTSIDE_PARCEL_SETTING);
  2427. }
  2428. //////////////////////////////////////////////////////////////////////////////////////////
  2429. //
  2430. bool LLViewerMediaImpl::isAttachedToAnotherAvatar() const
  2431. {
  2432. bool result = false;
  2433. std::list< LLVOVolume* >::const_iterator iter = mObjectList.begin();
  2434. std::list< LLVOVolume* >::const_iterator end = mObjectList.end();
  2435. for ( ; iter != end; iter++)
  2436. {
  2437. if (isObjectAttachedToAnotherAvatar(*iter))
  2438. {
  2439. result = true;
  2440. break;
  2441. }
  2442. }
  2443. return result;
  2444. }
  2445. //////////////////////////////////////////////////////////////////////////////////////////
  2446. //
  2447. //static
  2448. bool LLViewerMediaImpl::isObjectAttachedToAnotherAvatar(LLVOVolume *obj)
  2449. {
  2450. bool result = false;
  2451. LLXform *xform = obj;
  2452. // Walk up parent chain
  2453. while (NULL != xform)
  2454. {
  2455. LLViewerObject *object = dynamic_cast<LLViewerObject*> (xform);
  2456. if (NULL != object)
  2457. {
  2458. LLVOAvatar *avatar = object->asAvatar();
  2459. if (NULL != avatar && avatar != gAgent.getAvatarObject())
  2460. {
  2461. result = true;
  2462. break;
  2463. }
  2464. }
  2465. xform = xform->getParent();
  2466. }
  2467. return result;
  2468. }
  2469. //////////////////////////////////////////////////////////////////////////////////////////
  2470. //
  2471. bool LLViewerMediaImpl::isInAgentParcel() const
  2472. {
  2473. bool result = false;
  2474. std::list< LLVOVolume* >::const_iterator iter = mObjectList.begin();
  2475. std::list< LLVOVolume* >::const_iterator end = mObjectList.end();
  2476. for ( ; iter != end; iter++)
  2477. {
  2478. LLVOVolume *object = *iter;
  2479. if (LLViewerMediaImpl::isObjectInAgentParcel(object))
  2480. {
  2481. result = true;
  2482. break;
  2483. }
  2484. }
  2485. return result;
  2486. }
  2487. //////////////////////////////////////////////////////////////////////////////////////////
  2488. //
  2489. // static
  2490. bool LLViewerMediaImpl::isObjectInAgentParcel(LLVOVolume *obj)
  2491. {
  2492. return (LLViewerParcelMgr::getInstance()->inAgentParcel(obj->getPositionGlobal()));
  2493. }