Skip to content
Snippets Groups Projects
Commit 6aa46cc5 authored by Tofu Linden's avatar Tofu Linden
Browse files

EXT-4026 parcel media does not autoplay after arriving by teleport

parent e827c8a5
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include "llviewerparcelmedia.h" #include "llviewerparcelmedia.h"
#include "llviewercontrol.h" #include "llviewercontrol.h"
#include "llviewermedia.h" #include "llviewermedia.h"
#include "llviewerregion.h"
#include "llparcel.h" #include "llparcel.h"
#include "llviewerparcelmgr.h" #include "llviewerparcelmgr.h"
#include "lluuid.h" #include "lluuid.h"
...@@ -48,6 +49,8 @@ const F32 AUTOPLAY_SPEED = 0.1f; // how slow should the agent be moving t ...@@ -48,6 +49,8 @@ const F32 AUTOPLAY_SPEED = 0.1f; // how slow should the agent be moving t
LLViewerParcelMediaAutoPlay::LLViewerParcelMediaAutoPlay() : LLViewerParcelMediaAutoPlay::LLViewerParcelMediaAutoPlay() :
LLEventTimer(1), LLEventTimer(1),
mLastParcelID(-1),
mPlayed(FALSE), mPlayed(FALSE),
mTimeInParcel(0) mTimeInParcel(0)
{ {
...@@ -81,9 +84,18 @@ void LLViewerParcelMediaAutoPlay::playStarted() ...@@ -81,9 +84,18 @@ void LLViewerParcelMediaAutoPlay::playStarted()
BOOL LLViewerParcelMediaAutoPlay::tick() BOOL LLViewerParcelMediaAutoPlay::tick()
{ {
LLParcel *this_parcel = NULL; LLParcel *this_parcel = NULL;
LLViewerRegion *this_region = NULL;
std::string this_media_url; std::string this_media_url;
LLUUID this_media_texture_id; LLUUID this_media_texture_id;
S32 this_parcel_id = 0; S32 this_parcel_id = 0;
LLUUID this_region_id;
this_region = gAgent.getRegion();
if (this_region)
{
this_region_id = this_region->getRegionID();
}
this_parcel = LLViewerParcelMgr::getInstance()->getAgentParcel(); this_parcel = LLViewerParcelMgr::getInstance()->getAgentParcel();
...@@ -96,12 +108,14 @@ BOOL LLViewerParcelMediaAutoPlay::tick() ...@@ -96,12 +108,14 @@ BOOL LLViewerParcelMediaAutoPlay::tick()
this_parcel_id = this_parcel->getLocalID(); this_parcel_id = this_parcel->getLocalID();
} }
if (this_parcel_id != mLastParcelID) if (this_parcel_id != mLastParcelID ||
this_region_id != mLastRegionID)
{ {
// we've entered a new parcel // we've entered a new parcel
mPlayed = FALSE; // we haven't autoplayed yet mPlayed = FALSE; // we haven't autoplayed yet
mTimeInParcel = 0; // reset our timer mTimeInParcel = 0; // reset our timer
mLastParcelID = this_parcel_id; mLastParcelID = this_parcel_id;
mLastRegionID = this_region_id;
} }
mTimeInParcel += mPeriod; // increase mTimeInParcel by the amount of time between ticks mTimeInParcel += mPeriod; // increase mTimeInParcel by the amount of time between ticks
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#define LLVIEWERPARCELMEDIAAUTOPLAY_H #define LLVIEWERPARCELMEDIAAUTOPLAY_H
#include "lltimer.h" #include "lltimer.h"
#include "lluuid.h"
// timer to automatically play media // timer to automatically play media
class LLViewerParcelMediaAutoPlay : LLEventTimer class LLViewerParcelMediaAutoPlay : LLEventTimer
...@@ -47,6 +48,7 @@ class LLViewerParcelMediaAutoPlay : LLEventTimer ...@@ -47,6 +48,7 @@ class LLViewerParcelMediaAutoPlay : LLEventTimer
private: private:
S32 mLastParcelID; S32 mLastParcelID;
LLUUID mLastRegionID;
BOOL mPlayed; BOOL mPlayed;
F32 mTimeInParcel; F32 mTimeInParcel;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment