X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Froute_group.cc;h=7b24a88114d5eca3b4941799f8aed41019e754f2;hb=79f01bc889d6c928345214eaba9016c6396bcfca;hp=1fdccbd393824c0c3dd33c940d18048757869ccc;hpb=12a3e9b879270e1411d0827c58f55d9becba326f;p=ardour.git diff --git a/libs/ardour/route_group.cc b/libs/ardour/route_group.cc index 1fdccbd393..7b24a88114 100644 --- a/libs/ardour/route_group.cc +++ b/libs/ardour/route_group.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2009 Paul Davis + Copyright (C) 2000-2016 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 @@ -21,20 +21,23 @@ #include - #include "pbd/error.h" #include "pbd/enumwriter.h" #include "pbd/strsplit.h" +#include "pbd/types_convert.h" +#include "pbd/debug.h" #include "ardour/amp.h" +#include "ardour/audio_track.h" #include "ardour/debug.h" +#include "ardour/monitor_control.h" +#include "ardour/route.h" #include "ardour/route_group.h" -#include "ardour/audio_track.h" -#include "ardour/audio_diskstream.h" -#include "ardour/configuration.h" #include "ardour/session.h" +#include "ardour/vca.h" +#include "ardour/vca_manager.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace ARDOUR; using namespace PBD; @@ -42,54 +45,72 @@ using namespace std; namespace ARDOUR { namespace Properties { - PropertyDescriptor relative; PropertyDescriptor active; - PropertyDescriptor gain; - PropertyDescriptor mute; - PropertyDescriptor solo; - PropertyDescriptor recenable; - PropertyDescriptor select; - PropertyDescriptor edit; - } + PropertyDescriptor group_relative; + PropertyDescriptor group_gain; + PropertyDescriptor group_mute; + PropertyDescriptor group_solo; + PropertyDescriptor group_recenable; + PropertyDescriptor group_select; + PropertyDescriptor group_route_active; + PropertyDescriptor group_color; + PropertyDescriptor group_monitoring; + PropertyDescriptor group_master_number; + } } void RouteGroup::make_property_quarks () { - Properties::relative.property_id = g_quark_from_static_string (X_("relative")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for relative = %1\n", Properties::relative.property_id)); Properties::active.property_id = g_quark_from_static_string (X_("active")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for active = %1\n", Properties::active.property_id)); - Properties::hidden.property_id = g_quark_from_static_string (X_("hidden")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for hidden = %1\n", Properties::hidden.property_id)); - Properties::gain.property_id = g_quark_from_static_string (X_("gain")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for gain = %1\n", Properties::gain.property_id)); - Properties::mute.property_id = g_quark_from_static_string (X_("mute")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for mute = %1\n", Properties::mute.property_id)); - Properties::solo.property_id = g_quark_from_static_string (X_("solo")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for solo = %1\n", Properties::solo.property_id)); - Properties::recenable.property_id = g_quark_from_static_string (X_("recenable")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for recenable = %1\n", Properties::recenable.property_id)); - Properties::select.property_id = g_quark_from_static_string (X_("select")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for select = %1\n", Properties::select.property_id)); - Properties::edit.property_id = g_quark_from_static_string (X_("edit")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for edit = %1\n", Properties::edit.property_id)); -} - -#define ROUTE_GROUP_DEFAULT_PROPERTIES _relative (Properties::relative, false) \ - , _active (Properties::active, false) \ + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for active = %1\n", Properties::active.property_id)); + + Properties::group_relative.property_id = g_quark_from_static_string (X_("relative")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for relative = %1\n", Properties::group_relative.property_id)); + Properties::group_gain.property_id = g_quark_from_static_string (X_("gain")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for gain = %1\n", Properties::group_gain.property_id)); + Properties::group_mute.property_id = g_quark_from_static_string (X_("mute")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for mute = %1\n", Properties::group_mute.property_id)); + Properties::group_solo.property_id = g_quark_from_static_string (X_("solo")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for solo = %1\n", Properties::group_solo.property_id)); + Properties::group_recenable.property_id = g_quark_from_static_string (X_("recenable")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for recenable = %1\n", Properties::group_recenable.property_id)); + Properties::group_select.property_id = g_quark_from_static_string (X_("select")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for select = %1\n", Properties::group_select.property_id)); + Properties::group_route_active.property_id = g_quark_from_static_string (X_("route-active")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for route-active = %1\n", Properties::group_route_active.property_id)); + Properties::group_color.property_id = g_quark_from_static_string (X_("color")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for color = %1\n", Properties::group_color.property_id)); + Properties::group_monitoring.property_id = g_quark_from_static_string (X_("monitoring")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for monitoring = %1\n", Properties::group_monitoring.property_id)); + Properties::group_master_number.property_id = g_quark_from_static_string (X_("group-master-number")); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for group-master-number = %1\n", Properties::group_master_number.property_id)); +} + +#define ROUTE_GROUP_DEFAULT_PROPERTIES _relative (Properties::group_relative, true) \ + , _active (Properties::active, true) \ , _hidden (Properties::hidden, false) \ - , _gain (Properties::gain, false) \ - , _mute (Properties::mute, false) \ - , _solo (Properties::solo, false) \ - , _recenable (Properties::recenable, false) \ - , _select (Properties::select, false) \ - , _edit (Properties::edit, false) + , _gain (Properties::group_gain, true) \ + , _mute (Properties::group_mute, true) \ + , _solo (Properties::group_solo, true) \ + , _recenable (Properties::group_recenable, true) \ + , _select (Properties::group_select, true) \ + , _route_active (Properties::group_route_active, true) \ + , _color (Properties::group_color, true) \ + , _monitoring (Properties::group_monitoring, true) \ + , _group_master_number (Properties::group_master_number, -1) RouteGroup::RouteGroup (Session& s, const string &n) : SessionObject (s, n) , routes (new RouteList) , ROUTE_GROUP_DEFAULT_PROPERTIES + , _solo_group (new ControlGroup (SoloAutomation)) + , _mute_group (new ControlGroup (MuteAutomation)) + , _rec_enable_group (new ControlGroup (RecEnableAutomation)) + , _gain_group (new GainControlGroup ()) + , _monitoring_group (new ControlGroup (MonitoringAutomation)) + , _rgba (0) + , _used_to_share_gain (false) { _xml_node_name = X_("RouteGroup"); @@ -101,17 +122,32 @@ RouteGroup::RouteGroup (Session& s, const string &n) add_property (_solo); add_property (_recenable); add_property (_select); - add_property (_edit); + add_property (_route_active); + add_property (_color); + add_property (_monitoring); + add_property (_group_master_number); } RouteGroup::~RouteGroup () { + _solo_group->clear (); + _mute_group->clear (); + _gain_group->clear (); + _rec_enable_group->clear (); + _monitoring_group->clear (); + + boost::shared_ptr vca (group_master.lock()); + for (RouteList::iterator i = routes->begin(); i != routes->end();) { RouteList::iterator tmp = i; ++tmp; - (*i)->leave_route_group (); - + (*i)->set_route_group (0); + + if (vca) { + (*i)->unassign (vca); + } + i = tmp; } } @@ -122,19 +158,40 @@ RouteGroup::~RouteGroup () int RouteGroup::add (boost::shared_ptr r) { + if (r->is_master()) { + return 0; + } + if (find (routes->begin(), routes->end(), r) != routes->end()) { return 0; } - - r->leave_route_group (); + + if (r->route_group()) { + r->route_group()->remove (r); + } routes->push_back (r); - r->join_route_group (this); + _solo_group->add_control (r->solo_control()); + _mute_group->add_control (r->mute_control()); + _gain_group->add_control (r->gain_control()); + boost::shared_ptr trk = boost::dynamic_pointer_cast (r); + if (trk) { + _rec_enable_group->add_control (trk->rec_enable_control()); + _monitoring_group->add_control (trk->monitoring_control()); + } + + r->set_route_group (this); r->DropReferences.connect_same_thread (*this, boost::bind (&RouteGroup::remove_when_going_away, this, boost::weak_ptr (r))); - + + boost::shared_ptr vca (group_master.lock()); + + if (vca) { + r->assign (vca); + } + _session.set_dirty (); - MembershipChanged (); /* EMIT SIGNAL */ + RouteAdded (this, boost::weak_ptr (r)); /* EMIT SIGNAL */ return 0; } @@ -154,74 +211,70 @@ RouteGroup::remove (boost::shared_ptr r) RouteList::iterator i; if ((i = find (routes->begin(), routes->end(), r)) != routes->end()) { - r->leave_route_group (); + r->set_route_group (0); + + boost::shared_ptr vca = group_master.lock(); + + if (vca) { + r->unassign (vca); + } + + _solo_group->remove_control (r->solo_control()); + _mute_group->remove_control (r->mute_control()); + _gain_group->remove_control (r->gain_control()); + boost::shared_ptr trk = boost::dynamic_pointer_cast (r); + if (trk) { + _rec_enable_group->remove_control (trk->rec_enable_control()); + _monitoring_group->remove_control (trk->monitoring_control()); + } routes->erase (i); _session.set_dirty (); - MembershipChanged (); /* EMIT SIGNAL */ + RouteRemoved (this, boost::weak_ptr (r)); /* EMIT SIGNAL */ return 0; } return -1; } +void +RouteGroup::set_rgba (uint32_t color) { + _rgba = color; -gain_t -RouteGroup::get_min_factor(gain_t factor) -{ - gain_t g; - - for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) { - g = (*i)->amp()->gain(); - - if ( (g+g*factor) >= 0.0f) - continue; - - if ( g <= 0.0000003f ) - return 0.0f; + PBD::PropertyChange change; + change.add (Properties::color); + PropertyChanged (change); - factor = 0.0000003f/g - 1.0f; + if (!is_color ()) { + return; } - return factor; -} - -gain_t -RouteGroup::get_max_factor(gain_t factor) -{ - gain_t g; - - for (RouteList::iterator i = routes->begin(); i != routes->end(); i++) { - g = (*i)->amp()->gain(); - // if the current factor woulnd't raise this route above maximum - if ( (g+g*factor) <= 1.99526231f) - continue; - - // if route gain is already at peak, return 0.0f factor - if (g>=1.99526231f) - return 0.0f; - - // factor is calculated so that it would raise current route to max - factor = 1.99526231f/g - 1.0f; + for (RouteList::const_iterator i = routes->begin(); i != routes->end(); ++i) { + (*i)->presentation_info().PropertyChanged (Properties::color); } - - return factor; } XMLNode& -RouteGroup::get_state (void) +RouteGroup::get_state () { XMLNode *node = new XMLNode ("RouteGroup"); - + + node->set_property ("id", id()); + node->set_property ("rgba", _rgba); + node->set_property ("used-to-share-gain", _used_to_share_gain); + if (_subgroup_bus) { + node->set_property ("subgroup-bus", _subgroup_bus->id ()); + } + add_properties (*node); if (!routes->empty()) { stringstream str; - + for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) { str << (*i)->id () << ' '; } - node->add_property ("routes", str.str()); + node->set_property ("routes", str.str()); } return *node; @@ -234,25 +287,48 @@ RouteGroup::set_state (const XMLNode& node, int version) return set_state_2X (node, version); } + set_id (node); set_values (node); + node.get_property ("rgba", _rgba); + node.get_property ("used-to-share-gain", _used_to_share_gain); - const XMLProperty *prop; - - if ((prop = node.property ("routes")) != 0) { - stringstream str (prop->value()); + std::string routes; + if (node.get_property ("routes", routes)) { + stringstream str (routes); vector ids; split (str.str(), ids, ' '); - + for (vector::iterator i = ids.begin(); i != ids.end(); ++i) { PBD::ID id (*i); boost::shared_ptr r = _session.route_by_id (id); - + if (r) { add (r); - } + } } } + PBD::ID subgroup_id (0); + if (node.get_property ("subgroup-bus", subgroup_id)) { + boost::shared_ptr r = _session.route_by_id (subgroup_id); + if (r) { + _subgroup_bus = r; + } + } + + if (_group_master_number.val() > 0) { + boost::shared_ptr vca = _session.vca_manager().vca_by_number (_group_master_number.val()); + if (vca) { + /* no need to do the assignment because slaves will + handle that themselves. But we can set group_master + to use with future assignments of newly added routes. + */ + group_master = vca; + } + } + + push_to_groups (); + return 0; } @@ -266,15 +342,19 @@ RouteGroup::set_state_2X (const XMLNode& node, int /*version*/) _mute = true; _solo = true; _recenable = true; - _edit = false; + _route_active = true; + _color = false; } else if (node.name() == "EditGroup") { _gain = false; _mute = false; _solo = false; _recenable = false; - _edit = true; + _route_active = false; + _color = false; } + push_to_groups (); + return 0; } @@ -284,7 +364,11 @@ RouteGroup::set_gain (bool yn) if (is_gain() == yn) { return; } + _gain = yn; + _gain_group->set_active (yn); + + send_change (PropertyChange (Properties::group_gain)); } void @@ -294,6 +378,9 @@ RouteGroup::set_mute (bool yn) return; } _mute = yn; + _mute_group->set_active (yn); + + send_change (PropertyChange (Properties::group_mute)); } void @@ -303,6 +390,9 @@ RouteGroup::set_solo (bool yn) return; } _solo = yn; + _solo_group->set_active (yn); + + send_change (PropertyChange (Properties::group_solo)); } void @@ -312,6 +402,8 @@ RouteGroup::set_recenable (bool yn) return; } _recenable = yn; + _rec_enable_group->set_active (yn); + send_change (PropertyChange (Properties::group_recenable)); } void @@ -321,15 +413,52 @@ RouteGroup::set_select (bool yn) return; } _select = yn; + send_change (PropertyChange (Properties::group_select)); +} + +void +RouteGroup::set_route_active (bool yn) +{ + if (is_route_active() == yn) { + return; + } + _route_active = yn; + send_change (PropertyChange (Properties::group_route_active)); +} + +void +RouteGroup::set_color (bool yn) +{ + if (is_color() == yn) { + return; + } + _color = yn; + + send_change (PropertyChange (Properties::group_color)); + + /* This is a bit of a hack, but this might change + our route's effective color, so emit gui_changed + for our routes. + */ + + for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) { + (*i)->gui_changed (X_("color"), this); + } } void -RouteGroup::set_edit (bool yn) +RouteGroup::set_monitoring (bool yn) { - if (is_edit() == yn) { + if (is_monitoring() == yn) { return; } - _edit = yn; + + _monitoring = yn; + _monitoring_group->set_active (yn); + + send_change (PropertyChange (Properties::group_monitoring)); + + _session.set_dirty (); } void @@ -340,8 +469,10 @@ RouteGroup::set_active (bool yn, void* /*src*/) } _active = yn; + + push_to_groups (); + send_change (PropertyChange (Properties::active)); - _session.set_dirty (); } @@ -351,7 +482,12 @@ RouteGroup::set_relative (bool yn, void* /*src*/) if (is_relative() == yn) { return; } + _relative = yn; + + push_to_groups (); + + send_change (PropertyChange (Properties::group_relative)); _session.set_dirty (); } @@ -361,6 +497,7 @@ RouteGroup::set_hidden (bool yn, void* /*src*/) if (is_hidden() == yn) { return; } + if (yn) { _hidden = true; if (Config->get_hiding_groups_deactivates_groups()) { @@ -372,6 +509,9 @@ RouteGroup::set_hidden (bool yn, void* /*src*/) _active = true; } } + + send_change (Properties::hidden); + _session.set_dirty (); } @@ -396,36 +536,44 @@ RouteGroup::make_subgroup (bool aux, Placement placement) for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) { if ((*i)->output()->n_ports().n_midi() != 0) { - PBD::info << _("You cannot subgroup MIDI tracks at this time") << endmsg; + PBD::warning << _("You cannot subgroup MIDI tracks at this time") << endmsg; return; } } for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) { + if (!aux && nin != 0 && nin != (*i)->output()->n_ports().n_audio()) { + PBD::warning << _("You cannot subgroup tracks with different number of outputs at this time.") << endmsg; + return; + } nin = max (nin, (*i)->output()->n_ports().n_audio()); } try { - /* use master bus etc. to determine default nouts */ - rl = _session.new_audio_route (nin, 2, 0, 1); + /* use master bus etc. to determine default nouts. + * + * (since tracks can't have fewer outs than ins, + * "nin" currently defines the number of outpus if nin > 2) + */ + rl = _session.new_audio_route (nin, 2, 0, 1, string(), PresentationInfo::AudioBus, PresentationInfo::max_order); } catch (...) { return; } - subgroup_bus = rl.front(); - subgroup_bus->set_name (_name); + _subgroup_bus = rl.front(); + _subgroup_bus->set_name (_name); if (aux) { - _session.add_internal_sends (subgroup_bus, placement, routes); + _session.add_internal_sends (_subgroup_bus, placement, routes); } else { - boost::shared_ptr bundle = subgroup_bus->input()->bundle (); - + boost::shared_ptr bundle = _subgroup_bus->input()->bundle (); + for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) { (*i)->output()->disconnect (this); - (*i)->output()->connect_ports_to_bundle (bundle, this); + (*i)->output()->connect_ports_to_bundle (bundle, false, this); } } } @@ -433,17 +581,23 @@ RouteGroup::make_subgroup (bool aux, Placement placement) void RouteGroup::destroy_subgroup () { - if (!subgroup_bus) { + if (!_subgroup_bus) { return; } - + for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) { (*i)->output()->disconnect (this); /* XXX find a new bundle to connect to */ } - _session.remove_route (subgroup_bus); - subgroup_bus.reset (); + _session.remove_route (_subgroup_bus); + _subgroup_bus.reset (); +} + +bool +RouteGroup::has_subgroup() const +{ + return _subgroup_bus != 0; } bool @@ -456,3 +610,97 @@ RouteGroup::enabled_property (PBD::PropertyID prop) return dynamic_cast* > (i->second)->val (); } + +void +RouteGroup::post_set (PBD::PropertyChange const &) +{ + push_to_groups (); +} + +void +RouteGroup::push_to_groups () +{ + if (is_relative()) { + _gain_group->set_mode (ControlGroup::Mode (_gain_group->mode()|ControlGroup::Relative)); + } else { + _gain_group->set_mode (ControlGroup::Mode (_gain_group->mode()&~ControlGroup::Relative)); + } + + if (_active) { + _gain_group->set_active (is_gain()); + _solo_group->set_active (is_solo()); + _mute_group->set_active (is_mute()); + _rec_enable_group->set_active (is_recenable()); + _monitoring_group->set_active (is_monitoring()); + } else { + _gain_group->set_active (false); + _solo_group->set_active (false); + _mute_group->set_active (false); + + _rec_enable_group->set_active (false); + _monitoring_group->set_active (false); + } +} + +void +RouteGroup::assign_master (boost::shared_ptr master) +{ + if (!routes || routes->empty()) { + return; + } + + boost::shared_ptr front = routes->front (); + + if (front->slaved_to (master)) { + return; + } + + for (RouteList::iterator r = routes->begin(); r != routes->end(); ++r) { + (*r)->assign (master); + } + + group_master = master; + _group_master_number = master->number(); + + _used_to_share_gain = is_gain (); + set_gain (false); +} + +void +RouteGroup::unassign_master (boost::shared_ptr master) +{ + if (!routes || routes->empty()) { + return; + } + + boost::shared_ptr front = routes->front (); + + if (!front->slaved_to (master)) { + return; + } + + for (RouteList::iterator r = routes->begin(); r != routes->end(); ++r) { + (*r)->unassign (master); + } + + group_master.reset (); + _group_master_number = -1; + + set_gain (_used_to_share_gain); +} + +bool +RouteGroup::slaved () const +{ + if (!routes || routes->empty()) { + return false; + } + + return routes->front()->slaved (); +} + +bool +RouteGroup::has_control_master() const +{ + return group_master.lock() != 0; +}