summaryrefslogtreecommitdiff
path: root/libs/surfaces/mackie/route_signal.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/surfaces/mackie/route_signal.cc')
-rw-r--r--libs/surfaces/mackie/route_signal.cc95
1 files changed, 95 insertions, 0 deletions
diff --git a/libs/surfaces/mackie/route_signal.cc b/libs/surfaces/mackie/route_signal.cc
new file mode 100644
index 0000000000..d77d0520a1
--- /dev/null
+++ b/libs/surfaces/mackie/route_signal.cc
@@ -0,0 +1,95 @@
+/*
+ Copyright (C) 2006,2007 John Anderson
+
+ 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+#include "route_signal.h"
+
+#include <ardour/route.h>
+#include <ardour/track.h>
+#include <ardour/panner.h>
+
+#include "mackie_control_protocol.h"
+
+#include <stdexcept>
+
+using namespace Mackie;
+
+void RouteSignal::connect()
+{
+ if ( _strip.has_solo() )
+ _solo_changed_connection = _route.solo_control().Changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_solo_changed ), this ) );
+
+ if ( _strip.has_mute() )
+ _mute_changed_connection = _route.mute_control().Changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_mute_changed ), this ) );
+
+ if ( _strip.has_gain() )
+ _gain_changed_connection = _route.gain_control().Changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_gain_changed ), this ) );
+
+ _name_changed_connection = _route.name_changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_name_changed ), this ) );
+
+ if ( _route.panner().size() == 1 )
+ {
+ _panner_changed_connection = _route.panner()[0]->Changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_panner_changed ), this ) );
+ }
+
+ try
+ {
+ _record_enable_changed_connection =
+ dynamic_cast<ARDOUR::Track&>( _route ).rec_enable_control().Changed
+ .connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_record_enable_changed ), this ) )
+ ;
+ }
+ catch ( std::bad_cast & )
+ {
+ // this should catch the dynamic_cast to Track, if what we're working
+ // with can't be record-enabled
+ }
+
+ // TODO
+ // active_changed
+ // SelectedChanged
+ // RemoteControlIDChanged. Better handled at Session level.
+}
+
+void RouteSignal::disconnect()
+{
+ _solo_changed_connection.disconnect();
+ _mute_changed_connection.disconnect();
+ _gain_changed_connection.disconnect();
+ _name_changed_connection.disconnect();
+ _panner_changed_connection.disconnect();
+ _record_enable_changed_connection.disconnect();
+}
+
+void RouteSignal::notify_all()
+{
+ if ( _strip.has_solo() )
+ _mcp.notify_solo_changed( this );
+
+ if ( _strip.has_mute() )
+ _mcp.notify_mute_changed( this );
+
+ if ( _strip.has_gain() )
+ _mcp.notify_gain_changed( this );
+
+ _mcp.notify_name_changed( &_route, this );
+
+ if ( _strip.has_vpot() )
+ _mcp.notify_panner_changed( this );
+
+ if ( _strip.has_recenable() )
+ _mcp.notify_record_enable_changed( this );
+}