add route group support for monitoring choices
[ardour.git] / libs / ardour / route_group.cc
index ce760563acef7b480ccd3eb85f60e77451b63e71..188ec71f8710ddaa28a5be728916316ae4548c76 100644 (file)
@@ -51,7 +51,9 @@ namespace ARDOUR {
                PropertyDescriptor<bool> select;
                PropertyDescriptor<bool> edit;
                PropertyDescriptor<bool> route_active;
-       }       
+               PropertyDescriptor<bool> color;
+               PropertyDescriptor<bool> monitoring;
+       }
 }
 
 void
@@ -77,6 +79,10 @@ RouteGroup::make_property_quarks ()
         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));
+       Properties::color.property_id = g_quark_from_static_string (X_("color"));
+        DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for color = %1\n",       Properties::color.property_id));
+       Properties::monitoring.property_id = g_quark_from_static_string (X_("monitoring"));
+        DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for monitoring = %1\n",       Properties::monitoring.property_id));
 }
 
 #define ROUTE_GROUP_DEFAULT_PROPERTIES  _relative (Properties::relative, false) \
@@ -88,7 +94,9 @@ RouteGroup::make_property_quarks ()
        , _recenable (Properties::recenable, false) \
        , _select (Properties::select, false) \
        , _edit (Properties::edit, false) \
-       , _route_active (Properties::route_active, false)
+       , _route_active (Properties::route_active, false) \
+       , _color (Properties::color, false) \
+       , _monitoring (Properties::monitoring, false)
 
 RouteGroup::RouteGroup (Session& s, const string &n)
        : SessionObject (s, n)
@@ -107,6 +115,8 @@ RouteGroup::RouteGroup (Session& s, const string &n)
        add_property (_select);
        add_property (_edit);
        add_property (_route_active);
+       add_property (_color);
+       add_property (_monitoring);
 }
 
 RouteGroup::~RouteGroup ()
@@ -116,7 +126,7 @@ RouteGroup::~RouteGroup ()
                ++tmp;
 
                (*i)->leave_route_group ();
-               
+
                i = tmp;
        }
 }
@@ -130,16 +140,16 @@ RouteGroup::add (boost::shared_ptr<Route> r)
        if (find (routes->begin(), routes->end(), r) != routes->end()) {
                return 0;
        }
-       
+
        r->leave_route_group ();
 
        routes->push_back (r);
 
        r->join_route_group (this);
        r->DropReferences.connect_same_thread (*this, boost::bind (&RouteGroup::remove_when_going_away, this, boost::weak_ptr<Route> (r)));
-       
+
        _session.set_dirty ();
-       MembershipChanged (); /* EMIT SIGNAL */
+       RouteAdded (this, boost::weak_ptr<Route> (r)); /* EMIT SIGNAL */
        return 0;
 }
 
@@ -162,7 +172,7 @@ RouteGroup::remove (boost::shared_ptr<Route> r)
                r->leave_route_group ();
                routes->erase (i);
                _session.set_dirty ();
-               MembershipChanged (); /* EMIT SIGNAL */
+               RouteRemoved (this, boost::weak_ptr<Route> (r)); /* EMIT SIGNAL */
                return 0;
        }
 
@@ -171,57 +181,62 @@ RouteGroup::remove (boost::shared_ptr<Route> r)
 
 
 gain_t
-RouteGroup::get_min_factor(gain_t factor)
+RouteGroup::get_min_factor (gain_t factor)
 {
-       gain_t g;
-
        for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) {
-               g = (*i)->amp()->gain();
+               gain_t const g = (*i)->amp()->gain();
 
-               if ( (g+g*factor) >= 0.0f)
+               if ((g + g * factor) >= 0.0f) {
                        continue;
+               }
 
-               if ( g <= 0.0000003f )
+               if (g <= 0.0000003f) {
                        return 0.0f;
+               }
 
-               factor = 0.0000003f/g - 1.0f;
+               factor = 0.0000003f / g - 1.0f;
        }
+       
        return factor;
 }
 
 gain_t
-RouteGroup::get_max_factor(gain_t factor)
+RouteGroup::get_max_factor (gain_t factor)
 {
-       gain_t g;
-
        for (RouteList::iterator i = routes->begin(); i != routes->end(); i++) {
-               g = (*i)->amp()->gain();
+               gain_t const g = (*i)->amp()->gain();
 
                // if the current factor woulnd't raise this route above maximum
-               if ( (g+g*factor) <= 1.99526231f)
+               if ((g + g * factor) <= 1.99526231f) {
                        continue;
+               }
 
                // if route gain is already at peak, return 0.0f factor
-           if (g>=1.99526231f)
+               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;
+               factor = 1.99526231f / g - 1.0f;
        }
 
        return factor;
 }
 
 XMLNode&
-RouteGroup::get_state (void)
+RouteGroup::get_state ()
 {
        XMLNode *node = new XMLNode ("RouteGroup");
-       
+
+       char buf[64];
+       id().print (buf, sizeof (buf));
+       node->add_property ("id", buf);
+
        add_properties (*node);
 
        if (!routes->empty()) {
                stringstream str;
-               
+
                for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) {
                        str << (*i)->id () << ' ';
                }
@@ -239,22 +254,23 @@ RouteGroup::set_state (const XMLNode& node, int version)
                return set_state_2X (node, version);
        }
 
-       set_values (node);
-
        const XMLProperty *prop;
 
+       set_id (node);
+       set_values (node);
+
        if ((prop = node.property ("routes")) != 0) {
                stringstream str (prop->value());
                vector<string> ids;
                split (str.str(), ids, ' ');
-               
+
                for (vector<string>::iterator i = ids.begin(); i != ids.end(); ++i) {
                        PBD::ID id (*i);
                        boost::shared_ptr<Route> r = _session.route_by_id (id);
-                       
+
                        if (r) {
                                add (r);
-                       } 
+                       }
                }
        }
 
@@ -273,6 +289,7 @@ RouteGroup::set_state_2X (const XMLNode& node, int /*version*/)
                _recenable = true;
                _edit = false;
                _route_active = true;
+               _color = false;
        } else if (node.name() == "EditGroup") {
                _gain = false;
                _mute = false;
@@ -280,6 +297,7 @@ RouteGroup::set_state_2X (const XMLNode& node, int /*version*/)
                _recenable = false;
                _edit = true;
                _route_active = false;
+               _color = false;
        }
 
        return 0;
@@ -348,6 +366,37 @@ RouteGroup::set_route_active (bool yn)
        _route_active = yn;
 }
 
+void
+RouteGroup::set_color (bool yn)
+{
+       if (is_color() == yn) {
+               return;
+       }
+       _color = yn;
+
+       /* 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_monitoring (bool yn) 
+{
+       if (is_monitoring() == yn) {
+               return;
+       }
+
+       _monitoring = yn;
+       send_change (PropertyChange (Properties::monitoring));
+
+       _session.set_dirty ();
+}
+
 void
 RouteGroup::set_active (bool yn, void* /*src*/)
 {
@@ -357,7 +406,7 @@ RouteGroup::set_active (bool yn, void* /*src*/)
 
        _active = yn;
        send_change (PropertyChange (Properties::active));
-               
+
        _session.set_dirty ();
 }
 
@@ -377,6 +426,7 @@ RouteGroup::set_hidden (bool yn, void* /*src*/)
        if (is_hidden() == yn) {
                return;
        }
+
        if (yn) {
                _hidden = true;
                if (Config->get_hiding_groups_deactivates_groups()) {
@@ -388,6 +438,9 @@ RouteGroup::set_hidden (bool yn, void* /*src*/)
                        _active = true;
                }
        }
+
+       send_change (Properties::hidden);
+
        _session.set_dirty ();
 }
 
@@ -438,7 +491,7 @@ RouteGroup::make_subgroup (bool aux, Placement placement)
        } 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);
@@ -452,7 +505,7 @@ RouteGroup::destroy_subgroup ()
        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 */