Skip to content
Snippets Groups Projects
Commit 2e3efb5f authored by Greg Fodor's avatar Greg Fodor
Browse files

Add HMD mic warning

parent 62c01bb3
No related branches found
No related tags found
No related merge requests found
src/assets/images/warning_icon.png

582 B

src/assets/images/warning_icon@2x.png

1.05 KiB

...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
"audio.title": "Test your audio", "audio.title": "Test your audio",
"audio.subtitle-desktop": "Confirm HMD speaker output", "audio.subtitle-desktop": "Confirm HMD speaker output",
"audio.subtitle-mobile": "Earphones are recommended", "audio.subtitle-mobile": "Earphones are recommended",
"audio.enter-now": "ENTER NOW" "audio.enter-now": "ENTER NOW",
"audio.hmd-mic-warning": "Your HMD mic is not chosen"
} }
} }
...@@ -28,6 +28,8 @@ const ENTRY_STEPS = { ...@@ -28,6 +28,8 @@ const ENTRY_STEPS = {
finished: "finished" finished: "finished"
} }
const HMD_MIC_REGEXES = [/\Wvive\W/i, /\Wrift\W/i];
async function grantedMicLabels() { async function grantedMicLabels() {
const mediaDevices = await navigator.mediaDevices.enumerateDevices(); const mediaDevices = await navigator.mediaDevices.enumerateDevices();
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);
...@@ -399,6 +401,28 @@ class UIRoot extends Component { ...@@ -399,6 +401,28 @@ class UIRoot extends Component {
this.setState({ micDevices: mediaDevices.filter(d => d.kind === "audioinput").map(d => ({ deviceId: d.deviceId, label: d.label }))}); this.setState({ micDevices: mediaDevices.filter(d => d.kind === "audioinput").map(d => ({ deviceId: d.deviceId, label: d.label }))});
} }
shouldShowHmdMicWarning = () => {
if (mobiledetect.mobile()) return false;
if (!this.state.enterInVR) return false;
if (!this.hasHmdMicrophone()) return false;
return !(HMD_MIC_REGEXES.find(r => this.selectedMicLabel().match(r)));
}
hasHmdMicrophone = () => {
return !!(this.state.micDevices.find(d => HMD_MIC_REGEXES.find(r => d.label.match(r))));
}
selectedMicLabel = () => {
return (this.state.mediaStream
&& this.state.mediaStream.getAudioTracks().length > 0
&& this.state.mediaStream.getAudioTracks()[0].label) || "";
}
selectedMicDeviceId = () => {
return this.state.micDevices.filter(d => d.label === this.selectedMicLabel).map(d => d.deviceId)[0];
}
onAudioReadyButton = () => { onAudioReadyButton = () => {
this.props.enterScene(this.state.mediaStream, this.state.enterInVR); this.props.enterScene(this.state.mediaStream, this.state.enterInVR);
...@@ -444,12 +468,6 @@ class UIRoot extends Component { ...@@ -444,12 +468,6 @@ class UIRoot extends Component {
</div> </div>
) : null; ) : null;
const selectedMicLabel = (this.state.mediaStream
&& this.state.mediaStream.getAudioTracks().length > 0
&& this.state.mediaStream.getAudioTracks()[0].label) || "";
const selectedMicDeviceId = this.state.micDevices.filter(d => d.label === selectedMicLabel).map(d => d.deviceId)[0];
const maxLevelHeight = 111; const maxLevelHeight = 111;
const micClip = { clip: `rect(${maxLevelHeight - Math.floor(this.state.micLevel * maxLevelHeight)}px, 111px, 111px, 0px)` }; const micClip = { clip: `rect(${maxLevelHeight - Math.floor(this.state.micLevel * maxLevelHeight)}px, 111px, 111px, 0px)` };
const speakerClip = { clip: `rect(${this.state.tonePlaying ? 0 : maxLevelHeight}px, 111px, 111px, 0px)` }; const speakerClip = { clip: `rect(${this.state.tonePlaying ? 0 : maxLevelHeight}px, 111px, 111px, 0px)` };
...@@ -474,13 +492,21 @@ class UIRoot extends Component { ...@@ -474,13 +492,21 @@ class UIRoot extends Component {
</div> </div>
</div> </div>
<div className="audio-setup-panel__device-chooser"> <div className="audio-setup-panel__device-chooser">
<select className="audio-setup-panel__device-chooser__dropdown" value={selectedMicDeviceId} onChange={this.micDeviceChanged}> <select className="audio-setup-panel__device-chooser__dropdown" value={this.selectedMicDeviceId()} onChange={this.micDeviceChanged}>
{ this.state.micDevices.map(d => (<option key={ d.deviceId } value={ d.deviceId }>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{d.label}</option>)) } { this.state.micDevices.map(d => (<option key={ d.deviceId } value={ d.deviceId }>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{d.label}</option>)) }
</select> </select>
<div className="audio-setup-panel__device-chooser__mic-icon"> <div className="audio-setup-panel__device-chooser__mic-icon">
<img src="./src/assets/images/mic_small.png" srcSet="./src/assets/images/mic_small@2x.png 2x"/> <img src="./src/assets/images/mic_small.png" srcSet="./src/assets/images/mic_small@2x.png 2x"/>
</div> </div>
</div> </div>
{ this.shouldShowHmdMicWarning() &&
(<div className="audio-setup-panel__hmd-mic-warning">
<img src="./src/assets/images/warning_icon.png" srcSet="./src/assets/images/warning_icon@2x.png 2x"
className="audio-setup-panel__hmd-mic-warning__icon"/>
<span className="audio-setup-panel__hmd-mic-warning__label">
<FormattedMessage id="audio.hmd-mic-warning"/>
</span>
</div>) }
<div className="audio-setup-panel__enter-button" onClick={this.onAudioReadyButton}> <div className="audio-setup-panel__enter-button" onClick={this.onAudioReadyButton}>
<FormattedMessage id="audio.enter-now"/> <FormattedMessage id="audio.enter-now"/>
</div> </div>
......
...@@ -306,3 +306,15 @@ $darker-grey: rgba(64, 64, 64, 1.0); ...@@ -306,3 +306,15 @@ $darker-grey: rgba(64, 64, 64, 1.0);
z-index: 1; z-index: 1;
} }
.audio-setup-panel__hmd-mic-warning {
margin: 20px;
}
.audio-setup-panel__hmd-mic-warning__label {
vertical-align: middle;
margin-left: 5px;
}
.audio-setup-panel__hmd-mic-warning__icon {
vertical-align: middle;
}
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