X-Git-Url: https://ruin.nu/git/?p=moosique.git;a=blobdiff_plain;f=MooKeyboard.java;h=2a2bd9ead52f0797785de9e127154f2d6a965a11;hp=ce110b254c46b1dd0f214654b63ad9fe401887d9;hb=c3a31c2aa833e2197f0929655c69a2090e8bbecc;hpb=99b83588ad553537f891efaf5fbe95e7b9e5442b diff --git a/MooKeyboard.java b/MooKeyboard.java index ce110b2..2a2bd9e 100644 --- a/MooKeyboard.java +++ b/MooKeyboard.java @@ -2,7 +2,7 @@ import javax.sound.midi.*; import java.awt.event.*; /** - * Functional representation of a MIDI note, which contains two MIDI events, note on and note off. + * A keyboard listener emulating a synthesizer. * * @author Einar Pehrson */ @@ -23,6 +23,7 @@ public class MooKeyboard extends KeyAdapter { // If note is not already on and the key is mapped to a note, sends the NoteOn event. if (!isOn[noteNumber] && noteNumber > 0) Moosique.getActiveChannel().noteOn(noteNumber, 127); isOn[noteNumber] = true; + System.out.println("NoteON"); } catch (ArrayIndexOutOfBoundsException x) { return; } @@ -38,6 +39,7 @@ public class MooKeyboard extends KeyAdapter { // Sends the NoteOff event. Moosique.getActiveChannel().noteOff(noteNumber); isOn[noteNumber] = false; + System.out.println("NoteOFF"); } catch (ArrayIndexOutOfBoundsException x) { return; } @@ -47,7 +49,7 @@ public class MooKeyboard extends KeyAdapter { * Sets the octave of the lower part of the keyboard (default = 4) * @param n the octave to start at */ - public void setOctave(int n) { + public static void setOctave(int n) { startNote = n * 12; } @@ -92,4 +94,4 @@ public class MooKeyboard extends KeyAdapter { keyToNote[48] = startNote + 27; keyToNote[80] = startNote + 28; } -} \ No newline at end of file +}