From d970534d920eafab0289743bcc95523ec25f00d9 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 22 Dec 2022 09:01:58 +0900 Subject: enhance(client): improve ux of sound settings --- packages/client/src/scripts/sound.ts | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'packages/client/src/scripts') diff --git a/packages/client/src/scripts/sound.ts b/packages/client/src/scripts/sound.ts index 2b8279b3df..9d1f603235 100644 --- a/packages/client/src/scripts/sound.ts +++ b/packages/client/src/scripts/sound.ts @@ -2,6 +2,38 @@ import { ColdDeviceStorage } from '@/store'; const cache = new Map(); +export const soundsTypes = [ + null, + '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; + export function getAudio(file: string, useCache = true): HTMLAudioElement { let audio: HTMLAudioElement; if (useCache && cache.has(file)) { -- cgit v1.2.3-freya