09ec342926
git-svn-id: svn://localhost/ardour2/branches/3.0@5805 d708f5d6-7413-0410-9779-e7cbd77b26cf
136 lines
3.8 KiB
C++
136 lines
3.8 KiB
C++
/*
|
|
Copyright (C) 2009 Paul Davis
|
|
|
|
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 <gtkmm/image.h>
|
|
#include <gtkmm/stock.h>
|
|
#include "global_port_matrix.h"
|
|
#include "utils.h"
|
|
|
|
#include "ardour/bundle.h"
|
|
#include "ardour/session.h"
|
|
#include "ardour/audioengine.h"
|
|
#include "ardour/port.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
using namespace std;
|
|
|
|
GlobalPortMatrix::GlobalPortMatrix (Gtk::Window* p, ARDOUR::Session& s, ARDOUR::DataType t)
|
|
: PortMatrix (p, s, t)
|
|
{
|
|
setup_all_ports ();
|
|
}
|
|
|
|
void
|
|
GlobalPortMatrix::setup_ports (int dim)
|
|
{
|
|
_ports[dim].suspend_signals ();
|
|
_ports[dim].gather (_session, dim == IN);
|
|
_ports[dim].resume_signals ();
|
|
}
|
|
|
|
void
|
|
GlobalPortMatrix::set_state (ARDOUR::BundleChannel c[2], bool s)
|
|
{
|
|
ARDOUR::Bundle::PortList const & in_ports = c[IN].bundle->channel_ports (c[IN].channel);
|
|
ARDOUR::Bundle::PortList const & out_ports = c[OUT].bundle->channel_ports (c[OUT].channel);
|
|
|
|
for (ARDOUR::Bundle::PortList::const_iterator i = in_ports.begin(); i != in_ports.end(); ++i) {
|
|
for (ARDOUR::Bundle::PortList::const_iterator j = out_ports.begin(); j != out_ports.end(); ++j) {
|
|
|
|
ARDOUR::Port* p = _session.engine().get_port_by_name (*i);
|
|
ARDOUR::Port* q = _session.engine().get_port_by_name (*j);
|
|
|
|
if (p) {
|
|
if (s) {
|
|
p->connect (*j);
|
|
} else {
|
|
p->disconnect (*j);
|
|
}
|
|
} else if (q) {
|
|
if (s) {
|
|
q->connect (*i);
|
|
} else {
|
|
q->disconnect (*i);
|
|
}
|
|
}
|
|
|
|
/* we don't handle connections between two non-Ardour ports */
|
|
}
|
|
}
|
|
}
|
|
|
|
PortMatrixNode::State
|
|
GlobalPortMatrix::get_state (ARDOUR::BundleChannel c[2]) const
|
|
{
|
|
ARDOUR::Bundle::PortList const & in_ports = c[IN].bundle->channel_ports (c[IN].channel);
|
|
ARDOUR::Bundle::PortList const & out_ports = c[OUT].bundle->channel_ports (c[OUT].channel);
|
|
if (in_ports.empty() || out_ports.empty()) {
|
|
/* we're looking at a bundle with no parts associated with this channel,
|
|
so nothing to connect */
|
|
return PortMatrixNode::UNKNOWN;
|
|
}
|
|
|
|
for (ARDOUR::Bundle::PortList::const_iterator i = in_ports.begin(); i != in_ports.end(); ++i) {
|
|
for (ARDOUR::Bundle::PortList::const_iterator j = out_ports.begin(); j != out_ports.end(); ++j) {
|
|
|
|
ARDOUR::Port* p = _session.engine().get_port_by_name (*i);
|
|
ARDOUR::Port* q = _session.engine().get_port_by_name (*j);
|
|
|
|
/* we don't know the state of connections between two non-Ardour ports */
|
|
if (!p && !q) {
|
|
return PortMatrixNode::UNKNOWN;
|
|
}
|
|
|
|
if (p && p->connected_to (*j) == false) {
|
|
return PortMatrixNode::NOT_ASSOCIATED;
|
|
} else if (q && q->connected_to (*i) == false) {
|
|
return PortMatrixNode::NOT_ASSOCIATED;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
return PortMatrixNode::ASSOCIATED;
|
|
}
|
|
|
|
GlobalPortMatrixWindow::GlobalPortMatrixWindow (ARDOUR::Session& s, ARDOUR::DataType t)
|
|
: _port_matrix (this, s, t)
|
|
{
|
|
switch (t) {
|
|
case ARDOUR::DataType::AUDIO:
|
|
set_title (_("Audio Connection Manager"));
|
|
break;
|
|
case ARDOUR::DataType::MIDI:
|
|
set_title (_("MIDI Connection Manager"));
|
|
break;
|
|
}
|
|
|
|
add (_port_matrix);
|
|
show_all ();
|
|
}
|
|
|
|
void
|
|
GlobalPortMatrixWindow::on_show ()
|
|
{
|
|
Gtk::Window::on_show ();
|
|
pair<uint32_t, uint32_t> const pm_max = _port_matrix.max_size ();
|
|
resize_window_to_proportion_of_monitor (this, pm_max.first, pm_max.second);
|
|
}
|