2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-04-12 01:39:57 +00:00
|
|
|
import { markRaw } from 'vue';
|
|
|
|
import { Storage } from '@/pizzax';
|
|
|
|
|
|
|
|
export const soundConfigStore = markRaw(new Storage('sound', {
|
|
|
|
mediaVolume: {
|
|
|
|
where: 'device',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: 0.5,
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
sound_masterVolume: {
|
|
|
|
where: 'device',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: 0.3,
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
sound_note: {
|
|
|
|
where: 'account',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: { type: 'syuilo/n-aec', volume: 1 },
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
sound_noteMy: {
|
|
|
|
where: 'account',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: { type: 'syuilo/n-cea-4va', volume: 1 },
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
sound_notification: {
|
|
|
|
where: 'account',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: { type: 'syuilo/n-ea', volume: 1 },
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
sound_chat: {
|
|
|
|
where: 'account',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: { type: 'syuilo/pope1', volume: 1 },
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
sound_chatBg: {
|
|
|
|
where: 'account',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: { type: 'syuilo/waon', volume: 1 },
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
sound_antenna: {
|
|
|
|
where: 'account',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: { type: 'syuilo/triple', volume: 1 },
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
sound_channel: {
|
|
|
|
where: 'account',
|
2023-07-27 05:31:52 +00:00
|
|
|
default: { type: 'syuilo/square-pico', volume: 1 },
|
2023-04-12 01:39:57 +00:00
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
|
|
|
await soundConfigStore.ready;
|
|
|
|
|
|
|
|
//#region サウンドのColdDeviceStorage => indexedDBのマイグレーション
|
|
|
|
for (const target of Object.keys(soundConfigStore.state) as Array<keyof typeof soundConfigStore.state>) {
|
|
|
|
const value = localStorage.getItem(`miux:${target}`);
|
|
|
|
if (value) {
|
|
|
|
soundConfigStore.set(target, JSON.parse(value) as typeof soundConfigStore.def[typeof target]['default']);
|
|
|
|
localStorage.removeItem(`miux:${target}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//#endregion
|
2020-11-25 12:31:34 +00:00
|
|
|
|
|
|
|
const cache = new Map<string, HTMLAudioElement>();
|
|
|
|
|
2022-12-22 00:01:58 +00:00
|
|
|
export const soundsTypes = [
|
|
|
|
null,
|
2023-03-03 00:41:33 +00:00
|
|
|
'syuilo/n-aec',
|
|
|
|
'syuilo/n-aec-4va',
|
|
|
|
'syuilo/n-aec-4vb',
|
|
|
|
'syuilo/n-aec-8va',
|
|
|
|
'syuilo/n-aec-8vb',
|
|
|
|
'syuilo/n-cea',
|
|
|
|
'syuilo/n-cea-4va',
|
|
|
|
'syuilo/n-cea-4vb',
|
|
|
|
'syuilo/n-cea-8va',
|
|
|
|
'syuilo/n-cea-8vb',
|
|
|
|
'syuilo/n-eca',
|
|
|
|
'syuilo/n-eca-4va',
|
|
|
|
'syuilo/n-eca-4vb',
|
|
|
|
'syuilo/n-eca-8va',
|
|
|
|
'syuilo/n-eca-8vb',
|
|
|
|
'syuilo/n-ea',
|
|
|
|
'syuilo/n-ea-4va',
|
|
|
|
'syuilo/n-ea-4vb',
|
|
|
|
'syuilo/n-ea-8va',
|
|
|
|
'syuilo/n-ea-8vb',
|
|
|
|
'syuilo/n-ea-harmony',
|
2022-12-22 00:01:58 +00:00
|
|
|
'syuilo/up',
|
|
|
|
'syuilo/down',
|
|
|
|
'syuilo/pope1',
|
|
|
|
'syuilo/pope2',
|
|
|
|
'syuilo/waon',
|
|
|
|
'syuilo/popo',
|
|
|
|
'syuilo/triple',
|
|
|
|
'syuilo/poi1',
|
|
|
|
'syuilo/poi2',
|
|
|
|
'syuilo/pirori',
|
|
|
|
'syuilo/pirori-wet',
|
|
|
|
'syuilo/pirori-square-wet',
|
|
|
|
'syuilo/square-pico',
|
|
|
|
'syuilo/reverved',
|
|
|
|
'syuilo/ryukyu',
|
|
|
|
'syuilo/kick',
|
|
|
|
'syuilo/snare',
|
|
|
|
'syuilo/queue-jammed',
|
|
|
|
'aisha/1',
|
|
|
|
'aisha/2',
|
|
|
|
'aisha/3',
|
|
|
|
'noizenecio/kick_gaba1',
|
|
|
|
'noizenecio/kick_gaba2',
|
|
|
|
'noizenecio/kick_gaba3',
|
|
|
|
'noizenecio/kick_gaba4',
|
|
|
|
'noizenecio/kick_gaba5',
|
|
|
|
'noizenecio/kick_gaba6',
|
|
|
|
'noizenecio/kick_gaba7',
|
|
|
|
] as const;
|
|
|
|
|
2021-08-14 09:36:22 +00:00
|
|
|
export function getAudio(file: string, useCache = true): HTMLAudioElement {
|
|
|
|
let audio: HTMLAudioElement;
|
|
|
|
if (useCache && cache.has(file)) {
|
|
|
|
audio = cache.get(file);
|
|
|
|
} else {
|
2021-11-11 17:02:25 +00:00
|
|
|
audio = new Audio(`/client-assets/sounds/${file}.mp3`);
|
2021-08-14 09:36:22 +00:00
|
|
|
if (useCache) cache.set(file, audio);
|
|
|
|
}
|
|
|
|
return audio;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function setVolume(audio: HTMLAudioElement, volume: number): HTMLAudioElement {
|
2023-04-12 01:39:57 +00:00
|
|
|
const masterVolume = soundConfigStore.state.sound_masterVolume;
|
2021-08-14 09:36:22 +00:00
|
|
|
audio.volume = masterVolume - ((1 - volume) * masterVolume);
|
|
|
|
return audio;
|
|
|
|
}
|
|
|
|
|
2023-03-13 11:04:14 +00:00
|
|
|
export function play(type: 'noteMy' | 'note' | 'antenna' | 'channel' | 'notification') {
|
2023-04-12 01:39:57 +00:00
|
|
|
const sound = soundConfigStore.state[`sound_${type}`];
|
|
|
|
if (_DEV_) console.log('play', type, sound);
|
2020-11-25 12:31:34 +00:00
|
|
|
if (sound.type == null) return;
|
|
|
|
playFile(sound.type, sound.volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function playFile(file: string, volume: number) {
|
2021-08-14 09:36:22 +00:00
|
|
|
const audio = setVolume(getAudio(file), volume);
|
2023-07-15 01:00:03 +00:00
|
|
|
if (audio.volume === 0) return;
|
2020-11-25 12:31:34 +00:00
|
|
|
audio.play();
|
|
|
|
}
|