summaryrefslogtreecommitdiff
path: root/src/client/scripts/sound.ts
blob: bb4cfee06aba5e2919f1bd205eeb031e07475fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { ColdDeviceStorage } from '@/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/sounds/${file}.mp3`);
		cache.set(file, audio);
	}
	audio.volume = masterVolume - ((1 - volume) * masterVolume);
	audio.play();
}