Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Archive
Alchemy Viewer
Commits
6aa46cc5
Commit
6aa46cc5
authored
15 years ago
by
Tofu Linden
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llviewerparcelmediaautoplay.cpp
+15
-1
15 additions, 1 deletion
indra/newview/llviewerparcelmediaautoplay.cpp
indra/newview/llviewerparcelmediaautoplay.h
+2
-0
2 additions, 0 deletions
indra/newview/llviewerparcelmediaautoplay.h
with
17 additions
and
1 deletion
indra/newview/llviewerparcelmediaautoplay.cpp
+
15
−
1
View file @
6aa46cc5
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llviewerparcelmediaautoplay.h
+
2
−
0
View file @
6aa46cc5
...
@@ -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
;
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment