2019-12-01 20:30:04 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2019-2020 Yomichan Authors
|
2019-12-01 20:30:04 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-12-01 20:30:04 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
/* global
|
|
|
|
* AudioSystem
|
|
|
|
*/
|
2019-12-01 20:30:04 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
class AudioController {
|
2020-05-30 13:33:13 +00:00
|
|
|
constructor(settingsController) {
|
|
|
|
this._settingsController = settingsController;
|
2020-05-29 23:56:38 +00:00
|
|
|
this._audioSystem = null;
|
|
|
|
this._audioSourceContainer = null;
|
|
|
|
this._audioSourceAddButton = null;
|
|
|
|
this._audioSourceEntries = [];
|
|
|
|
}
|
2019-12-01 20:30:04 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
async prepare() {
|
|
|
|
this._audioSystem = new AudioSystem({
|
|
|
|
audioUriBuilder: null,
|
|
|
|
useCache: true
|
|
|
|
});
|
2019-12-01 20:30:04 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
this._audioSourceContainer = document.querySelector('.audio-source-list');
|
|
|
|
this._audioSourceAddButton = document.querySelector('.audio-source-add');
|
|
|
|
this._audioSourceContainer.textContent = '';
|
|
|
|
|
|
|
|
this._audioSourceAddButton.addEventListener('click', this._onAddAudioSource.bind(this), false);
|
|
|
|
|
|
|
|
this._prepareTextToSpeech();
|
2020-05-30 13:33:13 +00:00
|
|
|
|
|
|
|
this._settingsController.on('optionsChanged', this._onOptionsChanged.bind(this));
|
|
|
|
|
2020-05-31 01:54:38 +00:00
|
|
|
const options = await this._settingsController.getOptions();
|
|
|
|
this._onOptionsChanged({options});
|
2020-05-29 23:56:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Private
|
2019-12-01 20:30:04 +00:00
|
|
|
|
2020-05-31 01:54:38 +00:00
|
|
|
_onOptionsChanged({options}) {
|
|
|
|
for (let i = this._audioSourceEntries.length - 1; i >= 0; --i) {
|
|
|
|
this._cleanupAudioSourceEntry(i);
|
2020-05-30 13:33:13 +00:00
|
|
|
}
|
|
|
|
|
2020-05-31 01:54:38 +00:00
|
|
|
for (const audioSource of options.audio.sources) {
|
2020-05-30 13:33:13 +00:00
|
|
|
this._createAudioSourceEntry(audioSource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
_prepareTextToSpeech() {
|
|
|
|
if (typeof speechSynthesis === 'undefined') { return; }
|
2019-12-06 03:36:59 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
speechSynthesis.addEventListener('voiceschanged', this._updateTextToSpeechVoices.bind(this), false);
|
|
|
|
this._updateTextToSpeechVoices();
|
|
|
|
|
|
|
|
document.querySelector('#text-to-speech-voice').addEventListener('change', this._onTextToSpeechVoiceChange.bind(this), false);
|
|
|
|
document.querySelector('#text-to-speech-voice-test').addEventListener('click', this._testTextToSpeech.bind(this), false);
|
|
|
|
}
|
2019-12-06 03:36:59 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
_updateTextToSpeechVoices() {
|
|
|
|
const voices = Array.prototype.map.call(speechSynthesis.getVoices(), (voice, index) => ({voice, index}));
|
|
|
|
voices.sort(this._textToSpeechVoiceCompare.bind(this));
|
|
|
|
|
|
|
|
document.querySelector('#text-to-speech-voice-container').hidden = (voices.length === 0);
|
|
|
|
|
|
|
|
const fragment = document.createDocumentFragment();
|
|
|
|
|
|
|
|
let option = document.createElement('option');
|
|
|
|
option.value = '';
|
|
|
|
option.textContent = 'None';
|
2019-12-06 03:36:59 +00:00
|
|
|
fragment.appendChild(option);
|
2020-05-29 23:56:38 +00:00
|
|
|
|
|
|
|
for (const {voice} of voices) {
|
|
|
|
option = document.createElement('option');
|
|
|
|
option.value = voice.voiceURI;
|
|
|
|
option.textContent = `${voice.name} (${voice.lang})`;
|
|
|
|
fragment.appendChild(option);
|
|
|
|
}
|
|
|
|
|
|
|
|
const select = document.querySelector('#text-to-speech-voice');
|
|
|
|
select.textContent = '';
|
|
|
|
select.appendChild(fragment);
|
|
|
|
select.value = select.dataset.value;
|
2019-12-01 20:30:04 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
_textToSpeechVoiceCompare(a, b) {
|
|
|
|
const aIsJapanese = this._languageTagIsJapanese(a.voice.lang);
|
|
|
|
const bIsJapanese = this._languageTagIsJapanese(b.voice.lang);
|
|
|
|
if (aIsJapanese) {
|
|
|
|
if (!bIsJapanese) { return -1; }
|
|
|
|
} else {
|
|
|
|
if (bIsJapanese) { return 1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
const aIsDefault = a.voice.default;
|
|
|
|
const bIsDefault = b.voice.default;
|
|
|
|
if (aIsDefault) {
|
|
|
|
if (!bIsDefault) { return -1; }
|
|
|
|
} else {
|
|
|
|
if (bIsDefault) { return 1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
return a.index - b.index;
|
|
|
|
}
|
2019-12-01 20:30:04 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
_languageTagIsJapanese(languageTag) {
|
|
|
|
return (
|
2020-06-13 14:18:44 +00:00
|
|
|
languageTag.startsWith('ja_') ||
|
2020-05-29 23:56:38 +00:00
|
|
|
languageTag.startsWith('ja-') ||
|
|
|
|
languageTag.startsWith('jpn-')
|
|
|
|
);
|
|
|
|
}
|
2019-12-01 20:30:04 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
_testTextToSpeech() {
|
|
|
|
try {
|
|
|
|
const text = document.querySelector('#text-to-speech-voice-test').dataset.speechText || '';
|
|
|
|
const voiceUri = document.querySelector('#text-to-speech-voice').value;
|
|
|
|
|
|
|
|
const audio = this._audioSystem.createTextToSpeechAudio(text, voiceUri);
|
|
|
|
audio.volume = 1.0;
|
|
|
|
audio.play();
|
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
2019-12-01 20:30:04 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
_instantiateTemplate(templateSelector) {
|
|
|
|
const template = document.querySelector(templateSelector);
|
|
|
|
const content = document.importNode(template.content, true);
|
|
|
|
return content.firstChild;
|
2019-12-01 20:30:04 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
_getUnusedAudioSource() {
|
|
|
|
const audioSourcesAvailable = [
|
|
|
|
'jpod101',
|
|
|
|
'jpod101-alternate',
|
|
|
|
'jisho',
|
|
|
|
'custom'
|
|
|
|
];
|
|
|
|
for (const source of audioSourcesAvailable) {
|
2020-05-31 01:54:38 +00:00
|
|
|
if (!this._audioSourceEntries.some((metadata) => metadata.value === source)) {
|
2020-05-29 23:56:38 +00:00
|
|
|
return source;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return audioSourcesAvailable[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
_createAudioSourceEntry(value) {
|
|
|
|
const eventListeners = new EventListenerCollection();
|
|
|
|
const container = this._instantiateTemplate('#audio-source-template');
|
|
|
|
const select = container.querySelector('.audio-source-select');
|
|
|
|
const removeButton = container.querySelector('.audio-source-remove');
|
|
|
|
|
|
|
|
select.value = value;
|
2019-12-01 20:30:04 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
const entry = {
|
|
|
|
container,
|
2020-05-31 01:54:38 +00:00
|
|
|
eventListeners,
|
|
|
|
value
|
2020-05-29 23:56:38 +00:00
|
|
|
};
|
2019-12-01 20:30:04 +00:00
|
|
|
|
2020-05-29 23:56:38 +00:00
|
|
|
eventListeners.addEventListener(select, 'change', this._onAudioSourceSelectChange.bind(this, entry), false);
|
|
|
|
eventListeners.addEventListener(removeButton, 'click', this._onAudioSourceRemoveClicked.bind(this, entry), false);
|
|
|
|
|
|
|
|
this._audioSourceContainer.appendChild(container);
|
|
|
|
this._audioSourceEntries.push(entry);
|
|
|
|
}
|
|
|
|
|
2020-05-31 01:54:38 +00:00
|
|
|
async _removeAudioSourceEntry(entry) {
|
2020-05-29 23:56:38 +00:00
|
|
|
const index = this._audioSourceEntries.indexOf(entry);
|
|
|
|
if (index < 0) { return; }
|
|
|
|
|
2020-05-31 01:54:38 +00:00
|
|
|
this._cleanupAudioSourceEntry(index);
|
|
|
|
await this._settingsController.modifyProfileSettings([{
|
|
|
|
action: 'splice',
|
|
|
|
path: 'audio.sources',
|
|
|
|
start: index,
|
|
|
|
deleteCount: 1,
|
|
|
|
items: []
|
|
|
|
}]);
|
|
|
|
}
|
|
|
|
|
|
|
|
_cleanupAudioSourceEntry(index) {
|
|
|
|
const {container, eventListeners} = this._audioSourceEntries[index];
|
2020-05-29 23:56:38 +00:00
|
|
|
if (container.parentNode !== null) {
|
|
|
|
container.parentNode.removeChild(container);
|
|
|
|
}
|
|
|
|
eventListeners.removeAllEventListeners();
|
|
|
|
this._audioSourceEntries.splice(index, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onTextToSpeechVoiceChange(e) {
|
|
|
|
e.currentTarget.dataset.value = e.currentTarget.value;
|
|
|
|
}
|
|
|
|
|
2020-05-31 01:54:38 +00:00
|
|
|
async _onAddAudioSource() {
|
2020-05-29 23:56:38 +00:00
|
|
|
const audioSource = this._getUnusedAudioSource();
|
2020-05-31 01:54:38 +00:00
|
|
|
const index = this._audioSourceEntries.length;
|
2020-05-29 23:56:38 +00:00
|
|
|
this._createAudioSourceEntry(audioSource);
|
2020-05-31 01:54:38 +00:00
|
|
|
await this._settingsController.modifyProfileSettings([{
|
|
|
|
action: 'splice',
|
|
|
|
path: 'audio.sources',
|
|
|
|
start: index,
|
|
|
|
deleteCount: 0,
|
|
|
|
items: [audioSource]
|
|
|
|
}]);
|
2019-12-01 20:30:04 +00:00
|
|
|
}
|
2019-12-12 02:15:51 +00:00
|
|
|
|
2020-05-31 01:54:38 +00:00
|
|
|
async _onAudioSourceSelectChange(entry, event) {
|
2020-05-29 23:56:38 +00:00
|
|
|
const index = this._audioSourceEntries.indexOf(entry);
|
|
|
|
if (index < 0) { return; }
|
|
|
|
|
|
|
|
const value = event.currentTarget.value;
|
2020-05-31 01:54:38 +00:00
|
|
|
entry.value = value;
|
|
|
|
await this._settingsController.setProfileSetting(`audio.sources[${index}]`, value);
|
2020-05-29 23:56:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-31 01:54:38 +00:00
|
|
|
async _onAudioSourceRemoveClicked(entry) {
|
|
|
|
await this._removeAudioSourceEntry(entry);
|
2020-05-29 23:56:38 +00:00
|
|
|
}
|
2019-12-12 02:15:51 +00:00
|
|
|
}
|