mackie: substantial reworking of flip mode with large chunks of code no longer used.

Flip mode only works in Sends subview mode.

Display is incorrect when flipped - vpot is still updated by send level changes. TO BE FIXED.
This commit is contained in:
Paul Davis 2016-02-01 22:52:16 -05:00
parent f295f41683
commit 36b11098a2
8 changed files with 195 additions and 407 deletions

View file

@ -21,6 +21,7 @@
#include <sstream> #include <sstream>
#include "ardour/automation_control.h" #include "ardour/automation_control.h"
#include "pbd/enumwriter.h"
#include "controls.h" #include "controls.h"
#include "types.h" #include "types.h"

View file

@ -116,7 +116,6 @@ MackieControlProtocol::MackieControlProtocol (Session& session)
, _flip_mode (Normal) , _flip_mode (Normal)
, _view_mode (Mixer) , _view_mode (Mixer)
, _subview_mode (None) , _subview_mode (None)
, _pot_mode (Pan)
, _current_selected_track (-1) , _current_selected_track (-1)
, _modifier_state (0) , _modifier_state (0)
, _ipmidi_base (MIDI::IPMIDIPort::lowest_ipmidi_port_default) , _ipmidi_base (MIDI::IPMIDIPort::lowest_ipmidi_port_default)
@ -649,14 +648,10 @@ MackieControlProtocol::update_global_led (int id, LedState ls)
void void
MackieControlProtocol::device_ready () MackieControlProtocol::device_ready ()
{ {
/* this is not required to be called, but for devices which do
* handshaking, it can be called once the device has verified the
* connection.
*/
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("device ready init (active=%1)\n", active())); DEBUG_TRACE (DEBUG::MackieControl, string_compose ("device ready init (active=%1)\n", active()));
update_surfaces (); update_surfaces ();
set_pot_mode (_pot_mode); set_subview_mode (MackieControlProtocol::None, boost::shared_ptr<Route>());
set_flip_mode (Normal);
} }
// send messages to surface to set controls to correct values // send messages to surface to set controls to correct values
@ -1713,7 +1708,6 @@ MackieControlProtocol::redisplay_subview_mode ()
int int
MackieControlProtocol::set_subview_mode (SubViewMode sm, boost::shared_ptr<Route> r) MackieControlProtocol::set_subview_mode (SubViewMode sm, boost::shared_ptr<Route> r)
{ {
SubViewMode old_mode = _subview_mode;
boost::shared_ptr<Route> old_route = _subview_route; boost::shared_ptr<Route> old_route = _subview_route;
if (!subview_mode_would_be_ok (sm, r)) { if (!subview_mode_would_be_ok (sm, r)) {
@ -1765,61 +1759,62 @@ MackieControlProtocol::set_subview_mode (SubViewMode sm, boost::shared_ptr<Route
_subview_route = r; _subview_route = r;
} }
if ((_subview_mode != old_mode) || (_subview_route != old_route)) { if (r != old_route) {
subview_route_connections.drop_connections ();
if (r != old_route) { /* Catch the current subview route going away */
subview_route_connections.drop_connections (); if (_subview_route) {
if (_subview_route) { _subview_route->DropReferences.connect (subview_route_connections, MISSING_INVALIDATOR,
_subview_route->DropReferences.connect (subview_route_connections, MISSING_INVALIDATOR, boost::bind (&MackieControlProtocol::notify_subview_route_deleted, this), this); boost::bind (&MackieControlProtocol::notify_subview_route_deleted, this),
} this);
} }
}
/* subview mode did actually change */ redisplay_subview_mode ();
redisplay_subview_mode (); /* turn buttons related to vpot mode on or off as required */
if (_subview_mode != old_mode) { switch (_subview_mode) {
case MackieControlProtocol::None:
/* turn buttons related to vpot mode on or off as required */ update_global_button (Button::Send, off);
update_global_button (Button::Plugin, off);
switch (_subview_mode) { update_global_button (Button::Eq, off);
case MackieControlProtocol::None: update_global_button (Button::Dyn, off);
pot_mode_globals (); update_global_button (Button::Track, off);
break; update_global_button (Button::Pan, on);
case MackieControlProtocol::EQ: break;
update_global_button (Button::Send, off); case MackieControlProtocol::EQ:
update_global_button (Button::Plugin, off); update_global_button (Button::Send, off);
update_global_button (Button::Eq, on); update_global_button (Button::Plugin, off);
update_global_button (Button::Dyn, off); update_global_button (Button::Eq, on);
update_global_button (Button::Track, off); update_global_button (Button::Dyn, off);
update_global_button (Button::Pan, off); update_global_button (Button::Track, off);
break; update_global_button (Button::Pan, off);
case MackieControlProtocol::Dynamics: break;
update_global_button (Button::Send, off); case MackieControlProtocol::Dynamics:
update_global_button (Button::Plugin, off); update_global_button (Button::Send, off);
update_global_button (Button::Eq, off); update_global_button (Button::Plugin, off);
update_global_button (Button::Dyn, on); update_global_button (Button::Eq, off);
update_global_button (Button::Track, off); update_global_button (Button::Dyn, on);
update_global_button (Button::Pan, off); update_global_button (Button::Track, off);
break; update_global_button (Button::Pan, off);
case MackieControlProtocol::Sends: break;
update_global_button (Button::Send, on); case MackieControlProtocol::Sends:
update_global_button (Button::Plugin, off); update_global_button (Button::Send, on);
update_global_button (Button::Eq, off); update_global_button (Button::Plugin, off);
update_global_button (Button::Dyn, off); update_global_button (Button::Eq, off);
update_global_button (Button::Track, off); update_global_button (Button::Dyn, off);
update_global_button (Button::Pan, off); update_global_button (Button::Track, off);
break; update_global_button (Button::Pan, off);
case MackieControlProtocol::TrackView: break;
update_global_button (Button::Send, off); case MackieControlProtocol::TrackView:
update_global_button (Button::Plugin, off); update_global_button (Button::Send, off);
update_global_button (Button::Eq, off); update_global_button (Button::Plugin, off);
update_global_button (Button::Dyn, off); update_global_button (Button::Eq, off);
update_global_button (Button::Track, on); update_global_button (Button::Dyn, off);
update_global_button (Button::Pan, off); update_global_button (Button::Track, on);
break; update_global_button (Button::Pan, off);
} break;
}
} }
return 0; return 0;
@ -1856,61 +1851,19 @@ MackieControlProtocol::display_view_mode ()
void void
MackieControlProtocol::set_flip_mode (FlipMode fm) MackieControlProtocol::set_flip_mode (FlipMode fm)
{ {
if (_flip_mode != fm) { if (fm == Normal) {
if (fm == Normal) { update_global_button (Button::Flip, off);
update_global_button (Button::Flip, off); } else {
} else { update_global_button (Button::Flip, on);
update_global_button (Button::Flip, on);
}
Glib::Threads::Mutex::Lock lm (surfaces_lock);
_flip_mode = fm;
for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
(*s)->update_flip_mode_display ();
}
}
}
void
MackieControlProtocol::set_pot_mode (PotMode m)
{
// maybe not in flip mode.
if (flip_mode()) {
return;
} }
/* switch to a pot mode cancels any subview mode */ Glib::Threads::Mutex::Lock lm (surfaces_lock);
set_subview_mode (None, boost::shared_ptr<Route>()); _flip_mode = fm;
_pot_mode = m; for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
(*s)->update_flip_mode_display ();
{
Glib::Threads::Mutex::Lock lm (surfaces_lock);
for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
(*s)->update_potmode ();
}
} }
pot_mode_globals ();
}
void
MackieControlProtocol::pot_mode_globals ()
{
switch (_pot_mode) {
case Pan:
update_global_button (Button::Eq, off);
update_global_button (Button::Dyn, off);
update_global_button (Button::Track, off);
update_global_button (Button::Send, off);
update_global_button (Button::Plugin, off);
update_global_button (Button::Pan, on);
};
} }
void void

View file

@ -123,10 +123,6 @@ class MackieControlProtocol
TrackView, TrackView,
}; };
enum PotMode {
Pan,
};
enum FlipMode { enum FlipMode {
Normal, /* fader controls primary, vpot controls secondary */ Normal, /* fader controls primary, vpot controls secondary */
Mirror, /* fader + vpot control secondary */ Mirror, /* fader + vpot control secondary */
@ -156,7 +152,6 @@ class MackieControlProtocol
SubViewMode subview_mode () const { return _subview_mode; } SubViewMode subview_mode () const { return _subview_mode; }
static bool subview_mode_would_be_ok (SubViewMode, boost::shared_ptr<ARDOUR::Route>); static bool subview_mode_would_be_ok (SubViewMode, boost::shared_ptr<ARDOUR::Route>);
boost::shared_ptr<ARDOUR::Route> subview_route() const; boost::shared_ptr<ARDOUR::Route> subview_route() const;
PotMode pot_mode () const { return _pot_mode; }
bool zoom_mode () const { return modifier_state() & MODIFIER_ZOOM; } bool zoom_mode () const { return modifier_state() & MODIFIER_ZOOM; }
bool metering_active () const { return _metering_active; } bool metering_active () const { return _metering_active; }
@ -175,8 +170,6 @@ class MackieControlProtocol
void set_view_mode (ViewMode); void set_view_mode (ViewMode);
int set_subview_mode (SubViewMode, boost::shared_ptr<ARDOUR::Route>); int set_subview_mode (SubViewMode, boost::shared_ptr<ARDOUR::Route>);
void set_flip_mode (FlipMode); void set_flip_mode (FlipMode);
void set_pot_mode (PotMode);
void pot_mode_globals ();
void display_view_mode (); void display_view_mode ();
XMLNode& get_state (); XMLNode& get_state ();
@ -350,7 +343,6 @@ class MackieControlProtocol
ViewMode _view_mode; ViewMode _view_mode;
SubViewMode _subview_mode; SubViewMode _subview_mode;
boost::shared_ptr<ARDOUR::Route> _subview_route; boost::shared_ptr<ARDOUR::Route> _subview_route;
PotMode _pot_mode;
int _current_selected_track; int _current_selected_track;
int _modifier_state; int _modifier_state;
ButtonMap button_map; ButtonMap button_map;

View file

@ -507,7 +507,7 @@ MackieControlProtocol::rewind_press (Button &)
prev_marker (); prev_marker ();
} else if (modifier_state() & MODIFIER_NUDGE) { } else if (modifier_state() & MODIFIER_NUDGE) {
access_action ("Editor/nudge-playhead-backward"); access_action ("Editor/nudge-playhead-backward");
} else if (main_modifier_state() == MODIFIER_SHIFT) { } else if (main_modifier_state() & MODIFIER_SHIFT) {
goto_start (); goto_start ();
} else { } else {
rewind (); rewind ();
@ -528,7 +528,7 @@ MackieControlProtocol::ffwd_press (Button &)
next_marker (); next_marker ();
} else if (modifier_state() & MODIFIER_NUDGE) { } else if (modifier_state() & MODIFIER_NUDGE) {
access_action ("Editor/nudge-playhead-forward"); access_action ("Editor/nudge-playhead-forward");
} else if (main_modifier_state() == MODIFIER_SHIFT) { } else if (main_modifier_state() & MODIFIER_SHIFT) {
goto_end(); goto_end();
} else { } else {
ffwd (); ffwd ();
@ -688,7 +688,8 @@ MackieControlProtocol::F8_release (Button &)
LedState LedState
MackieControlProtocol::pan_press (Button &) MackieControlProtocol::pan_press (Button &)
{ {
set_pot_mode (Pan); /* XXX eventually pan may have its own subview mode */
set_subview_mode (MackieControlProtocol::None, boost::shared_ptr<Route>());
return none; return none;
} }
LedState LedState

View file

@ -102,12 +102,10 @@ Strip::Strip (Surface& s, const std::string& name, int index, const map<Button::
, return_to_vpot_mode_display_at (UINT64_MAX) , return_to_vpot_mode_display_at (UINT64_MAX)
, eq_band (-1) , eq_band (-1)
, _pan_mode (PanAzimuthAutomation) , _pan_mode (PanAzimuthAutomation)
, vpot_parameter (PanAzimuthAutomation)
, _last_gain_position_written (-1.0) , _last_gain_position_written (-1.0)
, _last_pan_azi_position_written (-1.0) , _last_pan_azi_position_written (-1.0)
, _last_pan_width_position_written (-1.0) , _last_pan_width_position_written (-1.0)
, _last_trim_position_written (-1.0) , _last_trim_position_written (-1.0)
, _current_send (0)
{ {
_fader = dynamic_cast<Fader*> (Fader::factory (*_surface, index, "fader", *this)); _fader = dynamic_cast<Fader*> (Fader::factory (*_surface, index, "fader", *this));
_vpot = dynamic_cast<Pot*> (Pot::factory (*_surface, Pot::ID + index, "vpot", *this)); _vpot = dynamic_cast<Pot*> (Pot::factory (*_surface, Pot::ID + index, "vpot", *this));
@ -184,16 +182,6 @@ Strip::set_route (boost::shared_ptr<Route> r, bool /*with_messages*/)
_route = r; _route = r;
control_by_parameter.clear ();
control_by_parameter[PanAzimuthAutomation] = (Control*) 0;
control_by_parameter[PanWidthAutomation] = (Control*) 0;
control_by_parameter[PanElevationAutomation] = (Control*) 0;
control_by_parameter[PanFrontBackAutomation] = (Control*) 0;
control_by_parameter[PanLFEAutomation] = (Control*) 0;
control_by_parameter[GainAutomation] = (Control*) 0;
control_by_parameter[PhaseAutomation] = (Control*) 0;
reset_saved_values (); reset_saved_values ();
if (!r) { if (!r) {
@ -258,16 +246,15 @@ Strip::set_route (boost::shared_ptr<Route> r, bool /*with_messages*/)
possible_pot_parameters.push_back (PanLFEAutomation); possible_pot_parameters.push_back (PanLFEAutomation);
} }
if (_route->phase_invert().size()) {
possible_trim_parameters.push_back (PhaseAutomation);
_route->phase_control()->set_channel(0);
}
_current_send = 0;
/* Update */
_pan_mode = PanAzimuthAutomation; _pan_mode = PanAzimuthAutomation;
potmode_changed (false);
notify_all ();
if (_surface->mcp().subview_mode() == MackieControlProtocol::None) {
set_vpot_parameter (_pan_mode);
}
_fader->set_control (_route->gain_control());
notify_all ();
} }
void void
@ -335,37 +322,48 @@ Strip::notify_route_deleted ()
void void
Strip::notify_gain_changed (bool force_update) Strip::notify_gain_changed (bool force_update)
{ {
if (_route) { if (!_route) {
return;
}
Control* control; boost::shared_ptr<AutomationControl> ac = _route->gain_control();
Control* control;
if (!ac) {
/* doesn't seem possible but lets be safe */
return;
}
/* track gain control could be on vpot or fader, depending in
* flip mode.
*/
if (_vpot->control() == ac) {
control = _vpot;
} else if (_fader->control() == ac) {
control = _fader;
} else {
return;
}
float gain_coefficient = ac->get_value();
float normalized_position = ac->internal_to_interface (gain_coefficient);
if (force_update || normalized_position != _last_gain_position_written) {
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) { if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) {
control = _vpot; if (!control->in_use()) {
} else { _surface->write (_vpot->set (normalized_position, true, Pot::wrap));
control = _fader;
}
boost::shared_ptr<AutomationControl> ac = _route->gain_control();
float gain_coefficient = ac->get_value();
float normalized_position = ac->internal_to_interface (gain_coefficient);
if (force_update || normalized_position != _last_gain_position_written) {
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) {
if (!control->in_use()) {
_surface->write (_vpot->set (normalized_position, true, Pot::wrap));
}
do_parameter_display (GainAutomation, gain_coefficient);
} else {
if (!control->in_use()) {
_surface->write (_fader->set_position (normalized_position));
}
do_parameter_display (GainAutomation, gain_coefficient);
} }
do_parameter_display (GainAutomation, gain_coefficient);
_last_gain_position_written = normalized_position; } else {
if (!control->in_use()) {
_surface->write (_fader->set_position (normalized_position));
}
do_parameter_display (GainAutomation, gain_coefficient);
} }
_last_gain_position_written = normalized_position;
} }
} }
@ -460,7 +458,7 @@ Strip::notify_trackview_change (AutomationType type, uint32_t send_num, bool for
boost::shared_ptr<AutomationControl> control; boost::shared_ptr<AutomationControl> control;
boost::shared_ptr<Track> track = boost::dynamic_pointer_cast<Track> (r); boost::shared_ptr<Track> track = boost::dynamic_pointer_cast<Track> (r);
switch (type) { switch (type) {
case TrimAutomation: case TrimAutomation:
control = r->trim_control(); control = r->trim_control();
@ -609,34 +607,24 @@ Strip::notify_panner_azi_changed (bool force_update)
boost::shared_ptr<AutomationControl> pan_control = _route->pan_azimuth_control (); boost::shared_ptr<AutomationControl> pan_control = _route->pan_azimuth_control ();
if (!pan_control) { if (!pan_control) {
/* basically impossible, since we're here because that control
* changed, but sure, whatever.
*/
return; return;
} }
Control* control = 0; if (_vpot->control() != pan_control) {
ControlParameterMap::iterator i = control_by_parameter.find (PanAzimuthAutomation);
if (i == control_by_parameter.end()) {
return; return;
} }
control = i->second;
double normalized_pos = pan_control->internal_to_interface (pan_control->get_value()); double normalized_pos = pan_control->internal_to_interface (pan_control->get_value());
double internal_pos = pan_control->get_value(); double internal_pos = pan_control->get_value();
if (force_update || (normalized_pos != _last_pan_azi_position_written)) { if (force_update || (normalized_pos != _last_pan_azi_position_written)) {
if (control == _fader) { _surface->write (_vpot->set (normalized_pos, true, Pot::dot));
if (!_fader->in_use()) { /* show actual internal value to user */
_surface->write (_fader->set_position (normalized_pos)); do_parameter_display (PanAzimuthAutomation, internal_pos);
/* show actual internal value to user */
do_parameter_display (PanAzimuthAutomation, internal_pos);
}
} else if (control == _vpot) {
_surface->write (_vpot->set (normalized_pos, true, Pot::dot));
/* show actual internal value to user */
do_parameter_display (PanAzimuthAutomation, internal_pos);
}
_last_pan_azi_position_written = normalized_pos; _last_pan_azi_position_written = normalized_pos;
} }
@ -654,35 +642,22 @@ Strip::notify_panner_width_changed (bool force_update)
boost::shared_ptr<AutomationControl> pan_control = _route->pan_width_control (); boost::shared_ptr<AutomationControl> pan_control = _route->pan_width_control ();
if (!pan_control) { if (!pan_control) {
/* basically impossible, since we're here because that control
* changed, but sure, whatever.
*/
return; return;
} }
Control* control = 0; if (_vpot->control() != pan_control) {
ControlParameterMap::iterator i = control_by_parameter.find (PanWidthAutomation);
if (i == control_by_parameter.end()) {
return; return;
} }
control = i->second;
double pos = pan_control->internal_to_interface (pan_control->get_value()); double pos = pan_control->internal_to_interface (pan_control->get_value());
if (force_update || pos != _last_pan_width_position_written) { if (force_update || pos != _last_pan_width_position_written) {
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) { _surface->write (_vpot->set (pos, true, Pot::spread));
do_parameter_display (PanWidthAutomation, pos);
if (control == _fader) {
if (!control->in_use()) {
_surface->write (_fader->set_position (pos));
do_parameter_display (PanWidthAutomation, pos);
}
}
} else if (control == _vpot) {
_surface->write (_vpot->set (pos, true, Pot::spread));
do_parameter_display (PanWidthAutomation, pos);
}
_last_pan_width_position_written = pos; _last_pan_width_position_written = pos;
} }
@ -839,8 +814,10 @@ Strip::vselect_event (Button&, ButtonState bs)
bool enabled = ac->get_value(); bool enabled = ac->get_value();
ac->set_value (!enabled, gcd); ac->set_value (!enabled, gcd);
} }
}
#else #else
DEBUG_TRACE (DEBUG::MackieControl, "switching to next pot mode\n"); DEBUG_TRACE (DEBUG::MackieControl, "switching to next pot mode\n");
/* switch vpot to control next available parameter */
next_pot_mode (); next_pot_mode ();
#endif #endif
} }
@ -949,6 +926,7 @@ Strip::do_parameter_display (AutomationType type, float val)
switch (type) { switch (type) {
case GainAutomation: case GainAutomation:
case BusSendLevel:
if (val == 0.0) { if (val == 0.0) {
pending_display[1] = " -inf "; pending_display[1] = " -inf ";
} else { } else {
@ -1003,15 +981,6 @@ Strip::do_parameter_display (AutomationType type, float val)
} }
break; break;
case BusSendLevel:
if (_route) {
float dB = accurate_coefficient_to_dB (val);
snprintf (buf, sizeof (buf), "%6.1f", dB);
pending_display[1] = buf;
screen_hold = true;
}
break;
case EQGain: case EQGain:
case EQFrequency: case EQFrequency:
case EQQ: case EQQ:
@ -1351,55 +1320,55 @@ Strip::gui_selection_changed (const ARDOUR::StrongRouteNotificationList& rl)
string string
Strip::vpot_mode_string () Strip::vpot_mode_string ()
{ {
if (_surface->mcp().subview_mode() != MackieControlProtocol::None) {
return string();
}
boost::shared_ptr<AutomationControl> ac = _vpot->control(); boost::shared_ptr<AutomationControl> ac = _vpot->control();
if (!ac) { if (!ac) {
return string(); return string();
} }
if (control_by_parameter.find (GainAutomation)->second == _vpot) { switch (ac->desc().type) {
return "Fader"; case PanAzimuthAutomation:
} else if (control_by_parameter.find (TrimAutomation)->second == _vpot) {
return "Trim";
} else if (control_by_parameter.find (PhaseAutomation)->second == _vpot) {
return string_compose ("Phase%1", _route->phase_control()->channel() + 1);
} else if (control_by_parameter.find (PanAzimuthAutomation)->second == _vpot) {
return "Pan"; return "Pan";
} else if (control_by_parameter.find (PanWidthAutomation)->second == _vpot) { case PanWidthAutomation:
return "Width"; return "Width";
} else if (control_by_parameter.find (PanElevationAutomation)->second == _vpot) { case PanElevationAutomation:
return "Elev"; return "Elev";
} else if (control_by_parameter.find (PanFrontBackAutomation)->second == _vpot) { case PanFrontBackAutomation:
return "F/Rear"; return "F/Rear";
} else if (control_by_parameter.find (PanLFEAutomation)->second == _vpot) { case PanLFEAutomation:
return "LFE"; return "LFE";
} default:
break;
if (_surface->mcp().subview_mode() != MackieControlProtocol::None) {
return string();
} }
return "???"; return "???";
} }
void void
Strip::potmode_changed (bool notify) Strip::flip_mode_changed ()
{ {
if (!_route) { if (_surface->mcp().subview_mode() == MackieControlProtocol::Sends) {
return;
}
// WIP boost::shared_ptr<AutomationControl> pot_control = _vpot->control();
int pm = _surface->mcp().pot_mode(); boost::shared_ptr<AutomationControl> fader_control = _fader->control();
switch (pm) {
case MackieControlProtocol::Pan:
// This needs to set current pan mode (azimuth or width... or whatever)
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Assign pot to Pan mode %1\n", enum_2_string (_pan_mode)));
set_vpot_parameter (_pan_mode);
break;
}
if (notify) { if (pot_control && fader_control) {
notify_all (); _vpot->set_control (fader_control);
_fader->set_control (pot_control);
}
if (_surface->mcp().flip_mode() == MackieControlProtocol::Normal) {
do_parameter_display (GainAutomation, fader_control->get_value());
} else {
do_parameter_display (BusSendLevel, fader_control->get_value());
}
} else {
/* do nothing */
} }
} }
@ -1453,32 +1422,33 @@ Strip::next_pot_mode ()
} }
if (_surface->mcp().pot_mode() == MackieControlProtocol::Pan) { if (_surface->mcp().subview_mode() != MackieControlProtocol::None) {
return;
if (possible_pot_parameters.empty() || (possible_pot_parameters.size() == 1 && possible_pot_parameters.front() == ac->parameter().type())) {
return;
}
for (i = possible_pot_parameters.begin(); i != possible_pot_parameters.end(); ++i) {
if ((*i) == ac->parameter().type()) {
break;
}
}
/* move to the next mode in the list, or back to the start (which will
also happen if the current mode is not in the current pot mode list)
*/
if (i != possible_pot_parameters.end()) {
++i;
}
if (i == possible_pot_parameters.end()) {
i = possible_pot_parameters.begin();
}
set_vpot_parameter (*i);
} }
if (possible_pot_parameters.empty() || (possible_pot_parameters.size() == 1 && possible_pot_parameters.front() == ac->parameter().type())) {
return;
}
for (i = possible_pot_parameters.begin(); i != possible_pot_parameters.end(); ++i) {
if ((*i) == ac->parameter().type()) {
break;
}
}
/* move to the next mode in the list, or back to the start (which will
also happen if the current mode is not in the current pot mode list)
*/
if (i != possible_pot_parameters.end()) {
++i;
}
if (i == possible_pot_parameters.end()) {
i = possible_pot_parameters.begin();
}
set_vpot_parameter (*i);
} }
void void
@ -1490,7 +1460,7 @@ Strip::subview_mode_changed ()
switch (_surface->mcp().subview_mode()) { switch (_surface->mcp().subview_mode()) {
case MackieControlProtocol::None: case MackieControlProtocol::None:
set_vpot_parameter (vpot_parameter); set_vpot_parameter (_pan_mode);
/* need to show strip name again */ /* need to show strip name again */
show_route_name (); show_route_name ();
notify_metering_state_changed (); notify_metering_state_changed ();
@ -1864,8 +1834,6 @@ void
Strip::set_vpot_parameter (AutomationType p) Strip::set_vpot_parameter (AutomationType p)
{ {
if (!_route || (p == NullAutomation)) { if (!_route || (p == NullAutomation)) {
control_by_parameter[vpot_parameter] = 0;
vpot_parameter = NullAutomation;
_vpot->set_control (boost::shared_ptr<AutomationControl>()); _vpot->set_control (boost::shared_ptr<AutomationControl>());
pending_display[1] = string(); pending_display[1] = string();
return; return;
@ -1877,138 +1845,26 @@ Strip::set_vpot_parameter (AutomationType p)
reset_saved_values (); reset_saved_values ();
/* unset any mapping between the vpot and any existing parameters */
for (ControlParameterMap::iterator i = control_by_parameter.begin(); i != control_by_parameter.end(); ++i) {
if (i != control_by_parameter.end() && i->second == _vpot) {
i->second = 0;
}
}
switch (p) { switch (p) {
case PanAzimuthAutomation: case PanAzimuthAutomation:
if ((pan_control = _route->pan_azimuth_control ())) { pan_control = _route->pan_azimuth_control ();
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) {
_pan_mode = PanAzimuthAutomation;
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) {
/* gain to vpot, pan azi to fader */
_vpot->set_control (_route->gain_control());
vpot_parameter = GainAutomation;
control_by_parameter[GainAutomation] = _vpot;
_fader->set_control (pan_control);
control_by_parameter[PanAzimuthAutomation] = _fader;
} else {
_fader->set_control (boost::shared_ptr<AutomationControl>());
control_by_parameter[PanAzimuthAutomation] = 0;
}
} else {
/* gain to fader, pan azi to vpot */
vpot_parameter = PanAzimuthAutomation;
_fader->set_control (_route->gain_control());
control_by_parameter[GainAutomation] = _fader;
_vpot->set_control (pan_control);
control_by_parameter[PanAzimuthAutomation] = _vpot;
}
} else {
_vpot->set_control (boost::shared_ptr<AutomationControl>());
control_by_parameter[PanAzimuthAutomation] = 0;
}
break; break;
case PanWidthAutomation: case PanWidthAutomation:
if ((pan_control = _route->pan_width_control ())) { pan_control = _route->pan_width_control ();
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) {
_pan_mode = PanWidthAutomation;
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) {
/* gain to vpot, pan width to fader */
_vpot->set_control (_route->gain_control());
vpot_parameter = GainAutomation;
control_by_parameter[GainAutomation] = _vpot;
_fader->set_control (pan_control);
control_by_parameter[PanWidthAutomation] = _fader;
} else {
_fader->set_control (boost::shared_ptr<AutomationControl>());
control_by_parameter[PanWidthAutomation] = 0;
}
} else {
/* gain to fader, pan width to vpot */
vpot_parameter = PanWidthAutomation;
_fader->set_control (_route->gain_control());
control_by_parameter[GainAutomation] = _fader;
_vpot->set_control (pan_control);
control_by_parameter[PanWidthAutomation] = _vpot;
}
} else {
_vpot->set_control (boost::shared_ptr<AutomationControl>());
control_by_parameter[PanWidthAutomation] = 0;
}
break; break;
case PanElevationAutomation: case PanElevationAutomation:
break; break;
case PanFrontBackAutomation: case PanFrontBackAutomation:
break; break;
case PanLFEAutomation: case PanLFEAutomation:
break; break;
case TrimAutomation:
_trim_mode = TrimAutomation;
vpot_parameter = TrimAutomation;
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) {
/* gain to vpot, trim to fader */
_vpot->set_control (_route->gain_control());
control_by_parameter[GainAutomation] = _vpot;
if (_route->trim() && route()->trim()->active()) {
_fader->set_control (_route->trim_control());
control_by_parameter[TrimAutomation] = _fader;
} else {
_fader->set_control (boost::shared_ptr<AutomationControl>());
control_by_parameter[TrimAutomation] = 0;
}
} else {
/* gain to fader, trim to vpot */
_fader->set_control (_route->gain_control());
control_by_parameter[GainAutomation] = _fader;
if (_route->trim() && route()->trim()->active()) {
_vpot->set_control (_route->trim_control());
control_by_parameter[TrimAutomation] = _vpot;
} else {
_vpot->set_control (boost::shared_ptr<AutomationControl>());
control_by_parameter[TrimAutomation] = 0;
}
}
break;
case PhaseAutomation:
_trim_mode = PhaseAutomation;
vpot_parameter = PhaseAutomation;
if (_surface->mcp().flip_mode() != MackieControlProtocol::Normal) {
/* gain to vpot, phase to fader */
_vpot->set_control (_route->gain_control());
control_by_parameter[GainAutomation] = _vpot;
if (_route->phase_invert().size()) {
_fader->set_control (_route->phase_control());
control_by_parameter[PhaseAutomation] = _fader;
} else {
_fader->set_control (boost::shared_ptr<AutomationControl>());
control_by_parameter[PhaseAutomation] = 0;
}
} else {
/* gain to fader, phase to vpot */
_fader->set_control (_route->gain_control());
control_by_parameter[GainAutomation] = _fader;
if (_route->phase_invert().size()) {
_vpot->set_control (_route->phase_control());
control_by_parameter[PhaseAutomation] = _vpot;
} else {
_vpot->set_control (boost::shared_ptr<AutomationControl>());
control_by_parameter[PhaseAutomation] = 0;
}
}
break;
default: default:
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("vpot mode %1 not known.\n", p)); return;
break; }
if (pan_control) {
_pan_mode = p;
_vpot->set_control (pan_control);
} }
pending_display[1] = vpot_mode_string (); pending_display[1] = vpot_mode_string ();

View file

@ -77,7 +77,7 @@ public:
void zero (); void zero ();
void potmode_changed (bool notify=false); void flip_mode_changed ();
void subview_mode_changed (); void subview_mode_changed ();
void lock_controls (); void lock_controls ();
@ -122,14 +122,11 @@ private:
int eq_band; int eq_band;
ARDOUR::AutomationType _pan_mode; ARDOUR::AutomationType _pan_mode;
ARDOUR::AutomationType _trim_mode;
ARDOUR::AutomationType vpot_parameter;
float _last_gain_position_written; float _last_gain_position_written;
float _last_pan_azi_position_written; float _last_pan_azi_position_written;
float _last_pan_width_position_written; float _last_pan_width_position_written;
float _last_trim_position_written; float _last_trim_position_written;
uint32_t _current_send;
void notify_solo_changed (); void notify_solo_changed ();
void notify_mute_changed (); void notify_mute_changed ();
@ -148,6 +145,7 @@ private:
boost::shared_ptr<ARDOUR::AutomationControl> mb_pan_controllable; boost::shared_ptr<ARDOUR::AutomationControl> mb_pan_controllable;
void return_to_vpot_mode_display (); void return_to_vpot_mode_display ();
void next_pot_mode ();
void do_parameter_display (ARDOUR::AutomationType, float val); void do_parameter_display (ARDOUR::AutomationType, float val);
void select_event (Button&, ButtonState); void select_event (Button&, ButtonState);
@ -156,7 +154,6 @@ private:
std::vector<ARDOUR::AutomationType> possible_pot_parameters; std::vector<ARDOUR::AutomationType> possible_pot_parameters;
std::vector<ARDOUR::AutomationType> possible_trim_parameters; std::vector<ARDOUR::AutomationType> possible_trim_parameters;
void next_pot_mode ();
void set_vpot_parameter (ARDOUR::AutomationType); void set_vpot_parameter (ARDOUR::AutomationType);
void show_route_name (); void show_route_name ();
@ -164,9 +161,6 @@ private:
bool is_midi_track () const; bool is_midi_track () const;
typedef std::map<ARDOUR::AutomationType,Control*> ControlParameterMap;
ControlParameterMap control_by_parameter;
void notify_eq_change (ARDOUR::AutomationType, uint32_t band, bool force); void notify_eq_change (ARDOUR::AutomationType, uint32_t band, bool force);
void setup_eq_vpot (boost::shared_ptr<ARDOUR::Route>); void setup_eq_vpot (boost::shared_ptr<ARDOUR::Route>);

View file

@ -1019,15 +1019,7 @@ void
Surface::update_flip_mode_display () Surface::update_flip_mode_display ()
{ {
for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) { for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
(*s)->potmode_changed (true); (*s)->flip_mode_changed ();
}
}
void
Surface::update_potmode ()
{
for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
(*s)->potmode_changed (false);
} }
} }

View file

@ -154,7 +154,6 @@ public:
void update_view_mode_display (bool with_helpful_text); void update_view_mode_display (bool with_helpful_text);
void update_flip_mode_display (); void update_flip_mode_display ();
void update_potmode ();
void gui_selection_changed (const ARDOUR::StrongRouteNotificationList&); void gui_selection_changed (const ARDOUR::StrongRouteNotificationList&);
void subview_mode_changed (); void subview_mode_changed ();