2022-04-08 07:28:31 +10:00
|
|
|
//! Constants and definitions surrounding MIDI support.
|
|
|
|
|
2022-06-15 06:59:32 +10:00
|
|
|
use midi_consts::channel_event as midi;
|
|
|
|
|
2022-04-08 07:28:31 +10:00
|
|
|
pub use midi_consts::channel_event::control_change;
|
|
|
|
|
|
|
|
/// Determines which note events a plugin receives.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
|
|
|
|
pub enum MidiConfig {
|
|
|
|
/// The plugin will not have a note input port and will thus not receive any not events.
|
|
|
|
None,
|
|
|
|
/// The plugin receives note on/off events, pressure, and potentially a couple standardized
|
2022-07-05 03:29:56 +10:00
|
|
|
/// expression types depending on the plugin standard and host. If the plugin sets up
|
|
|
|
/// configuration for polyphonic modulation (see [`ClapPlugin`][crate::prelude::ClapPlugin]) and
|
|
|
|
/// assigns polyphonic modulation IDs to some of its parameters, then it will also receive
|
|
|
|
/// polyphonic modulation events.
|
2022-04-08 07:28:31 +10:00
|
|
|
Basic,
|
|
|
|
/// The plugin receives full MIDI CCs as well as pitch bend information. For VST3 plugins this
|
|
|
|
/// involves adding 130*16 parameters to bind to the the 128 MIDI CCs, pitch bend, and channel
|
|
|
|
/// pressure.
|
|
|
|
MidiCCs,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Event for (incoming) notes. The set of supported note events depends on the value of
|
2022-04-12 00:23:34 +10:00
|
|
|
/// [`Plugin::MIDI_INPUT`][crate::prelude::Plugin::MIDI_INPUT]. Also check out the
|
|
|
|
/// [`util`][crate::util] module for convenient conversion functions.
|
2022-04-08 07:28:31 +10:00
|
|
|
///
|
2022-04-12 03:47:46 +10:00
|
|
|
/// All of the timings are sample offsets withing the current buffer. All sample, channel and note
|
|
|
|
/// numbers are zero-indexed.
|
2022-04-08 07:28:31 +10:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
|
|
#[non_exhaustive]
|
|
|
|
pub enum NoteEvent {
|
|
|
|
/// A note on event, available on [`MidiConfig::Basic`] and up.
|
|
|
|
NoteOn {
|
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's velocity, from 0 to 1. Some plugin APIs may allow higher precision than the
|
|
|
|
/// 127 levels available in MIDI.
|
|
|
|
velocity: f32,
|
|
|
|
},
|
|
|
|
/// A note off event, available on [`MidiConfig::Basic`] and up.
|
|
|
|
NoteOff {
|
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's velocity, from 0 to 1. Some plugin APIs may allow higher precision than the
|
|
|
|
/// 127 levels available in MIDI.
|
|
|
|
velocity: f32,
|
|
|
|
},
|
2022-07-05 03:29:56 +10:00
|
|
|
/// Sent by the plugin to the host to indicate that a voice has ended. This **needs** to be sent
|
|
|
|
/// when a voice terminates when using polyphonic modulation. Otherwise you can ignore this
|
|
|
|
/// event.
|
|
|
|
VoiceTerminated {
|
|
|
|
timing: u32,
|
|
|
|
/// The voice's unique identifier. Setting this allows a single voice to be terminated if
|
|
|
|
/// the plugin allows multiple overlapping voices for a single key.
|
|
|
|
voice_id: Option<i32>,
|
|
|
|
/// The note's channel, from 0 to 16, and the note's MIDI key number, from 0 to 127.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number
|
|
|
|
note: u8,
|
|
|
|
},
|
2022-04-08 07:28:31 +10:00
|
|
|
/// A polyphonic note pressure/aftertouch event, available on [`MidiConfig::Basic`] and up. Not
|
|
|
|
/// all hosts may support polyphonic aftertouch.
|
2022-04-21 00:48:37 +10:00
|
|
|
///
|
|
|
|
/// # Note
|
|
|
|
///
|
|
|
|
/// When implementing MPE support you should use MIDI channel pressure instead as polyphonic key
|
|
|
|
/// pressure + MPE is undefined as per the MPE specification. Or as a more generic catch all,
|
|
|
|
/// you may manually combine the polyphonic key pressure and MPE channel pressure.
|
2022-04-08 07:28:31 +10:00
|
|
|
PolyPressure {
|
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's pressure, from 0 to 1.
|
|
|
|
pressure: f32,
|
|
|
|
},
|
|
|
|
/// A volume expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may
|
|
|
|
/// support these expressions.
|
2022-04-11 23:57:27 +10:00
|
|
|
PolyVolume {
|
2022-04-08 07:28:31 +10:00
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's voltage gain ratio, where 1.0 is unity gain.
|
|
|
|
gain: f32,
|
|
|
|
},
|
|
|
|
/// A panning expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may
|
|
|
|
/// support these expressions.
|
2022-04-11 23:57:27 +10:00
|
|
|
PolyPan {
|
2022-04-08 07:28:31 +10:00
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's panning from, from -1 to 1, with -1 being panned hard left, and 1 being
|
|
|
|
/// panned hard right.
|
|
|
|
pan: f32,
|
|
|
|
},
|
|
|
|
/// A tuning expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
|
|
|
|
/// these expressions.
|
2022-04-11 23:57:27 +10:00
|
|
|
PolyTuning {
|
2022-04-08 07:28:31 +10:00
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's tuning in semitones, from -120 to 120.
|
|
|
|
tuning: f32,
|
|
|
|
},
|
|
|
|
/// A vibrato expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
|
|
|
|
/// these expressions.
|
2022-04-11 23:57:27 +10:00
|
|
|
PolyVibrato {
|
2022-04-08 07:28:31 +10:00
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's vibrato amount, from 0 to 1.
|
|
|
|
vibrato: f32,
|
|
|
|
},
|
|
|
|
/// A expression expression (yes, expression expression) event, available on
|
|
|
|
/// [`MidiConfig::Basic`] and up. Not all hosts may support these expressions.
|
2022-04-11 23:57:27 +10:00
|
|
|
PolyExpression {
|
2022-04-08 07:28:31 +10:00
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's expression amount, from 0 to 1.
|
|
|
|
expression: f32,
|
|
|
|
},
|
|
|
|
/// A brightness expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
|
|
|
|
/// these expressions.
|
2022-04-11 23:57:27 +10:00
|
|
|
PolyBrightness {
|
2022-04-08 07:28:31 +10:00
|
|
|
timing: u32,
|
2022-07-05 02:31:59 +10:00
|
|
|
/// A unique identifier for this note, if available. Using this to refer to a note is
|
|
|
|
/// required when allowing overlapping voices for CLAP plugins.
|
|
|
|
voice_id: Option<i32>,
|
2022-04-08 07:28:31 +10:00
|
|
|
/// The note's channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The note's MIDI key number, from 0 to 127.
|
|
|
|
note: u8,
|
|
|
|
/// The note's brightness amount, from 0 to 1.
|
|
|
|
brightness: f32,
|
|
|
|
},
|
|
|
|
/// A MIDI channel pressure event, available on [`MidiConfig::MidiCCs`] and up.
|
|
|
|
MidiChannelPressure {
|
|
|
|
timing: u32,
|
|
|
|
/// The affected channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The pressure, normalized to `[0, 1]` to match the poly pressure event.
|
|
|
|
pressure: f32,
|
|
|
|
},
|
|
|
|
/// A MIDI pitch bend, available on [`MidiConfig::MidiCCs`] and up.
|
|
|
|
MidiPitchBend {
|
|
|
|
timing: u32,
|
|
|
|
/// The affected channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The pressure, normalized to `[0, 1]`. `0.5` means no pitch bend.
|
|
|
|
value: f32,
|
|
|
|
},
|
|
|
|
/// A MIDI control change event, available on [`MidiConfig::MidiCCs`] and up.
|
|
|
|
///
|
|
|
|
/// # Note
|
|
|
|
///
|
|
|
|
/// The wrapper does not perform any special handling for two message 14-bit CCs (where the CC
|
|
|
|
/// number is in the range `[0, 31]`, and the next CC is that number plus 32) or for four
|
|
|
|
/// message RPN messages. For now you will need to handle these CCs yourself.
|
|
|
|
MidiCC {
|
|
|
|
timing: u32,
|
|
|
|
/// The affected channel, from 0 to 16.
|
|
|
|
channel: u8,
|
|
|
|
/// The control change number. See [`control_change`] for a list of CC numbers.
|
|
|
|
cc: u8,
|
|
|
|
/// The CC's value, normalized to `[0, 1]`. Multiply by 127 to get the original raw value.
|
|
|
|
value: f32,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NoteEvent {
|
2022-04-27 03:39:03 +10:00
|
|
|
/// Returns the sample within the current buffer this event belongs to.
|
2022-04-08 07:28:31 +10:00
|
|
|
pub fn timing(&self) -> u32 {
|
|
|
|
match &self {
|
|
|
|
NoteEvent::NoteOn { timing, .. } => *timing,
|
|
|
|
NoteEvent::NoteOff { timing, .. } => *timing,
|
2022-07-05 03:29:56 +10:00
|
|
|
NoteEvent::VoiceTerminated { timing, .. } => *timing,
|
2022-04-08 07:28:31 +10:00
|
|
|
NoteEvent::PolyPressure { timing, .. } => *timing,
|
2022-04-11 23:57:27 +10:00
|
|
|
NoteEvent::PolyVolume { timing, .. } => *timing,
|
|
|
|
NoteEvent::PolyPan { timing, .. } => *timing,
|
|
|
|
NoteEvent::PolyTuning { timing, .. } => *timing,
|
|
|
|
NoteEvent::PolyVibrato { timing, .. } => *timing,
|
|
|
|
NoteEvent::PolyExpression { timing, .. } => *timing,
|
|
|
|
NoteEvent::PolyBrightness { timing, .. } => *timing,
|
2022-04-08 07:28:31 +10:00
|
|
|
NoteEvent::MidiChannelPressure { timing, .. } => *timing,
|
|
|
|
NoteEvent::MidiPitchBend { timing, .. } => *timing,
|
|
|
|
NoteEvent::MidiCC { timing, .. } => *timing,
|
|
|
|
}
|
|
|
|
}
|
2022-04-09 04:53:32 +10:00
|
|
|
|
2022-07-05 02:31:59 +10:00
|
|
|
/// Returns the event's voice ID, if it has any.
|
|
|
|
pub fn voice_id(&self) -> Option<i32> {
|
|
|
|
match &self {
|
|
|
|
NoteEvent::NoteOn { voice_id, .. } => *voice_id,
|
|
|
|
NoteEvent::NoteOff { voice_id, .. } => *voice_id,
|
2022-07-05 03:29:56 +10:00
|
|
|
NoteEvent::VoiceTerminated { voice_id, .. } => *voice_id,
|
2022-07-05 02:31:59 +10:00
|
|
|
NoteEvent::PolyPressure { voice_id, .. } => *voice_id,
|
|
|
|
NoteEvent::PolyVolume { voice_id, .. } => *voice_id,
|
|
|
|
NoteEvent::PolyPan { voice_id, .. } => *voice_id,
|
|
|
|
NoteEvent::PolyTuning { voice_id, .. } => *voice_id,
|
|
|
|
NoteEvent::PolyVibrato { voice_id, .. } => *voice_id,
|
|
|
|
NoteEvent::PolyExpression { voice_id, .. } => *voice_id,
|
|
|
|
NoteEvent::PolyBrightness { voice_id, .. } => *voice_id,
|
|
|
|
NoteEvent::MidiChannelPressure { .. } => None,
|
|
|
|
NoteEvent::MidiPitchBend { .. } => None,
|
|
|
|
NoteEvent::MidiCC { .. } => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-15 06:59:32 +10:00
|
|
|
/// Parse MIDI into a [`NoteEvent`]. Will return `Err(event_type)` if the parsing failed.
|
|
|
|
pub fn from_midi(timing: u32, midi_data: [u8; 3]) -> Result<Self, u8> {
|
|
|
|
// TODO: Maybe add special handling for 14-bit CCs and RPN messages at some
|
|
|
|
// point, right now the plugin has to figure it out for itself
|
|
|
|
let event_type = midi_data[0] & midi::EVENT_TYPE_MASK;
|
|
|
|
let channel = midi_data[0] & midi::MIDI_CHANNEL_MASK;
|
|
|
|
match event_type {
|
|
|
|
midi::NOTE_ON => Ok(NoteEvent::NoteOn {
|
|
|
|
timing,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: None,
|
2022-06-15 06:59:32 +10:00
|
|
|
channel,
|
|
|
|
note: midi_data[1],
|
|
|
|
velocity: midi_data[2] as f32 / 127.0,
|
|
|
|
}),
|
|
|
|
midi::NOTE_OFF => Ok(NoteEvent::NoteOff {
|
|
|
|
timing,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: None,
|
2022-06-15 06:59:32 +10:00
|
|
|
channel,
|
|
|
|
note: midi_data[1],
|
|
|
|
velocity: midi_data[2] as f32 / 127.0,
|
|
|
|
}),
|
|
|
|
midi::POLYPHONIC_KEY_PRESSURE => Ok(NoteEvent::PolyPressure {
|
|
|
|
timing,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: None,
|
2022-06-15 06:59:32 +10:00
|
|
|
channel,
|
|
|
|
note: midi_data[1],
|
|
|
|
pressure: midi_data[2] as f32 / 127.0,
|
|
|
|
}),
|
|
|
|
midi::CHANNEL_KEY_PRESSURE => Ok(NoteEvent::MidiChannelPressure {
|
|
|
|
timing,
|
|
|
|
channel,
|
|
|
|
pressure: midi_data[1] as f32 / 127.0,
|
|
|
|
}),
|
|
|
|
midi::PITCH_BEND_CHANGE => Ok(NoteEvent::MidiPitchBend {
|
|
|
|
timing,
|
|
|
|
channel,
|
|
|
|
value: (midi_data[1] as u16 + ((midi_data[2] as u16) << 7)) as f32
|
|
|
|
/ ((1 << 14) - 1) as f32,
|
|
|
|
}),
|
|
|
|
midi::CONTROL_CHANGE => Ok(NoteEvent::MidiCC {
|
|
|
|
timing,
|
|
|
|
channel,
|
|
|
|
cc: midi_data[1],
|
|
|
|
value: midi_data[2] as f32 / 127.0,
|
|
|
|
}),
|
|
|
|
n => Err(n),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-15 07:24:31 +10:00
|
|
|
/// Create a MIDI message from this note event. Return `None` if this even does not have a
|
|
|
|
/// direct MIDI equivalent. `PolyPressure` will be converted to polyphonic key pressure, but the
|
|
|
|
/// other polyphonic note expression types will not be converted to MIDI CC messages.
|
|
|
|
pub fn as_midi(self) -> Option<[u8; 3]> {
|
|
|
|
match self {
|
|
|
|
NoteEvent::NoteOn {
|
|
|
|
timing: _,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: _,
|
2022-06-15 07:24:31 +10:00
|
|
|
channel,
|
|
|
|
note,
|
|
|
|
velocity,
|
|
|
|
} => Some([
|
|
|
|
midi::NOTE_ON | channel,
|
|
|
|
note,
|
|
|
|
(velocity * 127.0).round().clamp(0.0, 127.0) as u8,
|
|
|
|
]),
|
|
|
|
NoteEvent::NoteOff {
|
|
|
|
timing: _,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: _,
|
2022-06-15 07:24:31 +10:00
|
|
|
channel,
|
|
|
|
note,
|
|
|
|
velocity,
|
|
|
|
} => Some([
|
|
|
|
midi::NOTE_OFF | channel,
|
|
|
|
note,
|
|
|
|
(velocity * 127.0).round().clamp(0.0, 127.0) as u8,
|
|
|
|
]),
|
|
|
|
NoteEvent::PolyPressure {
|
|
|
|
timing: _,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: _,
|
2022-06-15 07:24:31 +10:00
|
|
|
channel,
|
|
|
|
note,
|
|
|
|
pressure,
|
|
|
|
} => Some([
|
|
|
|
midi::POLYPHONIC_KEY_PRESSURE | channel,
|
|
|
|
note,
|
|
|
|
(pressure * 127.0).round().clamp(0.0, 127.0) as u8,
|
|
|
|
]),
|
|
|
|
NoteEvent::MidiChannelPressure {
|
|
|
|
timing: _,
|
|
|
|
channel,
|
|
|
|
pressure,
|
|
|
|
} => Some([
|
|
|
|
midi::CHANNEL_KEY_PRESSURE | channel,
|
|
|
|
(pressure * 127.0).round().clamp(0.0, 127.0) as u8,
|
|
|
|
0,
|
|
|
|
]),
|
|
|
|
NoteEvent::MidiPitchBend {
|
|
|
|
timing: _,
|
|
|
|
channel,
|
|
|
|
value,
|
|
|
|
} => {
|
|
|
|
const PITCH_BEND_RANGE: f32 = ((1 << 14) - 1) as f32;
|
|
|
|
let midi_value = (value * PITCH_BEND_RANGE)
|
|
|
|
.round()
|
|
|
|
.clamp(0.0, PITCH_BEND_RANGE) as u16;
|
|
|
|
|
|
|
|
Some([
|
|
|
|
midi::PITCH_BEND_CHANGE | channel,
|
|
|
|
(midi_value & ((1 << 7) - 1)) as u8,
|
|
|
|
(midi_value >> 7) as u8,
|
|
|
|
])
|
|
|
|
}
|
|
|
|
NoteEvent::MidiCC {
|
|
|
|
timing: _,
|
|
|
|
channel,
|
|
|
|
cc,
|
|
|
|
value,
|
|
|
|
} => Some([
|
|
|
|
midi::CONTROL_CHANGE | channel,
|
|
|
|
cc,
|
|
|
|
(value * 127.0).round().clamp(0.0, 127.0) as u8,
|
|
|
|
]),
|
2022-07-05 03:29:56 +10:00
|
|
|
NoteEvent::VoiceTerminated { .. }
|
|
|
|
| NoteEvent::PolyVolume { .. }
|
2022-06-15 07:24:31 +10:00
|
|
|
| NoteEvent::PolyPan { .. }
|
|
|
|
| NoteEvent::PolyTuning { .. }
|
|
|
|
| NoteEvent::PolyVibrato { .. }
|
|
|
|
| NoteEvent::PolyExpression { .. }
|
|
|
|
| NoteEvent::PolyBrightness { .. } => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-09 04:53:32 +10:00
|
|
|
/// Subtract a sample offset from this event's timing, needed to compensate for the block
|
|
|
|
/// splitting in the VST3 wrapper implementation because all events have to be read upfront.
|
|
|
|
pub(crate) fn subtract_timing(&mut self, samples: u32) {
|
|
|
|
match self {
|
|
|
|
NoteEvent::NoteOn { timing, .. } => *timing -= samples,
|
|
|
|
NoteEvent::NoteOff { timing, .. } => *timing -= samples,
|
2022-07-05 03:29:56 +10:00
|
|
|
NoteEvent::VoiceTerminated { timing, .. } => *timing -= samples,
|
2022-04-09 04:53:32 +10:00
|
|
|
NoteEvent::PolyPressure { timing, .. } => *timing -= samples,
|
2022-04-11 23:57:27 +10:00
|
|
|
NoteEvent::PolyVolume { timing, .. } => *timing -= samples,
|
|
|
|
NoteEvent::PolyPan { timing, .. } => *timing -= samples,
|
|
|
|
NoteEvent::PolyTuning { timing, .. } => *timing -= samples,
|
|
|
|
NoteEvent::PolyVibrato { timing, .. } => *timing -= samples,
|
|
|
|
NoteEvent::PolyExpression { timing, .. } => *timing -= samples,
|
|
|
|
NoteEvent::PolyBrightness { timing, .. } => *timing -= samples,
|
2022-04-09 04:53:32 +10:00
|
|
|
NoteEvent::MidiChannelPressure { timing, .. } => *timing -= samples,
|
|
|
|
NoteEvent::MidiPitchBend { timing, .. } => *timing -= samples,
|
|
|
|
NoteEvent::MidiCC { timing, .. } => *timing -= samples,
|
|
|
|
}
|
|
|
|
}
|
2022-04-08 07:28:31 +10:00
|
|
|
}
|
2022-06-15 07:24:31 +10:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
const TIMING: u32 = 5;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_note_on_midi_conversion() {
|
|
|
|
let event = NoteEvent::NoteOn {
|
|
|
|
timing: TIMING,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: None,
|
2022-06-15 07:24:31 +10:00
|
|
|
channel: 1,
|
|
|
|
note: 2,
|
|
|
|
// The value will be rounded in the conversion to MIDI, hence this overly specific value
|
|
|
|
velocity: 0.6929134,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
NoteEvent::from_midi(TIMING, event.as_midi().unwrap()).unwrap(),
|
|
|
|
event
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_note_off_midi_conversion() {
|
|
|
|
let event = NoteEvent::NoteOff {
|
|
|
|
timing: TIMING,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: None,
|
2022-06-15 07:24:31 +10:00
|
|
|
channel: 1,
|
|
|
|
note: 2,
|
|
|
|
velocity: 0.6929134,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
NoteEvent::from_midi(TIMING, event.as_midi().unwrap()).unwrap(),
|
|
|
|
event
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_poly_pressure_midi_conversion() {
|
|
|
|
let event = NoteEvent::PolyPressure {
|
|
|
|
timing: TIMING,
|
2022-07-05 02:31:59 +10:00
|
|
|
voice_id: None,
|
2022-06-15 07:24:31 +10:00
|
|
|
channel: 1,
|
|
|
|
note: 2,
|
|
|
|
pressure: 0.6929134,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
NoteEvent::from_midi(TIMING, event.as_midi().unwrap()).unwrap(),
|
|
|
|
event
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_channel_pressure_midi_conversion() {
|
|
|
|
let event = NoteEvent::MidiChannelPressure {
|
|
|
|
timing: TIMING,
|
|
|
|
channel: 1,
|
|
|
|
pressure: 0.6929134,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
NoteEvent::from_midi(TIMING, event.as_midi().unwrap()).unwrap(),
|
|
|
|
event
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pitch_bend_midi_conversion() {
|
|
|
|
let event = NoteEvent::MidiPitchBend {
|
|
|
|
timing: TIMING,
|
|
|
|
channel: 1,
|
|
|
|
value: 0.6929134,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
NoteEvent::from_midi(TIMING, event.as_midi().unwrap()).unwrap(),
|
|
|
|
event
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_cc_midi_conversion() {
|
|
|
|
let event = NoteEvent::MidiCC {
|
|
|
|
timing: TIMING,
|
|
|
|
channel: 1,
|
|
|
|
cc: 2,
|
|
|
|
value: 0.6929134,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
NoteEvent::from_midi(TIMING, event.as_midi().unwrap()).unwrap(),
|
|
|
|
event
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|