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
3cfc06a0
You need to sign in or sign up before continuing.
Commit
3cfc06a0
authored
7 years ago
by
Brian Peiris
Browse files
Options
Downloads
Patches
Plain Diff
move component to separate file
parent
b7849954
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
src/components/networked-video-player.js
+57
-0
57 additions, 0 deletions
src/components/networked-video-player.js
src/index.js
+1
-58
1 addition, 58 deletions
src/index.js
with
58 additions
and
58 deletions
src/components/networked-video-player.js
0 → 100644
+
57
−
0
View file @
3cfc06a0
const
nafConnected
=
function
()
{
return
new
Promise
(
resolve
=>
{
NAF
.
clientId
?
resolve
()
:
document
.
body
.
addEventListener
(
"
connected
"
,
resolve
);
});
};
AFRAME
.
registerComponent
(
"
networked-video-player
"
,
{
schema
:
{},
async
init
()
{
await
nafConnected
();
const
networkedEl
=
NAF
.
utils
.
getNetworkedEntity
(
this
.
el
);
if
(
!
networkedEl
)
{
throw
new
Error
(
"
Video player must be added on a node, or a child of a node, with the `networked` component.
"
);
}
const
ownerId
=
networkedEl
.
components
.
networked
.
data
.
owner
;
console
.
log
(
"
video player for
"
+
ownerId
);
const
stream
=
await
NAF
.
connection
.
adapter
.
getMediaStream
(
ownerId
);
console
.
log
(
"
Stream
"
,
stream
);
if
(
!
stream
)
{
return
;
}
const
v
=
document
.
createElement
(
"
video
"
);
v
.
srcObject
=
stream
;
v
.
style
.
position
=
"
absolute
"
;
v
.
style
.
bottom
=
0
;
v
.
style
.
height
=
"
100px
"
;
v
.
style
.
background
=
"
black
"
;
document
.
body
.
appendChild
(
v
);
v
.
play
();
this
.
videoEl
=
v
;
v
.
onloadedmetadata
=
()
=>
{
const
ratio
=
v
.
videoWidth
/
v
.
videoHeight
;
this
.
el
.
setAttribute
(
"
geometry
"
,
{
width
:
ratio
*
1
,
height
:
1
});
//this.el.setAttribute("visible", true);
this
.
el
.
setAttribute
(
"
material
"
,
"
src
"
,
v
);
};
},
remove
()
{
if
(
this
.
videoEl
)
{
this
.
videoEl
.
parent
.
removeChild
(
this
.
videoEl
);
}
}
});
This diff is collapsed.
Click to expand it.
src/index.js
+
1
−
58
View file @
3cfc06a0
...
@@ -19,6 +19,7 @@ import "./components/body-controller";
...
@@ -19,6 +19,7 @@ import "./components/body-controller";
import
"
./components/hand-controls2
"
;
import
"
./components/hand-controls2
"
;
import
"
./components/character-controller
"
;
import
"
./components/character-controller
"
;
import
"
./components/split-axis-events
"
;
import
"
./components/split-axis-events
"
;
import
"
./components/networked-video-player
"
;
import
"
./systems/personal-space-bubble
"
;
import
"
./systems/personal-space-bubble
"
;
import
registerNetworkScheams
from
"
./network-schemas
"
;
import
registerNetworkScheams
from
"
./network-schemas
"
;
...
@@ -29,64 +30,6 @@ import Config from "./config";
...
@@ -29,64 +30,6 @@ import Config from "./config";
registerNetworkScheams
();
registerNetworkScheams
();
registerInputMappings
();
registerInputMappings
();
const
waitForConnected
=
function
()
{
return
new
Promise
(
resolve
=>
{
NAF
.
clientId
?
resolve
()
:
document
.
body
.
addEventListener
(
"
connected
"
,
resolve
);
});
};
AFRAME
.
registerComponent
(
"
networked-video-player
"
,
{
schema
:
{},
init
()
{
waitForConnected
()
.
then
(()
=>
{
const
networkedEl
=
NAF
.
utils
.
getNetworkedEntity
(
this
.
el
);
if
(
!
networkedEl
)
{
return
Promise
.
reject
(
"
Vdeo player must be added on a node, or a child of a node, with the `networked` component.
"
);
}
const
ownerId
=
networkedEl
.
components
.
networked
.
data
.
owner
;
console
.
log
(
"
video player for
"
+
ownerId
);
return
NAF
.
connection
.
adapter
.
getMediaStream
(
ownerId
);
})
.
then
(
stream
=>
{
console
.
log
(
"
Stream
"
,
stream
);
if
(
!
stream
)
{
return
;
}
const
v
=
document
.
createElement
(
"
video
"
);
v
.
srcObject
=
stream
;
v
.
style
.
position
=
"
absolute
"
;
v
.
style
.
bottom
=
0
;
v
.
style
.
height
=
"
100px
"
;
v
.
style
.
background
=
"
black
"
;
document
.
body
.
appendChild
(
v
);
v
.
play
();
this
.
videoEl
=
v
;
v
.
onloadedmetadata
=
()
=>
{
const
ratio
=
v
.
videoWidth
/
v
.
videoHeight
;
this
.
el
.
setAttribute
(
"
geometry
"
,
{
width
:
ratio
*
1
,
height
:
1
});
//this.el.setAttribute("visible", true);
this
.
el
.
setAttribute
(
"
material
"
,
"
src
"
,
v
);
};
});
},
remove
()
{
if
(
this
.
videoEl
)
{
this
.
videoEl
.
parent
.
removeChild
(
this
.
videoEl
);
}
}
});
function
updateVideoElementPosition
(
entity
)
{
function
updateVideoElementPosition
(
entity
)
{
const
headEl
=
document
.
querySelector
(
"
#head
"
);
const
headEl
=
document
.
querySelector
(
"
#head
"
);
...
...
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