From e107b26f5d9b962199320eaca8afc9696bc5724f Mon Sep 17 00:00:00 2001 From: krippix Date: Sat, 17 Jun 2023 20:31:48 +0200 Subject: [PATCH 1/4] added debug page for console print --- html/debug.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 html/debug.html diff --git a/html/debug.html b/html/debug.html new file mode 100644 index 0000000..a542477 --- /dev/null +++ b/html/debug.html @@ -0,0 +1,41 @@ + + + MidiTrainer - DEBUG + + + + + +
+
+
+ + + + +
+ +
+
+ +
+ + + + + + + \ No newline at end of file From 505ab758c47f5950b1d3115bc4440936dc064595 Mon Sep 17 00:00:00 2001 From: krippix Date: Sat, 17 Jun 2023 20:32:06 +0200 Subject: [PATCH 2/4] added debug page --- html/assets/css/base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/assets/css/base.css b/html/assets/css/base.css index 09a6fee..0b3712a 100644 --- a/html/assets/css/base.css +++ b/html/assets/css/base.css @@ -22,6 +22,10 @@ h1 { display: flex; flex-direction: column; } +#console { + overflow-y: scroll; + max-height: 300px; +} #note-render { display: inline-block; margin: 0 auto; From cc28afc024083b8c23f1eaa86d767d5434509814 Mon Sep 17 00:00:00 2001 From: krippix Date: Sat, 17 Jun 2023 20:32:15 +0200 Subject: [PATCH 3/4] changed favicon.ico --- html/assets/img/favicon.ico | Bin 1094 -> 2686 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/html/assets/img/favicon.ico b/html/assets/img/favicon.ico index 5272c72721efe6d15360c4ce1ee618c4e9722564..bcb4724168e16a22f83256dab0da8ee98ec67112 100644 GIT binary patch literal 2686 zcmeH`K@LDL5Jf++vQi6cx^j#j$1&WzewC7-5-f-rMzn9*&U^+)co|dhnW4*p3P4LY z^q%hK<7Q#4jfZ@eruxuoSJV?+m3q0A;(;7$9rj-!1J5}(h^#N0n|#XkD8IRu%ltxq z6ouwb=F6u35eL52_k?r7o`vtT2RZj6USrh2cf&MT*YEp;g1E4`X;%6OPbrM(Bmc+K L{Q)si;I#@22k4#X literal 1094 zcmeIvu?>ST5QX7$f^=oNv}sdj0~jTnzy?{#*~C&7pmbs7^4=XOkRtj>fUFPWA0&)O z!Z{2F_tuG=MdXSxU`!ZX-#W}}Yk9q Date: Sat, 17 Jun 2023 20:32:35 +0200 Subject: [PATCH 4/4] Changes for WebMIDI compatibility on iOS --- html/assets/scripts/midi.js | 75 +++++++++++++++++++++++++++---------- 1 file changed, 56 insertions(+), 19 deletions(-) diff --git a/html/assets/scripts/midi.js b/html/assets/scripts/midi.js index 63d2097..6a706be 100644 --- a/html/assets/scripts/midi.js +++ b/html/assets/scripts/midi.js @@ -1,7 +1,8 @@ // prepare svg object for later use var keyboard = document.getElementById("piano"); var svgDoc; // loaded keyboard svg -const keysB = [2,5,7,10,12,14,17,19,22,24,26,29,31,34,36,38,41,43,46,48,50,53,55,58,60,62,65,67,70,72,74,77,79,82,84,86] +var midiAccess = null; +const black_keys = [2,5,7,10,12,14,17,19,22,24,26,29,31,34,36,38,41,43,46,48,50,53,55,58,60,62,65,67,70,72,74,77,79,82,84,86] window.addEventListener("load", function() { svgDoc = keyboard.contentDocument; @@ -12,39 +13,72 @@ function setKeyState(note, state) { let key = svgDoc.getElementById(String(note)); if (state) { key.style.fill = "red"; - } else if (keysB.includes(note)) { + } else if (black_keys.includes(note)) { key.style.fill = "black"; } else { key.style.fill = "white"; } } -// Check if browser supports MIDI -if (!navigator.requestMIDIAccess) { - console.log('WebMIDI is not supported in this browser. Or Site was not opened via HTTPS'); -} - -// Attempt to establish a connection to the MIDI device -navigator.requestMIDIAccess() - .then(onMIDISuccess, onMIDIFailure); - -function onMIDISuccess(midiAccess) { - console.log(midiAccess); - - for (var input of midiAccess.inputs.values()) { - input.onmidimessage = getMIDIMessage; +/** + * Establishes MIDI connection + */ +function midiSetup() { + // Check if MIDI connection is possible at all + if (!navigator.requestMIDIAccess) { + alert('WebMIDI is not supported in this browser. Or Site was not accessed via HTTPS'); + return } + // Attempt to establish a MIDI connection. Handle success or failure + console.log("1231234"); + window.navigator.requestMIDIAccess().then(onMIDISuccess, onMIDIFailure); + console.log("4321321"); } +/** + * Handle successful MIDI connection + * @param {*} midiAccess + */ +function onMIDISuccess(access) { + midiAccess = access; + console.log("access successful"); + + var input_list = []; + + var iter = midiAccess.inputs.values(); + for (let obj = iter.next(); !obj.done; obj = iter.next()) { + input_list.push(obj.value); + } + + // Add event listener do all devices + for (var i = 0; i < input_list.length; i++) { + input_list[i].onmidimessage = getMIDIMessage; + console.log("amogus"); + } + +} + +/** + * Handle MIDI failure + */ function onMIDIFailure() { - console.log('Could not access your MIDI devices.'); + let message = "Failed to access your MIDI device"; + console.log(message); + alert(message); } +/** + * Handle incoming MIDI Messages + * @param {*} midiMessage + */ function getMIDIMessage(midiMessage) { + console.log("sugoma"); var command = midiMessage.data[0]; var note = midiMessage.data[1] - 20; // sorry midi standard var velocity = (midiMessage.data.length > 2) ? midiMessage.data[2] : 0; - + + console.log(`MIDI{ command : ${command}, note : ${note}, velocity : ${velocity}}`); + if (command == 144){ console.log(note); if (velocity == 0) { @@ -55,4 +89,7 @@ function getMIDIMessage(midiMessage) { task.changeKeyState(note,true); } } -} \ No newline at end of file +} + +// code executed on include +window.onload = (x) => { midiSetup(); }