Stop saving of garbage values to LADSPA preset files when an output parameter is...
[ardour.git] / libs / ardour / route_group.cc
index 5b998d22f765de7d093efcf65ada5a308f1a1d7c..ce760563acef7b480ccd3eb85f60e77451b63e71 100644 (file)
@@ -17,7 +17,6 @@
 
 */
 
-#define __STDC_FORMAT_MACROS
 #include <inttypes.h>
 
 #include <algorithm>
@@ -28,6 +27,7 @@
 #include "pbd/strsplit.h"
 
 #include "ardour/amp.h"
+#include "ardour/debug.h"
 #include "ardour/route_group.h"
 #include "ardour/audio_track.h"
 #include "ardour/audio_diskstream.h"
@@ -40,9 +40,6 @@ using namespace ARDOUR;
 using namespace PBD;
 using namespace std;
 
-PropertyChange RouteGroup::FlagsChange = new_change ();
-PropertyChange RouteGroup::PropertiesChange = new_change ();
-
 namespace ARDOUR {
        namespace Properties {
                PropertyDescriptor<bool> relative;
@@ -53,39 +50,52 @@ namespace ARDOUR {
                PropertyDescriptor<bool> recenable;
                PropertyDescriptor<bool> select;
                PropertyDescriptor<bool> edit;
+               PropertyDescriptor<bool> route_active;
        }       
 }
 
 void
 RouteGroup::make_property_quarks ()
 {
-       Properties::relative.id = g_quark_from_static_string (X_("relative"));
-       Properties::active.id = g_quark_from_static_string (X_("active"));
-       Properties::hidden.id = g_quark_from_static_string (X_("hidden"));
-       Properties::gain.id = g_quark_from_static_string (X_("gain"));
-       Properties::mute.id = g_quark_from_static_string (X_("mute"));
-       Properties::solo.id = g_quark_from_static_string (X_("solo"));
-       Properties::recenable.id = g_quark_from_static_string (X_("recenable"));
-       Properties::select.id = g_quark_from_static_string (X_("select"));
-       Properties::edit.id = g_quark_from_static_string (X_("edit"));
+       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));
+       Properties::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::route_active.property_id));
 }
 
-#define ROUTE_GROUP_DEFAULT_PROPERTIES  _relative (Properties::relative, FlagsChange, false) \
-       , _active (Properties::active, FlagsChange, false) \
-       , _hidden (Properties::hidden, FlagsChange, false) \
-       , _gain (Properties::gain, PropertiesChange, false) \
-       , _mute (Properties::mute, PropertiesChange, false) \
-       , _solo (Properties::solo, PropertiesChange , false) \
-       , _recenable (Properties::recenable, PropertiesChange, false) \
-       , _select (Properties::select, PropertiesChange, false) \
-       , _edit (Properties::edit, PropertiesChange , false)
+#define ROUTE_GROUP_DEFAULT_PROPERTIES  _relative (Properties::relative, false) \
+       , _active (Properties::active, false) \
+       , _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) \
+       , _route_active (Properties::route_active, false)
 
 RouteGroup::RouteGroup (Session& s, const string &n)
        : SessionObject (s, n)
        , routes (new RouteList)
        , ROUTE_GROUP_DEFAULT_PROPERTIES
 {
-       _xml_node_name = X_("RegionGroup");
+       _xml_node_name = X_("RouteGroup");
 
        add_property (_relative);
        add_property (_active);
@@ -96,6 +106,7 @@ RouteGroup::RouteGroup (Session& s, const string &n)
        add_property (_recenable);
        add_property (_select);
        add_property (_edit);
+       add_property (_route_active);
 }
 
 RouteGroup::~RouteGroup ()
@@ -128,7 +139,7 @@ RouteGroup::add (boost::shared_ptr<Route> r)
        r->DropReferences.connect_same_thread (*this, boost::bind (&RouteGroup::remove_when_going_away, this, boost::weak_ptr<Route> (r)));
        
        _session.set_dirty ();
-       changed (); /* EMIT SIGNAL */
+       MembershipChanged (); /* EMIT SIGNAL */
        return 0;
 }
 
@@ -151,7 +162,7 @@ RouteGroup::remove (boost::shared_ptr<Route> r)
                r->leave_route_group ();
                routes->erase (i);
                _session.set_dirty ();
-               changed (); /* EMIT SIGNAL */
+               MembershipChanged (); /* EMIT SIGNAL */
                return 0;
        }
 
@@ -164,7 +175,7 @@ RouteGroup::get_min_factor(gain_t factor)
 {
        gain_t g;
 
-       for (RouteList::iterator i = routes->begin(); i != routes->end(); i++) {
+       for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) {
                g = (*i)->amp()->gain();
 
                if ( (g+g*factor) >= 0.0f)
@@ -228,6 +239,8 @@ RouteGroup::set_state (const XMLNode& node, int version)
                return set_state_2X (node, version);
        }
 
+       set_values (node);
+
        const XMLProperty *prop;
 
        if ((prop = node.property ("routes")) != 0) {
@@ -251,7 +264,7 @@ RouteGroup::set_state (const XMLNode& node, int version)
 int
 RouteGroup::set_state_2X (const XMLNode& node, int /*version*/)
 {
-       set_properties (node);
+       set_values (node);
 
        if (node.name() == "MixGroup") {
                _gain = true;
@@ -259,12 +272,14 @@ RouteGroup::set_state_2X (const XMLNode& node, int /*version*/)
                _solo = true;
                _recenable = true;
                _edit = false;
+               _route_active = true;
        } else if (node.name() == "EditGroup") {
                _gain = false;
                _mute = false;
                _solo = false;
                _recenable = false;
                _edit = true;
+               _route_active = false;
        }
 
        return 0;
@@ -325,30 +340,39 @@ RouteGroup::set_edit (bool yn)
 }
 
 void
-RouteGroup::set_active (bool yn, void *src)
+RouteGroup::set_route_active (bool yn)
+{
+       if (is_route_active() == yn) {
+               return;
+       }
+       _route_active = yn;
+}
+
+void
+RouteGroup::set_active (bool yn, void* /*src*/)
 {
        if (is_active() == yn) {
                return;
        }
+
        _active = yn;
+       send_change (PropertyChange (Properties::active));
+               
        _session.set_dirty ();
-       FlagsChanged (src); /* EMIT SIGNAL */
 }
 
 void
-RouteGroup::set_relative (bool yn, void *src)
-
+RouteGroup::set_relative (bool yn, void* /*src*/)
 {
        if (is_relative() == yn) {
                return;
        }
        _relative = yn;
        _session.set_dirty ();
-       FlagsChanged (src); /* EMIT SIGNAL */
 }
 
 void
-RouteGroup::set_hidden (bool yn, void *src)
+RouteGroup::set_hidden (bool yn, void* /*src*/)
 {
        if (is_hidden() == yn) {
                return;
@@ -365,7 +389,6 @@ RouteGroup::set_hidden (bool yn, void *src)
                }
        }
        _session.set_dirty ();
-       FlagsChanged (src); /* EMIT SIGNAL */
 }
 
 void
@@ -380,7 +403,7 @@ RouteGroup::audio_track_group (set<boost::shared_ptr<AudioTrack> >& ats)
 }
 
 void
-RouteGroup::make_subgroup ()
+RouteGroup::make_subgroup (bool aux, Placement placement)
 {
        RouteList rl;
        uint32_t nin = 0;
@@ -400,7 +423,7 @@ RouteGroup::make_subgroup ()
 
        try {
                /* use master bus etc. to determine default nouts */
-               rl = _session.new_audio_route (false, nin, 2, 0, 1);
+               rl = _session.new_audio_route (nin, 2, 0, 1);
        } catch (...) {
                return;
        }
@@ -408,11 +431,18 @@ RouteGroup::make_subgroup ()
        subgroup_bus = rl.front();
        subgroup_bus->set_name (_name);
 
-       boost::shared_ptr<Bundle> bundle = subgroup_bus->input()->bundle ();
+       if (aux) {
 
-       for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) {
-               (*i)->output()->disconnect (this);
-               (*i)->output()->connect_ports_to_bundle (bundle, this);
+               _session.add_internal_sends (subgroup_bus, placement, routes);
+
+       } else {
+
+               boost::shared_ptr<Bundle> 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);
+               }
        }
 }
 
@@ -435,25 +465,10 @@ RouteGroup::destroy_subgroup ()
 bool
 RouteGroup::enabled_property (PBD::PropertyID prop)
 {
-       if (Properties::relative.id == prop) {
-               return is_relative();
-       } else if (Properties::active.id == prop) {
-               return is_active();
-       } else if (Properties::hidden.id == prop) {
-               return is_hidden();
-       } else if (Properties::gain.id == prop) {
-               return is_gain();
-       } else if (Properties::mute.id == prop) {
-               return is_mute();
-       } else if (Properties::solo.id == prop) {
-               return is_solo();
-       } else if (Properties::recenable.id == prop) {
-               return is_recenable();
-       } else if (Properties::select.id == prop) {
-               return is_select();
-       } else if (Properties::edit.id == prop) {
-               return is_edit();
+       OwnedPropertyList::iterator i = _properties->find (prop);
+       if (i == _properties->end()) {
+               return false;
        }
 
-       return false;
+       return dynamic_cast<const PropertyTemplate<bool>* > (i->second)->val ();
 }