forward port automation handling changes from 2.x, upto and including about rev 6981...
[ardour.git] / libs / ardour / delivery.cc
1 /*
2     Copyright (C) 2009 Paul Davis
3
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.
8
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.
13
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.
17 */
18
19 #include <cmath>
20 #include <algorithm>
21
22 #include "pbd/enumwriter.h"
23 #include "pbd/convert.h"
24
25 #include "ardour/midi_buffer.h"
26
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"
38
39 #include "i18n.h"
40
41 using namespace std;
42 using namespace PBD;
43 using namespace ARDOUR;
44
45 PBD::Signal1<void,nframes_t> Delivery::CycleStart;
46 PBD::Signal0<int>           Delivery::PannersLegal;
47 bool                                     Delivery::panners_legal = false;
48
49 /* deliver to an existing IO object */
50
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)
60 {
61         _panner = boost::shared_ptr<Panner>(new Panner (_name, _session));
62         _display_to_user = false;
63
64         if (_output) {
65                 _output->changed.connect_same_thread (*this, boost::bind (&Delivery::output_changed, this, _1, _2));
66         }
67
68         CycleStart.connect_same_thread (*this, boost::bind (&Delivery::cycle_start, this, _1));
69 }
70
71 /* deliver to a new IO object */
72
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)
82 {
83         _panner = boost::shared_ptr<Panner>(new Panner (_name, _session));
84         _display_to_user = false;
85
86         if (_output) {
87                 _output->changed.connect_same_thread (*this, boost::bind (&Delivery::output_changed, this, _1, _2));
88         }
89
90         CycleStart.connect_same_thread (*this, boost::bind (&Delivery::cycle_start, this, _1));
91 }
92
93
94 Delivery::~Delivery()
95 {
96         delete _output_buffers;
97 }
98
99 std::string
100 Delivery::display_name () const
101 {
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();
113         }
114 }
115
116 void
117 Delivery::cycle_start (nframes_t /*nframes*/)
118 {
119         _output_offset = 0;
120         _no_outs_cuz_we_no_monitor = false;
121 }
122
123 void
124 Delivery::increment_output_offset (nframes_t n)
125 {
126         _output_offset += n;
127 }
128
129 bool
130 Delivery::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
131 {
132         if (_role == Main) {
133
134                 /* the out buffers will be set to point to the port output buffers
135                    of our output object.
136                 */
137
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;
147                         }
148                 } else {
149                         fatal << "programming error: this should never be reached" << endmsg;
150                         /*NOTREACHED*/
151                 }
152
153
154         } else if (_role == Insert) {
155
156                 /* the output buffers will be filled with data from the *input* ports
157                    of this Insert.
158                 */
159
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;
168                         }
169                 } else {
170                         fatal << "programming error: this should never be reached" << endmsg;
171                         /*NOTREACHED*/
172                 }
173
174         } else {
175                 fatal << "programming error: this should never be reached" << endmsg;
176         }
177
178         return false;
179 }
180
181 bool
182 Delivery::configure_io (ChanCount in, ChanCount out)
183 {
184         /* check configuration by comparison with our I/O port configuration, if appropriate.
185            see ::can_support_io_configuration() for comments
186         */
187
188         if (_role == Main) {
189
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 */
196                                 }
197                         }
198                 }
199
200         } else if (_role == Insert) {
201
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 */
209                                 }
210                         }
211                 }
212         }
213
214         if (!Processor::configure_io (in, out)) {
215                 return false;
216         }
217
218         reset_panner ();
219
220         return true;
221 }
222
223 void
224 Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, nframes_t nframes, bool result_required)
225 {
226         assert (_output);
227
228         PortSet& ports (_output->ports());
229         gain_t tgain;
230
231         if (_output->n_ports ().get (_output->default_type()) == 0) {
232                 goto out;
233         }
234
235         if (!_active && !_pending_active) {
236                 _output->silence (nframes);
237                 goto out;
238         }
239
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.
242         */
243
244         output_buffers().attach_buffers (ports, nframes, _output_offset);
245
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.
250
251         tgain = target_gain ();
252
253         if (tgain != _current_gain) {
254                 /* target gain has changed */
255
256                 Amp::apply_gain (bufs, nframes, _current_gain, tgain);
257                 _current_gain = tgain;
258
259         } else if (tgain == 0.0) {
260
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,
263                 */
264
265                 _output->silence (nframes);
266                 if (result_required) {
267                         Amp::apply_simple_gain (bufs, nframes, 0.0);
268                 }
269                 goto out;
270
271         } else if (tgain != 1.0) {
272
273                 /* target gain has not changed, but is not unity */
274                 Amp::apply_simple_gain (bufs, nframes, tgain);
275         }
276
277         if (_panner && _panner->npanners() && !_panner->bypassed()) {
278
279                 // Use the panner to distribute audio to output port buffers
280
281                 _panner->run (bufs, output_buffers(), start_frame, end_frame, nframes);
282
283                 if (result_required) {
284                         bufs.read_from (output_buffers (), nframes);
285                 }
286
287         } else {
288
289                 // Do a 1:1 copy of data to output ports
290
291                 if (bufs.count().n_audio() > 0 && ports.count().n_audio () > 0) {
292                         _output->copy_to_outputs (bufs, DataType::AUDIO, nframes, _output_offset);
293                 }
294
295                 if (bufs.count().n_midi() > 0 && ports.count().n_midi () > 0) {
296                         _output->copy_to_outputs (bufs, DataType::MIDI, nframes, _output_offset);
297                 }
298                 
299                         
300         }
301
302   out:
303         _active = _pending_active;
304 }
305
306 XMLNode&
307 Delivery::state (bool full_state)
308 {
309         XMLNode& node (IOProcessor::state (full_state));
310
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");
317         }
318
319         node.add_property("role", enum_2_string(_role));
320         node.add_child_nocopy (_panner->state (full_state));
321
322         return node;
323 }
324
325 int
326 Delivery::set_state (const XMLNode& node, int version)
327 {
328         const XMLProperty* prop;
329
330         if (IOProcessor::set_state (node, version)) {
331                 return -1;
332         }
333
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";
339         }
340
341         XMLNode* pan_node = node.child (X_("Panner"));
342
343         if (pan_node) {
344                 _panner->set_state (*pan_node, version);
345         }
346
347         reset_panner ();
348
349         return 0;
350 }
351
352 void
353 Delivery::reset_panner ()
354 {
355         if (panners_legal) {
356                 if (!no_panner_reset) {
357
358                         uint32_t ntargets;
359
360                         if (_output) {
361                                 ntargets = _output->n_ports().n_audio();
362                         } else {
363                                 ntargets = _configured_output.n_audio();
364                         }
365
366                         _panner->reset (ntargets, pans_required());
367                 }
368         } else {
369                 panner_legal_c.disconnect ();
370                 PannersLegal.connect_same_thread (panner_legal_c, boost::bind (&Delivery::panners_became_legal, this));
371         }
372 }
373
374 int
375 Delivery::panners_became_legal ()
376 {
377         uint32_t ntargets;
378
379         if (_output) {
380                 ntargets = _output->n_ports().n_audio();
381         } else {
382                 ntargets = _configured_output.n_audio();
383         }
384
385         _panner->reset (ntargets, pans_required());
386         _panner->load (); // automation
387         panner_legal_c.disconnect ();
388         return 0;
389 }
390
391 void
392 Delivery::defer_pan_reset ()
393 {
394         no_panner_reset = true;
395 }
396
397 void
398 Delivery::allow_pan_reset ()
399 {
400         no_panner_reset = false;
401         reset_panner ();
402 }
403
404
405 int
406 Delivery::disable_panners (void)
407 {
408         panners_legal = false;
409         return 0;
410 }
411
412 int
413 Delivery::reset_panners ()
414 {
415         panners_legal = true;
416         return *PannersLegal ();
417 }
418
419
420 void
421 Delivery::start_pan_touch (uint32_t which, double when)
422 {
423         if (which < _panner->npanners()) {
424                 _panner->pan_control(which)->start_touch(when);
425         }
426 }
427
428 void
429 Delivery::end_pan_touch (uint32_t which, bool mark, double when)
430 {
431         if (which < _panner->npanners()) {
432                 _panner->pan_control(which)->stop_touch(mark, when);
433         }
434
435 }
436
437
438 void
439 Delivery::flush_buffers (nframes_t nframes, nframes64_t time)
440 {
441         /* io_lock, not taken: function must be called from Session::process() calltree */
442
443         PortSet& ports (_output->ports());
444         
445         for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
446                 (*i).flush_buffers (nframes, time, _output_offset);
447         }
448 }
449
450 void
451 Delivery::transport_stopped (framepos_t now)
452 {
453         Processor::transport_stopped (now);
454
455         _panner->transport_stopped (now);
456
457         if (_output) {
458                 PortSet& ports (_output->ports());
459                 
460                 for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
461                         (*i).transport_stopped ();
462                 }
463         }
464 }
465
466 gain_t
467 Delivery::target_gain ()
468 {
469         /* if we've been requested to deactivate, our target gain is zero */
470
471         if (!_pending_active) {
472                 return 0.0;
473         }
474
475         /* if we've been told not to output because its a monitoring situation and
476            we're not monitoring, then be quiet.
477         */
478
479         if (_no_outs_cuz_we_no_monitor) {
480                 return 0.0;
481         }
482
483         MuteMaster::MutePoint mp = MuteMaster::Main; // stupid gcc uninit warning
484         
485         switch (_role) {
486         case Main:
487                 mp = MuteMaster::Main;
488                 break;
489         case Listen:
490                 mp = MuteMaster::Listen;
491                 break;
492         case Send:
493         case Insert:
494         case Aux:
495                 if (_pre_fader) {
496                         mp = MuteMaster::PreFader;
497                 } else {
498                         mp = MuteMaster::PostFader;
499                 }
500                 break;
501         }
502
503         gain_t desired_gain = _mute_master->mute_gain_at (mp);
504         
505         if (_role == Listen && _session.monitor_out() && !_session.listening()) {
506                 
507                 /* nobody is soloed, and this delivery is a listen-send to the
508                    control/monitor/listen bus, we should be silent since
509                    it gets its signal from the master out.
510                 */
511                 
512                 desired_gain = 0.0;
513                 
514         } 
515
516         return desired_gain;
517 }
518
519 void
520 Delivery::no_outs_cuz_we_no_monitor (bool yn)
521 {
522         _no_outs_cuz_we_no_monitor = yn;
523 }
524
525 bool
526 Delivery::set_name (const std::string& name)
527 {
528         bool ret = IOProcessor::set_name (name);
529
530         if (ret) {
531                 ret = _panner->set_name (name);
532         }
533
534         return ret;
535 }
536
537 void
538 Delivery::output_changed (IOChange change, void* /*src*/)
539 {
540         if (change & ARDOUR::ConfigurationChanged) {
541                 reset_panner ();
542         }
543 }
544