commit 575e7ca11ec669099f68c05a0e5e670210c7fc2e Author: krippix Date: Sun Jun 4 03:01:38 2023 +0200 initial commit; implemented button recognition diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6dbee45 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +docker-compose.yml +nginx.conf +dockerfile +*.pem +*.key \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/html/assets/css/base.css b/html/assets/css/base.css new file mode 100644 index 0000000..57dfe52 --- /dev/null +++ b/html/assets/css/base.css @@ -0,0 +1,26 @@ +body { + margin: 0; + background-color: #d3d3d3; +} +h1 { + margin: 0; +} +img { + height: auto; + width: 100%; +} +#titlebar { + font-family: 'arial'; + color: white; + padding: 20px; + margin: 0px; + background-color: #333; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); +} +.container { + max-width: 1920px; + background-color: white; + display: flex; + margin: 10px auto; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); +} \ No newline at end of file diff --git a/html/assets/css/reset.css b/html/assets/css/reset.css new file mode 100644 index 0000000..d9aad70 --- /dev/null +++ b/html/assets/css/reset.css @@ -0,0 +1,20 @@ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} \ No newline at end of file diff --git a/html/assets/img/piano-keyboard.svg b/html/assets/img/piano-keyboard.svg new file mode 100644 index 0000000..59baa13 --- /dev/null +++ b/html/assets/img/piano-keyboard.svg @@ -0,0 +1,937 @@ + + + + Standard 88-key Piano Keyboard + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Openclipart + + + Standard 88-key Piano Keyboard + 2011-02-14T04:42:21 + Standard 88-key piano keyboard. Distance between octaves is approximately 165 mm, per http://en.wikipedia.org/wiki/Musical_keyboard. Relative key dimensions similar to some commercial electric pianos. + https://openclipart.org/detail/118225/standard-88-key-piano-keyboard-by-markroth8 + + + markroth8 + + + + + keyboard + piano + + + + + + + + + + + diff --git a/html/assets/scripts/midi.js b/html/assets/scripts/midi.js new file mode 100644 index 0000000..6f4e2df --- /dev/null +++ b/html/assets/scripts/midi.js @@ -0,0 +1,67 @@ +// prepare svg object for later use +var keyboard = document.getElementById("piano"); +var svgDoc; // loaded keyboard svg +var 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] + +window.addEventListener("load", function() { + svgDoc = keyboard.contentDocument; + console.log("image loaded"); +}, false) + +// press or unpress keyboard button +function setKeyState(note, state) { + let key = svgDoc.getElementById(String(note)); + console.log(key); + if (state) { + key.style.fill = "red"; + } else if (keysB.includes(note)) { + key.style.fill = "black"; + } else { + key.style.fill = "white"; + } +} + + +// Check if browser supports MIDI +if (navigator.requestMIDIAccess) { + console.log('This browser supports WebMIDI!'); +} else { + console.log('WebMIDI is not supported in this browser.'); +} + + +// 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; + } +} + +function onMIDIFailure() { + console.log('Could not access your MIDI devices.'); +} + +function getMIDIMessage(midiMessage) { + var command = midiMessage.data[0]; + var note = midiMessage.data[1] - 20; // sorry midi standard + var velocity = (midiMessage.data.length > 2) ? midiMessage.data[2] : 0; + + if (command == 144){ + console.log(note); + if (velocity == 0) { + setKeyState(note, false); + } else { + setKeyState(note, true); + } + } + + if (command == 144 && velocity != 0) { + + } else if (command == 144 && velocity == 0) + console.log(command,note,velocity); +} \ No newline at end of file diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..8e316d0 --- /dev/null +++ b/html/index.html @@ -0,0 +1,10 @@ + + MidiTrainer + + + + +
+ + + \ No newline at end of file