second (and hopefully) final part of changes to respond to header format changes...
[ArdourMidi.git] / libs / ardour / delivery.cc
blobe6c93e529796182af9e2cbc8a24c53705c0bb142
1 /*
2 Copyright (C) 2009 Paul Davis
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2 of the License, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 for more details.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation, Inc.,
16 675 Mass Ave, Cambridge, MA 02139, USA.
19 #include <cmath>
20 #include <algorithm>
22 #include "pbd/enumwriter.h"
23 #include "pbd/convert.h"
25 #include "ardour/midi_buffer.h"
27 #include "ardour/delivery.h"
28 #include "ardour/audio_buffer.h"
29 #include "ardour/amp.h"
30 #include "ardour/buffer_set.h"
31 #include "ardour/configuration.h"
32 #include "ardour/io.h"
33 #include "ardour/meter.h"
34 #include "ardour/mute_master.h"
35 #include "ardour/panner.h"
36 #include "ardour/port.h"
37 #include "ardour/session.h"
39 #include "i18n.h"
41 using namespace std;
42 using namespace PBD;
43 using namespace ARDOUR;
45 PBD::Signal1<void,nframes_t> Delivery::CycleStart;
46 PBD::Signal0<int> Delivery::PannersLegal;
47 bool Delivery::panners_legal = false;
49 /* deliver to an existing IO object */
51 Delivery::Delivery (Session& s, boost::shared_ptr<IO> io, boost::shared_ptr<MuteMaster> mm, const string& name, Role r)
52 : IOProcessor(s, boost::shared_ptr<IO>(), (role_requires_output_ports (r) ? io : boost::shared_ptr<IO>()), name)
53 , _role (r)
54 , _output_buffers (new BufferSet())
55 , _current_gain (1.0)
56 , _output_offset (0)
57 , _no_outs_cuz_we_no_monitor (false)
58 , _mute_master (mm)
59 , no_panner_reset (false)
61 _panner = boost::shared_ptr<Panner>(new Panner (_name, _session));
62 _display_to_user = false;
64 if (_output) {
65 _output->changed.connect_same_thread (*this, boost::bind (&Delivery::output_changed, this, _1, _2));
68 CycleStart.connect_same_thread (*this, boost::bind (&Delivery::cycle_start, this, _1));
71 /* deliver to a new IO object */
73 Delivery::Delivery (Session& s, boost::shared_ptr<MuteMaster> mm, const string& name, Role r)
74 : IOProcessor(s, false, (role_requires_output_ports (r) ? true : false), name)
75 , _role (r)
76 , _output_buffers (new BufferSet())
77 , _current_gain (1.0)
78 , _output_offset (0)
79 , _no_outs_cuz_we_no_monitor (false)
80 , _mute_master (mm)
81 , no_panner_reset (false)
83 _panner = boost::shared_ptr<Panner>(new Panner (_name, _session));
84 _display_to_user = false;
86 if (_output) {
87 _output->changed.connect_same_thread (*this, boost::bind (&Delivery::output_changed, this, _1, _2));
90 CycleStart.connect_same_thread (*this, boost::bind (&Delivery::cycle_start, this, _1));
94 Delivery::~Delivery()
96 delete _output_buffers;
99 std::string
100 Delivery::display_name () const
102 switch (_role) {
103 case Main:
104 return _("main outs");
105 break;
106 case Listen:
107 return _("listen");
108 break;
109 case Send:
110 case Insert:
111 default:
112 return name();
116 void
117 Delivery::cycle_start (nframes_t /*nframes*/)
119 _output_offset = 0;
120 _no_outs_cuz_we_no_monitor = false;
123 void
124 Delivery::increment_output_offset (nframes_t n)
126 _output_offset += n;
129 bool
130 Delivery::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
132 if (_role == Main) {
134 /* the out buffers will be set to point to the port output buffers
135 of our output object.
138 if (_output) {
139 if (_output->n_ports() != ChanCount::ZERO) {
140 /* increase number of output ports if the processor chain requires it */
141 out = ChanCount::max (_output->n_ports(), in);
142 return true;
143 } else {
144 /* not configured yet - we will passthru */
145 out = in;
146 return true;
148 } else {
149 fatal << "programming error: this should never be reached" << endmsg;
150 /*NOTREACHED*/
154 } else if (_role == Insert) {
156 /* the output buffers will be filled with data from the *input* ports
157 of this Insert.
160 if (_input) {
161 if (_input->n_ports() != ChanCount::ZERO) {
162 out = _input->n_ports();
163 return true;
164 } else {
165 /* not configured yet - we will passthru */
166 out = in;
167 return true;
169 } else {
170 fatal << "programming error: this should never be reached" << endmsg;
171 /*NOTREACHED*/
174 } else {
175 fatal << "programming error: this should never be reached" << endmsg;
178 return false;
181 bool
182 Delivery::configure_io (ChanCount in, ChanCount out)
184 /* check configuration by comparison with our I/O port configuration, if appropriate.
185 see ::can_support_io_configuration() for comments
188 if (_role == Main) {
190 if (_output) {
191 if (_output->n_ports() != out) {
192 if (_output->n_ports() != ChanCount::ZERO) {
193 _output->ensure_io (out, false, this);
194 } else {
195 /* I/O not yet configured */
200 } else if (_role == Insert) {
202 if (_input) {
203 if (_input->n_ports() != in) {
204 if (_input->n_ports() != ChanCount::ZERO) {
205 fatal << _name << " programming error: configure_io called with " << in << " and " << out << " with " << _input->n_ports() << " input ports" << endmsg;
206 /*NOTREACHED*/
207 } else {
208 /* I/O not yet configured */
214 if (!Processor::configure_io (in, out)) {
215 return false;
218 reset_panner ();
220 return true;
223 void
224 Delivery::run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes, bool result_required)
226 assert (_output);
228 PortSet& ports (_output->ports());
229 gain_t tgain;
231 if (_output->n_ports ().get (_output->default_type()) == 0) {
232 goto out;
235 if (!_active && !_pending_active) {
236 _output->silence (nframes);
237 goto out;
240 /* this setup is not just for our purposes, but for anything that comes after us in the
241 processing pathway that wants to use this->output_buffers() for some reason.
244 output_buffers().attach_buffers (ports, nframes, _output_offset);
246 // this Delivery processor is not a derived type, and thus we assume
247 // we really can modify the buffers passed in (it is almost certainly
248 // the main output stage of a Route). Contrast with Send::run()
249 // which cannot do this.
251 tgain = target_gain ();
253 if (tgain != _current_gain) {
254 /* target gain has changed */
256 Amp::apply_gain (bufs, nframes, _current_gain, tgain);
257 _current_gain = tgain;
259 } else if (tgain == 0.0) {
261 /* we were quiet last time, and we're still supposed to be quiet.
262 Silence the outputs, and make sure the buffers are quiet too,
265 _output->silence (nframes);
266 if (result_required) {
267 Amp::apply_simple_gain (bufs, nframes, 0.0);
269 goto out;
271 } else if (tgain != 1.0) {
273 /* target gain has not changed, but is not unity */
274 Amp::apply_simple_gain (bufs, nframes, tgain);
277 if (_panner && _panner->npanners() && !_panner->bypassed()) {
279 // Use the panner to distribute audio to output port buffers
281 _panner->run (bufs, output_buffers(), start_frame, end_frame, nframes);
283 if (result_required) {
284 bufs.read_from (output_buffers (), nframes);
287 } else {
289 // Do a 1:1 copy of data to output ports
291 if (bufs.count().n_audio() > 0 && ports.count().n_audio () > 0) {
292 _output->copy_to_outputs (bufs, DataType::AUDIO, nframes, _output_offset);
295 if (bufs.count().n_midi() > 0 && ports.count().n_midi () > 0) {
296 _output->copy_to_outputs (bufs, DataType::MIDI, nframes, _output_offset);
302 out:
303 _active = _pending_active;
306 XMLNode&
307 Delivery::state (bool full_state)
309 XMLNode& node (IOProcessor::state (full_state));
311 if (_role & Main) {
312 node.add_property("type", "main-outs");
313 } else if (_role & Listen) {
314 node.add_property("type", "listen");
315 } else {
316 node.add_property("type", "delivery");
319 node.add_property("role", enum_2_string(_role));
320 node.add_child_nocopy (_panner->state (full_state));
322 return node;
326 Delivery::set_state (const XMLNode& node, int version)
328 const XMLProperty* prop;
330 if (IOProcessor::set_state (node, version)) {
331 return -1;
334 if ((prop = node.property ("role")) != 0) {
335 _role = Role (string_2_enum (prop->value(), _role));
336 // std::cerr << this << ' ' << _name << " set role to " << enum_2_string (_role) << std::endl;
337 } else {
338 // std::cerr << this << ' ' << _name << " NO ROLE INFO\n";
341 XMLNode* pan_node = node.child (X_("Panner"));
343 if (pan_node) {
344 _panner->set_state (*pan_node, version);
347 reset_panner ();
349 return 0;
352 void
353 Delivery::reset_panner ()
355 if (panners_legal) {
356 if (!no_panner_reset) {
358 uint32_t ntargets;
360 if (_output) {
361 ntargets = _output->n_ports().n_audio();
362 } else {
363 ntargets = _configured_output.n_audio();
366 _panner->reset (ntargets, pans_required());
368 } else {
369 panner_legal_c.disconnect ();
370 PannersLegal.connect_same_thread (panner_legal_c, boost::bind (&Delivery::panners_became_legal, this));
375 Delivery::panners_became_legal ()
377 uint32_t ntargets;
379 if (_output) {
380 ntargets = _output->n_ports().n_audio();
381 } else {
382 ntargets = _configured_output.n_audio();
385 _panner->reset (ntargets, pans_required());
386 _panner->load (); // automation
387 panner_legal_c.disconnect ();
388 return 0;
391 void
392 Delivery::defer_pan_reset ()
394 no_panner_reset = true;
397 void
398 Delivery::allow_pan_reset ()
400 no_panner_reset = false;
401 reset_panner ();
406 Delivery::disable_panners (void)
408 panners_legal = false;
409 return 0;
413 Delivery::reset_panners ()
415 panners_legal = true;
416 return *PannersLegal ();
420 void
421 Delivery::start_pan_touch (uint32_t which)
423 if (which < _panner->npanners()) {
424 _panner->pan_control(which)->start_touch();
428 void
429 Delivery::end_pan_touch (uint32_t which)
431 if (which < _panner->npanners()) {
432 _panner->pan_control(which)->stop_touch();
437 void
438 Delivery::transport_stopped (sframes_t frame)
440 _panner->transport_stopped (frame);
443 void
444 Delivery::flush (nframes_t nframes, nframes64_t time)
446 /* io_lock, not taken: function must be called from Session::process() calltree */
448 PortSet& ports (_output->ports());
450 for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
451 (*i).flush_buffers (nframes, time, _output_offset);
455 void
456 Delivery::transport_stopped ()
458 /* turn off any notes that are on */
460 PortSet& ports (_output->ports());
462 for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
463 (*i).transport_stopped ();
467 gain_t
468 Delivery::target_gain ()
470 /* if we've been requested to deactivate, our target gain is zero */
472 if (!_pending_active) {
473 return 0.0;
476 /* if we've been told not to output because its a monitoring situation and
477 we're not monitoring, then be quiet.
480 if (_no_outs_cuz_we_no_monitor) {
481 return 0.0;
484 MuteMaster::MutePoint mp = MuteMaster::Main; // stupid gcc uninit warning
486 switch (_role) {
487 case Main:
488 mp = MuteMaster::Main;
489 break;
490 case Listen:
491 mp = MuteMaster::Listen;
492 break;
493 case Send:
494 case Insert:
495 case Aux:
496 if (_pre_fader) {
497 mp = MuteMaster::PreFader;
498 } else {
499 mp = MuteMaster::PostFader;
501 break;
504 gain_t desired_gain = _mute_master->mute_gain_at (mp);
506 if (_role == Listen && _session.monitor_out() && !_session.listening()) {
508 /* nobody is soloed, and this delivery is a listen-send to the
509 control/monitor/listen bus, we should be silent since
510 it gets its signal from the master out.
513 desired_gain = 0.0;
517 return desired_gain;
520 void
521 Delivery::no_outs_cuz_we_no_monitor (bool yn)
523 _no_outs_cuz_we_no_monitor = yn;
526 bool
527 Delivery::set_name (const std::string& name)
529 bool ret = IOProcessor::set_name (name);
531 if (ret) {
532 ret = _panner->set_name (name);
535 return ret;
538 void
539 Delivery::output_changed (IOChange change, void* /*src*/)
541 if (change & ARDOUR::ConfigurationChanged) {
542 reset_panner ();