25 lines
698 B
TypeScript
25 lines
698 B
TypeScript
import { ColdDeviceStorage } from '@client/store';
|
|
|
|
const cache = new Map<string, HTMLAudioElement>();
|
|
|
|
export function play(type: string) {
|
|
const sound = ColdDeviceStorage.get('sound_' + type as any);
|
|
if (sound.type == null) return;
|
|
playFile(sound.type, sound.volume);
|
|
}
|
|
|
|
export function playFile(file: string, volume: number) {
|
|
const masterVolume = ColdDeviceStorage.get('sound_masterVolume');
|
|
if (masterVolume === 0) return;
|
|
|
|
let audio: HTMLAudioElement;
|
|
if (cache.has(file)) {
|
|
audio = cache.get(file);
|
|
} else {
|
|
audio = new Audio(`/static-assets/client/sounds/${file}.mp3`);
|
|
cache.set(file, audio);
|
|
}
|
|
audio.volume = masterVolume - ((1 - volume) * masterVolume);
|
|
audio.play();
|
|
}
|