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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llviewermedia.h
  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. #ifndef LLVIEWERMEDIA_H
  33. #define LLVIEWERMEDIA_H
  34. #include "llfocusmgr.h"
  35. #include "lleditmenuhandler.h"
  36. #include "llpanel.h"
  37. #include "llpluginclassmediaowner.h"
  38. #include "llviewermediaobserver.h"
  39. #include "llpluginclassmedia.h"
  40. #include "v4color.h"
  41. class LLViewerMediaImpl;
  42. class LLUUID;
  43. class LLViewerMediaTexture;
  44. class LLMediaEntry;
  45. class LLVOVolume;
  46. class LLMimeDiscoveryResponder;
  47. typedef LLPointer<LLViewerMediaImpl> viewer_media_t;
  48. ///////////////////////////////////////////////////////////////////////////////
  49. //
  50. class LLViewerMediaEventEmitter
  51. {
  52. public:
  53. virtual ~LLViewerMediaEventEmitter();
  54. bool addObserver( LLViewerMediaObserver* subject );
  55. bool remObserver( LLViewerMediaObserver* subject );
  56. virtual void emitEvent(LLPluginClassMedia* self, LLViewerMediaObserver::EMediaEvent event);
  57. private:
  58. typedef std::list< LLViewerMediaObserver* > observerListType;
  59. observerListType mObservers;
  60. };
  61. class LLViewerMediaImpl;
  62. class LLViewerMedia
  63. {
  64. LOG_CLASS(LLViewerMedia);
  65. public:
  66. // String to get/set media autoplay in gSavedSettings
  67. static const char* AUTO_PLAY_MEDIA_SETTING;
  68. static const char* SHOW_MEDIA_ON_OTHERS_SETTING;
  69. static const char* SHOW_MEDIA_WITHIN_PARCEL_SETTING;
  70. static const char* SHOW_MEDIA_OUTSIDE_PARCEL_SETTING;
  71. typedef std::vector<LLViewerMediaImpl*> impl_list;
  72. typedef std::map<LLUUID, LLViewerMediaImpl*> impl_id_map;
  73. // Special case early init for just web browser component
  74. // so we can show login screen.  See .cpp file for details. JC
  75. static viewer_media_t newMediaImpl(const LLUUID& texture_id,
  76.    S32 media_width = 0, 
  77.    S32 media_height = 0, 
  78.    U8 media_auto_scale = false,
  79.    U8 media_loop = false);
  80. static viewer_media_t updateMediaImpl(LLMediaEntry* media_entry, const std::string& previous_url, bool update_from_self);
  81. static LLViewerMediaImpl* getMediaImplFromTextureID(const LLUUID& texture_id);
  82. static std::string getCurrentUserAgent();
  83. static void updateBrowserUserAgent();
  84. static bool handleSkinCurrentChanged(const LLSD& /*newvalue*/);
  85. static bool textureHasMedia(const LLUUID& texture_id);
  86. static void setVolume(F32 volume);
  87. // Is any media currently "showing"?  Includes Parcel Media.  Does not include media in the UI.
  88. static bool isAnyMediaShowing();
  89. // Set all media enabled or disabled, depending on val.   Does not include media in the UI.
  90. static void setAllMediaEnabled(bool val);
  91. static void updateMedia(void* dummy_arg = NULL);
  92. static void initClass();
  93. static void cleanupClass();
  94. static F32 getVolume();
  95. static void muteListChanged();
  96. static void setInWorldMediaDisabled(bool disabled);
  97. static bool getInWorldMediaDisabled();
  98. static bool isInterestingEnough(const LLVOVolume* object, const F64 &object_interest);
  99. // Returns the priority-sorted list of all media impls.
  100. static impl_list &getPriorityList();
  101. // This is the comparitor used to sort the list.
  102. static bool priorityComparitor(const LLViewerMediaImpl* i1, const LLViewerMediaImpl* i2);
  103. // These are just helper functions for the convenience of others working with media
  104. static bool hasInWorldMedia();
  105. static std::string getParcelAudioURL();
  106. static bool hasParcelMedia();
  107. static bool hasParcelAudio();
  108. static bool isParcelMediaPlaying();
  109. static bool isParcelAudioPlaying();
  110. private:
  111. static void onTeleportFinished();
  112. };
  113. // Implementation functions not exported into header file
  114. class LLViewerMediaImpl
  115. : public LLMouseHandler, public LLRefCount, public LLPluginClassMediaOwner, public LLViewerMediaEventEmitter, public LLEditMenuHandler
  116. {
  117. LOG_CLASS(LLViewerMediaImpl);
  118. public:
  119. friend class LLViewerMedia;
  120. friend class LLMimeDiscoveryResponder;
  121. LLViewerMediaImpl(
  122. const LLUUID& texture_id,
  123. S32 media_width, 
  124. S32 media_height, 
  125. U8 media_auto_scale,
  126. U8 media_loop);
  127. ~LLViewerMediaImpl();
  128. // Override inherited version from LLViewerMediaEventEmitter 
  129. virtual void emitEvent(LLPluginClassMedia* self, LLViewerMediaObserver::EMediaEvent event);
  130. void createMediaSource();
  131. void destroyMediaSource();
  132. void setMediaType(const std::string& media_type);
  133. bool initializeMedia(const std::string& mime_type);
  134. bool initializePlugin(const std::string& media_type);
  135. void loadURI();
  136. LLPluginClassMedia* getMediaPlugin() { return mMediaSource; }
  137. void setSize(int width, int height);
  138. void play();
  139. void stop();
  140. void pause();
  141. void start();
  142. void seek(F32 time);
  143. void skipBack(F32 step_scale);
  144. void skipForward(F32 step_scale);
  145. void setVolume(F32 volume);
  146. void updateVolume();
  147. F32 getVolume();
  148. void focus(bool focus);
  149. // True if the impl has user focus.
  150. bool hasFocus() const;
  151. void mouseDown(S32 x, S32 y, MASK mask, S32 button = 0);
  152. void mouseUp(S32 x, S32 y, MASK mask, S32 button = 0);
  153. void mouseMove(S32 x, S32 y, MASK mask);
  154. void mouseDown(const LLVector2& texture_coords, MASK mask, S32 button = 0);
  155. void mouseUp(const LLVector2& texture_coords, MASK mask, S32 button = 0);
  156. void mouseMove(const LLVector2& texture_coords, MASK mask);
  157. void mouseDoubleClick(S32 x,S32 y, MASK mask, S32 button = 0);
  158. void scrollWheel(S32 x, S32 y, MASK mask);
  159. void mouseCapture();
  160. void navigateBack();
  161. void navigateForward();
  162. void navigateReload();
  163. void navigateHome();
  164. void unload();
  165. void navigateTo(const std::string& url, const std::string& mime_type = "", bool rediscover_type = false, bool server_request = false);
  166. void navigateInternal();
  167. void navigateStop();
  168. bool handleKeyHere(KEY key, MASK mask);
  169. bool handleUnicodeCharHere(llwchar uni_char);
  170. bool canNavigateForward();
  171. bool canNavigateBack();
  172. std::string getMediaURL() const { return mMediaURL; }
  173. std::string getCurrentMediaURL();
  174. std::string getHomeURL() { return mHomeURL; }
  175. std::string getMediaEntryURL() { return mMediaEntryURL; }
  176.     void setHomeURL(const std::string& home_url) { mHomeURL = home_url; };
  177. void clearCache();
  178. std::string getMimeType() { return mMimeType; }
  179. void scaleMouse(S32 *mouse_x, S32 *mouse_y);
  180. void scaleTextureCoords(const LLVector2& texture_coords, S32 *x, S32 *y);
  181. void update();
  182. void updateImagesMediaStreams();
  183. LLUUID getMediaTextureID() const;
  184. void suspendUpdates(bool suspend) { mSuspendUpdates = suspend; }
  185. void setVisible(bool visible);
  186. bool getVisible() const { return mVisible; }
  187. bool isVisible() const { return mVisible; }
  188. bool isMediaTimeBased();
  189. bool isMediaPlaying();
  190. bool isMediaPaused();
  191. bool hasMedia() const;
  192. bool isMediaFailed() const { return mMediaSourceFailed; }
  193. void setMediaFailed(bool val) { mMediaSourceFailed = val; }
  194. void resetPreviousMediaState();
  195. void setDisabled(bool disabled, bool forcePlayOnEnable = false);
  196. bool isMediaDisabled() const { return mIsDisabled; };
  197. void setInNearbyMediaList(bool in_list) { mInNearbyMediaList = in_list; }
  198. bool getInNearbyMediaList() { return mInNearbyMediaList; }
  199. // returns true if this instance should not be loaded (disabled, muted object, crashed, etc.)
  200. bool isForcedUnloaded() const;
  201. // returns true if this instance could be playable based on autoplay setting, current load state, etc.
  202. bool isPlayable() const;
  203. void setIsParcelMedia(bool is_parcel_media) { mIsParcelMedia = is_parcel_media; }
  204. bool isParcelMedia() const { return mIsParcelMedia; }
  205. ECursorType getLastSetCursor() { return mLastSetCursor; }
  206. // utility function to create a ready-to-use media instance from a desired media type.
  207. static LLPluginClassMedia* newSourceFromMediaType(std::string media_type, LLPluginClassMediaOwner *owner /* may be NULL */, S32 default_width, S32 default_height);
  208. // Internally set our desired browser user agent string, including
  209. // the Second Life version and skin name.  Used because we can
  210. // switch skins without restarting the app.
  211. static void updateBrowserUserAgent();
  212. // Callback for when the SkinCurrent control is changed to
  213. // switch the user agent string to indicate the new skin.
  214. static bool handleSkinCurrentChanged(const LLSD& newvalue);
  215. // need these to handle mouseup...
  216. /*virtual*/ void onMouseCaptureLost();
  217. /*virtual*/ BOOL handleMouseUp(S32 x, S32 y, MASK mask);
  218. // Grr... the only thing I want as an LLMouseHandler are the onMouseCaptureLost and handleMouseUp calls.
  219. // Sadly, these are all pure virtual, so I have to supply implementations here:
  220. /*virtual*/ BOOL handleMouseDown(S32 x, S32 y, MASK mask) { return FALSE; };
  221. /*virtual*/ BOOL handleHover(S32 x, S32 y, MASK mask) { return FALSE; };
  222. /*virtual*/ BOOL handleScrollWheel(S32 x, S32 y, S32 clicks) { return FALSE; };
  223. /*virtual*/ BOOL handleDoubleClick(S32 x, S32 y, MASK mask) { return FALSE; };
  224. /*virtual*/ BOOL handleRightMouseDown(S32 x, S32 y, MASK mask) { return FALSE; };
  225. /*virtual*/ BOOL handleRightMouseUp(S32 x, S32 y, MASK mask) { return FALSE; };
  226. /*virtual*/ BOOL handleToolTip(S32 x, S32 y, MASK mask) { return FALSE; };
  227. /*virtual*/ BOOL handleMiddleMouseDown(S32 x, S32 y, MASK mask) { return FALSE; };
  228. /*virtual*/ BOOL handleMiddleMouseUp(S32 x, S32 y, MASK mask) {return FALSE; };
  229. /*virtual*/ std::string getName() const;
  230. /*virtual*/ void screenPointToLocal(S32 screen_x, S32 screen_y, S32* local_x, S32* local_y) const {};
  231. /*virtual*/ void localPointToScreen(S32 local_x, S32 local_y, S32* screen_x, S32* screen_y) const {};
  232. /*virtual*/ BOOL hasMouseCapture() { return gFocusMgr.getMouseCapture() == this; };
  233. // Inherited from LLPluginClassMediaOwner
  234. /*virtual*/ void handleMediaEvent(LLPluginClassMedia* plugin, LLPluginClassMediaOwner::EMediaEvent);
  235. // LLEditMenuHandler overrides
  236. /*virtual*/ void cut();
  237. /*virtual*/ BOOL canCut() const;
  238. /*virtual*/ void copy();
  239. /*virtual*/ BOOL canCopy() const;
  240. /*virtual*/ void paste();
  241. /*virtual*/ BOOL canPaste() const;
  242. void addObject(LLVOVolume* obj) ;
  243. void removeObject(LLVOVolume* obj) ;
  244. const std::list< LLVOVolume* >* getObjectList() const ;
  245. LLVOVolume *getSomeObject();
  246. void setUpdated(BOOL updated) ;
  247. BOOL isUpdated() ;
  248. // Updates the "interest" value in this object
  249. void calculateInterest();
  250. F64 getInterest() const { return mInterest; };
  251. F64 getApproximateTextureInterest();
  252. S32 getProximity() const { return mProximity; };
  253. F64 getProximityDistance() const { return mProximityDistance; };
  254. // Mark this object as being used in a UI panel instead of on a prim
  255. // This will be used as part of the interest sorting algorithm.
  256. void setUsedInUI(bool used_in_ui);
  257. bool getUsedInUI() const { return mUsedInUI; };
  258. void setBackgroundColor(LLColor4 color);
  259. F64 getCPUUsage() const;
  260. void setPriority(LLPluginClassMedia::EPriority priority);
  261. LLPluginClassMedia::EPriority getPriority() { return mPriority; };
  262. void setLowPrioritySizeLimit(int size);
  263. void setTextureID(LLUUID id = LLUUID::null);
  264. typedef enum 
  265. {
  266. MEDIANAVSTATE_NONE, // State is outside what we need to track for navigation.
  267. MEDIANAVSTATE_BEGUN, // a MEDIA_EVENT_NAVIGATE_BEGIN has been received which was not server-directed
  268. MEDIANAVSTATE_FIRST_LOCATION_CHANGED, // first LOCATION_CHANGED event after a non-server-directed BEGIN
  269. MEDIANAVSTATE_COMPLETE_BEFORE_LOCATION_CHANGED, // we received a NAVIGATE_COMPLETE event before the first LOCATION_CHANGED
  270. MEDIANAVSTATE_SERVER_SENT, // server-directed nav has been requested, but MEDIA_EVENT_NAVIGATE_BEGIN hasn't been received yet
  271. MEDIANAVSTATE_SERVER_BEGUN, // MEDIA_EVENT_NAVIGATE_BEGIN has been received which was server-directed
  272. MEDIANAVSTATE_SERVER_FIRST_LOCATION_CHANGED, // first LOCATION_CHANGED event after a server-directed BEGIN
  273. MEDIANAVSTATE_SERVER_COMPLETE_BEFORE_LOCATION_CHANGED // we received a NAVIGATE_COMPLETE event before the first LOCATION_CHANGED
  274. }EMediaNavState;
  275.     
  276. // Returns the current nav state of the media.
  277. // note that this will be updated BEFORE listeners and objects receive media messages 
  278. EMediaNavState getNavState() { return mMediaNavState; }
  279. void setNavState(EMediaNavState state);
  280. void setNavigateSuspended(bool suspend);
  281. bool isNavigateSuspended() { return mNavigateSuspended; };
  282. void cancelMimeTypeProbe();
  283. // Is this media attached to an avatar *not* self
  284. bool isAttachedToAnotherAvatar() const;
  285. // Is this media in the agent's parcel?
  286. bool isInAgentParcel() const;
  287. private:
  288. bool isAutoPlayable() const;
  289. bool shouldShowBasedOnClass() const;
  290. static bool isObjectAttachedToAnotherAvatar(LLVOVolume *obj);
  291. static bool isObjectInAgentParcel(LLVOVolume *obj);
  292. private:
  293. // a single media url with some data and an impl.
  294. LLPluginClassMedia* mMediaSource;
  295. LLUUID mTextureId;
  296. bool  mMovieImageHasMips;
  297. std::string mMediaURL; // The last media url set with NavigateTo
  298. std::string mHomeURL;
  299. std::string mMimeType;
  300. std::string mCurrentMediaURL; // The most current media url from the plugin (via the "location changed" or "navigate complete" events).
  301. std::string mCurrentMimeType; // The MIME type that caused the currently loaded plugin to be loaded.
  302. S32 mLastMouseX; // save the last mouse coord we get, so when we lose capture we can simulate a mouseup at that point.
  303. S32 mLastMouseY;
  304. S32 mMediaWidth;
  305. S32 mMediaHeight;
  306. bool mMediaAutoScale;
  307. bool mMediaLoop;
  308. bool mNeedsNewTexture;
  309. S32 mTextureUsedWidth;
  310. S32 mTextureUsedHeight;
  311. bool mSuspendUpdates;
  312. bool mVisible;
  313. ECursorType mLastSetCursor;
  314. EMediaNavState mMediaNavState;
  315. F64 mInterest;
  316. bool mUsedInUI;
  317. bool mHasFocus;
  318. LLPluginClassMedia::EPriority mPriority;
  319. bool mNavigateRediscoverType;
  320. bool mNavigateServerRequest;
  321. bool mMediaSourceFailed;
  322. F32 mRequestedVolume;
  323. bool mIsMuted;
  324. bool mNeedsMuteCheck;
  325. int mPreviousMediaState;
  326. F64 mPreviousMediaTime;
  327. bool mIsDisabled;
  328. bool mIsParcelMedia;
  329. S32 mProximity;
  330. F64 mProximityDistance;
  331. LLMimeDiscoveryResponder *mMimeTypeProbe;
  332. bool mMediaAutoPlay;
  333. std::string mMediaEntryURL;
  334. bool mInNearbyMediaList; // used by LLPanelNearbyMedia::refreshList() for performance reasons
  335. bool mClearCache;
  336. LLColor4 mBackgroundColor;
  337. bool mNavigateSuspended;
  338. bool mNavigateSuspendedDeferred;
  339. private:
  340. BOOL mIsUpdated ;
  341. std::list< LLVOVolume* > mObjectList ;
  342. private:
  343. LLViewerMediaTexture *updatePlaceholderImage();
  344. };
  345. #endif // LLVIEWERMEDIA_H