1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
//! A simple crate for converting the MIDI output of the Novation ReMOTE 25SL into user-friendly
//! rust-esque types.

pub extern crate pitch_calc;
pub use pitch_calc::{Letter, LetterOctave};

/// The name of the ports on which the `25SL` emits MIDI input values.
pub const MIDI_INPUT_PORT_PREFIX: &'static str = "ReMOTE SL";

/// The MIDI input ports on which the `25SL` emits MIDI input values.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum InputPort {
    /// Receives keyboard note events as well as `Pitch` and `Mod` `Control` events.
    A,
    /// Receives all other `Control` events.
    B,
    /// Receives messages about newly loaded presets.
    C,
}

/// All possible events that might be emitted from the ReMOTE 25SL.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum Event {
    Control(Control),
    Key(State, LetterOctave, u8),
}

/// Note events emitted from key presses.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum State {
    /// The note was pressed.
    On,
    /// The note was released.
    Off
}

/// Most controls on the 25SL come in 8 strips.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
#[repr(u8)]
pub enum Oct { A, B, C, D, E, F, G, H }

/// The 4 distinct rows on which `Button`s are placed.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum ButtonRow {
    TopLeft,
    BottomLeft,
    TopRight,
    BottomRight,
}

/// Axes on which the `TouchPad` can output values.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum Axis { X, Y }

/// The left and right sides of the controller.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum Side {
    Left,
    Right,
}

/// The page up and down buttons.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum Page {
    Up,
    Down,
}

/// The four buttons on the upper left hand side of the controller from top to bottom.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum LeftButton { A, B, C, D }

/// The three buttons on the upper right hand side of the controller from top to bottom.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum RightButton { A, B, C }

/// Media playback-style control buttons.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum Playback {
    Previous,
    Next,
    Stop,
    Play,
    Loop,
    Record,
}

/// Controller events.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum Control {

    /// A magnitude in the direction in which the dial was turned.
    ///
    /// Values may range from -64 to 64 (exclusive).
    RotaryDial(Oct, i8),

    /// The value to which the slider was set.
    ///
    /// Values range from `0` to `127` (inclusive).
    RotarySlider(Oct, u8),

    /// The value to which the slider was set.
    ///
    /// Values range from `0` to `127` (inclusive).
    VerticalSlider(Oct, u8),

    /// The force with which the pad was pressed.
    ///
    /// Values range from `0` to `127` (inclusive).
    PressurePad(Oct, u8),

    /// A button was pressed on the given row.
    Button(ButtonRow, Oct, State),

    /// The position on the touch pad that was pressed.
    ///
    /// Values range from `0` to `127` (inclusive).
    TouchPad(Axis, u8),

    /// The position of the pitch bender.
    ///
    /// Ranges from -64 to 64 (exclusive).
    Pitch(i8),

    /// The position of the modulation bender.
    ///
    /// Values range from 0 to 127 (inclusive).
    Mod(u8),

    /// The page up and down buttons on the top left and right of the controller..
    Page(Side, Page, State),

    /// The four buttons on the upper left hand side of the controller.
    LeftButton(LeftButton, State),

    /// The three buttons on the upper right hand side of the controller.
    RightButton(RightButton, State),

    /// Media playback-style control buttons.
    Playback(Playback, State),
}


impl Oct {

    /// Create an `Oct` from the given value where 0 == A, 1 == B, etc.
    fn from_u8(n: u8) -> Option<Self> {
        match n {
            0 => Some(Oct::A),
            1 => Some(Oct::B),
            2 => Some(Oct::C),
            3 => Some(Oct::D),
            4 => Some(Oct::E),
            5 => Some(Oct::F),
            6 => Some(Oct::G),
            7 => Some(Oct::H),
            _ => None,
        }
    }

}


impl InputPort {

    /// Determine the `InputPort` from its name.
    pub fn from_name(name: &str) -> Option<Self> {
        if name.starts_with(MIDI_INPUT_PORT_PREFIX) {
            match name.chars().last() {
                Some('0') => Some(InputPort::A),
                Some('1') => Some(InputPort::B),
                Some('2') => Some(InputPort::C),
                _ => None,
            }
        } else {
            None
        }
    }

}


impl Event {

    /// Produce an `Event` from the given MIDI input port number and the MIDI message itself.
    pub fn from_midi(port: InputPort, msg: &[u8]) -> Option<Self> {
        match port {

            // Receive keyboard note events and pitch/mod bend values.
            InputPort::A => match msg.len() {
                3 => match (msg[0], msg[1], msg[2]) {

                    // Pitch bend.
                    (224, 0, pitch) => Some(Control::Pitch(pitch as i8 - 64).into()),

                    // Modulation bend.
                    (176, 1, modulation) => Some(Control::Mod(modulation).into()),

                    // Notes pressed on the keyboard.
                    (state, step, velocity) => {
                        let letter_octave = pitch_calc::Step(step as f32).to_letter_octave();
                        let note = match state {
                            144 => Some(State::On),
                            128 => Some(State::Off),
                            _ => None,
                        };
                        note.map(|note| Event::Key(note, letter_octave, velocity))
                    },

                },
                _ => None,
            },

            // Receive control events.
            InputPort::B => match msg.len() {
                3 => match (msg[0], msg[1], msg[2]) {

                    // Rotary dialers.
                    (176, n @ 56...63, value) => {
                        let oct = Oct::from_u8(n - 56).unwrap();
                        let value = if value > 64 { -(value as i8 - 64) } else { value as i8 };
                        Some(Control::RotaryDial(oct, value).into())
                    },

                    // Rotary sliders.
                    (176, n @ 8...15, value) => {
                        let oct = Oct::from_u8(n - 8).unwrap();
                        Some(Control::RotarySlider(oct, value).into())
                    },

                    // Vertical sliders.
                    (176, n @ 16...23, value) => {
                        let oct = Oct::from_u8(n - 16).unwrap();
                        Some(Control::VerticalSlider(oct, value).into())
                    },

                    // Pressure pads.
                    (144, n @ 36...43, velocity) => {
                        let oct = Oct::from_u8(n - 36).unwrap();
                        Some(Control::PressurePad(oct, velocity).into())
                    },

                    // Touch pad.
                    (176, axis @ 68...69, value) => {
                        let axis = if axis == 68 { Axis::X } else { Axis::Y };
                        Some(Control::TouchPad(axis, value).into())
                    },


                    ///////////////////
                    ///// Buttons /////
                    ///////////////////

                    // Top left row buttons.
                    (176, n @ 24...31, state) => {
                        let oct = Oct::from_u8(n - 24).unwrap();
                        let state = if state == 0 { State::Off } else { State::On };
                        Some(Control::Button(ButtonRow::TopLeft, oct, state).into())
                    },

                    // Bottom left row buttons.
                    (176, n @ 32...39, state) => {
                        let oct = Oct::from_u8(n - 32).unwrap();
                        let state = if state == 0 { State::Off } else { State::On };
                        Some(Control::Button(ButtonRow::BottomLeft, oct, state).into())
                    },

                    // Top right row buttons.
                    (176, n @ 40...47, state) => {
                        let oct = Oct::from_u8(n - 40).unwrap();
                        let state = if state == 0 { State::Off } else { State::On };
                        Some(Control::Button(ButtonRow::TopRight, oct, state).into())
                    },

                    // Bottom right row buttons.
                    (176, n @ 48...55, state) => {
                        let oct = Oct::from_u8(n - 48).unwrap();
                        let state = if state == 0 { State::Off } else { State::On };
                        Some(Control::Button(ButtonRow::BottomRight, oct, state).into())
                    },

                    // Page up and down.
                    (176, n @ 88...91, state) => {
                        let (side, page) = match n {
                            88 => (Side::Left, Page::Up),
                            89 => (Side::Left, Page::Down),
                            90 => (Side::Right, Page::Up),
                            91 => (Side::Right, Page::Down),
                            _ => unreachable!(),
                        };
                        let state = if state == 0 { State::Off } else { State::On };
                        Some(Control::Page(side, page, state).into())
                    },

                    // Left-hand side buttons.
                    (176, n @ 80...83, state) => {
                        let button = match n {
                            80 => LeftButton::A,
                            81 => LeftButton::B,
                            82 => LeftButton::C,
                            83 => LeftButton::D,
                            _ => unreachable!(),
                        };
                        let state = if state == 0 { State::Off } else { State::On };
                        Some(Control::LeftButton(button, state).into())
                    },

                    // Right-hand side buttons.
                    (176, n @ 85...87, state) => {
                        let button = match n {
                            85 => RightButton::A,
                            86 => RightButton::B,
                            87 => RightButton::C,
                            _ => unreachable!(),
                        };
                        let state = if state == 0 { State::Off } else { State::On };
                        Some(Control::RightButton(button, state).into())
                    },

                    // Playback buttons.
                    (176, n @ 72...77, state) => {
                        let playback = match n {
                            72 => Playback::Previous,
                            73 => Playback::Next,
                            74 => Playback::Stop,
                            75 => Playback::Play,
                            76 => Playback::Record,
                            77 => Playback::Loop,
                            _ => unreachable!(),
                        };
                        let state = if state == 0 { State::Off } else { State::On };
                        Some(Control::Playback(playback, state).into())
                    },

                    _ => None,

                },
                _ => None,
            },

            // Receive preset state loaded from the controller.
            InputPort::C => {
                None
            },
        }
    }

}


impl From<Control> for Event {
    fn from(control: Control) -> Self {
        Event::Control(control)
    }
}