Save/restore aux send levels. Fixes #3546.
[ardour.git] / libs / ardour / send.cc
1 /*
2     Copyright (C) 2000 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <algorithm>
22
23 #include "pbd/xml++.h"
24
25 #include "ardour/amp.h"
26 #include "ardour/send.h"
27 #include "ardour/session.h"
28 #include "ardour/port.h"
29 #include "ardour/audio_port.h"
30 #include "ardour/buffer_set.h"
31 #include "ardour/meter.h"
32 #include "ardour/panner.h"
33 #include "ardour/io.h"
34
35 #include "i18n.h"
36
37 using namespace ARDOUR;
38 using namespace PBD;
39 using namespace std;
40
41 Send::Send (Session& s, boost::shared_ptr<MuteMaster> mm, Role r)
42         : Delivery (s, mm, string_compose (_("send %1"), (_bitslot = s.next_send_id()) + 1), r)
43         , _metering (false)
44 {
45         _amp.reset (new Amp (_session));
46         _meter.reset (new PeakMeter (_session));
47 }
48
49 Send::~Send ()
50 {
51         _session.unmark_send_id (_bitslot);
52 }
53
54 void
55 Send::activate ()
56 {
57         _amp->activate ();
58         _meter->activate ();
59
60         Processor::activate ();
61 }
62
63 void
64 Send::deactivate ()
65 {
66         _amp->deactivate ();
67         _meter->deactivate ();
68         _meter->reset ();
69         
70         Processor::deactivate ();
71 }
72
73 void
74 Send::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, nframes_t nframes, bool)
75 {
76         if (_output->n_ports() == ChanCount::ZERO) {
77                 _meter->reset ();
78                 _active = _pending_active;
79                 return;
80         }
81
82         if (!_active && !_pending_active) {
83                 _meter->reset ();
84                 _output->silence (nframes);
85                 _active = _pending_active;
86                 return;
87         }
88
89         // we have to copy the input, because deliver_output() may alter the buffers
90         // in-place, which a send must never do.
91
92         BufferSet& sendbufs = _session.get_mix_buffers (bufs.count());
93         sendbufs.read_from (bufs, nframes);
94         assert(sendbufs.count() == bufs.count());
95
96         /* gain control */
97
98         // Can't automate gain for sends or returns yet because we need different buffers
99         // so that we don't overwrite the main automation data for the route amp
100         // _amp->setup_gain_automation (start_frame, end_frame, nframes);
101         _amp->run (sendbufs, start_frame, end_frame, nframes, true);
102
103         /* deliver to outputs */
104
105         Delivery::run (sendbufs, start_frame, end_frame, nframes, true);
106
107         /* consider metering */
108
109         if (_metering) {
110                 if (_amp->gain_control()->get_value() == 0) {
111                         _meter->reset();
112                 } else {
113                         _meter->run (*_output_buffers, start_frame, end_frame, nframes, true);
114                 }
115         }
116
117         /* _active was set to _pending_active by Delivery::run() */
118 }
119
120 XMLNode&
121 Send::get_state(void)
122 {
123         return state (true);
124 }
125
126 XMLNode&
127 Send::state (bool full)
128 {
129         XMLNode& node = Delivery::state(full);
130         char buf[32];
131
132         node.add_property ("type", "send");
133         snprintf (buf, sizeof (buf), "%" PRIu32, _bitslot);
134         node.add_property ("bitslot", buf);
135
136         node.add_child_nocopy (_amp->state (full));
137
138         return node;
139 }
140
141 int
142 Send::set_state (const XMLNode& node, int version)
143 {
144         if (version < 3000) {
145                 return set_state_2X (node, version);
146         }
147         
148         const XMLProperty* prop;
149
150         Delivery::set_state (node, version);
151
152         /* don't try to reset bitslot if its already set: this can cause
153            issues with the session's accounting of send ID's
154         */
155
156         if ((prop = node.property ("bitslot")) == 0) {
157                 _bitslot = _session.next_send_id();
158         } else {
159                 _session.unmark_send_id (_bitslot);
160                 sscanf (prop->value().c_str(), "%" PRIu32, &_bitslot);
161                 _session.mark_send_id (_bitslot);
162         }
163
164         XMLNodeList nlist = node.children();
165         for (XMLNodeIterator i = nlist.begin(); i != nlist.end(); ++i) {
166                 if ((*i)->name() == X_("Processor")) {
167                         _amp->set_state (**i, version);
168                 }
169         }
170
171         return 0;
172 }
173
174 int
175 Send::set_state_2X (const XMLNode& node, int /* version */)
176 {
177         /* use the IO's name for the name of the send */
178         XMLNodeList const & children = node.children ();
179
180         XMLNodeList::const_iterator i = children.begin();
181         while (i != children.end() && (*i)->name() != X_("Redirect")) {
182                 ++i;
183         }
184
185         if (i == children.end()) {
186                 return -1;
187         }
188
189         XMLNodeList const & grand_children = (*i)->children ();
190         XMLNodeList::const_iterator j = grand_children.begin ();
191         while (j != grand_children.end() && (*j)->name() != X_("IO")) {
192                 ++j;
193         }
194
195         if (j == grand_children.end()) {
196                 return -1;
197         }
198
199         XMLProperty const * prop = (*j)->property X_("name");
200         if (!prop) {
201                 return -1;
202         }
203
204         set_name (prop->value ());
205
206         return 0;
207 }
208
209 bool
210 Send::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
211 {
212         /* sends have no impact at all on the channel configuration of the
213            streams passing through the route. so, out == in.
214         */
215
216         out = in;
217         return true;
218 }
219
220 bool
221 Send::configure_io (ChanCount in, ChanCount out)
222 {
223         if (!_amp->configure_io (in, out) || !_meter->configure_io (in, out)) {
224                 return false;
225         }
226
227         if (_output) {
228                 _output->ensure_io (out, false, 0);
229         }
230
231         if (!Processor::configure_io (in, out)) {
232                 return false;
233         }
234
235         reset_panner ();
236
237         return true;
238 }
239
240 /** Set up the XML description of a send so that its name is unique.
241  *  @param state XML send state.
242  *  @param session Session.
243  */
244 void
245 Send::make_unique (XMLNode &state, Session &session)
246 {
247         uint32_t const bitslot = session.next_send_id() + 1;
248
249         char buf[32];
250         snprintf (buf, sizeof (buf), "%" PRIu32, bitslot);
251         state.property("bitslot")->set_value (buf);
252
253         string const name = string_compose (_("send %1"), bitslot);
254
255         state.property("name")->set_value (name);
256
257         XMLNode* io = state.child ("IO");
258
259         if (io) {
260                 io->property("name")->set_value (name);
261         }
262 }
263
264 bool
265 Send::set_name (const string& new_name)
266 {
267         string unique_name;
268
269         if (_role == Delivery::Send) {
270                 char buf[32];
271
272                 /* rip any existing numeric part of the name, and append the bitslot
273                  */
274
275                 string::size_type last_letter = new_name.find_last_not_of ("0123456789");
276
277                 if (last_letter != string::npos) {
278                         unique_name = new_name.substr (0, last_letter + 1);
279                 } else {
280                         unique_name = new_name;
281                 }
282
283                 snprintf (buf, sizeof (buf), "%u", (_bitslot + 1));
284                 unique_name += buf;
285
286         } else {
287                 unique_name = new_name;
288         }
289
290         return Delivery::set_name (unique_name);
291 }
292
293 bool
294 Send::display_to_user () const
295 {
296         /* we ignore Deliver::_display_to_user */
297
298         if (_role == Listen) {
299                 /* don't make the monitor/control/listen send visible */
300                 return false;
301         }
302
303         return true;
304 }