945 lines
28 KiB
C++
945 lines
28 KiB
C++
/*
|
|
* Copyright (C) 2008-2013 Sakari Bergen <sakari.bergen@beatwaves.net>
|
|
* Copyright (C) 2008-2016 Paul Davis <paul@linuxaudiosystems.com>
|
|
* Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
|
|
* Copyright (C) 2009-2012 David Robillard <d@drobilla.net>
|
|
* Copyright (C) 2013-2015 Colin Fletcher <colin.m.fletcher@googlemail.com>
|
|
* Copyright (C) 2013-2022 Robin Gareus <robin@gareus.org>
|
|
* Copyright (C) 2015 Ben Loftis <ben@harrisonconsoles.com>
|
|
* Copyright (C) 2015 Nick Mainsbridge <mainsbridge@gmail.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.
|
|
*/
|
|
|
|
#include <algorithm>
|
|
#include <sstream>
|
|
|
|
#include <gtkmm/menu.h>
|
|
|
|
#include "pbd/convert.h"
|
|
#include "pbd/unwind.h"
|
|
|
|
#include "ardour/audio_track.h"
|
|
#include "ardour/audioregion.h"
|
|
#include "ardour/export_channel_configuration.h"
|
|
#include "ardour/io.h"
|
|
#include "ardour/midi_track.h"
|
|
#include "ardour/route.h"
|
|
#include "ardour/session.h"
|
|
#include "ardour/selection.h"
|
|
|
|
#include "export_channel_selector.h"
|
|
#include "route_sorter.h"
|
|
|
|
#include "pbd/i18n.h"
|
|
|
|
using namespace std;
|
|
using namespace Glib;
|
|
using namespace ARDOUR;
|
|
using namespace PBD;
|
|
|
|
#define MAX_EXPORT_CHANNELS 32
|
|
|
|
PortExportChannelSelector::PortExportChannelSelector (ARDOUR::Session * session, ProfileManagerPtr manager) :
|
|
ExportChannelSelector (session, manager),
|
|
channels_label (_("Channels:"), Gtk::ALIGN_START),
|
|
split_checkbox (_("Split to mono files")),
|
|
max_channels (MAX_EXPORT_CHANNELS),
|
|
channel_view (max_channels)
|
|
{
|
|
channels_hbox.pack_start (channels_label, false, false, 0);
|
|
channels_hbox.pack_end (channels_spinbutton, false, false, 0);
|
|
|
|
channels_vbox.pack_start (channels_hbox, false, false, 0);
|
|
channels_vbox.pack_start (split_checkbox, false, false, 6);
|
|
|
|
channel_alignment.add (channel_scroller);
|
|
channel_alignment.set_padding (0, 0, 12, 0);
|
|
channel_scroller.add (channel_view);
|
|
channel_scroller.set_size_request (-1, 130);
|
|
channel_scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
|
|
|
|
pack_start (channels_vbox, false, false, 0);
|
|
pack_start (channel_alignment, true, true, 0);
|
|
|
|
/* Channels spinbutton */
|
|
|
|
channels_spinbutton.set_digits (0);
|
|
channels_spinbutton.set_increments (1, 2);
|
|
channels_spinbutton.set_range (1, max_channels);
|
|
channels_spinbutton.set_value (2);
|
|
|
|
channels_spinbutton.signal_value_changed().connect (sigc::mem_fun (*this, &PortExportChannelSelector::update_channel_count));
|
|
|
|
/* Other signals */
|
|
|
|
split_checkbox.signal_toggled().connect (sigc::mem_fun (*this, &PortExportChannelSelector::update_split_state));
|
|
channel_view.CriticalSelectionChanged.connect (CriticalSelectionChanged.make_slot());
|
|
|
|
/* Finalize */
|
|
|
|
show_all_children ();
|
|
}
|
|
|
|
PortExportChannelSelector::~PortExportChannelSelector ()
|
|
{
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::sync_with_manager ()
|
|
{
|
|
state = manager->get_channel_configs().front();
|
|
|
|
split_checkbox.set_active (state->config->get_split());
|
|
channels_spinbutton.set_value (state->config->get_n_chans());
|
|
|
|
/* when loading presets, config is ready set here (shared ptr)
|
|
* fill_route_list () -> update_channel_count () -> set_channel_count () -> update_config()
|
|
* will call config->clear_channels(); and clear the config
|
|
*/
|
|
channel_view.set_config (ChannelConfigPtr ());
|
|
fill_route_list ();
|
|
channel_view.set_config (state->config);
|
|
}
|
|
|
|
bool
|
|
PortExportChannelSelector::channel_limit_reached () const
|
|
{
|
|
return channel_view.max_route_channel_count () > channel_view.channel_count ();
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::fill_route_list ()
|
|
{
|
|
channel_view.clear_routes ();
|
|
RouteList routes = _session->get_routelist();
|
|
|
|
/* Add master bus and then everything else */
|
|
|
|
if (_session->master_out()) {
|
|
ARDOUR::IO* master = _session->master_out()->output().get();
|
|
channel_view.add_route (master);
|
|
}
|
|
|
|
routes.sort (Stripable::Sorter ());
|
|
|
|
for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) {
|
|
if ((*it)->is_main_bus ()) {
|
|
continue;
|
|
}
|
|
if ((*it)->output()->n_ports ().n_audio () > 0) {
|
|
channel_view.add_route ((*it)->output().get());
|
|
}
|
|
}
|
|
|
|
update_channel_count ();
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::update_channel_count ()
|
|
{
|
|
uint32_t chans = static_cast<uint32_t> (channels_spinbutton.get_value());
|
|
channel_view.set_channel_count (chans);
|
|
CriticalSelectionChanged();
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::update_split_state ()
|
|
{
|
|
state->config->set_split (split_checkbox.get_active());
|
|
CriticalSelectionChanged();
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::RouteCols::add_channels (uint32_t chans)
|
|
{
|
|
while (chans > 0) {
|
|
channels.push_back (Channel (*this));
|
|
++n_channels;
|
|
--chans;
|
|
}
|
|
}
|
|
|
|
PortExportChannelSelector::RouteCols::Channel &
|
|
PortExportChannelSelector::RouteCols::get_channel (uint32_t channel)
|
|
{
|
|
assert (channel > 0 && channel <= channels.size ());
|
|
|
|
std::list<Channel>::iterator it = channels.begin();
|
|
|
|
while (channel > 1) { // Channel count starts from one!
|
|
++it;
|
|
--channel;
|
|
}
|
|
|
|
return *it;
|
|
}
|
|
|
|
PortExportChannelSelector::ChannelTreeView::ChannelTreeView (uint32_t max_channels) :
|
|
n_channels (0)
|
|
{
|
|
/* Main columns */
|
|
|
|
route_cols.add_channels (max_channels);
|
|
|
|
route_list = Gtk::ListStore::create(route_cols);
|
|
set_model (route_list);
|
|
|
|
/* Add column with toggle and text */
|
|
|
|
append_column_editable (_("Export"), route_cols.selected);
|
|
|
|
Gtk::CellRendererText* text_renderer = Gtk::manage (new Gtk::CellRendererText);
|
|
text_renderer->property_editable() = false;
|
|
text_renderer->set_alignment (0.0, 0.5);
|
|
|
|
Gtk::TreeView::Column* column = Gtk::manage (new Gtk::TreeView::Column);
|
|
column->set_title (_("Bus or Track"));
|
|
column->pack_start (*text_renderer);
|
|
column->set_expand (true);
|
|
column->add_attribute (text_renderer->property_text(), route_cols.name);
|
|
append_column (*column);
|
|
|
|
Gtk::CellRendererToggle *toggle = dynamic_cast<Gtk::CellRendererToggle *>(get_column_cell_renderer (0));
|
|
toggle->set_alignment (0.0, 0.5);
|
|
toggle->signal_toggled().connect (sigc::mem_fun (*this, &PortExportChannelSelector::ChannelTreeView::update_toggle_selection));
|
|
|
|
static_columns = get_columns().size();
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::ChannelTreeView::set_config (ChannelConfigPtr c)
|
|
{
|
|
/* TODO Without the following line, the state might get reset.
|
|
* Pointing to the same address does not mean the state of the configuration hasn't changed.
|
|
* In the current code this is safe, but the actual cause of the problem would be good to fix
|
|
*/
|
|
|
|
if (config == c) { return; }
|
|
config = c;
|
|
if (!config) { return; }
|
|
|
|
uint32_t i = 1;
|
|
ExportChannelConfiguration::ChannelList chan_list = config->get_channels();
|
|
for (ExportChannelConfiguration::ChannelList::iterator c_it = chan_list.begin(); c_it != chan_list.end(); ++c_it) {
|
|
|
|
PortExportChannel* pec;
|
|
if (!(pec = dynamic_cast<PortExportChannel *> (c_it->get()))) {
|
|
continue;
|
|
}
|
|
|
|
for (Gtk::ListStore::Children::iterator r_it = route_list->children().begin(); r_it != route_list->children().end(); ++r_it) {
|
|
|
|
Glib::RefPtr<Gtk::ListStore> port_list = r_it->get_value (route_cols.port_list_col);
|
|
PortExportChannel::PortSet route_ports;
|
|
PortExportChannel::PortSet intersection;
|
|
std::map<std::weak_ptr<AudioPort>, string, std::owner_less<std::weak_ptr<AudioPort> > > port_labels;
|
|
|
|
for (Gtk::ListStore::Children::const_iterator p_it = port_list->children().begin(); p_it != port_list->children().end(); ++p_it) {
|
|
route_ports.insert ((*p_it)->get_value (route_cols.port_cols.port));
|
|
port_labels.insert (make_pair ((*p_it)->get_value (route_cols.port_cols.port),
|
|
(*p_it)->get_value (route_cols.port_cols.label)));
|
|
}
|
|
|
|
std::owner_less<std::weak_ptr<AudioPort> > cmp;
|
|
|
|
std::set_intersection (pec->get_ports().begin(), pec->get_ports().end(),
|
|
route_ports.begin(), route_ports.end(),
|
|
std::insert_iterator<PortExportChannel::PortSet> (intersection, intersection.begin()),
|
|
cmp);
|
|
|
|
intersection.erase (std::weak_ptr<AudioPort> ()); // Remove "none" selection
|
|
|
|
if (intersection.empty()) {
|
|
continue;
|
|
}
|
|
|
|
if (!r_it->get_value (route_cols.selected)) {
|
|
r_it->set_value (route_cols.selected, true);
|
|
|
|
/* Set previous channels (if any) to none */
|
|
|
|
for (uint32_t chn = 1; chn < i; ++chn) {
|
|
r_it->set_value (route_cols.get_channel (chn).port, std::weak_ptr<AudioPort> ());
|
|
r_it->set_value (route_cols.get_channel (chn).label, string ("(none)"));
|
|
}
|
|
}
|
|
|
|
std::weak_ptr<AudioPort> port = *intersection.begin();
|
|
std::map<std::weak_ptr<AudioPort>, string>::iterator label_it = port_labels.find (port);
|
|
string label = label_it != port_labels.end() ? label_it->second : "error";
|
|
|
|
r_it->set_value (route_cols.get_channel (i).port, port);
|
|
r_it->set_value (route_cols.get_channel (i).label, label);
|
|
}
|
|
|
|
if (++i > n_channels) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::ChannelTreeView::add_route (ARDOUR::IO * io)
|
|
{
|
|
Gtk::TreeModel::iterator iter = route_list->append();
|
|
Gtk::TreeModel::Row row = *iter;
|
|
|
|
row[route_cols.selected] = false;
|
|
row[route_cols.name] = io->name();
|
|
row[route_cols.io] = io;
|
|
|
|
/* Initialize port list */
|
|
|
|
Glib::RefPtr<Gtk::ListStore> port_list = Gtk::ListStore::create (route_cols.port_cols);
|
|
row[route_cols.port_list_col] = port_list;
|
|
|
|
uint32_t outs = io->n_ports().n_audio();
|
|
for (uint32_t i = 0; i < outs; ++i) {
|
|
iter = port_list->append();
|
|
row = *iter;
|
|
|
|
row[route_cols.port_cols.selected] = false;
|
|
row[route_cols.port_cols.port] = io->audio (i);
|
|
|
|
std::ostringstream oss;
|
|
oss << "Out-" << (i + 1);
|
|
|
|
row[route_cols.port_cols.label] = oss.str();
|
|
}
|
|
|
|
iter = port_list->append();
|
|
row = *iter;
|
|
|
|
row[route_cols.port_cols.selected] = false;
|
|
row[route_cols.port_cols.port] = std::weak_ptr<AudioPort> ();
|
|
row[route_cols.port_cols.label] = "(none)";
|
|
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::ChannelTreeView::set_channel_count (uint32_t channels)
|
|
{
|
|
int offset = channels - n_channels;
|
|
|
|
while (offset > 0) {
|
|
++n_channels;
|
|
|
|
std::ostringstream oss;
|
|
oss << n_channels;
|
|
|
|
/* New column */
|
|
|
|
Gtk::TreeView::Column* column = Gtk::manage (new Gtk::TreeView::Column (oss.str()));
|
|
|
|
Gtk::CellRendererCombo* combo_renderer = Gtk::manage (new Gtk::CellRendererCombo);
|
|
combo_renderer->property_text_column() = 2;
|
|
combo_renderer->property_has_entry() = false;
|
|
column->pack_start (*combo_renderer);
|
|
|
|
append_column (*column);
|
|
|
|
column->add_attribute (combo_renderer->property_text(), route_cols.get_channel(n_channels).label);
|
|
column->add_attribute (combo_renderer->property_model(), route_cols.port_list_col);
|
|
column->add_attribute (combo_renderer->property_editable(), route_cols.selected);
|
|
|
|
combo_renderer->signal_edited().connect (sigc::bind (sigc::mem_fun (*this, &PortExportChannelSelector::ChannelTreeView::update_selection_text), n_channels));
|
|
|
|
/* put data into view */
|
|
|
|
for (Gtk::ListStore::Children::iterator it = route_list->children().begin(); it != route_list->children().end(); ++it) {
|
|
std::string label = it->get_value(route_cols.selected) ? "(none)" : "";
|
|
it->set_value (route_cols.get_channel (n_channels).label, label);
|
|
it->set_value (route_cols.get_channel (n_channels).port, std::weak_ptr<AudioPort> ());
|
|
}
|
|
|
|
/* set column width */
|
|
|
|
get_column (static_columns + n_channels - 1)->set_min_width (80);
|
|
|
|
--offset;
|
|
}
|
|
|
|
while (offset < 0) {
|
|
--n_channels;
|
|
|
|
remove_column (*get_column (n_channels + static_columns));
|
|
|
|
++offset;
|
|
}
|
|
|
|
update_config ();
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::ChannelTreeView::update_config ()
|
|
{
|
|
if (!config) { return; }
|
|
|
|
config->clear_channels();
|
|
|
|
for (uint32_t i = 1; i <= n_channels; ++i) {
|
|
|
|
ExportChannelPtr channel (new PortExportChannel ());
|
|
PortExportChannel * pec = static_cast<PortExportChannel *> (channel.get());
|
|
|
|
for (Gtk::ListStore::Children::iterator it = route_list->children().begin(); it != route_list->children().end(); ++it) {
|
|
Gtk::TreeModel::Row row = *it;
|
|
|
|
if (!row[route_cols.selected]) {
|
|
continue;
|
|
}
|
|
|
|
std::weak_ptr<AudioPort> weak_port = row[route_cols.get_channel (i).port];
|
|
std::shared_ptr<AudioPort> port = weak_port.lock ();
|
|
if (port) {
|
|
pec->add_port (port);
|
|
}
|
|
}
|
|
|
|
config->register_channel (channel);
|
|
}
|
|
|
|
CriticalSelectionChanged ();
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::ChannelTreeView::update_toggle_selection (std::string const & path)
|
|
{
|
|
Gtk::TreeModel::iterator iter = get_model ()->get_iter (path);
|
|
bool selected = iter->get_value (route_cols.selected);
|
|
|
|
for (uint32_t i = 1; i <= n_channels; ++i) {
|
|
|
|
if (!selected) {
|
|
iter->set_value (route_cols.get_channel (i).label, std::string (""));
|
|
continue;
|
|
}
|
|
|
|
iter->set_value (route_cols.get_channel (i).label, std::string("(none)"));
|
|
iter->set_value (route_cols.get_channel (i).port, std::weak_ptr<AudioPort> ());
|
|
|
|
Glib::RefPtr<Gtk::ListStore> port_list = iter->get_value (route_cols.port_list_col);
|
|
Gtk::ListStore::Children::iterator port_it;
|
|
uint32_t port_number = 1;
|
|
|
|
for (port_it = port_list->children().begin(); port_it != port_list->children().end(); ++port_it) {
|
|
if (port_number == i) {
|
|
iter->set_value (route_cols.get_channel (i).label, (std::string) (*port_it)->get_value (route_cols.port_cols.label));
|
|
iter->set_value (route_cols.get_channel (i).port, (*port_it)->get_value (route_cols.port_cols.port));
|
|
}
|
|
|
|
++port_number;
|
|
}
|
|
}
|
|
|
|
update_config ();
|
|
}
|
|
|
|
void
|
|
PortExportChannelSelector::ChannelTreeView::update_selection_text (std::string const & path, std::string const & new_text, uint32_t channel)
|
|
{
|
|
Gtk::TreeModel::iterator iter = get_model ()->get_iter (path);
|
|
iter->set_value (route_cols.get_channel (channel).label, new_text);
|
|
|
|
Glib::RefPtr<Gtk::ListStore> port_list = iter->get_value (route_cols.port_list_col);
|
|
Gtk::ListStore::Children::iterator port_it;
|
|
|
|
for (port_it = port_list->children().begin(); port_it != port_list->children().end(); ++port_it) {
|
|
std::string label = port_it->get_value (route_cols.port_cols.label);
|
|
if (label == new_text) {
|
|
std::weak_ptr<AudioPort> w = (*port_it)[route_cols.port_cols.port];
|
|
iter->set_value (route_cols.get_channel (channel).port, w);
|
|
}
|
|
}
|
|
|
|
update_config ();
|
|
}
|
|
|
|
uint32_t
|
|
PortExportChannelSelector::ChannelTreeView::max_route_channel_count () const
|
|
{
|
|
uint32_t rv = 0;
|
|
for (Gtk::ListStore::Children::const_iterator it = route_list->children().begin(); it != route_list->children().end(); ++it) {
|
|
Gtk::TreeModel::Row row = *it;
|
|
if (!row[route_cols.selected]) {
|
|
continue;
|
|
}
|
|
ARDOUR::IO* io = row[route_cols.io];
|
|
uint32_t outs = io->n_ports().n_audio();
|
|
rv = std::max (rv, outs);
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
RegionExportChannelSelector::RegionExportChannelSelector (ARDOUR::Session * _session,
|
|
ProfileManagerPtr manager,
|
|
ARDOUR::AudioRegion const & region,
|
|
ARDOUR::AudioTrack & track) :
|
|
ExportChannelSelector (_session, manager),
|
|
region (region),
|
|
track (track),
|
|
region_chans (region.n_channels()),
|
|
|
|
raw_button (type_group),
|
|
fades_button (type_group)
|
|
{
|
|
pack_start (vbox);
|
|
|
|
/* make fades+region gain be the default */
|
|
|
|
fades_button.set_active ();
|
|
|
|
raw_button.set_label (string_compose (_("Region contents without fades nor region gain (channels: %1)"), region_chans));
|
|
raw_button.signal_toggled ().connect (sigc::mem_fun (*this, &RegionExportChannelSelector::handle_selection));
|
|
vbox.pack_start (raw_button, false, false);
|
|
|
|
fades_button.set_label (string_compose (_("Region contents with fades and region gain (channels: %1)"), region_chans));
|
|
fades_button.signal_toggled ().connect (sigc::mem_fun (*this, &RegionExportChannelSelector::handle_selection));
|
|
vbox.pack_start (fades_button, false, false);
|
|
|
|
vbox.show_all_children ();
|
|
show_all_children ();
|
|
}
|
|
|
|
void
|
|
RegionExportChannelSelector::sync_with_manager ()
|
|
{
|
|
state = manager->get_channel_configs().front();
|
|
|
|
if (!state) { return; }
|
|
|
|
switch (state->config->region_processing_type()) {
|
|
case RegionExportChannelFactory::None:
|
|
// Do nothing
|
|
break;
|
|
case RegionExportChannelFactory::Raw:
|
|
raw_button.set_active (true);
|
|
break;
|
|
case RegionExportChannelFactory::Fades:
|
|
fades_button.set_active (true);
|
|
break;
|
|
}
|
|
|
|
handle_selection ();
|
|
}
|
|
|
|
void
|
|
RegionExportChannelSelector::handle_selection ()
|
|
{
|
|
if (!state) {
|
|
return;
|
|
}
|
|
|
|
state->config->clear_channels ();
|
|
|
|
RegionExportChannelFactory::Type type = RegionExportChannelFactory::None;
|
|
if (raw_button.get_active ()) {
|
|
type = RegionExportChannelFactory::Raw;
|
|
} else if (fades_button.get_active ()) {
|
|
type = RegionExportChannelFactory::Fades;
|
|
} else {
|
|
CriticalSelectionChanged ();
|
|
return;
|
|
}
|
|
|
|
factory.reset (new RegionExportChannelFactory (_session, region, track, type));
|
|
state->config->set_region_processing_type (type);
|
|
|
|
for (size_t chan = 0; chan < region_chans; ++chan) {
|
|
state->config->register_channel (factory->create (chan));
|
|
}
|
|
|
|
CriticalSelectionChanged ();
|
|
}
|
|
|
|
/* Track export channel selector */
|
|
|
|
TrackExportChannelSelector::TrackExportChannelSelector (ARDOUR::Session * session, ProfileManagerPtr manager)
|
|
: ExportChannelSelector(session, manager)
|
|
, track_output_button(_("Apply track/bus processing"))
|
|
, _syncing_with_manager (false)
|
|
{
|
|
pack_start(main_layout);
|
|
|
|
// Populate Selection Menu
|
|
{
|
|
using namespace Gtk::Menu_Helpers;
|
|
|
|
select_menu.set_text (_("Selection Actions"));
|
|
select_menu.disable_scrolling ();
|
|
|
|
select_menu.AddMenuElem (MenuElem (_("Select all tracks"), sigc::bind (sigc::mem_fun (*this, &TrackExportChannelSelector::select_tracks), 3)));
|
|
select_menu.AddMenuElem (MenuElem (_("Select audio tracks"), sigc::bind (sigc::mem_fun (*this, &TrackExportChannelSelector::select_tracks), 1)));
|
|
select_menu.AddMenuElem (MenuElem (_("Select MIDI tracks"), sigc::bind (sigc::mem_fun (*this, &TrackExportChannelSelector::select_tracks), 2)));
|
|
select_menu.AddMenuElem (MenuElem (_("Select busses"), sigc::mem_fun (*this, &TrackExportChannelSelector::select_busses)));
|
|
select_menu.AddMenuElem (MenuElem (_("Deselect all"), sigc::mem_fun (*this, &TrackExportChannelSelector::select_none)));
|
|
select_menu.AddMenuElem (SeparatorElem ());
|
|
|
|
exclude_hidden = new Gtk::CheckMenuItem (_("Exclude Hidden"));
|
|
exclude_hidden->set_active (false);
|
|
exclude_hidden->show();
|
|
select_menu.AddMenuElem (*exclude_hidden);
|
|
|
|
exclude_muted = new Gtk::CheckMenuItem (_("Exclude Muted"));
|
|
exclude_muted->set_active (true);
|
|
exclude_muted->show();
|
|
select_menu.AddMenuElem (*exclude_muted);
|
|
}
|
|
|
|
// Options
|
|
options_box.set_spacing (8);
|
|
options_box.pack_start (track_output_button, false, false);
|
|
options_box.pack_start (select_menu, false, false);
|
|
main_layout.pack_start (options_box, false, false);
|
|
|
|
// Track scroller
|
|
track_scroller.add (track_view);
|
|
track_scroller.set_size_request (-1, 130);
|
|
track_scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
|
|
main_layout.pack_start(track_scroller);
|
|
|
|
// Track list
|
|
track_list = Gtk::ListStore::create (track_cols);
|
|
track_list->set_sort_column (track_cols.order_key, Gtk::SORT_ASCENDING);
|
|
track_view.set_model (track_list);
|
|
track_view.set_headers_visible (true);
|
|
|
|
track_view.append_column_editable (_("Export"), track_cols.selected);
|
|
Gtk::CellRendererToggle *toggle = dynamic_cast<Gtk::CellRendererToggle *>(track_view.get_column_cell_renderer (0));
|
|
toggle->set_alignment (0.0, 0.5);
|
|
|
|
toggle->signal_toggled().connect (sigc::hide (sigc::mem_fun (*this, &TrackExportChannelSelector::update_config)));
|
|
|
|
Gtk::CellRendererText* text_renderer = Gtk::manage (new Gtk::CellRendererText);
|
|
text_renderer->property_editable() = false;
|
|
text_renderer->set_alignment (0.0, 0.5);
|
|
|
|
Gtk::TreeView::Column* column = Gtk::manage (new Gtk::TreeView::Column);
|
|
column->set_title (_("Track name"));
|
|
|
|
track_view.append_column (*column);
|
|
column->pack_start (*text_renderer, false);
|
|
column->add_attribute (text_renderer->property_text(), track_cols.label);
|
|
|
|
track_output_button.signal_clicked().connect (sigc::mem_fun (*this, &TrackExportChannelSelector::track_outputs_selected));
|
|
|
|
fill_list ();
|
|
|
|
show_all_children ();
|
|
}
|
|
|
|
TrackExportChannelSelector::~TrackExportChannelSelector ()
|
|
{
|
|
delete exclude_hidden;
|
|
delete exclude_muted;
|
|
}
|
|
|
|
void
|
|
TrackExportChannelSelector::sync_with_manager ()
|
|
{
|
|
sync_with_manager_state ();
|
|
update_config();
|
|
}
|
|
|
|
bool
|
|
TrackExportChannelSelector::sync_with_manager_state ()
|
|
{
|
|
auto const& statelist = manager->get_channel_configs ();
|
|
if (!statelist.front()) {
|
|
return true;
|
|
}
|
|
|
|
size_t selected = 0;
|
|
for (auto const& i : track_list->children()) {
|
|
Gtk::TreeModel::Row row = *i;
|
|
if (row[track_cols.selected]) {
|
|
++selected;
|
|
}
|
|
}
|
|
|
|
PBD::Unwinder<bool> uw (_syncing_with_manager, true);
|
|
|
|
auto channel_list = statelist.front()->config->get_channels();
|
|
if (!channel_list.empty ()) {
|
|
if (std::dynamic_pointer_cast <RouteExportChannel> (channel_list.front ())) {
|
|
track_output_button.set_active (false);
|
|
} else {
|
|
track_output_button.set_active (true);
|
|
}
|
|
}
|
|
|
|
if (selected > 0) {
|
|
/* Use Editor Selection */
|
|
return true;
|
|
}
|
|
|
|
for (auto const& state : statelist) {
|
|
ExportChannelConfiguration::ChannelList const& chan_list = state->config->get_channels ();
|
|
|
|
for (auto const& c : chan_list) {
|
|
std::shared_ptr<PortExportMIDI> pem;
|
|
std::shared_ptr<PortExportChannel> pec;
|
|
std::shared_ptr<RouteExportChannel> rec;
|
|
|
|
if ((rec = std::dynamic_pointer_cast <RouteExportChannel> (c))) {
|
|
for (auto const& i : track_list->children ()) {
|
|
Gtk::TreeModel::Row row = *i;
|
|
std::shared_ptr<Route> route = row[track_cols.route];
|
|
if (route == rec->route ()) {
|
|
row[track_cols.selected] = true;
|
|
break;
|
|
}
|
|
}
|
|
} else if ((pem = std::dynamic_pointer_cast<PortExportMIDI> (c))) {
|
|
bool breakout = false;
|
|
for (auto const& i : track_list->children ()) {
|
|
Gtk::TreeModel::Row row = *i;
|
|
std::shared_ptr<Route> route = row[track_cols.route];
|
|
uint32_t n_audio = route->n_outputs().n_audio();
|
|
uint32_t n_midi = route->n_outputs().n_midi();
|
|
if (n_audio > 0 || n_midi == 0) {
|
|
continue;
|
|
}
|
|
for (uint32_t i = 0; i < n_midi; ++i) {
|
|
std::shared_ptr<MidiPort> port = route->output()->midi (i);
|
|
assert (pem->port ());
|
|
if (port && port == pem->port ()) {
|
|
row[track_cols.selected] = true;
|
|
breakout = true;
|
|
}
|
|
}
|
|
if (breakout) {
|
|
continue;
|
|
}
|
|
}
|
|
} else if ((pec = std::dynamic_pointer_cast<PortExportChannel> (c))) {
|
|
for (auto const& i : track_list->children ()) {
|
|
Gtk::TreeModel::Row row = *i;
|
|
std::shared_ptr<Route> route = row[track_cols.route];
|
|
|
|
PortExportChannel::PortSet route_ports;
|
|
PortExportChannel::PortSet intersection;
|
|
|
|
PortSet& ps (route->output()->ports ());
|
|
for (PortSet::audio_iterator p = ps.audio_begin (); p != ps.audio_end (); ++p) {
|
|
route_ports.insert (*p);
|
|
}
|
|
|
|
std::owner_less<std::weak_ptr<AudioPort> > cmp;
|
|
|
|
std::set_intersection (pec->get_ports().begin(), pec->get_ports().end(),
|
|
route_ports.begin(), route_ports.end(),
|
|
std::insert_iterator<PortExportChannel::PortSet> (intersection, intersection.begin ()),
|
|
cmp);
|
|
|
|
if (!intersection.empty()) {
|
|
row[track_cols.selected] = true;
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
assert (0);
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void
|
|
TrackExportChannelSelector::select_tracks (int what)
|
|
{
|
|
bool excl_hidden = exclude_hidden->get_active ();
|
|
bool excl_muted = exclude_muted->get_active ();
|
|
|
|
for (Gtk::ListStore::Children::iterator it = track_list->children().begin(); it != track_list->children().end(); ++it) {
|
|
Gtk::TreeModel::Row row = *it;
|
|
std::shared_ptr<Route> route = row[track_cols.route];
|
|
if (!std::dynamic_pointer_cast<Track> (route)) {
|
|
continue;
|
|
}
|
|
if (0 == (what & 1) && std::dynamic_pointer_cast<AudioTrack> (route)) {
|
|
continue;
|
|
}
|
|
if (0 == (what & 2) && std::dynamic_pointer_cast<MidiTrack> (route)) {
|
|
continue;
|
|
}
|
|
if (excl_muted && route->muted ()) {
|
|
continue;
|
|
}
|
|
if (excl_hidden && route->is_hidden ()) {
|
|
continue;
|
|
}
|
|
row[track_cols.selected] = true;
|
|
}
|
|
update_config();
|
|
}
|
|
|
|
void
|
|
TrackExportChannelSelector::select_busses ()
|
|
{
|
|
bool excl_hidden = exclude_hidden->get_active ();
|
|
bool excl_muted = exclude_muted->get_active ();
|
|
|
|
for (Gtk::ListStore::Children::iterator it = track_list->children().begin(); it != track_list->children().end(); ++it) {
|
|
Gtk::TreeModel::Row row = *it;
|
|
std::shared_ptr<Route> route = row[track_cols.route];
|
|
if (!std::dynamic_pointer_cast<Track> (route)) {
|
|
if (excl_muted && route->muted ()) {
|
|
continue;
|
|
}
|
|
if (excl_hidden && route->is_hidden ()) {
|
|
continue;
|
|
}
|
|
row[track_cols.selected] = true;
|
|
}
|
|
}
|
|
update_config();
|
|
}
|
|
|
|
void
|
|
TrackExportChannelSelector::select_none ()
|
|
{
|
|
for (Gtk::ListStore::Children::iterator it = track_list->children().begin(); it != track_list->children().end(); ++it) {
|
|
Gtk::TreeModel::Row row = *it;
|
|
row[track_cols.selected] = false;
|
|
}
|
|
update_config();
|
|
}
|
|
|
|
void
|
|
TrackExportChannelSelector::track_outputs_selected ()
|
|
{
|
|
if (!_syncing_with_manager) {
|
|
update_config();
|
|
}
|
|
}
|
|
|
|
void
|
|
TrackExportChannelSelector::fill_list()
|
|
{
|
|
track_list->clear();
|
|
RouteList routes = _session->get_routelist();
|
|
|
|
CoreSelection const& cs (_session->selection());
|
|
|
|
for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) {
|
|
if (!std::dynamic_pointer_cast<Track>(*it)) {
|
|
// not a track, must be a bus
|
|
if ((*it)->is_main_bus () && !(*it)->is_surround_master ()) {
|
|
continue;
|
|
}
|
|
if (!(*it)->active ()) {
|
|
// don't include inactive busses
|
|
continue;
|
|
}
|
|
|
|
// not monitor or master bus
|
|
add_track (*it, cs.selected (*it));
|
|
}
|
|
}
|
|
for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) {
|
|
if (std::dynamic_pointer_cast<AudioTrack>(*it) || std::dynamic_pointer_cast<MidiTrack>(*it)) {
|
|
if (!(*it)->active ()) {
|
|
// don't include inactive tracks
|
|
continue;
|
|
}
|
|
add_track (*it, cs.selected (*it));
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
TrackExportChannelSelector::add_track (std::shared_ptr<Route> route, bool selected)
|
|
{
|
|
Gtk::TreeModel::iterator iter = track_list->append();
|
|
Gtk::TreeModel::Row row = *iter;
|
|
|
|
row[track_cols.selected] = selected;
|
|
row[track_cols.label] = route->name();
|
|
row[track_cols.route] = route;
|
|
row[track_cols.order_key] = route->presentation_info().order();
|
|
}
|
|
|
|
void
|
|
TrackExportChannelSelector::update_config()
|
|
{
|
|
manager->clear_channel_configs();
|
|
|
|
for (Gtk::ListStore::Children::iterator it = track_list->children().begin(); it != track_list->children().end(); ++it) {
|
|
Gtk::TreeModel::Row row = *it;
|
|
|
|
if (!row[track_cols.selected]) {
|
|
continue;
|
|
}
|
|
|
|
ExportProfileManager::ChannelConfigStatePtr state;
|
|
|
|
std::shared_ptr<Route> route = row[track_cols.route];
|
|
|
|
if (track_output_button.get_active()) {
|
|
uint32_t n_audio = route->n_outputs().n_audio();
|
|
uint32_t n_midi = route->n_outputs().n_midi();
|
|
for (uint32_t i = 0; i < n_audio; ++i) {
|
|
std::shared_ptr<AudioPort> port = route->output()->audio (i);
|
|
if (port) {
|
|
ExportChannelPtr channel (new PortExportChannel ());
|
|
PortExportChannel * pec = static_cast<PortExportChannel *> (channel.get());
|
|
pec->add_port(port);
|
|
if (!state) {
|
|
state = manager->add_channel_config();
|
|
}
|
|
state->config->register_channel(channel);
|
|
}
|
|
}
|
|
/* ignore MIDI bypass */
|
|
if (n_audio > 0) {
|
|
n_midi = 0;
|
|
}
|
|
for (uint32_t i = 0; i < n_midi; ++i) {
|
|
std::shared_ptr<MidiPort> port = route->output()->midi (i);
|
|
if (port) {
|
|
ExportChannelPtr channel (new PortExportMIDI ());
|
|
PortExportMIDI* pem = static_cast<PortExportMIDI*> (channel.get());
|
|
pem->set_port (port);
|
|
if (!state) {
|
|
state = manager->add_channel_config ();
|
|
}
|
|
state->config->register_channel (channel);
|
|
}
|
|
}
|
|
} else {
|
|
std::list<ExportChannelPtr> list;
|
|
RouteExportChannel::create_from_route (list, route);
|
|
if (list.size () == 0) {
|
|
continue;
|
|
}
|
|
state = manager->add_channel_config();
|
|
state->config->register_channels (list);
|
|
}
|
|
|
|
if (state) {
|
|
if (_session->config.get_track_name_number() && route->track_number() > 0) {
|
|
state->config->set_name (string_compose ("%1-%2", route->track_number(), route->name()));
|
|
} else {
|
|
state->config->set_name (route->name());
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
CriticalSelectionChanged ();
|
|
}
|