123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /**
- * @file llviewerparcelmedia.h
- * @brief Handlers for multimedia on a per-parcel basis
- *
- * $LicenseInfo:firstyear=2007&license=viewergpl$
- *
- * Copyright (c) 2007-2009, Linden Research, Inc.
- *
- * Second Life Viewer Source Code
- * The source code in this file ("Source Code") is provided by Linden Lab
- * to you under the terms of the GNU General Public License, version 2.0
- * ("GPL"), unless you have obtained a separate licensing agreement
- * ("Other License"), formally executed by you and Linden Lab. Terms of
- * the GPL can be found in doc/GPL-license.txt in this distribution, or
- * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
- *
- * There are special exceptions to the terms and conditions of the GPL as
- * it is applied to this Source Code. View the full text of the exception
- * in the file doc/FLOSS-exception.txt in this software distribution, or
- * online at
- * http://secondlifegrid.net/programs/open_source/licensing/flossexception
- *
- * By copying, modifying or distributing this software, you acknowledge
- * that you have read and understood your obligations described above,
- * and agree to abide by those obligations.
- *
- * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
- * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
- * COMPLETENESS OR PERFORMANCE.
- * $/LicenseInfo$
- */
- #ifndef LLVIEWERPARCELMEDIA_H
- #define LLVIEWERPARCELMEDIA_H
- #include "llaudioengine.h"
- #include "llviewermedia.h"
- class LLMessageSystem;
- class LLParcel;
- class LLViewerParcelMediaNavigationObserver;
- // This class understands land parcels, network traffic, LSL media transport
- // commands, and talks to the LLViewerMedia class to actually do playback.
- class LLViewerParcelMedia : public LLViewerMediaObserver
- {
- protected:
- LOG_CLASS(LLViewerParcelMedia);
- public:
- static void initClass();
- static void cleanupClass();
- // Called when the agent's parcel has a new URL, or the agent has walked on
- // to a new parcel with media.
- static void update(LLParcel* parcel);
- // play the parcel music stream
- static void playStreamingMusic(LLParcel* parcel, bool filter = true);
- // User clicked play button in music controls
- // Can be used as a callback in menus
- static void playMusic(void* userdata = NULL);
- // User clicked pause button in music controls
- // Can be used as a callback in menus
- static void pauseMusic(void* userdata = NULL);
- // stop the parcel music stream
- static void stopStreamingMusic();
- // User clicked stop button in music controls
- // Can be used as a callback in menus
- static void stopMusic(void* userdata = NULL);
- static bool parcelMusicPlaying() { return sParcelMusicState == PLAYING; }
- static bool parcelMusicPaused() { return sParcelMusicState == PAUSED; }
- static bool parcelMusicStopped() { return sParcelMusicState == STOPPED; }
- // play the parcel media stream
- static void playMedia(LLParcel* parcel, bool filter = true);
- // User clicked play button in media controls
- // Can be used as a callback in menus
- static void play(void* userdata = NULL);
- // User clicked stop button in media controls
- // Can be used as a callback in menus
- static void stop(void* userdata = NULL);
- // user clicked pause button in media controls
- // Can be used as a callback in menus
- static void pause(void* userdata = NULL);
- // restart after pause - no need for all the setup
- static void start();
- static void focus(bool focus);
- // Jump to timecode time
- static void seek(F32 time);
- static LLViewerMediaImpl::EMediaStatus getStatus();
- static std::string getMimeType();
- static std::string getURL();
- static std::string getName();
- static std::string getParcelAudioURL();
- // These are just helper functions for the convenience of others working
- // with media
- LL_INLINE static viewer_media_t getParcelMedia() { return sMediaImpl; }
- LL_INLINE static bool hasParcelMedia() { return !getURL().empty(); }
- LL_INLINE static bool hasParcelAudio() { return !getParcelAudioURL().empty(); }
- LL_INLINE static bool isParcelMediaPlaying() { return sMediaImpl.notNull() &&
- !getURL().empty() &&
- sMediaImpl->hasMedia(); }
- static bool isParcelAudioPlaying() { return gAudiop && !getParcelAudioURL().empty() &&
- gAudiop->isInternetStreamPlaying(); }
- static void processParcelMediaCommandMessage(LLMessageSystem* msg, void**);
- static void processParcelMediaUpdate(LLMessageSystem* msg, void**);
- static void sendMediaNavigateMessage(const std::string& url);
- // inherited from LLViewerMediaObserver
- virtual void handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event);
- static void registerStreamingAudioPlugin();
- public:
- static S32 sMediaParcelLocalID;
- static LLUUID sMediaRegionID;
- // HACK: this will change with Media on a Prim
- static viewer_media_t sMediaImpl;
- private:
- enum { STOPPED = 0, PLAYING = 1, PAUSED = 2 };
- static S32 sParcelMusicState;
- };
- class LLViewerParcelMediaNavigationObserver
- {
- public:
- std::string mCurrentURL;
- bool mFromMessage;
- //void onNavigateComplete(const EventType& event_in);
- };
- #endif
|