Wouldn't it be nice if plugin presets had a description/comment?
[ardour.git] / libs / ardour / return.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 <algorithm>
21
22 #include "pbd/xml++.h"
23
24 #include "ardour/amp.h"
25 #include "ardour/audioengine.h"
26 #include "ardour/buffer_set.h"
27 #include "ardour/gain_control.h"
28 #include "ardour/io.h"
29 #include "ardour/meter.h"
30 #include "ardour/return.h"
31 #include "ardour/session.h"
32
33 #include "pbd/i18n.h"
34
35 using namespace ARDOUR;
36 using namespace PBD;
37
38 std::string
39 Return::name_and_id_new_return (Session& s, uint32_t& bitslot)
40 {
41         bitslot = s.next_return_id();
42         return string_compose (_("return %1"), bitslot + 1);
43 }
44
45
46 Return::Return (Session& s, bool internal)
47         : IOProcessor (s, (internal ? false : true), false,
48                        name_and_id_new_return (s, _bitslot))
49         , _metering (false)
50 {
51         /* never muted */
52
53         boost::shared_ptr<AutomationList> gl (new AutomationList (Evoral::Parameter (GainAutomation)));
54         _gain_control = boost::shared_ptr<GainControl> (new GainControl (_session, Evoral::Parameter (GainAutomation), gl));
55         add_control (_gain_control);
56
57         _amp.reset (new Amp (_session, X_("Fader"), _gain_control, true));
58         _meter.reset (new PeakMeter (_session, name()));
59 }
60
61 Return::~Return ()
62 {
63         _session.unmark_return_id (_bitslot);
64 }
65
66 XMLNode&
67 Return::state()
68 {
69         XMLNode& node = IOProcessor::state ();
70         node.set_property ("type", "return");
71         node.set_property ("bitslot", _bitslot);
72
73         return node;
74 }
75
76 int
77 Return::set_state (const XMLNode& node, int version)
78 {
79         XMLNodeList nlist = node.children();
80         XMLNodeIterator niter;
81         const XMLNode* insert_node = &node;
82
83         /* Return has regular IO automation (gain, pan) */
84
85         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
86                 if ((*niter)->name() == "IOProcessor") {
87                         insert_node = *niter;
88                 } else if ((*niter)->name() == X_("Automation")) {
89                         // _io->set_automation_state (*(*niter), Evoral::Parameter(GainAutomation));
90                 }
91         }
92
93         IOProcessor::set_state (*insert_node, version);
94
95         if (!node.property ("ignore-bitslot")) {
96                 uint32_t bitslot;
97                 if (node.get_property ("bitslot", bitslot)) {
98                         _session.unmark_return_id (_bitslot);
99                         _bitslot = bitslot;
100                         _session.mark_return_id (_bitslot);
101                 } else {
102                         _bitslot = _session.next_return_id();
103                 }
104         }
105
106         return 0;
107 }
108
109 void
110 Return::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_sample, double speed, pframes_t nframes, bool)
111 {
112         if ((!_active && !_pending_active) || _input->n_ports() == ChanCount::ZERO) {
113                 return;
114         }
115
116         _input->collect_input (bufs, nframes, _configured_input);
117         bufs.set_count(_configured_output);
118
119         // Can't automate gain for sends or returns yet because we need different buffers
120         // so that we don't overwrite the main automation data for the route amp
121         // _amp->setup_gain_automation (start_sample, end_sample, nframes);
122         _amp->run (bufs, start_sample, end_sample, speed, nframes, true);
123
124         if (_metering) {
125                 if (_amp->gain_control()->get_value() == 0) {
126                         _meter->reset();
127                 } else {
128                         _meter->run (bufs, start_sample, end_sample, speed, nframes, true);
129                 }
130         }
131
132         _active = _pending_active;
133 }
134
135 bool
136 Return::can_support_io_configuration (const ChanCount& in, ChanCount& out)
137 {
138         out = in + _input->n_ports();
139         return true;
140 }
141
142 bool
143 Return::configure_io (ChanCount in, ChanCount out)
144 {
145         if (out != in + _input->n_ports()) {
146                 return false;
147         }
148
149         // Ensure there are enough buffers (since we add some)
150         if (_session.get_scratch_buffers(in).count() < out) {
151                 Glib::Threads::Mutex::Lock em (_session.engine().process_lock());
152                 IO::PortCountChanged(out);
153         }
154
155         Processor::configure_io(in, out);
156
157         return true;
158 }