Remove muting behaviour from the Amp processor. Fix some small
[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, sframes_t start_frame, sframes_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         return node;
137 }
138
139 int
140 Send::set_state (const XMLNode& node, int version)
141 {
142         XMLNodeList nlist = node.children();
143         XMLNodeIterator niter;
144         const XMLProperty* prop;
145
146         Delivery::set_state (node, version);
147
148         /* don't try to reset bitslot if its already set: this can cause
149            issues with the session's accounting of send ID's
150         */
151
152         if ((prop = node.property ("bitslot")) == 0) {
153                 _bitslot = _session.next_send_id();
154         } else {
155                 _session.unmark_send_id (_bitslot);
156                 sscanf (prop->value().c_str(), "%" PRIu32, &_bitslot);
157                 _session.mark_send_id (_bitslot);
158         }
159
160         /* XXX need to load automation state & data for amp */
161
162         return 0;
163 }
164
165 bool
166 Send::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
167 {
168         /* sends have no impact at all on the channel configuration of the
169            streams passing through the route. so, out == in.
170         */
171
172         out = in;
173         return true;
174 }
175
176 bool
177 Send::configure_io (ChanCount in, ChanCount out)
178 {
179         if (!_amp->configure_io (in, out) || !_meter->configure_io (in, out)) {
180                 return false;
181         }
182
183         if (!Processor::configure_io (in, out)) {
184                 return false;
185         }
186
187         reset_panner ();
188
189         return true;
190 }
191
192 /** Set up the XML description of a send so that its name is unique.
193  *  @param state XML send state.
194  *  @param session Session.
195  */
196 void
197 Send::make_unique (XMLNode &state, Session &session)
198 {
199         uint32_t const bitslot = session.next_send_id() + 1;
200
201         char buf[32];
202         snprintf (buf, sizeof (buf), "%" PRIu32, bitslot);
203         state.property("bitslot")->set_value (buf);
204
205         string const name = string_compose (_("send %1"), bitslot);
206
207         state.property("name")->set_value (name);
208
209         XMLNode* io = state.child ("IO");
210
211         if (io) {
212                 io->property("name")->set_value (name);
213         }
214 }
215
216 bool
217 Send::set_name (const string& new_name)
218 {
219         string unique_name;
220
221         if (_role == Delivery::Send) {
222                 char buf[32];
223
224                 /* rip any existing numeric part of the name, and append the bitslot
225                  */
226
227                 string::size_type last_letter = new_name.find_last_not_of ("0123456789");
228
229                 if (last_letter != string::npos) {
230                         unique_name = new_name.substr (0, last_letter + 1);
231                 } else {
232                         unique_name = new_name;
233                 }
234
235                 snprintf (buf, sizeof (buf), "%u", (_bitslot + 1));
236                 unique_name += buf;
237
238         } else {
239                 unique_name = new_name;
240         }
241
242         return Delivery::set_name (unique_name);
243 }
244
245 bool
246 Send::display_to_user () const
247 {
248         /* we ignore Deliver::_display_to_user */
249
250         if (_role == Listen) {
251                 /* don't make the monitor/control/listen send visible */
252                 return false;
253         }
254
255         return true;
256 }