2021-11-11 19:02:25 +02:00
|
|
|
import { ColdDeviceStorage } from '@/store';
|
2020-11-25 14:31:34 +02:00
|
|
|
|
|
|
|
const cache = new Map<string, HTMLAudioElement>();
|
|
|
|
|
2022-12-22 02:01:58 +02:00
|
|
|
export const soundsTypes = [
|
|
|
|
null,
|
2023-03-02 01:36:15 +02:00
|
|
|
'syuilo/new-aec-4va',
|
|
|
|
'syuilo/new-aec-4vb',
|
|
|
|
'syuilo/new-aec-8va',
|
|
|
|
'syuilo/new-aec-8vb',
|
2023-03-01 10:22:17 +02:00
|
|
|
'syuilo/new-aec',
|
2023-03-02 01:36:15 +02:00
|
|
|
'syuilo/new-cea-4va',
|
|
|
|
'syuilo/new-cea-4vb',
|
|
|
|
'syuilo/new-cea-8va',
|
|
|
|
'syuilo/new-cea-8vb',
|
|
|
|
'syuilo/new-cea',
|
|
|
|
'syuilo/new-eca-4va',
|
|
|
|
'syuilo/new-eca-4vb',
|
|
|
|
'syuilo/new-eca-8va',
|
|
|
|
'syuilo/new-eca-8vb',
|
|
|
|
'syuilo/new-eca',
|
2022-12-22 02:01:58 +02: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 12:36:22 +03: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 19:02:25 +02:00
|
|
|
audio = new Audio(`/client-assets/sounds/${file}.mp3`);
|
2021-08-14 12:36:22 +03:00
|
|
|
if (useCache) cache.set(file, audio);
|
|
|
|
}
|
|
|
|
return audio;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function setVolume(audio: HTMLAudioElement, volume: number): HTMLAudioElement {
|
|
|
|
const masterVolume = ColdDeviceStorage.get('sound_masterVolume');
|
|
|
|
audio.volume = masterVolume - ((1 - volume) * masterVolume);
|
|
|
|
return audio;
|
|
|
|
}
|
|
|
|
|
2020-11-25 14:31:34 +02:00
|
|
|
export function play(type: string) {
|
2020-12-19 03:55:52 +02:00
|
|
|
const sound = ColdDeviceStorage.get('sound_' + type as any);
|
2020-11-25 14:31:34 +02:00
|
|
|
if (sound.type == null) return;
|
|
|
|
playFile(sound.type, sound.volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function playFile(file: string, volume: number) {
|
2020-12-19 03:55:52 +02:00
|
|
|
const masterVolume = ColdDeviceStorage.get('sound_masterVolume');
|
2020-11-25 14:31:34 +02:00
|
|
|
if (masterVolume === 0) return;
|
|
|
|
|
2021-08-14 12:36:22 +03:00
|
|
|
const audio = setVolume(getAudio(file), volume);
|
2020-11-25 14:31:34 +02:00
|
|
|
audio.play();
|
|
|
|
}
|