summaryrefslogtreecommitdiff
path: root/packages/client/src/scripts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-22 09:01:58 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-12-22 09:01:58 +0900
commitd970534d920eafab0289743bcc95523ec25f00d9 (patch)
tree568c2b022eda2dd3f526e684e575386cbe740bf4 /packages/client/src/scripts
parentenhance(server): delete outdated notes of antenna regularly to improve db per... (diff)
downloadsharkey-d970534d920eafab0289743bcc95523ec25f00d9.tar.gz
sharkey-d970534d920eafab0289743bcc95523ec25f00d9.tar.bz2
sharkey-d970534d920eafab0289743bcc95523ec25f00d9.zip
enhance(client): improve ux of sound settings
Diffstat (limited to 'packages/client/src/scripts')
-rw-r--r--packages/client/src/scripts/sound.ts32
1 files changed, 32 insertions, 0 deletions
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<string, HTMLAudioElement>();
+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)) {