2008-06-02 17:41:35 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2006 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU Lesser
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-12-21 13:23:07 -05:00
|
|
|
#include "pbd/error.h"
|
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/route.h"
|
|
|
|
#include "ardour/audio_track.h"
|
|
|
|
#include "ardour/meter.h"
|
|
|
|
#include "ardour/amp.h"
|
|
|
|
#include "control_protocol/control_protocol.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace std;
|
2009-12-21 13:23:07 -05:00
|
|
|
using namespace PBD;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-12-21 13:23:07 -05:00
|
|
|
Signal0<void> ControlProtocol::ZoomToSession;
|
|
|
|
Signal0<void> ControlProtocol::ZoomOut;
|
|
|
|
Signal0<void> ControlProtocol::ZoomIn;
|
|
|
|
Signal0<void> ControlProtocol::Enter;
|
2012-04-09 11:50:38 -04:00
|
|
|
Signal0<void> ControlProtocol::Undo;
|
|
|
|
Signal0<void> ControlProtocol::Redo;
|
2009-12-21 13:23:07 -05:00
|
|
|
Signal1<void,float> ControlProtocol::ScrollTimeline;
|
2012-04-09 14:53:51 -04:00
|
|
|
Signal1<void,uint32_t> ControlProtocol::GotoView;
|
|
|
|
Signal0<void> ControlProtocol::CloseDialog;
|
|
|
|
PBD::Signal0<void> ControlProtocol::VerticalZoomInAll;
|
|
|
|
PBD::Signal0<void> ControlProtocol::VerticalZoomOutAll;
|
|
|
|
PBD::Signal0<void> ControlProtocol::VerticalZoomInSelected;
|
|
|
|
PBD::Signal0<void> ControlProtocol::VerticalZoomOutSelected;
|
2012-04-12 10:34:03 -04:00
|
|
|
PBD::Signal1<void,RouteNotificationListPtr> ControlProtocol::TrackSelectionChanged;
|
2012-04-13 12:11:55 -04:00
|
|
|
PBD::Signal1<void,uint32_t> ControlProtocol::AddRouteToSelection;
|
|
|
|
PBD::Signal1<void,uint32_t> ControlProtocol::SetRouteSelection;
|
2012-04-26 18:10:32 -04:00
|
|
|
PBD::Signal1<void,uint32_t> ControlProtocol::ToggleRouteSelection;
|
2012-04-13 12:11:55 -04:00
|
|
|
PBD::Signal1<void,uint32_t> ControlProtocol::RemoveRouteFromSelection;
|
|
|
|
PBD::Signal0<void> ControlProtocol::ClearRouteSelection;
|
2012-04-25 23:46:18 -04:00
|
|
|
PBD::Signal0<void> ControlProtocol::StepTracksDown;
|
|
|
|
PBD::Signal0<void> ControlProtocol::StepTracksUp;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2012-04-23 06:54:34 -04:00
|
|
|
ControlProtocol::ControlProtocol (Session& s, string str)
|
|
|
|
: BasicUI (s)
|
|
|
|
, _name (str)
|
|
|
|
, _active (false)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlProtocol::~ControlProtocol ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ControlProtocol::next_track (uint32_t initial_id)
|
|
|
|
{
|
|
|
|
uint32_t limit = session->nroutes();
|
|
|
|
boost::shared_ptr<Route> cr = route_table[0];
|
|
|
|
uint32_t id;
|
|
|
|
|
|
|
|
if (cr) {
|
|
|
|
id = cr->remote_control_id ();
|
|
|
|
} else {
|
|
|
|
id = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id == limit) {
|
|
|
|
id = 0;
|
|
|
|
} else {
|
|
|
|
id++;
|
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
while (id <= limit) {
|
2008-06-02 17:41:35 -04:00
|
|
|
if ((cr = session->route_by_remote_id (id)) != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
id++;
|
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (id >= limit) {
|
2008-06-02 17:41:35 -04:00
|
|
|
id = 0;
|
|
|
|
while (id != initial_id) {
|
|
|
|
if ((cr = session->route_by_remote_id (id)) != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
id++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
route_table[0] = cr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ControlProtocol::prev_track (uint32_t initial_id)
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
uint32_t limit = session->nroutes();
|
2008-06-02 17:41:35 -04:00
|
|
|
boost::shared_ptr<Route> cr = route_table[0];
|
2008-12-12 09:43:24 -05:00
|
|
|
int32_t id;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
if (cr) {
|
|
|
|
id = cr->remote_control_id ();
|
|
|
|
} else {
|
|
|
|
id = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id == 0) {
|
2008-12-12 09:43:24 -05:00
|
|
|
id = limit;
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
|
|
|
id--;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (id >= 0) {
|
|
|
|
if ((cr = session->route_by_remote_id (id)) != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
id--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id < 0) {
|
2009-01-30 15:18:31 -05:00
|
|
|
uint32_t i = limit;
|
|
|
|
while (i > initial_id) {
|
|
|
|
if ((cr = session->route_by_remote_id (i)) != 0) {
|
2008-06-02 17:41:35 -04:00
|
|
|
break;
|
|
|
|
}
|
2009-01-30 15:18:31 -05:00
|
|
|
i--;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
route_table[0] = cr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ControlProtocol::set_route_table_size (uint32_t size)
|
|
|
|
{
|
|
|
|
while (route_table.size() < size) {
|
|
|
|
route_table.push_back (boost::shared_ptr<Route> ((Route*) 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ControlProtocol::set_route_table (uint32_t table_index, boost::shared_ptr<ARDOUR::Route> r)
|
|
|
|
{
|
|
|
|
if (table_index >= route_table.size()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
route_table[table_index] = r;
|
|
|
|
|
|
|
|
// XXX SHAREDPTR need to handle r->GoingAway
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ControlProtocol::set_route_table (uint32_t table_index, uint32_t remote_control_id)
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Route> r = session->route_by_remote_id (remote_control_id);
|
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_route_table (table_index, r);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ControlProtocol::route_set_rec_enable (uint32_t table_index, bool yn)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
boost::shared_ptr<AudioTrack> at = boost::dynamic_pointer_cast<AudioTrack>(r);
|
|
|
|
|
|
|
|
if (at) {
|
2010-07-24 12:40:56 -04:00
|
|
|
at->set_record_enabled (yn, this);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ControlProtocol::route_get_rec_enable (uint32_t table_index)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
boost::shared_ptr<AudioTrack> at = boost::dynamic_pointer_cast<AudioTrack>(r);
|
|
|
|
|
|
|
|
if (at) {
|
|
|
|
return at->record_enabled ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
float
|
|
|
|
ControlProtocol::route_get_gain (uint32_t table_index)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r == 0) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
return r->amp()->gain ();
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ControlProtocol::route_set_gain (uint32_t table_index, float gain)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r != 0) {
|
|
|
|
r->set_gain (gain, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
ControlProtocol::route_get_effective_gain (uint32_t table_index)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r == 0) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
return r->amp()->gain_control()->get_value();
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
float
|
|
|
|
ControlProtocol::route_get_peak_input_power (uint32_t table_index, uint32_t which_input)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r == 0) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r->peak_meter().peak_power (which_input);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
ControlProtocol::route_get_muted (uint32_t table_index)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r->muted ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ControlProtocol::route_set_muted (uint32_t table_index, bool yn)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r != 0) {
|
|
|
|
r->set_mute (yn, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
ControlProtocol::route_get_soloed (uint32_t table_index)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r->soloed ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ControlProtocol::route_set_soloed (uint32_t table_index, bool yn)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r != 0) {
|
|
|
|
r->set_solo (yn, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
ControlProtocol:: route_get_name (uint32_t table_index)
|
|
|
|
{
|
|
|
|
if (table_index > route_table.size()) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<Route> r = route_table[table_index];
|
|
|
|
|
|
|
|
if (r == 0) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
return r->name();
|
|
|
|
}
|
|
|
|
|
2010-07-29 22:09:39 -04:00
|
|
|
list<boost::shared_ptr<Bundle> >
|
|
|
|
ControlProtocol::bundles ()
|
|
|
|
{
|
|
|
|
return list<boost::shared_ptr<Bundle> > ();
|
|
|
|
}
|