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
a46fd956
Commit
a46fd956
authored
7 years ago
by
Greg Fodor
Browse files
Options
Downloads
Patches
Plain Diff
Mic flow kind of working, but need to figure out VR mode entry not drawing UI
parent
972d5a4e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/react-components/ui-root.js
+80
-26
80 additions, 26 deletions
src/react-components/ui-root.js
with
80 additions
and
26 deletions
src/react-components/ui-root.js
+
80
−
26
View file @
a46fd956
...
@@ -12,11 +12,54 @@ async function grantedMicLabels() {
...
@@ -12,11 +12,54 @@ async function grantedMicLabels() {
return
mediaDevices
.
filter
(
d
=>
d
.
label
&&
d
.
kind
===
"
audioinput
"
).
map
(
d
=>
d
.
label
);
return
mediaDevices
.
filter
(
d
=>
d
.
label
&&
d
.
kind
===
"
audioinput
"
).
map
(
d
=>
d
.
label
);
}
}
async
function
hasGrantedMicPermissions
For2D
()
{
async
function
hasGrantedMicPermissions
()
{
const
micLabels
=
await
grantedMicLabels
();
const
micLabels
=
await
grantedMicLabels
();
return
micLabels
.
length
>
0
;
return
micLabels
.
length
>
0
;
}
}
function
stopAllTracks
(
mediaStream
)
{
for
(
const
track
of
mediaStream
.
getAudioTracks
())
{
track
.
stop
();
}
for
(
const
track
of
mediaStream
.
getVideoTracks
())
{
track
.
stop
();
}
}
async
function
getMediaStream
(
shareScreen
,
...
desiredMicRegexes
)
{
let
mediaStream
=
null
;
let
desiredAudioDeviceIds
;
const
mediaStreamHasDesiredMic
=
()
=>
{
if
(
!
mediaStream
||
mediaStream
.
getAudioTracks
().
length
==
0
)
return
false
;
if
(
desiredMicRegexes
.
length
==
0
)
return
true
;
return
!!
(
desiredMicRegexes
.
find
(
r
=>
mediaStream
.
getAudioTracks
()[
0
].
label
.
match
(
r
)));
};
do
{
if
(
mediaStream
)
{
stopAllTracks
(
mediaStream
);
}
const
mediaDevices
=
await
navigator
.
mediaDevices
.
enumerateDevices
();
desiredAudioDeviceIds
=
mediaDevices
.
filter
(
d
=>
{
return
desiredMicRegexes
.
find
(
r
=>
d
.
label
.
match
(
r
))
&&
d
.
kind
===
"
audioinput
"
;
}).
map
(
d
=>
d
.
deviceId
);
const
constraints
=
{
audio
:
desiredAudioDeviceIds
.
length
>
0
?
{
deviceId
:
{
exact
:
desiredAudioDeviceIds
}
}
:
true
,
video
:
shareScreen
?
{
mediaSource
:
"
screen
"
,
height
:
720
,
frameRate
:
30
}
:
false
};
mediaStream
=
await
navigator
.
mediaDevices
.
getUserMedia
(
constraints
);
}
while
(
!
mediaStreamHasDesiredMic
()
&&
desiredAudioDeviceIds
.
length
>
0
);
return
mediaStream
;
}
class
UIRoot
extends
Component
{
class
UIRoot
extends
Component
{
static
propTypes
=
{
static
propTypes
=
{
enterScene
:
PropTypes
.
func
,
enterScene
:
PropTypes
.
func
,
...
@@ -29,41 +72,52 @@ class UIRoot extends Component {
...
@@ -29,41 +72,52 @@ class UIRoot extends Component {
enterInVR
:
false
enterInVR
:
false
}
}
p
romptForMedia
=
async
()
=>
{
p
erformDirectEntryFlow
=
async
(
enterInVR
)
=>
{
console
.
log
(
"
HI
"
);
this
.
setState
({
enterInVR
}
);
const
constraints
=
{
audio
:
true
,
if
(
enterInVR
)
{
video
:
this
.
state
.
shareScreen
?
{
mediaSource
:
"
screen
"
,
height
:
720
,
frameRate
:
30
}
:
false
document
.
querySelector
(
"
a-scene
"
).
enterVR
();
}
;
}
const
mediaStream
=
await
navigator
.
mediaDevices
.
getUserMedia
(
constraints
);
const
hasMic
=
await
hasGrantedMicPermissions
();
const
audioTracks
=
mediaStream
.
getAudioTracks
();
console
.
log
(
audioTracks
);
if
(
audioTracks
.
length
>
0
)
{
console
.
log
(
"
A
"
);
const
selectedMic
=
audioTracks
[
0
].
label
;
if
(
hasMic
)
{
console
.
log
(
"
Mic:
"
+
selectedMic
);
console
.
log
(
"
B
"
);
// TODO if VR mode is desired here, look at the VR displays to see if we have the right mic
await
this
.
getMediaStreamAndEnterScene
();
// TODO: this.props.enterScene(mediaStream);
this
.
setState
({
entryStep
:
ENTRY_STEPS
.
finished
});
}
else
{
}
else
{
// TODO mic not granted
this
.
setState
({
entryStep
:
ENTRY_STEPS
.
mic_check
});
}
}
}
}
enter2D
=
async
()
=>
{
enter2D
=
async
()
=>
{
const
hasMic
=
await
hasGrantedMicPermissionsFor2D
();
await
this
.
performDirectEntryFlow
(
false
);
}
if
(
hasMic
)
{
enterVR
=
async
()
=>
{
await
this
.
promptForMedia
();
await
this
.
performDirectEntryFlow
(
true
);
this
.
setState
({
entryStep
:
ENTRY_STEPS
.
finished
,
enter_in_vr
:
false
});
}
}
else
{
this
.
setState
({
entryStep
:
ENTRY_STEPS
.
mic_check
,
enter_in_vr
:
false
});
getMediaStreamAndEnterScene
=
async
(...
desiredMicRegexes
)
=>
{
const
preStreamAcquisitionTime
=
new
Date
();
const
mediaStream
=
await
getMediaStream
(
this
.
state
.
shareScreen
,
...
desiredMicRegexes
);
if
(
mediaStream
)
{
if
(
mediaStream
.
getAudioTracks
().
length
>
0
)
{
console
.
log
(
`Using microphone:
${
mediaStream
.
getAudioTracks
()[
0
].
label
}
`
)
}
if
(
mediaStream
.
getVideoTracks
().
length
>
0
)
{
console
.
log
(
'
Screen sharing enabled.
'
)
}
}
}
this
.
setState
({
entryStep
:
ENTRY_STEPS
.
finished
});
this
.
props
.
enterScene
(
mediaStream
);
}
}
enterVR
=
()
=>
{
onMicActivateButtonClicked
=
async
()
=>
{
this
.
s
et
State
({
entryStep
:
ENTRY_STEPS
.
mic_check
,
enter_in_vr
:
true
}
);
await
this
.
g
et
MediaStreamAndEnterScene
(
);
}
}
componentDidMount
=
()
=>
{
componentDidMount
=
()
=>
{
...
@@ -86,7 +140,7 @@ class UIRoot extends Component {
...
@@ -86,7 +140,7 @@ class UIRoot extends Component {
const
micPanel
=
this
.
state
.
entryStep
===
ENTRY_STEPS
.
mic_check
const
micPanel
=
this
.
state
.
entryStep
===
ENTRY_STEPS
.
mic_check
?
(
?
(
<
div
>
<
div
>
<
button
onClick
=
{
this
.
promptForMedia
}
>
<
button
onClick
=
{
this
.
onMicActivateButtonClicked
}
>
Choose
Mic
Choose
Mic
<
/button
>
<
/button
>
<
/div
>
<
/div
>
...
...
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