handle sidechain input changes
[ardour.git] / libs / ardour / track.cc
index 2d46c601321857f4b93e3c28e9b72849c34e1638..f279eae3069cbab3dfcedad52c45868b2357c238 100644 (file)
@@ -64,6 +64,7 @@ Track::init ()
        boost::shared_ptr<Track> rt = boost::dynamic_pointer_cast<Track> (rp);
        _rec_enable_control = boost::shared_ptr<RecEnableControl> (new RecEnableControl(rt));
        _rec_enable_control->set_flags (Controllable::Toggle);
+        _monitoring_control.reset (new MonitoringControllable (X_("monitoring"), rt));
 
        /* don't add rec_enable_control to controls because we don't want it to
         * appear as an automatable parameter
@@ -100,9 +101,9 @@ Track::state (bool full)
        root.add_property (X_("saved-meter-point"), enum_2_string (_saved_meter_point));
        root.add_child_nocopy (_rec_enable_control->get_state());
        root.add_child_nocopy (_diskstream->get_state ());
-       
+
        return root;
-}      
+}
 
 int
 Track::set_state (const XMLNode& node, int version)
@@ -140,7 +141,7 @@ Track::set_state (const XMLNode& node, int version)
                        }
                }
        }
-       
+
        const XMLProperty* prop;
 
        if ((prop = node.property (X_("monitoring"))) != 0) {
@@ -190,14 +191,30 @@ Track::RecEnableControl::RecEnableControl (boost::shared_ptr<Track> t)
 }
 
 void
-Track::RecEnableControl::set_value (double val)
+Track::RecEnableControl::set_value (double val, Controllable::GroupControlDisposition group_override)
+{
+       if (writable()) {
+               _set_value (val, group_override);
+       }
+}
+
+void
+Track::RecEnableControl::set_value_unchecked (double val)
+{
+       if (writable()) {
+               _set_value (val, Controllable::NoGroup);
+       }
+}
+
+void
+Track::RecEnableControl::_set_value (double val, Controllable::GroupControlDisposition group_override)
 {
        boost::shared_ptr<Track> t = track.lock ();
        if (!t) {
                return;
        }
-       
-       t->set_record_enabled (val >= 0.5 ? true : false, this);
+
+       t->set_record_enabled (val >= 0.5 ? true : false, group_override);
 }
 
 double
@@ -207,7 +224,7 @@ Track::RecEnableControl::get_value () const
        if (!t) {
                return 0;
        }
-       
+
        return (t->record_enabled() ? 1.0 : 0.0);
 }
 
@@ -230,12 +247,12 @@ Track::can_record()
 }
 
 void
-Track::prep_record_enabled (bool yn, void *src)
+Track::prep_record_enabled (bool yn, Controllable::GroupControlDisposition group_override)
 {
        if (yn && record_safe ()) {
            return;
        }
-       
+
        if (!_session.writable()) {
                return;
        }
@@ -244,8 +261,8 @@ Track::prep_record_enabled (bool yn, void *src)
                return;
        }
 
-       if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_recenable()) {
-               _route_group->apply (&Track::prep_record_enabled, yn, _route_group);
+       if (use_group (group_override, &RouteGroup::is_recenable)) {
+               _route_group->apply (&Track::prep_record_enabled, yn, Controllable::NoGroup);
                return;
        }
 
@@ -255,7 +272,7 @@ Track::prep_record_enabled (bool yn, void *src)
        }
 
        bool will_follow;
-       
+
        if (yn) {
                will_follow = _diskstream->prep_record_enable ();
        } else {
@@ -274,12 +291,12 @@ Track::prep_record_enabled (bool yn, void *src)
 }
 
 void
-Track::set_record_enabled (bool yn, void *src)
+Track::set_record_enabled (bool yn, Controllable::GroupControlDisposition group_override)
 {
        if (_diskstream->record_safe ()) {
            return;
        }
-       
+
        if (!_session.writable()) {
                return;
        }
@@ -288,8 +305,8 @@ Track::set_record_enabled (bool yn, void *src)
                return;
        }
 
-       if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_recenable()) {
-               _route_group->apply (&Track::set_record_enabled, yn, _route_group);
+       if (use_group (group_override, &RouteGroup::is_recenable)) {
+               _route_group->apply (&Track::set_record_enabled, yn, Controllable::NoGroup);
                return;
        }
 
@@ -305,21 +322,21 @@ Track::record_safe () const
 }
 
 void
-Track::set_record_safe (bool yn, void *src)
+Track::set_record_safe (bool yn, Controllable::GroupControlDisposition group_override)
 {
-       if (!_session.writable()) { /* REQUIRES REVIEW */
+       if (!_session.writable()) {
                return;
        }
-       
-       if (_freeze_record.state == Frozen) { /* REQUIRES REVIEW */
+
+       if (_freeze_record.state == Frozen) {
                return;
        }
-       
-       if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_recenable()) {
-               _route_group->apply (&Track::set_record_safe, yn, _route_group);
+
+       if (use_group (group_override, &RouteGroup::is_recenable)) {
+               _route_group->apply (&Track::set_record_safe, yn, Controllable::NoGroup);
                return;
        }
-       
+
        _diskstream->set_record_safe (yn);
 }
 
@@ -474,12 +491,12 @@ Track::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
                be_silent = false;
                break;
        }
-       
+
        //if we have an internal generator, let it play regardless of monitoring state
        if (_have_internal_generator) {
                be_silent = false;
        }
-       
+
        _amp->apply_gain_automation (false);
 
        /* if have_internal_generator, or .. */
@@ -528,7 +545,7 @@ Track::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
        } else {
 
                BufferSet& bufs = _session.get_route_buffers (n_process_buffers());
-               
+
                fill_buffers_with_input (bufs, _input, nframes);
 
                if (_meter_point == MeterInput) {
@@ -932,9 +949,9 @@ Track::adjust_capture_buffering ()
 
 #ifdef USE_TRACKS_CODE_FEATURES
 
-/* This is the Tracks version of Track::monitoring_state(). 
+/* This is the Tracks version of Track::monitoring_state().
  *
- * Ardour developers: try to flag or fix issues if parts of the libardour API 
+ * Ardour developers: try to flag or fix issues if parts of the libardour API
  * change in ways that invalidate this
  */
 
@@ -942,11 +959,11 @@ MonitorState
 Track::monitoring_state () const
 {
        /* Explicit requests */
-       
+
        if (_monitoring & MonitorInput) {
                return MonitoringInput;
        }
-               
+
        if (_monitoring & MonitorDisk) {
                return MonitoringDisk;
        }
@@ -954,16 +971,16 @@ Track::monitoring_state () const
        /* This is an implementation of the truth table in doc/monitor_modes.pdf;
           I don't think it's ever going to be too pretty too look at.
        */
-       
+
        // GZ: NOT USED IN TRACKS
        //bool const auto_input = _session.config.get_auto_input ();
        //bool const software_monitor = Config->get_monitoring_model() == SoftwareMonitoring;
        //bool const tape_machine_mode = Config->get_tape_machine_mode ();
-       
+
        bool const roll = _session.transport_rolling ();
        bool const track_rec = _diskstream->record_enabled ();
        bool session_rec = _session.actively_recording ();
-       
+
        if (track_rec) {
 
                if (!session_rec && roll) {
@@ -984,7 +1001,7 @@ Track::monitoring_state () const
 
 #else
 
-/* This is the Ardour/Mixbus version of Track::monitoring_state(). 
+/* This is the Ardour/Mixbus version of Track::monitoring_state().
  *
  * Tracks developers: do NOT modify this method under any circumstances.
  */
@@ -993,11 +1010,11 @@ MonitorState
 Track::monitoring_state () const
 {
        /* Explicit requests */
-       
+
        if (_monitoring & MonitorInput) {
                return MonitoringInput;
        }
-               
+
        if (_monitoring & MonitorDisk) {
                return MonitoringDisk;
        }
@@ -1046,7 +1063,7 @@ Track::monitoring_state () const
                        } else {
                                return MonitoringDisk;
                        }
-                       
+
                }
        }
 
@@ -1111,12 +1128,17 @@ Track::check_initial_delay (framecnt_t nframes, framepos_t& transport_frame)
 
        }
 
-       return nframes; 
+       return nframes;
 }
 
 void
-Track::set_monitoring (MonitorChoice mc)
+Track::set_monitoring (MonitorChoice mc, Controllable::GroupControlDisposition gcd)
 {
+       if (use_group (gcd, &RouteGroup::is_monitoring)) {
+               _route_group->apply (&Track::set_monitoring, mc, Controllable::NoGroup);
+               return;
+       }
+
        if (mc !=  _monitoring) {
                _monitoring = mc;
 
@@ -1125,6 +1147,7 @@ Track::set_monitoring (MonitorChoice mc)
                }
 
                MonitoringChanged (); /* EMIT SIGNAL */
+               _monitoring_control->Changed (); /* EMIT SIGNAL */
        }
 }
 
@@ -1142,3 +1165,56 @@ Track::metering_state () const
        return rv ? MeteringInput : MeteringRoute;
 }
 
+Track::MonitoringControllable::MonitoringControllable (std::string name, boost::shared_ptr<Track> r)
+       : RouteAutomationControl (name, MonitoringAutomation, boost::shared_ptr<AutomationList>(), r)
+{
+       boost::shared_ptr<AutomationList> gl(new AutomationList(Evoral::Parameter(MonitoringAutomation)));
+       gl->set_interpolation(Evoral::ControlList::Discrete);
+       set_list (gl);
+}
+
+void
+Track::MonitoringControllable::set_value (double val, Controllable::GroupControlDisposition gcd)
+{
+       _set_value (val, gcd);
+}
+
+void
+Track::MonitoringControllable::_set_value (double val, Controllable::GroupControlDisposition gcd)
+{
+       boost::shared_ptr<Route> r = _route.lock();
+       if (!r) {
+               return;
+       }
+
+       boost::shared_ptr<Track> t = boost::dynamic_pointer_cast<Track> (r);
+       if (!t) {
+               return;
+       }
+
+       int mc = (int) val;
+
+       if (mc < MonitorAuto || mc > MonitorDisk) {
+               return;
+       }
+
+       /* no group effect at present */
+
+       t->set_monitoring ((MonitorChoice) mc, gcd);
+}
+
+double
+Track::MonitoringControllable::get_value () const
+{
+       boost::shared_ptr<Route> r = _route.lock();
+       if (!r) {
+               return 0.0;
+       }
+
+       boost::shared_ptr<Track> t = boost::dynamic_pointer_cast<Track> (r);
+       if (!t) {
+               return 0.0;
+       }
+
+       return t->monitoring_choice();
+}