/* * Copyright (C) 2018-2019 Jan Lentfer * Copyright (C) 2018 Paul Davis * Copyright (C) 2018 Robin Gareus * Copyright (C) 2018 Térence Clastres * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include "ardour/debug.h" #include "ardour/mute_control.h" #include "ardour/session.h" #include "ardour/solo_control.h" #include "ardour/solo_isolate_control.h" #include "launch_control_xl.h" using namespace ArdourSurface; using namespace ARDOUR; using namespace PBD; using std::cerr; void LaunchControlXL::build_maps () { cc_knob_map.clear(); id_knob_map.clear(); cc_fader_map.clear(); id_fader_map.clear(); nn_note_button_map.clear(); id_note_button_map.clear(); cc_controller_button_map.clear(); id_controller_button_map.clear(); /* Knobs */ std::shared_ptr knob; #define MAKE_KNOB(i,cc,index,c_on,c_off,a) \ knob.reset (new Knob ((i), (cc), (index), (c_on), (c_off), (a), (*this))); \ cc_knob_map.insert (std::make_pair (knob->controller_number(), knob)); \ id_knob_map.insert (std::make_pair (knob->id(), knob)); #define MAKE_DM_KNOB(i,cc,index,c_on,c_off,action,check) \ knob.reset (new Knob ((i), (cc), (index), (c_on), (c_off), (action), (check), (*this))); \ cc_knob_map.insert (std::make_pair (knob->controller_number(), knob)); \ id_knob_map.insert (std::make_pair (knob->id(), knob)); if (!device_mode()) { /* mixer mode */ MAKE_KNOB (SendA1, 13, 0, RedFull, RedLow, boost::function (boost::bind (&LaunchControlXL::knob_sendA, this, 0))); MAKE_KNOB (SendA2, 14, 1, YellowFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::knob_sendA, this, 1))); MAKE_KNOB (SendA3, 15, 2, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::knob_sendA, this, 2))); MAKE_KNOB (SendA4, 16, 3, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::knob_sendA, this, 3))); MAKE_KNOB (SendA5, 17, 4, RedFull, RedLow, boost::function (boost::bind (&LaunchControlXL::knob_sendA, this, 4))); MAKE_KNOB (SendA6, 18, 5, YellowFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::knob_sendA, this, 5))); MAKE_KNOB (SendA7, 19, 6, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::knob_sendA, this, 6))); MAKE_KNOB (SendA8, 20, 7, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::knob_sendA, this, 7))); MAKE_KNOB (SendB1, 29, 8, RedFull, RedLow, boost::function (boost::bind (&LaunchControlXL::knob_sendB, this, 0))); MAKE_KNOB (SendB2, 30, 9, YellowFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::knob_sendB, this, 1))); MAKE_KNOB (SendB3, 31, 10, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::knob_sendB, this, 2))); MAKE_KNOB (SendB4, 32, 11, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::knob_sendB, this, 3))); MAKE_KNOB (SendB5, 33, 12, RedFull, RedLow, boost::function (boost::bind (&LaunchControlXL::knob_sendB, this, 4))); MAKE_KNOB (SendB6, 34, 13, YellowFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::knob_sendB, this, 5))); MAKE_KNOB (SendB7, 35, 14, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::knob_sendB, this, 6))); MAKE_KNOB (SendB8, 36, 15, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::knob_sendB, this, 7))); MAKE_KNOB (Pan1, 49, 16, RedFull, RedLow, boost::function (boost::bind (&LaunchControlXL::knob_pan, this, 0))); MAKE_KNOB (Pan2, 50, 17, YellowFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::knob_pan, this, 1))); MAKE_KNOB (Pan3, 51, 18, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::knob_pan, this, 2))); MAKE_KNOB (Pan4, 52, 19, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::knob_pan, this, 3))); MAKE_KNOB (Pan5, 53, 20, RedFull, RedLow, boost::function (boost::bind (&LaunchControlXL::knob_pan, this, 4))); MAKE_KNOB (Pan6, 54, 21, YellowFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::knob_pan, this, 5))); MAKE_KNOB (Pan7, 55, 22, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::knob_pan, this, 6))); MAKE_KNOB (Pan8, 56, 23, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::knob_pan, this, 7))); } else { /* device mode */ #ifdef MIXBUS // from here Mixbus Standard + 32C MAKE_DM_KNOB (SendB5, 33, 12, RedFull, RedLow, boost::function (boost::bind (&LaunchControlXL::dm_trim, this, SendB5)), boost::bind(&LaunchControlXL::dm_check_trim, this)); MAKE_DM_KNOB (SendB6, 34, 13, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_comp, this, SendB6, CompMakeup)), boost::bind(&LaunchControlXL::dm_mb_comp_enabled,this)); MAKE_DM_KNOB (SendB7, 35, 14, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_comp, this, SendB7, CompSpeed)), boost::bind(&LaunchControlXL::dm_mb_comp_enabled, this)); MAKE_DM_KNOB (SendB8, 36, 15, GreenFull, GreenLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_comp, this, SendB8, CompMode)), boost::bind(&LaunchControlXL::dm_mb_comp_enabled, this)); /* Pan Knobs -> Sends */ for (uint8_t i = 0; i < 8; ++i) { MAKE_DM_KNOB (static_cast(i + 16), (i + 49), (i + 16), GreenLow, YellowLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_sends, this, static_cast(i + 16))), boost::function (boost::bind(&LaunchControlXL::dm_mb_check_send_knob, this, static_cast(i + 16)))); } if (first_selected_stripable() && (first_selected_stripable()->is_master() || first_selected_stripable()->mixbus())) { MAKE_DM_KNOB (SendA1, 13, 0, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA1, true, 0)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_gain_enabled, this, 0))); MAKE_DM_KNOB (SendA2, 14, 1, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA2, true, 1)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_gain_enabled, this, 1))); MAKE_DM_KNOB (SendA3, 15, 2, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA3, true, 2)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_gain_enabled, this, 2))); MAKE_DM_KNOB (SendA6, 18, 5, RedLow, RedLow, boost::function (boost::bind (&LaunchControlXL::dm_pan_width, this, SendA6)), boost::bind(&LaunchControlXL::dm_check_pan_width, this)); MAKE_DM_KNOB (SendA7, 19, 6, AmberLow, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_tapedrive, this, SendA7)), boost::bind(&LaunchControlXL::dm_mb_has_tapedrive, this)); } else { MAKE_DM_KNOB (SendA1, 13, 0, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA1, false, 0)), boost::bind(&LaunchControlXL::dm_mb_eq_freq_enabled, this)); MAKE_DM_KNOB (SendA2, 14, 1, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA2, true, 0)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_gain_enabled, this, 0))); MAKE_DM_KNOB (SendA3, 15, 2, YellowLow, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA3, false, 1)), boost::bind(&LaunchControlXL::dm_mb_eq_freq_enabled, this)); MAKE_DM_KNOB (SendA4, 16, 3, YellowLow, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA4, true, 1)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_gain_enabled, this, 1))); MAKE_DM_KNOB (SendA5, 17, 4, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA5, false, 2)), boost::bind(&LaunchControlXL::dm_mb_eq_freq_enabled, this)); MAKE_DM_KNOB (SendA6, 18, 5, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA6, true, 2)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_gain_enabled, this, 2))); MAKE_DM_KNOB (SendA7, 19, 6, YellowLow, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA7, false, 3)), boost::bind(&LaunchControlXL::dm_mb_eq_freq_enabled, this)); MAKE_DM_KNOB (SendA8, 20, 7, YellowLow, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq, this, SendA8, true, 3)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_gain_enabled, this, 3))); } MAKE_DM_KNOB (SendB1, 29, 8, YellowFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_flt_frq, this, SendB1, true)), boost::bind(&LaunchControlXL::dm_mb_flt_enabled, this)); MAKE_DM_KNOB (SendB2, 30, 9, YellowFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_flt_frq, this, SendB2, false)), boost::bind(&LaunchControlXL::dm_mb_flt_enabled, this)); MAKE_DM_KNOB (SendB4, 32, 11, RedLow, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_pan_azi, this, SendB4)), boost::bind(&LaunchControlXL::dm_check_pan_azi, this)); #else // from here Ardour #endif } /* Faders */ std::shared_ptr fader; #define MAKE_FADER(i,cc,a) \ fader.reset (new Fader ((i), (cc), (a))); \ cc_fader_map.insert (std::make_pair (fader->controller_number(), fader)); \ id_fader_map.insert (std::make_pair (fader->id(), fader)) if (!device_mode()) { /* mix mode */ for (uint8_t i = 0; i < 8; ++i) { MAKE_FADER(static_cast(i), i+77, boost::function (boost::bind (&LaunchControlXL::fader, this, i))); } } else { /* device mode */ MAKE_FADER(Fader1, 77, boost::function (boost::bind (&LaunchControlXL::dm_fader, this, Fader1))); #ifdef MIXBUS MAKE_FADER(Fader2, 78, boost::function (boost::bind (&LaunchControlXL::dm_mb_comp_thresh, this, Fader2))); #endif } /* Buttons */ std::shared_ptr controller_button; std::shared_ptr note_button; #define MAKE_TRACK_BUTTON_PRESS(i,nn,index,c_on,c_off,p,check) \ note_button.reset (new TrackButton ((i), (nn), (index), (c_on), (c_off), (p), \ boost::bind(&LaunchControlXL::relax, this), boost::bind(&LaunchControlXL::relax, this), (check), (*this))); \ nn_note_button_map.insert (std::make_pair (note_button->note_number(), note_button)); \ id_note_button_map.insert (std::make_pair (note_button->id(), note_button)) #define MAKE_CTRL_BUTTON_PRESS(i,nn,index,c_on,c_off,p,check) \ note_button.reset (new TrackButton ((i), (nn), (index), (c_on), (c_off), (p), \ boost::bind(&LaunchControlXL::relax, this), boost::bind(&LaunchControlXL::relax, this), (check), (*this))); \ nn_note_button_map.insert (std::make_pair (note_button->note_number(), note_button)); \ id_note_button_map.insert (std::make_pair (note_button->id(), note_button)) #define MAKE_SELECT_BUTTON_PRESS(i,cc,index,p) \ controller_button.reset (new SelectButton ((i), (cc), (index), (p), \ boost::bind(&LaunchControlXL::relax, this), boost::bind(&LaunchControlXL::relax, this), (*this))); \ cc_controller_button_map.insert (std::make_pair (controller_button->controller_number(), controller_button)); \ id_controller_button_map.insert (std::make_pair (controller_button->id(), controller_button)) #define MAKE_TRACK_STATE_BUTTON_PRESS(i,nn,index,p) \ note_button.reset (new TrackStateButton ((i), (nn), (index), (p), \ boost::bind(&LaunchControlXL::relax, this), boost::bind(&LaunchControlXL::relax, this), (*this))); \ nn_note_button_map.insert (std::make_pair (note_button->note_number(), note_button)); \ id_note_button_map.insert (std::make_pair (note_button->id(), note_button)) #define MAKE_TRACK_STATE_BUTTON_PRESS_RELEASE_LONG(i,nn,index, p,r,l) \ note_button.reset (new TrackStateButton ((i), (nn), (index), (p), (r), (l), (*this))); \ nn_note_button_map.insert (std::make_pair (note_button->note_number(), note_button)); \ id_note_button_map.insert (std::make_pair (note_button->id(), note_button)) /* Track Focus Buttons */ if (!device_mode()) { /* mixer mode */ for (uint8_t i = 0; i < 4; ++i) { MAKE_TRACK_BUTTON_PRESS(static_cast(i), i+41, i+24, YellowFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::button_track_focus, this, i)), boost::function (boost::bind (&LaunchControlXL::dm_check_dummy, this, dev_nonexistant))); } for (uint8_t i = 0; i < 4; ++i) { MAKE_TRACK_BUTTON_PRESS(static_cast(i+4), i+57, i+28, YellowFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::button_track_focus, this, i+4)), boost::function (boost::bind (&LaunchControlXL::dm_check_dummy, this, dev_nonexistant))); } } else { /* device mode */ #ifdef MIXBUS for (uint8_t i = 0; i < 4; ++i) { MAKE_TRACK_BUTTON_PRESS(static_cast(i), i+41, i+24, GreenFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_send_switch, this, static_cast(i))), boost::function (boost::bind (&LaunchControlXL::dm_mb_check_send_button, this, i))); } for (uint8_t i = 0; i < 4; ++i) { MAKE_TRACK_BUTTON_PRESS(static_cast(i+4), i+57, i+28, GreenFull, YellowLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_send_switch, this, static_cast(i+4))), boost::function (boost::bind (&LaunchControlXL::dm_mb_check_send_button, this, i+4))); } #endif } /* Track Control Buttons */ if (!device_mode()) { /* mixer mode */ /* Control Buttons in mix mode change their color dynamically so we won't set them here */ for (uint8_t i = 0; i < 4; ++i) { MAKE_CTRL_BUTTON_PRESS(static_cast(i+8), i+73, i+32, Off, Off, boost::function (boost::bind (&LaunchControlXL::button_press_track_control, this, i)), boost::function (boost::bind (&LaunchControlXL::dm_check_dummy, this, dev_nonexistant))); } for (uint8_t i = 0; i < 4; ++i) { MAKE_CTRL_BUTTON_PRESS(static_cast(i+12), i+89, i+36, Off, Off, boost::function (boost::bind (&LaunchControlXL::button_press_track_control, this, i+4)), boost::function (boost::bind (&LaunchControlXL::dm_check_dummy, this, dev_nonexistant))); } } else { /*device mode */ #ifdef MIXBUS // from here Mixbus Standard + 32C MAKE_CTRL_BUTTON_PRESS(Control1, 73, 32, YellowFull, YellowLow, (boost::bind (&LaunchControlXL::dm_mute_switch, this)), boost::bind (&LaunchControlXL::dm_mute_enabled, this)); MAKE_CTRL_BUTTON_PRESS(Control2, 74, 33, GreenFull, GreenLow, (boost::bind (&LaunchControlXL::dm_solo_switch, this)), boost::bind (&LaunchControlXL::dm_solo_enabled, this)); MAKE_CTRL_BUTTON_PRESS(Control3, 75, 34, AmberFull, AmberLow, (boost::bind (&LaunchControlXL::dm_mb_eq_switch, this)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_gain_enabled, this, 0))); MAKE_CTRL_BUTTON_PRESS(Control4, 76, 35, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq_shape_switch, this, 0)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_shape_enabled, this, 0 ))); MAKE_CTRL_BUTTON_PRESS(Control5, 89, 36, AmberFull, AmberLow, boost::function (boost::bind (&LaunchControlXL::dm_mb_eq_shape_switch, this, 3)), boost::function (boost::bind(&LaunchControlXL::dm_mb_eq_shape_enabled, this, 3 ))); MAKE_CTRL_BUTTON_PRESS(Control6, 90, 37, YellowFull, YellowLow, (boost::bind (&LaunchControlXL::dm_mb_flt_switch, this)), boost::bind(&LaunchControlXL::dm_mb_flt_enabled, this)); MAKE_CTRL_BUTTON_PRESS(Control7, 91, 38, GreenFull, GreenLow, (boost::bind (&LaunchControlXL::dm_mb_master_assign_switch, this)), boost::bind(&LaunchControlXL::dm_mb_master_assign_enabled, this)); MAKE_CTRL_BUTTON_PRESS(Control8, 92, 39, GreenFull, GreenLow, (boost::bind (&LaunchControlXL::dm_mb_comp_switch, this)), boost::bind(&LaunchControlXL::dm_mb_comp_enabled, this)); #else // Ardour #endif } /* Select and Mode Buttons on the right side */ /* Sends Select buttons are independent of mode */ MAKE_SELECT_BUTTON_PRESS(SelectUp, 104, 44, boost::function (boost::bind (&LaunchControlXL::send_bank_switch, this, false))); MAKE_SELECT_BUTTON_PRESS(SelectDown, 105, 45, boost::function (boost::bind (&LaunchControlXL::send_bank_switch, this, true))); /* Device Button needs to be always there */ MAKE_TRACK_STATE_BUTTON_PRESS_RELEASE_LONG(Device, 105, 40, boost::bind (&LaunchControlXL::relax, this) , boost::bind (&LaunchControlXL::button_device, this), boost::bind (&LaunchControlXL::button_device_long_press, this)); /* Cancel all mute / solo is available in both modes */ MAKE_TRACK_STATE_BUTTON_PRESS_RELEASE_LONG(Mute, 106, 41, boost::bind (&LaunchControlXL::relax, this) , boost::bind (&LaunchControlXL::button_mute, this), boost::bind (&LaunchControlXL::button_mute_long_press, this)); MAKE_TRACK_STATE_BUTTON_PRESS_RELEASE_LONG(Solo, 107, 42, boost::bind (&LaunchControlXL::relax, this) , boost::bind (&LaunchControlXL::button_solo, this), boost::bind (&LaunchControlXL::button_solo_long_press, this)); if (!device_mode()) { /* mixer mode */ MAKE_SELECT_BUTTON_PRESS(SelectLeft, 106, 46, boost::bind (&LaunchControlXL::button_select_left, this)); MAKE_SELECT_BUTTON_PRESS(SelectRight, 107, 47, boost::bind (&LaunchControlXL::button_select_right, this)); MAKE_TRACK_STATE_BUTTON_PRESS(Record, 108, 43, boost::bind (&LaunchControlXL::button_record, this)); } else { /* device mode */ MAKE_SELECT_BUTTON_PRESS(SelectLeft, 106, 46, boost::bind (&LaunchControlXL::dm_select_prev_strip, this)); MAKE_SELECT_BUTTON_PRESS(SelectRight, 107, 47, boost::bind (&LaunchControlXL::dm_select_next_strip, this)); } } std::string LaunchControlXL::button_name_by_id (ButtonID id) { switch (id) { case Device: return "Device"; case Mute: return "Mute"; case Solo: return "Solo"; case Record: return "Record"; case SelectUp: return "Select Up"; case SelectDown: return "Select Down"; case SelectRight: return "Select Right"; case SelectLeft: return "Select Left"; case Focus1: return "Focus 1"; case Focus2: return "Focus 2"; case Focus3: return "Focus 3"; case Focus4: return "Focus 4"; case Focus5: return "Focus 5"; case Focus6: return "Focus 6"; case Focus7: return "Focus 7"; case Focus8: return "Focus 8"; case Control1: return "Control 1"; case Control2: return "Control 2"; case Control3: return "Control 3"; case Control4: return "Control 4"; case Control5: return "Control 5"; case Control6: return "Control 6"; case Control7: return "Control 7"; case Control8: return "Control 8"; default: break; } return "???"; } std::string LaunchControlXL::knob_name_by_id (KnobID id) { switch (id) { case SendA1: return "SendA 1"; case SendA2: return "SendA 2"; case SendA3: return "SendA 3"; case SendA4: return "SendA 4"; case SendA5: return "SendA 5"; case SendA6: return "SendA 6"; case SendA7: return "SendA 7"; case SendA8: return "SendA 8"; case SendB1: return "SendB 1"; case SendB2: return "SendB 2"; case SendB3: return "SendB 3"; case SendB4: return "SendB 4"; case SendB5: return "SendB 5"; case SendB6: return "SendB 6"; case SendB7: return "SendB 7"; case SendB8: return "SendB 8"; case Pan1: return "Pan 1"; case Pan2: return "Pan 2"; case Pan3: return "Pan 3"; case Pan4: return "Pan 4"; case Pan5: return "Pan 5"; case Pan6: return "Pan 6"; case Pan7: return "Pan 7"; case Pan8: return "Pan 8"; default: break; } return "???"; } std::string LaunchControlXL::fader_name_by_id (FaderID id) { switch (id) { case Fader1: return "Fader 1"; case Fader2: return "Fader 2"; case Fader3: return "Fader 3"; case Fader4: return "Fader 4"; case Fader5: return "Fader 5"; case Fader6: return "Fader 6"; case Fader7: return "Fader 7"; case Fader8: return "Fader 8"; default: break; } return "???"; } std::shared_ptr LaunchControlXL::track_button_by_range(uint8_t n, uint8_t first, uint8_t middle) { NNNoteButtonMap::iterator b; if ( n < 4) { b = nn_note_button_map.find (first + n); } else { b = nn_note_button_map.find (middle + n - 4); } if (b != nn_note_button_map.end()) { return std::dynamic_pointer_cast (b->second); } return std::shared_ptr(); } void LaunchControlXL::update_track_focus_led(uint8_t n) { std::shared_ptr b = focus_button_by_column(n); if (!b) { return; } if (stripable[n]) { if ( stripable[n]->is_selected() ) { b->set_color(YellowFull); } else { b->set_color(AmberLow); } } else { b->set_color(Off); } write (b->state_msg()); } std::shared_ptr LaunchControlXL::get_ac_by_state(uint8_t n) { std::shared_ptr ac; switch(track_mode()) { case TrackMute: ac = stripable[n]->mute_control(); break; case TrackSolo: ac = stripable[n]->solo_control(); break; case TrackRecord: ac = stripable[n]->rec_enable_control(); break; default: break; } return ac; } std::shared_ptr LaunchControlXL::knob_by_id(KnobID id) { IDKnobMap::iterator k = id_knob_map.find(id); return std::dynamic_pointer_cast (k->second); } std::shared_ptr* LaunchControlXL::knobs_by_column(uint8_t col, std::shared_ptr* knob_col) { for (uint8_t n = 0; n < 3; ++n) { if (id_knob_map.find(static_cast(col+n*8)) != id_knob_map.end()) { knob_col[n] = id_knob_map.find(static_cast(col+n*8))->second; } } return knob_col; } void LaunchControlXL::update_knob_led_by_id (uint8_t id, LEDColor color) { std::shared_ptr knob; IDKnobMap::iterator k = id_knob_map.find(static_cast(id)); if (k != id_knob_map.end()) { knob = k->second; } knob->set_color(color); write (knob->state_msg()); } void LaunchControlXL::update_knob_led_by_strip(uint8_t n) { LEDColor color; std::shared_ptr knobs_col[3]; knobs_by_column(n, knobs_col); for (uint8_t s = 0; s < 3; ++s) { if (knobs_col[s]) { if (stripable[n]) { if (stripable[n]->is_selected()) { color = knobs_col[s]->color_enabled(); } else { color = knobs_col[s]->color_disabled(); } knobs_col[s]->set_color(color); } else { knobs_col[s]->set_color(Off); } write (knobs_col[s]->state_msg()); } } } void LaunchControlXL::update_track_control_led(uint8_t n) { std::shared_ptr b = control_button_by_column(n); if (!b) { return; } if ((buttons_down.find(Device) != buttons_down.end())) { /* Don't update LEDs if Device button is hold - we are working on selected strips */ return; } if (stripable[n]) { std::shared_ptr ac = get_ac_by_state(n); if (ac) { if (ac->get_value()) { b->set_color(b->color_enabled()); } else { b->set_color(b->color_disabled()); } } else { b->set_color(Off); } } else { b->set_color(Off); } write (b->state_msg()); } void LaunchControlXL::solo_mute_rec_changed(uint32_t n) { if (!stripable[n]) { return; } DEBUG_TRACE (DEBUG::LaunchControlXL, "solo_mute_rec_changed - CALLING switch_bank(bank_start)\n"); switch_bank(bank_start); //update_track_control_led(n); } void LaunchControlXL::solo_iso_changed(uint32_t n) { if (!stripable[n]) { return; } else { solo_iso_led_bank(); } } void LaunchControlXL::solo_iso_led_bank () { if (device_mode()) { return; } int stripable_counter = get_amount_of_tracks(); if (!(buttons_down.find(Device) != buttons_down.end())) { return; } else { for (int n = 0; n < stripable_counter; ++n) { std::shared_ptr b = focus_button_by_column(n); if (stripable[n] && stripable[n]->solo_isolate_control()) { if (stripable[n]->solo_isolate_control()->get_value()) { b->set_color(RedFull); } else { b->set_color(Off); } if (b) { write (b->state_msg()); } } } LaunchControlXL::set_refresh_leds_flag(true); } } #ifdef MIXBUS void LaunchControlXL::master_send_changed(uint32_t n) { if (!stripable[n]) { return; } else { master_send_led_bank(); } } void LaunchControlXL::master_send_led_bank () { if (device_mode()) { return; } if (!(buttons_down.find(Device) != buttons_down.end())) { return; } else { int stripable_counter = LaunchControlXL::get_amount_of_tracks(); for (int n = 0; n < stripable_counter; ++n) { std::shared_ptr b = control_button_by_column(n); if (stripable[n] && stripable[n]->master_send_enable_controllable()) { if (stripable[n]->master_send_enable_controllable()->get_value()) { b->set_color(GreenFull); } else { b->set_color(Off); } } if (b) { write (b->state_msg()); } } LaunchControlXL::set_refresh_leds_flag(true); } } # endif void LaunchControlXL::fader(uint8_t n) { if (!stripable[n]) { return; } std::shared_ptr fader; IDFaderMap::iterator f = id_fader_map.find(static_cast(n)); if (f != id_fader_map.end()) { fader = f->second; } if (!fader) { return; } std::shared_ptr ac = stripable[fader->id()]->gain_control(); if (ac && check_pick_up(fader, ac)) { ac->set_value ( ac->interface_to_internal( fader->value() / 127.0), PBD::Controllable::UseGroup ); } } void LaunchControlXL::knob_sendA(uint8_t n) { if (!stripable[n]) { return; } std::shared_ptr knob; IDKnobMap::iterator k = id_knob_map.find(static_cast(n)); if (k != id_knob_map.end()) { knob = k->second; } if (!knob) { return; } std::shared_ptr ac; if (buttons_down.find(Device) != buttons_down.end()) { // Device button hold ac = stripable[n]->trim_control(); } else { ac = stripable[n]->send_level_controllable (send_bank_base()); } if (ac && check_pick_up(knob, ac)) { ac->set_value ( ac->interface_to_internal( knob->value() / 127.0), PBD::Controllable::UseGroup ); } } void LaunchControlXL::knob_sendB(uint8_t n) { if (!stripable[n]) { return; } std::shared_ptr knob; IDKnobMap::iterator k = id_knob_map.find(static_cast(n + 8)); if (k != id_knob_map.end()) { knob = k->second; } if (!knob) { return; } std::shared_ptr ac; if (buttons_down.find(Device) != buttons_down.end()) { // Device button hold #ifdef MIXBUS ac = stripable[n]->filter_freq_controllable (true); #else /* something */ #endif } else { ac = stripable[n]->send_level_controllable (send_bank_base() + 1); } if (ac && check_pick_up(knob, ac)) { ac->set_value ( ac->interface_to_internal( knob->value() / 127.0), PBD::Controllable::UseGroup ); } } void LaunchControlXL::knob_pan(uint8_t n) { if (!stripable[n]) { return; } std::shared_ptr knob; IDKnobMap::iterator k = id_knob_map.find(static_cast(n + 16)); if (k != id_knob_map.end()) { knob = k->second; } if (!knob) { return; } std::shared_ptr ac; if (buttons_down.find(Device) != buttons_down.end()) { // Device button hold #ifdef MIXBUS ac = stripable[n]->comp_threshold_controllable(); #else ac = stripable[n]->pan_width_control(); #endif } else { ac = stripable[n]->pan_azimuth_control(); } if (ac && check_pick_up(knob, ac, true)) { ac->set_value (ac->interface_to_internal((knob->value() / 127.0), true), PBD::Controllable::UseGroup); } } void LaunchControlXL::button_track_focus(uint8_t n) { if (buttons_down.find(Device) != buttons_down.end()) { DEBUG_TRACE (DEBUG::LaunchControlXL, "DEVICE BUTTON HOLD\n"); if (stripable[n]->solo_isolate_control()) { bool solo_isolate_active = stripable[n]->solo_isolate_control()->get_value(); stripable[n]->solo_isolate_control()->set_value (!solo_isolate_active, PBD::Controllable::UseGroup); } return; } if (stripable[n]) { if ( stripable[n]->is_selected() ) { ControlProtocol::remove_stripable_from_selection (stripable[n]); } else { ControlProtocol::add_stripable_to_selection (stripable[n]); } } else { return; } } void LaunchControlXL::button_press_track_control(uint8_t n) { if (!stripable[n]) { return; } if (buttons_down.find(Device) != buttons_down.end()) { DEBUG_TRACE (DEBUG::LaunchControlXL, "DEVICE BUTTON HOLD\n"); #ifdef MIXBUS if (stripable[n]->master_send_enable_controllable()) { bool master_send_active = stripable[n]->master_send_enable_controllable()->get_value(); DEBUG_TRACE (DEBUG::LaunchControlXL, "MIXBUS Master Assign\n"); stripable[n]->master_send_enable_controllable()->set_value (!master_send_active, PBD::Controllable::UseGroup); } #else /* something useful for Ardour */ #endif return; } std::shared_ptr ac = get_ac_by_state(n); if (ac) { session->set_control (ac, !ac->get_value(), PBD::Controllable::UseGroup); } } void LaunchControlXL::button_track_mode(TrackMode state) { set_track_mode(state); for (uint8_t n = 0; n < 8; ++n) { update_track_control_led(n); } std::shared_ptr mute = std::dynamic_pointer_cast (id_note_button_map[Mute]); std::shared_ptr solo = std::dynamic_pointer_cast (id_note_button_map[Solo]); std::shared_ptr record = std::dynamic_pointer_cast (id_note_button_map[Record]); if (mute && solo && record) { write(mute->state_msg((state == TrackMute))); write(solo->state_msg((state == TrackSolo))); write(record->state_msg((state == TrackRecord))); } } void LaunchControlXL::button_select_left() { switch_bank (std::max (0, bank_start - (7 + (fader8master() ? 0 : 1)))); } void LaunchControlXL::button_select_right() { switch_bank (std::max (0, bank_start + 7 + (fader8master() ? 0 : 1))); } void LaunchControlXL::send_bank_switch(bool down) { DEBUG_TRACE (DEBUG::LaunchControlXL, string_compose ("send_bank_switch - down: %1\n", down)); if (down) { set_send_bank(+2); } else { set_send_bank(-2); } } void LaunchControlXL::button_device() { #ifndef MIXBUS return; // currently device mode only on Mixbus #endif LaunchControlXL::set_device_mode(!device_mode()); } void LaunchControlXL::button_device_long_press() { if (device_mode()) { return ; } solo_iso_led_bank(); #ifdef MIXBUS master_send_led_bank(); #endif } void LaunchControlXL::button_mute() { if (device_mode()) { return ; } if (buttons_down.find(Device) != buttons_down.end()) { access_action ("Editor/track-mute-toggle"); } else { button_track_mode(TrackMute); } } void LaunchControlXL::button_mute_long_press() { session->cancel_all_mute(); } void LaunchControlXL::button_solo() { if (device_mode()) { return ; } if (buttons_down.find(Device) != buttons_down.end()) { access_action ("Editor/track-solo-toggle"); } else { button_track_mode(TrackSolo); } } void LaunchControlXL::button_solo_long_press() { cancel_all_solo(); } void LaunchControlXL::button_record() { if (device_mode()) { return ; } if (buttons_down.find(Device) != buttons_down.end()) { access_action ("Editor/track-record-enable-toggle"); } else { button_track_mode(TrackRecord); } } bool LaunchControlXL::button_long_press_timeout (ButtonID id, std::shared_ptr