iceshrimp-legacy/packages/client/src/scripts/sound.ts
daikei 3de2617d6b Remove hardcoding of sounds (#9510) (#9607)
Co-authored-by: Kio-td <kio.thedev@gmail.com>
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9607
Co-authored-by: daikei <daikei@noreply.codeberg.org>
Co-committed-by: daikei <daikei@noreply.codeberg.org>
2023-02-11 21:09:43 +00:00

38 lines
1 KiB
TypeScript

import { ColdDeviceStorage } from "@/store";
const cache = new Map<string, HTMLAudioElement>();
export function getAudio(file: string, useCache = true): HTMLAudioElement {
let audio: HTMLAudioElement;
if (useCache && cache.has(file)) {
audio = cache.get(file);
} else {
audio = new Audio(`/static-assets/sounds/${file}.mp3`);
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;
}
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;
const audio = setVolume(getAudio(file), volume);
audio.play();
}