2012-04-09 13:48:16 -04:00
|
|
|
/*
|
2019-08-03 08:34:29 -04:00
|
|
|
* Copyright (C) 2006-2007 John Anderson
|
|
|
|
* Copyright (C) 2012-2018 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2015-2016 Len Ovens <len@ovenwerks.net>
|
|
|
|
* Copyright (C) 2015-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
* Copyright (C) 2016-2019 Ben Loftis <ben@harrisonconsoles.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2012-04-09 13:48:16 -04:00
|
|
|
|
2012-04-26 12:18:03 -04:00
|
|
|
#include <algorithm>
|
|
|
|
|
2012-04-09 14:53:51 -04:00
|
|
|
#include "pbd/memento_command.h"
|
|
|
|
|
2012-04-10 22:54:25 -04:00
|
|
|
#include "ardour/debug.h"
|
2015-12-11 11:05:57 -05:00
|
|
|
#include "ardour/profile.h"
|
2012-04-09 13:48:16 -04:00
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/route.h"
|
|
|
|
#include "ardour/location.h"
|
|
|
|
#include "ardour/rc_configuration.h"
|
|
|
|
|
|
|
|
#include "mackie_control_protocol.h"
|
add plugin support for mackie units
Main features: Plugin (Select & Edit)
1. Plugin Select: When a track is selected that has PluginInserts, pushing the "Plug-In" button on a mackie will list these across the strips. Clicking a vpot of a strip enables editing the parameters of this selected plugin.
2. Plugin Edit: When a Plugin is selected for editing, the input parameters of the plugin are shown across the channel strips and the vpot is assigned the corresponsing AutomationControl for the parameter.
Minor features
- When the number of plugins or the number of parameters exceeds the number of strips available on the surface, one can flip through "pages" of views using the Cursor Left and Right keys (this logic I took from http://www.emagic.de/media/support/content/manuals/LogicControl_en.pdf)
- When in the Plugin Select mode, rearranging the plugins in the mixer strip is reflected on the surface.
- When in Plugin Edit mode, rearranging the plugins in the mixer strip still retains the edit view of the selected plugin (rearranging does not take away the current subview)
- When removing a plugin in the mixer strip, this is reflected in Plugin Select, while the view jumps to Pan/Surround (the None subview) when in Plugin Edit mode.
- Removing a track resets the subview to None
- When in a Subview that is track-specific (Track, EQ, Send, Plug-In, Inst), selecting a different track retains the subview but updates the channel displays and vpot assignments accordingly. When in Plugin Edit mode for track A, and track B is selected, it changes to Plugin Select mode for track B (if plugins are present).
2020-03-27 03:46:45 -04:00
|
|
|
#include "subview.h"
|
2012-04-10 10:27:44 -04:00
|
|
|
#include "surface.h"
|
2012-06-09 15:06:52 -04:00
|
|
|
#include "fader.h"
|
2012-04-09 13:48:16 -04:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2012-04-09 14:53:51 -04:00
|
|
|
|
2012-04-09 13:48:16 -04:00
|
|
|
/* handlers for all buttons, broken into a separate file to avoid clutter in
|
2015-10-04 14:51:05 -04:00
|
|
|
* mackie_control_protocol.cc
|
2012-04-09 13:48:16 -04:00
|
|
|
*/
|
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
using std::string;
|
2012-04-09 13:48:16 -04:00
|
|
|
using namespace ARDOUR;
|
2012-04-10 22:54:25 -04:00
|
|
|
using namespace PBD;
|
2015-04-15 20:37:20 -04:00
|
|
|
using namespace ArdourSurface;
|
2023-08-23 07:27:21 -04:00
|
|
|
using namespace ArdourSurface::MACKIE_NAMESPACE;
|
2012-04-09 13:48:16 -04:00
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::shift_press (Button &)
|
|
|
|
{
|
|
|
|
_modifier_state |= MODIFIER_SHIFT;
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::shift_release (Button &)
|
|
|
|
{
|
|
|
|
_modifier_state &= ~MODIFIER_SHIFT;
|
2015-09-20 21:26:16 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::option_press (Button &)
|
|
|
|
{
|
|
|
|
_modifier_state |= MODIFIER_OPTION;
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::option_release (Button &)
|
|
|
|
{
|
|
|
|
_modifier_state &= ~MODIFIER_OPTION;
|
2015-09-20 21:26:16 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::control_press (Button &)
|
|
|
|
{
|
|
|
|
_modifier_state |= MODIFIER_CONTROL;
|
2012-04-11 21:14:43 -04:00
|
|
|
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("CONTROL Press: modifier state now set to %1\n", _modifier_state));
|
2012-04-09 13:48:16 -04:00
|
|
|
return on;
|
|
|
|
}
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::control_release (Button &)
|
|
|
|
{
|
|
|
|
_modifier_state &= ~MODIFIER_CONTROL;
|
2012-04-11 21:14:43 -04:00
|
|
|
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("CONTROL Release: modifier state now set to %1\n", _modifier_state));
|
2015-09-20 21:26:16 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cmd_alt_press (Button &)
|
|
|
|
{
|
|
|
|
_modifier_state |= MODIFIER_CMDALT;
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cmd_alt_release (Button &)
|
|
|
|
{
|
|
|
|
_modifier_state &= ~MODIFIER_CMDALT;
|
2015-09-20 21:26:16 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::left_press (Button &)
|
|
|
|
{
|
2023-08-23 07:27:21 -04:00
|
|
|
if (_subview->subview_mode() != MACKIE_NAMESPACE::Subview::None) {
|
2015-12-14 22:22:34 -05:00
|
|
|
return none;
|
|
|
|
}
|
|
|
|
|
2016-05-16 16:45:37 -04:00
|
|
|
Sorted sorted = get_sorted_stripables();
|
2015-10-04 14:51:05 -04:00
|
|
|
uint32_t strip_cnt = n_strips ();
|
2012-04-10 20:10:31 -04:00
|
|
|
|
2012-04-10 22:54:25 -04:00
|
|
|
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("bank left with current initial = %1 nstrips = %2 tracks/busses = %3\n",
|
2012-06-13 11:38:15 -04:00
|
|
|
_current_initial_bank, strip_cnt, sorted.size()));
|
2022-03-04 15:43:27 -05:00
|
|
|
|
2015-05-27 08:57:16 -04:00
|
|
|
if (_current_initial_bank > 0) {
|
2022-03-04 15:43:27 -05:00
|
|
|
uint32_t initial = (_current_initial_bank - 1) / strip_cnt * strip_cnt;
|
|
|
|
while (initial >= sorted.size())
|
|
|
|
{
|
|
|
|
initial -= strip_cnt;
|
|
|
|
}
|
|
|
|
(void) switch_banks (initial);
|
2015-05-27 08:57:16 -04:00
|
|
|
} else {
|
2016-01-28 16:27:33 -05:00
|
|
|
(void) switch_banks (0);
|
2015-05-27 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
2012-04-27 16:35:45 -04:00
|
|
|
|
|
|
|
return on;
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::left_release (Button &)
|
|
|
|
{
|
2018-09-24 03:29:34 -04:00
|
|
|
return off;
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::right_press (Button &)
|
|
|
|
{
|
2023-08-23 07:27:21 -04:00
|
|
|
if (_subview->subview_mode() != MACKIE_NAMESPACE::Subview::None) {
|
2015-12-14 22:22:34 -05:00
|
|
|
return none;
|
|
|
|
}
|
|
|
|
|
2016-05-16 16:45:37 -04:00
|
|
|
Sorted sorted = get_sorted_stripables();
|
2012-04-10 10:27:44 -04:00
|
|
|
uint32_t strip_cnt = n_strips();
|
2012-04-26 12:18:03 -04:00
|
|
|
uint32_t route_cnt = sorted.size();
|
2015-05-26 10:21:55 -04:00
|
|
|
uint32_t max_bank = route_cnt / strip_cnt * strip_cnt;
|
|
|
|
|
2012-04-09 15:47:06 -04:00
|
|
|
|
2012-04-10 22:54:25 -04:00
|
|
|
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("bank right with current initial = %1 nstrips = %2 tracks/busses = %3\n",
|
2012-04-27 16:35:45 -04:00
|
|
|
_current_initial_bank, strip_cnt, route_cnt));
|
2012-04-10 22:54:25 -04:00
|
|
|
|
2015-05-26 10:21:55 -04:00
|
|
|
if (_current_initial_bank < max_bank) {
|
|
|
|
uint32_t new_initial = (_current_initial_bank / strip_cnt * strip_cnt) + strip_cnt;
|
2016-01-28 16:27:33 -05:00
|
|
|
(void) switch_banks (new_initial);
|
2015-05-26 10:21:55 -04:00
|
|
|
}
|
2012-04-26 12:18:03 -04:00
|
|
|
|
2018-09-24 03:29:34 -04:00
|
|
|
return on;
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::right_release (Button &)
|
|
|
|
{
|
2018-09-24 03:29:34 -04:00
|
|
|
return off;
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cursor_left_press (Button& )
|
|
|
|
{
|
add plugin support for mackie units
Main features: Plugin (Select & Edit)
1. Plugin Select: When a track is selected that has PluginInserts, pushing the "Plug-In" button on a mackie will list these across the strips. Clicking a vpot of a strip enables editing the parameters of this selected plugin.
2. Plugin Edit: When a Plugin is selected for editing, the input parameters of the plugin are shown across the channel strips and the vpot is assigned the corresponsing AutomationControl for the parameter.
Minor features
- When the number of plugins or the number of parameters exceeds the number of strips available on the surface, one can flip through "pages" of views using the Cursor Left and Right keys (this logic I took from http://www.emagic.de/media/support/content/manuals/LogicControl_en.pdf)
- When in the Plugin Select mode, rearranging the plugins in the mixer strip is reflected on the surface.
- When in Plugin Edit mode, rearranging the plugins in the mixer strip still retains the edit view of the selected plugin (rearranging does not take away the current subview)
- When removing a plugin in the mixer strip, this is reflected in Plugin Select, while the view jumps to Pan/Surround (the None subview) when in Plugin Edit mode.
- Removing a track resets the subview to None
- When in a Subview that is track-specific (Track, EQ, Send, Plug-In, Inst), selecting a different track retains the subview but updates the channel displays and vpot assignments accordingly. When in Plugin Edit mode for track A, and track B is selected, it changes to Plugin Select mode for track B (if plugins are present).
2020-03-27 03:46:45 -04:00
|
|
|
bool press_handled_by_subview = _subview->handle_cursor_left_press();
|
|
|
|
if (press_handled_by_subview)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2015-10-02 07:31:31 -04:00
|
|
|
if (zoom_mode()) {
|
2012-04-09 14:53:51 -04:00
|
|
|
|
2015-10-02 07:31:31 -04:00
|
|
|
if (main_modifier_state() & MODIFIER_OPTION) {
|
2012-04-09 14:53:51 -04:00
|
|
|
/* reset selected tracks to default vertical zoom */
|
|
|
|
} else {
|
|
|
|
ZoomOut (); /* EMIT SIGNAL */
|
|
|
|
}
|
2012-04-11 18:47:02 -04:00
|
|
|
} else {
|
|
|
|
float page_fraction;
|
2015-10-02 07:31:31 -04:00
|
|
|
if (main_modifier_state() == MODIFIER_CONTROL) {
|
2012-04-11 18:47:02 -04:00
|
|
|
page_fraction = 1.0;
|
2015-10-02 07:31:31 -04:00
|
|
|
} else if (main_modifier_state() == MODIFIER_OPTION) {
|
2012-04-11 18:47:02 -04:00
|
|
|
page_fraction = 0.1;
|
2015-10-02 07:31:31 -04:00
|
|
|
} else if (main_modifier_state() == MODIFIER_SHIFT) {
|
2012-04-11 18:47:02 -04:00
|
|
|
page_fraction = 2.0;
|
|
|
|
} else {
|
|
|
|
page_fraction = 0.25;
|
|
|
|
}
|
|
|
|
|
2012-04-11 18:57:01 -04:00
|
|
|
ScrollTimeline (-page_fraction);
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cursor_left_release (Button&)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cursor_right_press (Button& )
|
|
|
|
{
|
add plugin support for mackie units
Main features: Plugin (Select & Edit)
1. Plugin Select: When a track is selected that has PluginInserts, pushing the "Plug-In" button on a mackie will list these across the strips. Clicking a vpot of a strip enables editing the parameters of this selected plugin.
2. Plugin Edit: When a Plugin is selected for editing, the input parameters of the plugin are shown across the channel strips and the vpot is assigned the corresponsing AutomationControl for the parameter.
Minor features
- When the number of plugins or the number of parameters exceeds the number of strips available on the surface, one can flip through "pages" of views using the Cursor Left and Right keys (this logic I took from http://www.emagic.de/media/support/content/manuals/LogicControl_en.pdf)
- When in the Plugin Select mode, rearranging the plugins in the mixer strip is reflected on the surface.
- When in Plugin Edit mode, rearranging the plugins in the mixer strip still retains the edit view of the selected plugin (rearranging does not take away the current subview)
- When removing a plugin in the mixer strip, this is reflected in Plugin Select, while the view jumps to Pan/Surround (the None subview) when in Plugin Edit mode.
- Removing a track resets the subview to None
- When in a Subview that is track-specific (Track, EQ, Send, Plug-In, Inst), selecting a different track retains the subview but updates the channel displays and vpot assignments accordingly. When in Plugin Edit mode for track A, and track B is selected, it changes to Plugin Select mode for track B (if plugins are present).
2020-03-27 03:46:45 -04:00
|
|
|
bool press_handled_by_subview = _subview->handle_cursor_right_press();
|
|
|
|
if (press_handled_by_subview)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2015-10-02 07:31:31 -04:00
|
|
|
if (zoom_mode()) {
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2015-10-02 07:31:31 -04:00
|
|
|
if (main_modifier_state() & MODIFIER_OPTION) {
|
2012-04-09 14:53:51 -04:00
|
|
|
/* reset selected tracks to default vertical zoom */
|
|
|
|
} else {
|
|
|
|
ZoomIn (); /* EMIT SIGNAL */
|
|
|
|
}
|
2012-04-11 18:47:02 -04:00
|
|
|
} else {
|
|
|
|
float page_fraction;
|
2015-10-02 07:31:31 -04:00
|
|
|
if (main_modifier_state() == MODIFIER_CONTROL) {
|
2012-04-11 18:47:02 -04:00
|
|
|
page_fraction = 1.0;
|
2015-10-02 07:31:31 -04:00
|
|
|
} else if (main_modifier_state() == MODIFIER_OPTION) {
|
2012-04-11 18:47:02 -04:00
|
|
|
page_fraction = 0.1;
|
2015-10-02 07:31:31 -04:00
|
|
|
} else if (main_modifier_state() == MODIFIER_SHIFT) {
|
2012-04-11 18:47:02 -04:00
|
|
|
page_fraction = 2.0;
|
|
|
|
} else {
|
|
|
|
page_fraction = 0.25;
|
|
|
|
}
|
2012-04-09 14:53:51 -04:00
|
|
|
|
2012-04-11 18:47:02 -04:00
|
|
|
ScrollTimeline (page_fraction);
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-09 14:53:51 -04:00
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cursor_right_release (Button&)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cursor_up_press (Button&)
|
|
|
|
{
|
2015-10-02 07:31:31 -04:00
|
|
|
if (zoom_mode()) {
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2015-10-02 07:31:31 -04:00
|
|
|
if (main_modifier_state() & MODIFIER_CONTROL) {
|
2012-04-11 18:32:02 -04:00
|
|
|
VerticalZoomInSelected (); /* EMIT SIGNAL */
|
2012-04-09 14:53:51 -04:00
|
|
|
} else {
|
2012-04-11 18:32:02 -04:00
|
|
|
VerticalZoomInAll (); /* EMIT SIGNAL */
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
2012-04-25 23:46:18 -04:00
|
|
|
} else {
|
2016-02-03 19:11:21 -05:00
|
|
|
access_action ("Editor/select-prev-route");
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cursor_up_release (Button&)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cursor_down_press (Button&)
|
|
|
|
{
|
2015-10-02 07:31:31 -04:00
|
|
|
if (zoom_mode()) {
|
|
|
|
if (main_modifier_state() & MODIFIER_OPTION) {
|
2012-04-11 18:32:02 -04:00
|
|
|
VerticalZoomOutSelected (); /* EMIT SIGNAL */
|
2012-04-09 14:53:51 -04:00
|
|
|
} else {
|
2012-04-11 18:32:02 -04:00
|
|
|
VerticalZoomOutAll (); /* EMIT SIGNAL */
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
2012-04-25 23:46:18 -04:00
|
|
|
} else {
|
2016-02-03 19:11:21 -05:00
|
|
|
access_action ("Editor/select-next-route");
|
2012-04-09 14:53:51 -04:00
|
|
|
}
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::cursor_down_release (Button&)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::channel_left_press (Button &)
|
|
|
|
{
|
2019-10-22 15:39:38 -04:00
|
|
|
if (_device_info.single_fader_follows_selection()) {
|
|
|
|
access_action ("Editor/select-prev-route");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
if (_subview->subview_mode() != MACKIE_NAMESPACE::Subview::None) {
|
2015-12-14 22:22:34 -05:00
|
|
|
return none;
|
|
|
|
}
|
2016-05-16 16:45:37 -04:00
|
|
|
Sorted sorted = get_sorted_stripables();
|
2012-04-10 10:27:44 -04:00
|
|
|
if (sorted.size() > n_strips()) {
|
2012-04-09 14:53:51 -04:00
|
|
|
prev_track();
|
|
|
|
return on;
|
|
|
|
} else {
|
|
|
|
return flashing;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::channel_left_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::channel_right_press (Button &)
|
|
|
|
{
|
2019-10-22 15:39:38 -04:00
|
|
|
if (_device_info.single_fader_follows_selection()) {
|
|
|
|
access_action ("Editor/select-next-route");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
if (_subview->subview_mode() != MACKIE_NAMESPACE::Subview::None) {
|
2015-12-14 22:22:34 -05:00
|
|
|
return none;
|
|
|
|
}
|
2016-05-16 16:45:37 -04:00
|
|
|
Sorted sorted = get_sorted_stripables();
|
2012-04-10 10:27:44 -04:00
|
|
|
if (sorted.size() > n_strips()) {
|
2012-04-09 14:53:51 -04:00
|
|
|
next_track();
|
|
|
|
return on;
|
|
|
|
} else {
|
|
|
|
return flashing;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::channel_right_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::zoom_press (MACKIE_NAMESPACE::Button &)
|
2012-04-09 15:47:06 -04:00
|
|
|
{
|
2015-10-02 07:31:31 -04:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::zoom_release (MACKIE_NAMESPACE::Button &)
|
2012-04-09 15:47:06 -04:00
|
|
|
{
|
2015-10-02 07:31:31 -04:00
|
|
|
if (_modifier_state & MODIFIER_ZOOM) {
|
|
|
|
_modifier_state &= ~MODIFIER_ZOOM;
|
|
|
|
} else {
|
|
|
|
_modifier_state |= MODIFIER_ZOOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (zoom_mode() ? on : off);
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::scrub_press (MACKIE_NAMESPACE::Button &)
|
2012-04-09 15:47:06 -04:00
|
|
|
{
|
2021-05-04 23:30:22 -04:00
|
|
|
if (_master_surface) {
|
2015-09-08 23:47:16 -04:00
|
|
|
_master_surface->next_jog_mode ();
|
2012-04-22 13:37:52 -04:00
|
|
|
}
|
2021-05-04 23:30:22 -04:00
|
|
|
|
2012-04-22 13:37:52 -04:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::scrub_release (MACKIE_NAMESPACE::Button &)
|
2012-04-09 15:47:06 -04:00
|
|
|
{
|
2012-04-22 13:37:52 -04:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::undo_press (Button&)
|
|
|
|
{
|
2016-02-03 19:11:21 -05:00
|
|
|
if (main_modifier_state() == MODIFIER_SHIFT) {
|
|
|
|
redo();
|
|
|
|
} else {
|
|
|
|
undo ();
|
|
|
|
}
|
2016-02-01 12:20:55 -05:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::undo_release (Button&)
|
|
|
|
{
|
2016-02-01 12:20:55 -05:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
2022-03-04 15:24:37 -05:00
|
|
|
LedState
|
|
|
|
MackieControlProtocol::redo_press (Button &)
|
|
|
|
{
|
|
|
|
redo ();
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::redo_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 15:47:06 -04:00
|
|
|
MackieControlProtocol::drop_press (Button &)
|
|
|
|
{
|
2016-02-03 19:11:21 -05:00
|
|
|
if (main_modifier_state() == MODIFIER_SHIFT) {
|
|
|
|
toggle_punch_in();
|
2016-02-04 12:44:23 -05:00
|
|
|
return none;
|
2016-02-03 19:11:21 -05:00
|
|
|
} else {
|
2017-01-28 12:50:12 -05:00
|
|
|
access_action ("Common/start-range-from-playhead");
|
2016-02-03 19:11:21 -05:00
|
|
|
}
|
2016-02-01 12:20:55 -05:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 15:47:06 -04:00
|
|
|
MackieControlProtocol::drop_release (Button &)
|
|
|
|
{
|
2016-01-31 11:02:21 -05:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 15:47:06 -04:00
|
|
|
MackieControlProtocol::save_press (Button &)
|
|
|
|
{
|
2016-02-03 19:11:21 -05:00
|
|
|
if (main_modifier_state() == MODIFIER_SHIFT) {
|
|
|
|
quick_snapshot_switch();
|
|
|
|
} else {
|
|
|
|
save_state ();
|
|
|
|
}
|
2016-04-08 16:49:47 -04:00
|
|
|
|
2016-02-01 12:22:01 -05:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 15:47:06 -04:00
|
|
|
MackieControlProtocol::save_release (Button &)
|
|
|
|
{
|
2016-02-01 12:22:01 -05:00
|
|
|
return none;
|
2012-04-09 15:47:06 -04:00
|
|
|
}
|
|
|
|
|
2022-03-04 15:24:37 -05:00
|
|
|
LedState
|
|
|
|
MackieControlProtocol::open_press (Button &)
|
|
|
|
{
|
|
|
|
access_action ("Main/Open");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::open_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 15:47:06 -04:00
|
|
|
MackieControlProtocol::timecode_beats_press (Button &)
|
|
|
|
{
|
|
|
|
switch (_timecode_type) {
|
|
|
|
case ARDOUR::AnyTime::BBT:
|
|
|
|
_timecode_type = ARDOUR::AnyTime::Timecode;
|
|
|
|
break;
|
|
|
|
case ARDOUR::AnyTime::Timecode:
|
|
|
|
_timecode_type = ARDOUR::AnyTime::BBT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
update_timecode_beats_led();
|
|
|
|
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 15:47:06 -04:00
|
|
|
MackieControlProtocol::timecode_beats_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2012-04-09 14:53:51 -04:00
|
|
|
/////////////////////////////////////
|
|
|
|
// Functions
|
|
|
|
/////////////////////////////////////
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 14:53:51 -04:00
|
|
|
MackieControlProtocol::marker_press (Button &)
|
|
|
|
{
|
2016-02-04 10:30:37 -05:00
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
2017-01-28 12:20:49 -05:00
|
|
|
access_action ("Common/remove-location-from-playhead");
|
2016-02-04 10:30:37 -05:00
|
|
|
return off;
|
|
|
|
} else {
|
|
|
|
_modifier_state |= MODIFIER_MARKER;
|
|
|
|
marker_modifier_consumed_by_button = false;
|
|
|
|
return on;
|
|
|
|
}
|
2016-01-31 11:01:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::marker_release (Button &)
|
|
|
|
{
|
2016-01-31 23:28:13 -05:00
|
|
|
_modifier_state &= ~MODIFIER_MARKER;
|
|
|
|
|
2017-01-31 11:52:59 -05:00
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
2016-02-04 12:17:45 -05:00
|
|
|
return off; //if shift was held, we already did the action
|
2017-01-31 11:52:59 -05:00
|
|
|
}
|
2016-02-04 12:17:45 -05:00
|
|
|
|
2016-01-31 11:01:41 -05:00
|
|
|
if (marker_modifier_consumed_by_button) {
|
2017-01-31 11:52:59 -05:00
|
|
|
DEBUG_TRACE (DEBUG::MackieControl, "marked modifier consumed by button, ignored\n");
|
2016-01-31 11:01:41 -05:00
|
|
|
/* marker was used a modifier for some other button(s), so do
|
|
|
|
nothing
|
|
|
|
*/
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2012-04-09 14:53:51 -04:00
|
|
|
string markername;
|
2012-04-11 16:18:01 -04:00
|
|
|
|
2015-12-10 09:17:05 -05:00
|
|
|
/* Don't add another mark if one exists within 1/100th of a second of
|
2015-12-10 10:58:03 -05:00
|
|
|
* the current position and we're not rolling.
|
2015-12-10 09:17:05 -05:00
|
|
|
*/
|
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
samplepos_t where = session->audible_sample();
|
2015-12-10 09:17:05 -05:00
|
|
|
|
2020-09-21 16:28:23 -04:00
|
|
|
if (session->transport_stopped_or_stopping() && session->locations()->mark_at (timepos_t (where), timecnt_t (session->sample_rate() / 100.0))) {
|
2015-12-10 09:17:05 -05:00
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2017-01-31 12:24:39 -05:00
|
|
|
session->locations()->next_available_name (markername,"mark");
|
2012-04-11 16:18:01 -04:00
|
|
|
add_marker (markername);
|
|
|
|
|
2012-04-09 14:53:51 -04:00
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2022-03-04 15:24:37 -05:00
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prev_marker_press (Button &)
|
|
|
|
{
|
|
|
|
prev_marker ();
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prev_marker_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::next_marker_press (Button &)
|
|
|
|
{
|
|
|
|
next_marker ();
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::next_marker_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2022-03-04 15:08:31 -05:00
|
|
|
LedState
|
|
|
|
MackieControlProtocol::flip_window_press (Button &)
|
|
|
|
{
|
|
|
|
access_action("Common/toggle-editor-and-mixer");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::flip_window_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2022-03-04 15:27:54 -05:00
|
|
|
LedState
|
|
|
|
MackieControlProtocol::master_press (Button &)
|
|
|
|
{
|
|
|
|
_master_surface->toggle_master_monitor ();
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::master_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2012-04-09 13:48:16 -04:00
|
|
|
/////////////////////////////////////
|
|
|
|
// Transport Buttons
|
|
|
|
/////////////////////////////////////
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::stop_press (Button &)
|
|
|
|
{
|
2012-04-10 22:30:35 -04:00
|
|
|
transport_stop ();
|
2016-01-31 09:11:37 -05:00
|
|
|
|
|
|
|
if (main_modifier_state() == MODIFIER_SHIFT) {
|
|
|
|
session->midi_panic();
|
|
|
|
}
|
|
|
|
|
2012-04-09 13:48:16 -04:00
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::stop_release (Button &)
|
|
|
|
{
|
2019-12-29 20:43:07 -05:00
|
|
|
return session->transport_stopped_or_stopping();
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::play_press (Button &)
|
|
|
|
{
|
2012-04-11 21:51:57 -04:00
|
|
|
/* if we're already rolling at normal speed, and we're pressed
|
2012-04-11 16:25:14 -04:00
|
|
|
again, jump back to where we started last time
|
|
|
|
*/
|
|
|
|
|
2020-02-23 09:49:40 -05:00
|
|
|
transport_play (get_transport_speed() == 1.0);
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::play_release (Button &)
|
|
|
|
{
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::record_press (Button &)
|
|
|
|
{
|
2012-04-10 22:30:35 -04:00
|
|
|
rec_enable_toggle ();
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::record_release (Button &)
|
|
|
|
{
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::rewind_press (Button &)
|
|
|
|
{
|
2016-01-31 11:01:41 -05:00
|
|
|
if (modifier_state() & MODIFIER_MARKER) {
|
|
|
|
prev_marker ();
|
2016-01-31 11:17:23 -05:00
|
|
|
} else if (modifier_state() & MODIFIER_NUDGE) {
|
2017-01-28 12:20:49 -05:00
|
|
|
access_action ("Common/nudge-playhead-backward");
|
2016-02-01 22:52:16 -05:00
|
|
|
} else if (main_modifier_state() & MODIFIER_SHIFT) {
|
2012-04-21 22:15:24 -04:00
|
|
|
goto_start ();
|
|
|
|
} else {
|
|
|
|
rewind ();
|
|
|
|
}
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::rewind_release (Button &)
|
|
|
|
{
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::ffwd_press (Button &)
|
|
|
|
{
|
2016-01-31 11:01:41 -05:00
|
|
|
if (modifier_state() & MODIFIER_MARKER) {
|
|
|
|
next_marker ();
|
2016-01-31 11:17:23 -05:00
|
|
|
} else if (modifier_state() & MODIFIER_NUDGE) {
|
2017-01-28 12:20:49 -05:00
|
|
|
access_action ("Common/nudge-playhead-forward");
|
2016-02-01 22:52:16 -05:00
|
|
|
} else if (main_modifier_state() & MODIFIER_SHIFT) {
|
2012-04-21 22:15:24 -04:00
|
|
|
goto_end();
|
|
|
|
} else {
|
|
|
|
ffwd ();
|
|
|
|
}
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::ffwd_release (Button &)
|
|
|
|
{
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::loop_press (Button &)
|
|
|
|
{
|
2016-02-03 19:11:21 -05:00
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
2019-05-13 10:11:58 -04:00
|
|
|
access_action ("Editor/set-loop-from-edit-range");
|
2016-02-03 19:11:21 -05:00
|
|
|
return off;
|
|
|
|
} else {
|
2017-01-31 10:29:22 -05:00
|
|
|
bool was_on = session->get_play_loop();
|
2017-01-31 10:10:23 -05:00
|
|
|
loop_toggle ();
|
2017-01-31 10:29:22 -05:00
|
|
|
return was_on ? off : on;
|
2016-02-03 19:11:21 -05:00
|
|
|
}
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
LedState
|
2012-04-09 13:48:16 -04:00
|
|
|
MackieControlProtocol::loop_release (Button &)
|
|
|
|
{
|
2012-04-10 23:24:20 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::enter_press (Button &)
|
|
|
|
{
|
2016-02-03 19:11:21 -05:00
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
|
|
|
access_action ("Transport/ToggleFollowEdits");
|
|
|
|
} else {
|
2018-08-24 09:42:43 -04:00
|
|
|
access_action ("Common/select-all-tracks");
|
2016-02-03 19:11:21 -05:00
|
|
|
}
|
2016-02-01 12:22:01 -05:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::enter_release (Button &)
|
|
|
|
{
|
2016-02-01 12:22:01 -05:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
2012-04-16 09:06:39 -04:00
|
|
|
|
2012-04-09 13:48:16 -04:00
|
|
|
LedState
|
2015-10-07 15:12:09 -04:00
|
|
|
MackieControlProtocol::bank_release (Button& b, uint32_t basic_bank_num)
|
2015-10-04 14:51:05 -04:00
|
|
|
{
|
2023-08-23 07:27:21 -04:00
|
|
|
if (_subview->subview_mode() != MACKIE_NAMESPACE::Subview::None) {
|
2015-12-14 22:22:34 -05:00
|
|
|
return none;
|
|
|
|
}
|
|
|
|
|
2015-10-07 15:12:09 -04:00
|
|
|
uint32_t bank_num = basic_bank_num;
|
|
|
|
|
|
|
|
if (b.long_press_count() > 0) {
|
|
|
|
bank_num = 8 + basic_bank_num;
|
|
|
|
}
|
|
|
|
|
2016-01-28 16:27:33 -05:00
|
|
|
(void) switch_banks (n_strips() * bank_num);
|
2015-10-07 15:12:09 -04:00
|
|
|
|
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
2015-10-07 15:12:09 -04:00
|
|
|
|
2017-05-08 11:12:13 -04:00
|
|
|
/* F-KEYS are only used for actions that are bound from the control panel; no need to address them here
|
2012-04-09 13:48:16 -04:00
|
|
|
LedState
|
2015-10-07 15:12:09 -04:00
|
|
|
MackieControlProtocol::F1_press (Button &b)
|
2015-10-04 14:51:05 -04:00
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-07 15:12:09 -04:00
|
|
|
MackieControlProtocol::F1_release (Button &b)
|
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return off;
|
2015-10-07 15:12:09 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F2_press (Button &)
|
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-07 15:12:09 -04:00
|
|
|
MackieControlProtocol::F2_release (Button &b)
|
2015-10-04 14:51:05 -04:00
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F3_press (Button &)
|
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-07 15:12:09 -04:00
|
|
|
MackieControlProtocol::F3_release (Button &b)
|
2015-10-04 14:51:05 -04:00
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F4_press (Button &)
|
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-07 15:12:09 -04:00
|
|
|
MackieControlProtocol::F4_release (Button &b)
|
2015-10-04 14:51:05 -04:00
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F5_press (Button &)
|
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F5_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F6_press (Button &)
|
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F6_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F7_press (Button &)
|
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F7_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F8_press (Button &)
|
|
|
|
{
|
2017-05-08 11:12:13 -04:00
|
|
|
return on;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::F8_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
2017-05-08 11:12:13 -04:00
|
|
|
*/
|
|
|
|
|
2012-04-10 22:30:35 -04:00
|
|
|
|
|
|
|
/* UNIMPLEMENTED */
|
|
|
|
|
2012-04-09 13:48:16 -04:00
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::pan_press (Button &)
|
|
|
|
{
|
2016-02-01 22:52:16 -05:00
|
|
|
/* XXX eventually pan may have its own subview mode */
|
2023-08-23 07:27:21 -04:00
|
|
|
set_subview_mode (MACKIE_NAMESPACE::Subview::None, std::shared_ptr<Stripable>());
|
2015-10-13 15:34:53 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::pan_release (Button &)
|
|
|
|
{
|
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::plugin_press (Button &)
|
|
|
|
{
|
2020-04-07 20:32:45 -04:00
|
|
|
set_subview_mode (Subview::Plugin, first_selected_stripable());
|
add plugin support for mackie units
Main features: Plugin (Select & Edit)
1. Plugin Select: When a track is selected that has PluginInserts, pushing the "Plug-In" button on a mackie will list these across the strips. Clicking a vpot of a strip enables editing the parameters of this selected plugin.
2. Plugin Edit: When a Plugin is selected for editing, the input parameters of the plugin are shown across the channel strips and the vpot is assigned the corresponsing AutomationControl for the parameter.
Minor features
- When the number of plugins or the number of parameters exceeds the number of strips available on the surface, one can flip through "pages" of views using the Cursor Left and Right keys (this logic I took from http://www.emagic.de/media/support/content/manuals/LogicControl_en.pdf)
- When in the Plugin Select mode, rearranging the plugins in the mixer strip is reflected on the surface.
- When in Plugin Edit mode, rearranging the plugins in the mixer strip still retains the edit view of the selected plugin (rearranging does not take away the current subview)
- When removing a plugin in the mixer strip, this is reflected in Plugin Select, while the view jumps to Pan/Surround (the None subview) when in Plugin Edit mode.
- Removing a track resets the subview to None
- When in a Subview that is track-specific (Track, EQ, Send, Plug-In, Inst), selecting a different track retains the subview but updates the channel displays and vpot assignments accordingly. When in Plugin Edit mode for track A, and track B is selected, it changes to Plugin Select mode for track B (if plugins are present).
2020-03-27 03:46:45 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::plugin_release (Button &)
|
|
|
|
{
|
2016-01-27 19:00:21 -05:00
|
|
|
// Do not do this yet, since it does nothing
|
|
|
|
// set_view_mode (Plugins);
|
2015-10-13 15:34:53 -04:00
|
|
|
return none; /* LED state set by set_view_mode */
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::eq_press (Button &)
|
|
|
|
{
|
2020-04-07 20:32:45 -04:00
|
|
|
set_subview_mode (Subview::EQ, first_selected_stripable ());
|
2016-01-27 19:00:21 -05:00
|
|
|
return none; /* led state handled by set_subview_mode() */
|
2015-12-11 11:05:57 -05:00
|
|
|
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::eq_release (Button &)
|
|
|
|
{
|
2012-04-11 14:51:01 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::dyn_press (Button &)
|
|
|
|
{
|
2020-04-07 20:32:45 -04:00
|
|
|
set_subview_mode (Subview::Dynamics, first_selected_stripable ());
|
2016-01-27 19:00:21 -05:00
|
|
|
return none; /* led state handled by set_subview_mode() */
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
2015-12-11 11:46:39 -05:00
|
|
|
|
2012-04-09 13:48:16 -04:00
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::dyn_release (Button &)
|
|
|
|
{
|
2012-04-11 14:51:01 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::flip_press (Button &)
|
|
|
|
{
|
add plugin support for mackie units
Main features: Plugin (Select & Edit)
1. Plugin Select: When a track is selected that has PluginInserts, pushing the "Plug-In" button on a mackie will list these across the strips. Clicking a vpot of a strip enables editing the parameters of this selected plugin.
2. Plugin Edit: When a Plugin is selected for editing, the input parameters of the plugin are shown across the channel strips and the vpot is assigned the corresponsing AutomationControl for the parameter.
Minor features
- When the number of plugins or the number of parameters exceeds the number of strips available on the surface, one can flip through "pages" of views using the Cursor Left and Right keys (this logic I took from http://www.emagic.de/media/support/content/manuals/LogicControl_en.pdf)
- When in the Plugin Select mode, rearranging the plugins in the mixer strip is reflected on the surface.
- When in Plugin Edit mode, rearranging the plugins in the mixer strip still retains the edit view of the selected plugin (rearranging does not take away the current subview)
- When removing a plugin in the mixer strip, this is reflected in Plugin Select, while the view jumps to Pan/Surround (the None subview) when in Plugin Edit mode.
- Removing a track resets the subview to None
- When in a Subview that is track-specific (Track, EQ, Send, Plug-In, Inst), selecting a different track retains the subview but updates the channel displays and vpot assignments accordingly. When in Plugin Edit mode for track A, and track B is selected, it changes to Plugin Select mode for track B (if plugins are present).
2020-03-27 03:46:45 -04:00
|
|
|
if (_subview->permit_flipping_faders_and_pots()) {
|
2016-02-02 12:38:55 -05:00
|
|
|
if (_flip_mode != Normal) {
|
|
|
|
set_flip_mode (Normal);
|
|
|
|
} else {
|
|
|
|
set_flip_mode (Mirror);
|
|
|
|
}
|
|
|
|
return ((_flip_mode != Normal) ? on : off);
|
2013-08-24 11:45:31 -04:00
|
|
|
}
|
2016-02-02 18:30:28 -05:00
|
|
|
|
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
2016-02-02 18:30:28 -05:00
|
|
|
|
2012-04-09 13:48:16 -04:00
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::flip_release (Button &)
|
|
|
|
{
|
2012-04-11 14:51:01 -04:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::name_value_press (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::name_value_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::touch_press (Button &)
|
|
|
|
{
|
2016-01-29 16:29:52 -05:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::touch_release (Button &)
|
|
|
|
{
|
2016-01-29 16:29:52 -05:00
|
|
|
set_automation_state (ARDOUR::Touch);
|
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::cancel_press (Button &)
|
|
|
|
{
|
2016-02-03 19:11:21 -05:00
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
|
|
|
access_action ("Transport/ToggleExternalSync");
|
|
|
|
} else {
|
2016-06-12 08:43:24 -04:00
|
|
|
access_action ("Main/Escape");
|
2016-02-03 19:11:21 -05:00
|
|
|
}
|
2016-02-01 12:22:01 -05:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::cancel_release (Button &)
|
|
|
|
{
|
2016-02-01 12:22:01 -05:00
|
|
|
return none;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::user_a_press (Button &)
|
|
|
|
{
|
2020-02-23 09:49:40 -05:00
|
|
|
transport_play (get_transport_speed() == 1.0);
|
2015-10-04 14:51:05 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::user_a_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::user_b_press (Button &)
|
|
|
|
{
|
2012-04-11 21:51:57 -04:00
|
|
|
transport_stop();
|
2015-10-04 14:51:05 -04:00
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
|
|
|
LedState
|
2015-10-04 14:51:05 -04:00
|
|
|
MackieControlProtocol::user_b_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2012-04-09 13:48:16 -04:00
|
|
|
}
|
2012-04-15 09:28:45 -04:00
|
|
|
|
2012-06-09 15:06:52 -04:00
|
|
|
LedState
|
2023-08-23 07:27:21 -04:00
|
|
|
MackieControlProtocol::master_fader_touch_press (MACKIE_NAMESPACE::Button &)
|
2012-06-09 15:06:52 -04:00
|
|
|
{
|
2021-05-13 13:07:41 -04:00
|
|
|
if (_master_surface && _master_surface->master_fader() != 0) {
|
|
|
|
DEBUG_TRACE (DEBUG::MackieControl, "MackieControlProtocol::master_fader_touch_press\n");
|
2012-06-09 15:06:52 -04:00
|
|
|
|
2021-05-13 13:07:41 -04:00
|
|
|
Fader* master_fader = _master_surface->master_fader();
|
2012-06-09 15:06:52 -04:00
|
|
|
|
2021-05-13 13:07:41 -04:00
|
|
|
master_fader->set_in_use (true);
|
2020-09-21 16:28:23 -04:00
|
|
|
master_fader->start_touch (timepos_t (transport_sample()));
|
2021-05-13 13:07:41 -04:00
|
|
|
}
|
2012-06-09 15:06:52 -04:00
|
|
|
return none;
|
|
|
|
}
|
|
|
|
LedState
|
2023-08-23 07:27:21 -04:00
|
|
|
MackieControlProtocol::master_fader_touch_release (MACKIE_NAMESPACE::Button &)
|
2012-06-09 15:06:52 -04:00
|
|
|
{
|
2021-05-13 13:07:41 -04:00
|
|
|
if (_master_surface && _master_surface->master_fader() != 0) {
|
|
|
|
DEBUG_TRACE (DEBUG::MackieControl, "MackieControlProtocol::master_fader_touch_release\n");
|
2012-06-09 15:06:52 -04:00
|
|
|
|
2021-05-13 13:07:41 -04:00
|
|
|
Fader* master_fader = _master_surface->master_fader();
|
2012-06-09 15:06:52 -04:00
|
|
|
|
2021-05-13 13:07:41 -04:00
|
|
|
master_fader->set_in_use (false);
|
2020-09-21 16:28:23 -04:00
|
|
|
master_fader->stop_touch (timepos_t (transport_sample()));
|
|
|
|
|
2021-05-13 13:07:41 -04:00
|
|
|
}
|
2012-06-09 15:06:52 -04:00
|
|
|
return none;
|
|
|
|
}
|
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::read_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-29 16:29:52 -05:00
|
|
|
return none;
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2016-01-29 16:29:52 -05:00
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::read_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-29 18:37:03 -05:00
|
|
|
set_automation_state (ARDOUR::Play);
|
2016-01-29 16:29:52 -05:00
|
|
|
return none;
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::write_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::write_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-29 16:29:52 -05:00
|
|
|
set_automation_state (ARDOUR::Write);
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2016-01-14 16:06:14 -05:00
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::clearsolo_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-14 16:06:14 -05:00
|
|
|
// clears all solos and listens (pfl/afl)
|
2016-01-31 11:36:46 -05:00
|
|
|
|
2016-02-06 15:47:27 -05:00
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
2019-05-13 10:11:58 -04:00
|
|
|
access_action ("Editor/set-session-from-edit-range");
|
2016-02-06 15:47:27 -05:00
|
|
|
return none;
|
|
|
|
}
|
2016-01-31 11:36:46 -05:00
|
|
|
|
2016-06-16 23:31:31 -04:00
|
|
|
cancel_all_solo ();
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2016-01-14 16:06:14 -05:00
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::clearsolo_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-14 16:06:14 -05:00
|
|
|
//return session->soloing();
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2016-01-14 16:06:14 -05:00
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::track_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2020-04-07 20:32:45 -04:00
|
|
|
set_subview_mode (Subview::TrackView, first_selected_stripable());
|
2015-10-13 15:34:53 -04:00
|
|
|
return none;
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::track_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::send_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2020-04-07 20:32:45 -04:00
|
|
|
set_subview_mode (Subview::Sends, first_selected_stripable());
|
2016-01-27 19:00:21 -05:00
|
|
|
return none; /* led state handled by set_subview_mode() */
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::send_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::miditracks_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::miditracks_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2015-10-13 15:34:53 -04:00
|
|
|
set_view_mode (MidiTracks);
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::inputs_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::inputs_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2023-03-10 17:35:29 -05:00
|
|
|
set_view_mode (Inputs);
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::audiotracks_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::audiotracks_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2015-10-13 15:34:53 -04:00
|
|
|
set_view_mode (AudioTracks);
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::audioinstruments_press (MACKIE_NAMESPACE::Button& b)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-28 23:05:14 -05:00
|
|
|
return none;
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2015-12-15 08:35:30 -05:00
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::audioinstruments_release (MACKIE_NAMESPACE::Button& b)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2022-12-10 12:32:47 -05:00
|
|
|
set_view_mode (AudioInstr);
|
2016-01-28 23:05:14 -05:00
|
|
|
return none;
|
2015-12-15 08:35:30 -05:00
|
|
|
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::aux_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::aux_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2015-10-13 15:34:53 -04:00
|
|
|
set_view_mode (Auxes);
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::busses_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::busses_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2015-10-13 15:34:53 -04:00
|
|
|
set_view_mode (Busses);
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::outputs_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::outputs_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2021-08-10 18:18:07 -04:00
|
|
|
set_view_mode (Outputs);
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::user_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::user_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2015-10-20 21:54:56 -04:00
|
|
|
set_view_mode (Selected);
|
2012-04-15 09:28:45 -04:00
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::trim_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::trim_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::latch_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::latch_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::grp_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::grp_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-29 18:37:03 -05:00
|
|
|
/* There is no "Off" button for automation,
|
|
|
|
so we use Group for this purpose.
|
|
|
|
*/
|
|
|
|
set_automation_state (Off);
|
|
|
|
return none;
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::nudge_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-31 11:17:23 -05:00
|
|
|
_modifier_state |= MODIFIER_NUDGE;
|
|
|
|
nudge_modifier_consumed_by_button = false;
|
|
|
|
return on;
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::nudge_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-01-31 11:17:23 -05:00
|
|
|
_modifier_state &= ~MODIFIER_NUDGE;
|
|
|
|
|
|
|
|
/* XXX these action names are stupid, because the action can affect
|
2016-04-08 16:49:47 -04:00
|
|
|
* regions, markers or the playhead depending on selection state.
|
2016-01-31 11:17:23 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
2016-02-01 12:20:55 -05:00
|
|
|
access_action ("Region/nudge-backward");
|
2016-01-31 11:17:23 -05:00
|
|
|
} else {
|
2016-02-01 12:20:55 -05:00
|
|
|
access_action ("Region/nudge-forward");
|
2016-01-31 11:17:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return off;
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::replace_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-02-03 19:11:21 -05:00
|
|
|
if (main_modifier_state() == MODIFIER_SHIFT) {
|
|
|
|
toggle_punch_out();
|
2016-02-04 12:44:23 -05:00
|
|
|
return none;
|
2016-02-03 19:11:21 -05:00
|
|
|
} else {
|
2017-01-28 12:50:12 -05:00
|
|
|
access_action ("Common/finish-range-from-playhead");
|
2016-02-03 19:11:21 -05:00
|
|
|
}
|
2016-02-04 12:44:23 -05:00
|
|
|
return none;
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::replace_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::click_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
2016-02-03 19:11:21 -05:00
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
2019-05-13 10:11:58 -04:00
|
|
|
access_action ("Editor/set-punch-from-edit-range");
|
2021-04-30 16:28:34 -04:00
|
|
|
return none;
|
2016-02-03 19:11:21 -05:00
|
|
|
} else {
|
|
|
|
bool state = !Config->get_clicking();
|
|
|
|
Config->set_clicking (state);
|
2021-04-30 16:28:34 -04:00
|
|
|
return none;
|
2016-02-03 19:11:21 -05:00
|
|
|
}
|
2012-04-15 09:28:45 -04:00
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::click_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:28:45 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::view_press (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:41:20 -04:00
|
|
|
{
|
2015-10-17 19:23:46 -04:00
|
|
|
set_view_mode (Mixer);
|
2012-04-15 09:41:20 -04:00
|
|
|
return none;
|
|
|
|
}
|
2023-08-23 07:27:21 -04:00
|
|
|
MACKIE_NAMESPACE::LedState
|
|
|
|
MackieControlProtocol::view_release (MACKIE_NAMESPACE::Button&)
|
2012-04-15 09:41:20 -04:00
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
2022-03-04 15:33:09 -05:00
|
|
|
|
|
|
|
/////////////////////////////////////
|
|
|
|
// QCon Pro G2 Buttons
|
|
|
|
/////////////////////////////////////
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_undo_press (Button &)
|
|
|
|
{
|
|
|
|
if(main_modifier_state () & MODIFIER_SHIFT) {
|
|
|
|
access_action ("Common/menu-show-preferences");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
undo ();
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_undo_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_clear_solo_press (Button &)
|
|
|
|
{
|
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
|
|
|
|
|
|
|
StripableList sl;
|
|
|
|
session->get_stripables (sl);
|
|
|
|
for (StripableList::const_iterator i = sl.begin(); i != sl.end(); ++i)
|
|
|
|
{
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<MuteControl> mc = (*i)->mute_control();
|
2023-11-26 22:21:59 -05:00
|
|
|
if (!mc->muted() && !(*i)->is_singleton ()) {
|
2022-03-04 15:33:09 -05:00
|
|
|
mc->set_value(1.0, Controllable::UseGroup);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return none;
|
|
|
|
}
|
|
|
|
cancel_all_solo ();
|
|
|
|
return none;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_clear_solo_release (Button &)
|
|
|
|
{
|
|
|
|
return none;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_save_press (Button &)
|
|
|
|
{
|
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT)
|
|
|
|
{
|
|
|
|
access_action("Main/SaveAs");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
save_state ();
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_save_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_vst_press (Button &)
|
|
|
|
{
|
|
|
|
access_action("Mixer/select-all-processors");
|
|
|
|
access_action("Mixer/toggle-processors");
|
|
|
|
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_vst_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_left_press (Button &)
|
|
|
|
{
|
|
|
|
access_action("Mixer/select-prev-stripable");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_left_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_right_press (Button &)
|
|
|
|
{
|
|
|
|
access_action("Mixer/select-next-stripable");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_right_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_marker_press (Button &)
|
|
|
|
{
|
|
|
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
|
|
|
access_action ("Common/remove-location-from-playhead");
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
samplepos_t where = session->audible_sample();
|
|
|
|
if (session->transport_stopped_or_stopping() && session->locations()->mark_at (timepos_t (where), timecnt_t (session->sample_rate() / 100.0))) {
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
string markername;
|
|
|
|
session->locations()->next_available_name (markername,"mark");
|
|
|
|
add_marker (markername);
|
|
|
|
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedState
|
|
|
|
MackieControlProtocol::prog2_marker_release (Button &)
|
|
|
|
{
|
|
|
|
return off;
|
2022-12-10 12:32:47 -05:00
|
|
|
}
|