Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
Hubs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Show more breadcrumbs
ar-noc
Hubs
Commits
f360eb64
Unverified
Commit
f360eb64
authored
6 years ago
by
Marshall Quander
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #442 from mozilla/lazy-bots
Don't load bot recordings unless you are a bot
parents
30612da7
1697cbff
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/components/avatar-replay.js
+12
-8
12 additions, 8 deletions
src/components/avatar-replay.js
src/hub.html
+0
-2
0 additions, 2 deletions
src/hub.html
src/hub.js
+17
-5
17 additions, 5 deletions
src/hub.js
webpack.config.js
+12
-0
12 additions, 0 deletions
webpack.config.js
with
41 additions
and
15 deletions
src/components/avatar-replay.js
+
12
−
8
View file @
f360eb64
import
botRecording
from
"
../assets/avatars/bot-recording.json
"
;
// These controls are removed from the controller entities so that motion-capture-replayer is in full control of them.
const
controlsBlacklist
=
[
"
tracked-controls
"
,
...
...
@@ -20,24 +18,30 @@ AFRAME.registerComponent("avatar-replay", {
schema
:
{
camera
:
{
type
:
"
selector
"
},
leftController
:
{
type
:
"
selector
"
},
rightController
:
{
type
:
"
selector
"
}
rightController
:
{
type
:
"
selector
"
},
recordingUrl
:
{
type
:
"
string
"
}
},
init
:
function
()
{
const
{
camera
,
leftController
,
rightController
}
=
this
.
data
;
this
.
modelLoaded
=
new
Promise
(
resolve
=>
this
.
el
.
addEventListener
(
"
model-loaded
"
,
resolve
));
},
update
:
function
()
{
const
{
camera
,
leftController
,
rightController
,
recordingUrl
}
=
this
.
data
;
const
fetchRecording
=
fetch
(
recordingUrl
).
then
(
resp
=>
resp
.
json
());
camera
.
setAttribute
(
"
motion-capture-replayer
"
,
{
loop
:
true
});
this
.
_setupController
(
leftController
);
this
.
_setupController
(
rightController
);
this
.
el
.
addEventListener
(
"
model
-l
oaded
"
,
(
)
=>
{
this
.
dataLoaded
=
Promise
.
all
([
fetchRecording
,
this
.
model
L
oaded
]).
then
(([
recording
]
)
=>
{
const
cameraReplayer
=
camera
.
components
[
"
motion-capture-replayer
"
];
cameraReplayer
.
startReplaying
(
botR
ecording
.
camera
);
cameraReplayer
.
startReplaying
(
r
ecording
.
camera
);
const
leftControllerReplayer
=
leftController
.
components
[
"
motion-capture-replayer
"
];
leftControllerReplayer
.
startReplaying
(
botR
ecording
.
left
);
leftControllerReplayer
.
startReplaying
(
r
ecording
.
left
);
const
rightControllerReplayer
=
rightController
.
components
[
"
motion-capture-replayer
"
];
rightControllerReplayer
.
startReplaying
(
botR
ecording
.
right
);
rightControllerReplayer
.
startReplaying
(
r
ecording
.
right
);
});
},
_setupController
:
function
(
controller
)
{
controlsBlacklist
.
forEach
(
controlsComponent
=>
controller
.
removeAttribute
(
controlsComponent
));
controller
.
setAttribute
(
"
visible
"
,
true
);
...
...
This diff is collapsed.
Click to expand it.
src/hub.html
+
0
−
2
View file @
f360eb64
...
...
@@ -23,8 +23,6 @@
</head>
<body
data-html-prefix=
"<%= HTML_PREFIX %>"
>
<audio
id=
"bot-recording"
loop
muted
crossorigin=
"anonymous"
src=
"./assets/avatars/bot-recording.mp3"
></audio>
<audio
id=
"test-tone"
>
<source
src=
"./assets/sfx/tone.webm"
type=
"audio/webm"
/>
<source
src=
"./assets/sfx/tone.mp3"
type=
"audio/mpeg"
/>
...
...
This diff is collapsed.
Click to expand it.
src/hub.js
+
17
−
5
View file @
f360eb64
...
...
@@ -336,15 +336,27 @@ const onReady = async () => {
playerRig
.
setAttribute
(
"
avatar-replay
"
,
{
camera
:
"
#player-camera
"
,
leftController
:
"
#player-left-controller
"
,
rightController
:
"
#player-right-controller
"
rightController
:
"
#player-right-controller
"
,
recordingUrl
:
"
assets/avatars/bot-recording.json
"
});
const
audio
=
document
.
getElementById
(
"
bot-recording
"
);
mediaStream
.
addTrack
(
audio
.
captureStream
().
getAudioTracks
()[
0
]);
const
audioEl
=
document
.
createElement
(
"
audio
"
);
audioEl
.
loop
=
true
;
audioEl
.
muted
=
true
;
audioEl
.
crossorigin
=
"
anonymous
"
;
audioEl
.
src
=
"
assets/avatars/bot-recording.mp3
"
;
document
.
body
.
appendChild
(
audioEl
);
// Wait for runner script to interact with the page so that we can play audio.
await
new
Promise
(
resolve
=>
{
const
interacted
=
new
Promise
(
resolve
=>
{
window
.
interacted
=
resolve
;
});
audio
.
play
();
const
canPlay
=
new
Promise
(
resolve
=>
{
audioEl
.
addEventListener
(
"
canplay
"
,
resolve
);
});
await
Promise
.
all
([
canPlay
,
interacted
]);
mediaStream
.
addTrack
(
audioEl
.
captureStream
().
getAudioTracks
()[
0
]);
audioEl
.
play
();
}
if
(
mediaStream
)
{
...
...
This diff is collapsed.
Click to expand it.
webpack.config.js
+
12
−
0
View file @
f360eb64
...
...
@@ -223,6 +223,18 @@ const config = {
to
:
"
hub-preview.png
"
}
]),
new
CopyWebpackPlugin
([
{
from
:
"
src/assets/avatars/bot-recording.json
"
,
to
:
"
assets/avatars/bot-recording.json
"
}
]),
new
CopyWebpackPlugin
([
{
from
:
"
src/assets/avatars/bot-recording.mp3
"
,
to
:
"
assets/avatars/bot-recording.mp3
"
}
]),
// Extract required css and add a content hash.
new
ExtractTextPlugin
({
filename
:
"
assets/stylesheets/[name]-[contenthash].css
"
,
...
...
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