forked from gree/smfplayer.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
770 lines (666 loc) · 21.8 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
import * as zip from '@zip.js/zip.js';
import { Tab, Tooltip } from 'bootstrap';
import QueryString from 'query-string';
import { createWriteStream } from 'streamsaver';
import Player from '@/player.js';
import './style.scss';
formLock(true);
/** @type {import('../src/player.js')} SMF Player */
const player = new Player('#wml');
/** @type {'auto'|'dark'|'light'|undefined} カラーモード */
const getStoredTheme = () => localStorage.getItem('theme');
/**
* テーマを変更
* @param {'auto'|'dark'|'light'|undefined} theme
*/
const setStoredTheme = theme => localStorage.setItem('theme', theme);
/** @type {'dark'|'light'} 設定されたテーマを取得 */
const getPreferredTheme = () => {
const storedTheme = getStoredTheme();
if (storedTheme) {
return storedTheme;
}
return window.matchMedia('(prefers-color-scheme: dark)').matches
? 'dark'
: 'light';
};
/**
* テーマをセット
* @param {'auto'|'dark'|'light'|undefined} theme
*/
const setTheme = theme => {
if (
theme === 'auto' &&
window.matchMedia('(prefers-color-scheme: dark)').matches
) {
document.documentElement.setAttribute('data-bs-theme', 'dark');
} else {
document.documentElement.setAttribute('data-bs-theme', theme);
}
if (theme === 'light') {
player.sendRawMidiMessage('F0,0A,7D,10,00,01,01,F7');
} else if (theme === 'dark') {
console.log(theme);
player.sendRawMidiMessage('F0,0A,7D,10,00,01,02,F7');
} else {
player.sendRawMidiMessage('F0,0A,7D,10,00,01,00,F7');
}
};
setTheme(getPreferredTheme());
const showActiveTheme = (theme, focus = false) => {
const themeSwitcher = document.querySelector('#bd-theme');
if (!themeSwitcher) {
return;
}
const themeSwitcherText = document.querySelector('#bd-theme-text');
const activeThemeIcon = document.querySelector('.theme-icon-active use');
const btnToActive = document.querySelector(
`[data-bs-theme-value="${theme}"]`
);
const svgOfActiveBtn = btnToActive
.querySelector('svg use')
.getAttribute('href');
document.querySelectorAll('[data-bs-theme-value]').forEach(element => {
element.classList.remove('active');
element.setAttribute('aria-pressed', 'false');
});
btnToActive.classList.add('active');
btnToActive.setAttribute('aria-pressed', 'true');
activeThemeIcon.setAttribute('href', svgOfActiveBtn);
const themeSwitcherLabel = `${themeSwitcherText.textContent} (${btnToActive.dataset.bsThemeValue})`;
themeSwitcher.setAttribute('aria-label', themeSwitcherLabel);
if (focus) {
themeSwitcher.focus();
}
};
window
.matchMedia('(prefers-color-scheme: dark)')
.addEventListener('change', () => {
const storedTheme = getStoredTheme();
if (storedTheme !== 'light' && storedTheme !== 'dark') {
setTheme(getPreferredTheme());
}
});
/** @type {NodeListOf<Element>} - Bootstrapのツールチップ */
const tooltipTriggerList = document.querySelectorAll('*[title]');
[...tooltipTriggerList].map(tooltipTriggerEl => new Tooltip(tooltipTriggerEl));
/** @type {boolean} - インターバル関数用。準備完了フラグ */
let isReady = false;
/** @type {Record<string, any>} - QueryStrings */
const params = QueryString.parse(window.location.hash);
/** @type {string[]} - 利用可能な拡張子 */
const availableExts = [
'.mid',
'.midi',
'.mld',
'.mml',
'.mms',
'.mmi',
'.ms2mml',
];
/**
* メイン処理
*/
document.addEventListener('DOMContentLoaded', async () => {
// smfplayer.jsの初期化
player.setLoop(document.getElementById('playerloop').checked);
player.setTempoRate(document.getElementById('tempo').value);
player.setMasterVolume(document.getElementById('volume').value * 16383);
// WebMidiLink設定
player.setWebMidiLink(
import.meta.env.VITE_WML_URL || 'https://logue.dev/sf2synth.js/',
'wml'
);
/** @type {HTMLButtonElement[]} */
const triggerTabList = [].slice.call(
document.querySelectorAll('#control-tab button')
);
triggerTabList.forEach(triggerEl => {
const tabTrigger = new Tab(triggerEl);
triggerEl.addEventListener('click', event => {
event.preventDefault();
tabTrigger.show();
});
});
/** @type {HTMLSelectElement} */
const zips = document.getElementById('zips');
/*
const mmls = await fetch(`${import.meta.env.BASE_URL}files/index.json`).then(
response => response.json()
);
mmls.forEach((k, i) => {
const option = document.createElement('option');
option.innerHTML = Object.keys(k);
option.value = `${import.meta.env.BASE_URL}files/${Object.values(k)}`;
if (i === 0) {
option.selected = 'selected';
}
zips.appendChild(option);
});
*/
// Zipファイルの取得
document
.getElementById('files')
.addEventListener('change', () => handleSelect());
zips.addEventListener('change', e => loadSample(e.target.value));
if (params.zip && !initialized) {
// クエリからZipファイルを選択
zips.value = params.zip;
} else {
randomArchive();
}
loadSample(zips.value);
/** @type {HTMLDivElement} */
const playerCard = document.getElementById('player');
// MIDIファイルのドラッグアンドドロップ
playerCard.addEventListener(
'drop',
event => {
/** @type {DataTransfer} */
const dt = event.dataTransfer;
if (dt.files.length) {
event.preventDefault();
event.stopPropagation();
handleFile(dt.files[0]);
}
playerCard.classList.remove('bg-info');
},
false
);
playerCard.addEventListener(
'dragover',
event => {
event.preventDefault();
event.stopPropagation();
playerCard.classList.add('bg-info');
},
false
);
playerCard.addEventListener(
'dragleave',
event => {
event.preventDefault();
event.stopPropagation();
playerCard.classList.remove('bg-info');
},
false
);
// テンポ設定
document.getElementById('tempo').addEventListener('change', e => {
const value = e.target.value;
player.setTempoRate(value);
document.getElementById('tempo_value').innerText = value;
});
// マスターボリューム
document.getElementById('volume').addEventListener('change', e => {
const value = e.target.value;
player.setMasterVolume(value * 16383);
document.getElementById('volume_value').innerText = value;
});
// 前に戻るボタン
document.getElementById('prev').addEventListener('click', () => {
/** @type {HTMLSelectElement} 現在選択中の項目を取得 */
const select = document.getElementById('files');
const selected = select.selectedIndex;
if (selected === select.options.length) {
// 末尾の場合、最後の曲へ
select.selectedIndex = select.options.length;
} else {
// 選択されている項目の前の項目を選択
select.selectedIndex = selected - 1;
}
handleSelect();
});
// 次に進むボタン
document.getElementById('next').addEventListener('click', () => {
/** @type {HTMLSelectElement} */
const select = document.getElementById('files');
/** @type {number} */
const selected = select.selectedIndex;
if (selected === select.options.length) {
// 末尾の場合最初に戻る
select.selectedIndex = 0;
} else {
// 今選択されてる項目の次の項目を選択
select.selectedIndex = selected + 1;
}
handleSelect();
});
// 再生/一時停止ボタン
document.getElementById('play').addEventListener('click', () => {
if (player.pause) {
// 再生
player.play();
} else {
// 停止
player.stop();
}
});
// 停止ボタン
document.getElementById('stop').addEventListener('click', () => {
handleSelect();
// ハッシュを削除
history.pushState('', document.title, window.location.pathname);
setTimeout(() => {
player.stop();
}, 51); // よく分からんが非同期で止めるらしい
});
// パニックボタン
document
.getElementById('panic')
.addEventListener('click', () => player.sendAllSoundOff());
// GMリセットボタン
document
.getElementById('reset')
.addEventListener('click', () => player.sendGmReset());
// MIDIファイルのダウンロード
document.getElementById('download').addEventListener('click', async () => {
/** @type {HTMLSelectElement} 選択状態を取得 */
const select = document.getElementById('files');
/** @type {HTMLOptionElement} */
const option = select.querySelectorAll('option')[select.selectedIndex];
const filename = option.value;
/** @type {import('@zip.js/zip.js').Entry[]} ファイルデータ一覧 */
const entries = await select.zip.getEntries({
filenameEncoding: 'shift_jis',
});
/** @type {import('@zip.js/zip.js').Entry} - ファイル */
const entry = entries.find(entry => entry.filename === filename);
/** @type {ArrayBuffer} シーケンスデーター */
const bytes = await entry.getData(new zip.Uint8ArrayWriter());
const fileStream = createWriteStream(filename, {
size: bytes.byteLength,
});
const writer = fileStream.getWriter();
writer.write(bytes);
writer.close();
});
// シンセサイザ変更
document.getElementById('synth').addEventListener('change', e => {
player.stop();
player.setWebMidiLink(e.target.value, 'wml');
});
// ダークモード
showActiveTheme(getPreferredTheme());
document.querySelectorAll('[data-bs-theme-value]').forEach(toggle => {
toggle.addEventListener('click', () => {
const theme = toggle.getAttribute('data-bs-theme-value');
setStoredTheme(theme);
setTheme(theme);
showActiveTheme(theme, true);
});
});
formLock(false);
});
/**
* ファイルを読み込む
*
* @param {File} file ファイル
*/
function handleFile(file) {
/** @type {HTMLDivElement} */
const info = document.getElementById('info');
info.innerText = 'Now Loading...';
/** @type {HTMLDivElement} */
const progressOuter = document.createElement('div');
progressOuter.className = 'progress';
/** @type {HTMLDivElement} */
const progress = document.createElement('div');
progress.className = 'progress-bar progress-warning';
progressOuter.appendChild(progress);
info.appendChild(progressOuter);
/** @type {FileReader} */
const reader = new FileReader();
player.sendGmReset();
reader.onload = e => {
const input = new Uint8Array(e.target.result);
handleInput(file.name, input);
info.removeChild(progressOuter);
info.innerHtml = `Now Playing "${file.name}".`;
info.classList.remove('alert-warning');
info.classList.add('alert-success');
};
reader.onloadstart = () => info.classList.remove('alert-success');
info.classList.add('alert-warning');
reader.onprogress = e => {
if (e.lengthComputable) {
const percentLoaded = (e.loaded / e.total) * 100;
progress.style.width = percentLoaded + '%';
progress.innerText = percentLoaded + ' %';
}
};
reader.readAsArrayBuffer(file);
}
let initialized = false;
/**
* Zipファイルの内容を取得し、selectタグに割り当てる
*
* @param {Srting} zipfile - Zipファイル名
*/
async function loadSample(zipfile) {
formLock(true);
/** @type {HTMLSelectElement} ファイルリスト */
const select = document.getElementById('files');
/**
* 読み込まれたときの処理
*
* @param {Blob} stream
*/
const ready = async stream => {
// ファイルリストの子要素を一括削除
while (select.firstChild) select.removeChild(select.firstChild);
// Zipファイルを展開
select.zip = new zip.ZipReader(new zip.BlobReader(stream));
/** @type {import('@zip.js/zip.js').Entry[]} ファイルデータ一覧 */
const entries = await select.zip.getEntries({
filenameEncoding: 'shift_jis',
});
// セレクトボックスに流し込む
entries.forEach((/** @type {import('@zip.js/zip.js').Entry} */ entry) => {
const ext = entry.filename
.slice(entry.filename.lastIndexOf('.'))
.toLowerCase();
if (ext === '/' || !availableExts.includes(ext)) {
return;
}
/** @type {HTMLOptionElement} */
const option = document.createElement('option');
// 項目名
option.textContent = entry.filename;
// 生のファイル名
option.value = entry.filename;
// selectタグに流し込む
select.appendChild(option);
});
// 初期値が一番上の項目になるとつまらないのでランダム化
const prev = select.selectedIndex;
let next = prev;
while (prev === next) {
next = ~~(select.length * Math.random());
}
select.selectedIndex = next;
formLock(false);
if (params.file && !initialized) {
// クエリにファイル名が含まれている場合、それを選択
select.value = params.file;
handleSelect();
}
initialized = true;
};
/** @type {CacheStorage} */
const cache = await window.caches.open('zips');
/** @type {Response} */
const cached = await cache.match(select.value);
if (cached) {
ready(await cached.blob());
return;
}
/** @type {Response} - キャッシュがない場合Fetchで取得 */
const response = await fetch(zipfile, {
method: 'GET',
mode: 'no-cors',
credentials: 'include',
});
if (!response.ok) {
throw new Error('Network response was not ok.');
}
/** @type {Response} */
const clonedResponse = response.clone();
if (cache) {
cache.put(zipfile, clonedResponse);
}
ready(await response.blob());
formLock(false);
}
/**
* 選択されたファイルを解凍
*
* @returns {void}
*/
async function handleSelect() {
/** @type {HTMLSelectElement} */
const select = document.getElementById('files');
/** @type {string} */
const filename = select.value;
if (!filename) {
return;
}
/** @type {import('@zip.js/zip.js').Entry[]} ファイルデータ一覧 */
const entries = await select.zip.getEntries({
filenameEncoding: 'shift_jis',
});
/** @type {import('@zip.js/zip.js').Entry} - ファイル */
const entry = entries.find(entry => entry.filename === filename);
/** @type {import('@zip.js/zip.js').Uint8ArrayWriter} - Uint8Arrayバッファライター */
const writer = new zip.Uint8ArrayWriter();
handleInput(filename, await entry.getData(writer));
document.getElementById('info').innerHTML = `Now playing "${filename}".`;
// ページのタイトルを反映
document.title = `${filename} - ${
document.getElementById('zips').value
} / Standard MIDI Player for Web`;
const hash = `#zip=${encodeURIComponent(
document.getElementById('zips').value
)}&file=${encodeURIComponent(filename)}`;
// メタ情報のタイトル
document.getElementById('music_title').value = player.getSequenceName(1);
// メタ情報の著作権表記
document.getElementById('copyright').value = player.getCopyright();
// pushstateを使用
if (window.history?.pushState) {
window.history.pushState(document.title, null, hash);
return;
}
document
.querySelector('link[rel="canonical"]')
.setAttribute('href', `${location.href}/${hash}`);
if (params.zip && params.file) {
player.play();
}
}
/**
* MIDI/MLDファイルを読み込ませる
*
* @param {string} filename ファイル名
* @param {Uint8Array} buffer ファイルの中身
*/
function handleInput(filename, buffer) {
// 再生中のMIDIを停止。
player.stop();
// 音を停止
player.sendAllSoundOff();
// GMリセットを送信
player.sendGmReset();
// テキストを初期化
document.getElementById('music_title').value = '';
document.getElementById('copyright').value = '';
document.getElementById('text_event').value = '';
document.title = 'SMF Player';
switch (filename.split('.').pop().toLowerCase()) {
case 'midi':
case 'mid':
// Load MIDI file
player.loadMidiFile(buffer);
break;
case 'mld':
// Load Polyphonic Ringtone File
player.loadMldFile(buffer);
break;
case 'ms2mml':
// Load Maple Story 2 MML File
player.loadMs2MmlFile(buffer);
break;
case 'mms':
// Load MakiMabi Sequence MML File
player.loadMakiMabiSequenceFile(buffer);
break;
case 'mml':
// Load 3MLE MML File
player.load3MleFile(buffer);
break;
case 'mmi':
// Load Mabicco MML File
player.loadMabiIccoFile(buffer);
break;
}
// マスターボリュームが低いままになるので
player.setMasterVolume(document.getElementById('volume').value * 16383);
player.play();
}
/**
* ランダム再生
*/
function randomPlay() {
const select = document.getElementById('files');
select.selectedIndex = ~~(select.length * Math.random());
handleSelect();
}
/**
* フォームのロック/アンロック
*
* @param {boolean} lock
*/
function formLock(lock = true) {
document
.querySelectorAll('input, button, select')
.forEach(e => (e.disabled = lock));
}
/**
* Zipファイルのランダム選択
*/
function randomArchive() {
const select = document.getElementById('zips');
select.selectedIndex = ~~(select.length * Math.random());
handleSelect();
}
/**
* IFRAMEから送られてくるwindow.postMessageを監視
*/
window.onmessage = (/** @type {MessageEvent} */ e) => {
const event = e.data; // Should work.
/** @type {HTMLSelectElement} */
const select = document.getElementById('files');
/** @type {HTMLButtonElement} */
const playButton = document.getElementById('play');
/** @type {HTMLDivElement} */
const info = document.getElementById('info');
switch (event) {
case 'endoftrack':
// 曲が終了したとき
player.stop();
// 曲は終了しても、player.pauseの値が変化しないので、ここで、再生ボタンにする。
playButton.innerHTML = '<em class="bi bi-play-fill"></em>';
playButton.classList.add('btn-primary');
playButton.classList.remove('btn-success');
if (document.getElementById('random').chcked) {
randomPlay();
} else {
const files = document.getElementById('files');
if (select.selectedIndex !== 0) {
// ループで最初に戻った場合(player.positionがリセットされた場合)
// 次の曲を選択
if (select.selectedIndex === files.options.length) {
// 末尾の場合最初に戻る
files.selectedIndex = 0;
} else {
files.selectedIndex = select.selectedIndex + 1;
}
// 曲を変更
handleSelect();
}
}
break;
case 'progress':
info.innerText = 'Loading soundfont...';
break;
case 'link,ready':
// WMLが読み込まれた時
isReady = true;
if (document.getElementById('random').checked) {
handleSelect();
}
info.classList.add('alert-success');
info.classList.remove('alert-warning');
info.innerText = 'Ready.';
document
.querySelectorAll('input, button, select')
.forEach(e => (e.disabled = ''));
break;
}
};
let parentLyrics = '';
let parentTextEvent = '';
let lyric = '';
/**
* インターバル関数
*/
setInterval(() => {
/** @type {HTMLDivElement} */
const progressBar = document
.getElementById('music-progress')
.querySelector('.progress-bar');
/** @type {HTMLButtonElement} */
const playButton = document.getElementById('play');
if (isReady) {
// player.pauseの値で再生/一時停止ボタンを変化させる
// ただし、smfplayer.jsのバグでplayer.loadMidiFile()が実行された直後、
// 再生していない状態でもplayer.pauseの値がtrueになってしまうので、
// もう一工夫いる。
if (player.pause) {
playButton.innerHTML = '<em class="bi bi-play"></em>';
playButton.classList.remove('btn-success');
playButton.classList.add('btn-primary');
} else {
playButton.innerHTML = '<em class="bi bi-pause"></em>';
playButton.classList.remove('btn-primary');
playButton.classList.add('btn-success');
}
/** @type {number} */
const percentage = parseInt(
(player.getPosition() / player.getLength()) * 100
);
progressBar.style.width = percentage + '%';
progressBar.innerText = percentage + '%';
document.getElementById('time-now').innerText = player.getTime();
document.getElementById('time-total').innerText = player.getTotalTime();
document.getElementById('current-tempo').innerText = player.getTempo();
/**
* @type {string} 歌詞の処理。(誰得?)
* やる気ないので、WebMidiカラオケ作りたい人は下の資料を参考にがんばってくれ。
*
* @see https://jp.yamaha.com/files/download/other_assets/7/321757/xfspc.pdf
*/
const lyrics = player.getLyrics();
if (lyrics && lyrics.length !== 0) {
if (parentLyrics !== lyrics) {
lyric = ''; // 改ページ
lyrics
.replace(/\//g, '<br />') // 改行
.replace(/>/g, ' ') // インデント
.replace(/&m/g, '👨🎤') // 男性歌手
.replace(/&f/g, '👩🎤') // 女性歌手
.replace(/&c/g, '👫'); // コーラス
lyric += lyrics;
document.getElementById('lyrics').innerText = lyric;
}
}
if (parentTextEvent !== player.getTextEvent()) {
document.getElementById('text_event').value = player.getTextEvent();
}
parentLyrics = player.getLyrics();
parentTextEvent = player.getTextEvent();
if (percentage === 100) {
// 次の曲
/** @type {HTMLSelectElement} */
const files = document.getElementById('files');
if (files.selectedIndex === files.options.length) {
// 末尾の場合最初に戻る
files.selectedIndex = 0;
} else {
// 今選択されてる項目の次の項目を選択
files.selectedIndex = files.selectedIndex + 1;
}
handleSelect();
}
}
}, 600);