Fix non-update of _transport_frame
[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 <algorithm>
21
22 #include "pbd/xml++.h"
23
24 #include "ardour/amp.h"
25 #include "ardour/send.h"
26 #include "ardour/session.h"
27 #include "ardour/port.h"
28 #include "ardour/audio_port.h"
29 #include "ardour/buffer_set.h"
30 #include "ardour/meter.h"
31 #include "ardour/panner.h"
32 #include "ardour/io.h"
33
34 #include "i18n.h"
35
36 using namespace ARDOUR;
37 using namespace PBD;
38
39 Send::Send (Session& s, boost::shared_ptr<MuteMaster> mm)
40         : Delivery (s, mm, string_compose (_("send %1"), (_bitslot = s.next_send_id()) + 1), Delivery::Send)
41         , _metering (false)
42 {
43         _amp.reset (new Amp (_session, _mute_master));
44         _meter.reset (new PeakMeter (_session));
45
46         ProcessorCreated (this); /* EMIT SIGNAL */
47 }
48
49 Send::Send (Session& s, boost::shared_ptr<MuteMaster> mm, const XMLNode& node)
50         : Delivery (s, mm, "send", Delivery::Send)
51         , _metering (false)
52 {
53         _amp.reset (new Amp (_session, _mute_master));
54         _meter.reset (new PeakMeter (_session));
55
56         if (set_state (node)) {
57                 throw failed_constructor();
58         }
59
60         ProcessorCreated (this); /* EMIT SIGNAL */
61 }
62
63 Send::~Send ()
64 {
65         GoingAway ();
66 }
67
68 void
69 Send::run_in_place (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes)
70 {
71         if (!_active || _output->n_ports() == ChanCount::ZERO) {
72                 _meter->reset ();
73                 return;
74         }
75
76         // we have to copy the input, because deliver_output() may alter the buffers
77         // in-place, which a send must never do.
78         
79         BufferSet& sendbufs = _session.get_mix_buffers (bufs.count());
80         sendbufs.read_from (bufs, nframes);
81         assert(sendbufs.count() == bufs.count());
82
83         /* gain control */
84
85         // Can't automate gain for sends or returns yet because we need different buffers
86         // so that we don't overwrite the main automation data for the route amp
87         // _amp->setup_gain_automation (start_frame, end_frame, nframes);
88         _amp->run_in_place (sendbufs, start_frame, end_frame, nframes);
89
90         /* deliver to outputs */
91
92         Delivery::run_in_place (sendbufs, start_frame, end_frame, nframes);
93
94         /* consider metering */
95         
96         if (_metering) {
97                 if (_amp->gain_control()->get_value() == 0) {
98                         _meter->reset();
99                 } else {
100                         _meter->run_in_place (*_output_buffers, start_frame, end_frame, nframes);
101                 }
102         }
103 }
104
105 XMLNode&
106 Send::get_state(void)
107 {
108         return state (true);
109 }
110
111 XMLNode&
112 Send::state(bool full)
113 {
114         XMLNode& node = IOProcessor::state(full);
115         char buf[32];
116         node.add_property ("type", "send");
117         snprintf (buf, sizeof (buf), "%" PRIu32, _bitslot);
118         node.add_property ("bitslot", buf);
119
120         return node;
121 }
122
123 int
124 Send::set_state(const XMLNode& node)
125 {
126         XMLNodeList nlist = node.children();
127         XMLNodeIterator niter;
128         const XMLProperty* prop;
129
130         if ((prop = node.property ("bitslot")) == 0) {
131                 _bitslot = _session.next_send_id();
132         } else {
133                 sscanf (prop->value().c_str(), "%" PRIu32, &_bitslot);
134                 _session.mark_send_id (_bitslot);
135         }
136
137         const XMLNode* insert_node = &node;
138
139         /* XXX need to load automation state & data for amp */
140         
141         Delivery::set_state (*insert_node);
142
143         return 0;
144 }
145
146 bool
147 Send::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
148 {
149         if (_output->n_ports() == ChanCount::ZERO) {
150
151                 /* not configured yet, we can support anything */
152
153                 out = in;
154                 return true; /* we can support anything the first time we're asked */
155
156         } else {
157
158                 /* for a send, processor input corresponds to IO output */
159
160                 out = in;
161                 return true;
162         }
163
164         return false;
165 }
166
167 /** Set up the XML description of a send so that its name is unique.
168  *  @param state XML send state.
169  *  @param session Session.
170  */
171 void
172 Send::make_unique (XMLNode &state, Session &session)
173 {
174         uint32_t const bitslot = session.next_send_id() + 1;
175
176         char buf[32];
177         snprintf (buf, sizeof (buf), "%" PRIu32, bitslot);
178         state.property("bitslot")->set_value (buf);
179
180         std::string const name = string_compose (_("send %1"), bitslot);
181         
182         state.property("name")->set_value (name);
183
184         XMLNode* io = state.child ("IO");
185         if (io) {
186                 io->property("name")->set_value (name);
187         }
188 }
189
190 bool
191 Send::set_name (const std::string& new_name)
192 {
193         char buf[32];
194         std::string unique_name;
195
196         snprintf (buf, sizeof (buf), "%u", _bitslot);
197         unique_name = new_name;
198         unique_name += buf;
199
200         return Delivery::set_name (unique_name);
201 }