X-Git-Url: https://ruin.nu/git/?p=moosique.git;a=blobdiff_plain;f=MooNote.java;h=78e1564064161aac20851980d249eb97771efaf5;hp=fbc0668a4381b2b64d24bec2ac2d7ea9a499f793;hb=a8b0b5e27d120df964c5b6d8554a6207951b00d0;hpb=fed0170e819d14b07d7081a0a314ebabac3b29fe diff --git a/MooNote.java b/MooNote.java index fbc0668..78e1564 100644 --- a/MooNote.java +++ b/MooNote.java @@ -75,6 +75,14 @@ public class MooNote extends MidiEvent { } catch (InvalidMidiDataException e) {} } + /** + * Transposes the current note the given number of halftones. + * @param halftones the number of halftones to transpose - positive for up, negative for down + */ + public void transpose(int halftones) { + setPitch(getPitch() + halftones); + } + /** * Sets the velocity of the current note. * @param vel the velocity of the note (0-127) @@ -99,7 +107,7 @@ public class MooNote extends MidiEvent { * @param tick the timestamp of the note in ticks (96 per beat) */ public void setTick(long tick) { - if (hasNoteOffEvent()) noteOffEvent.setTick(tick + getDuration()); + if (hasNoteOffEvent()) noteOffEvent.setTick(tick + getDuration()); super.setTick(tick); }