the buttons will submit to my rule! prelight-when-active, be gonecd /usr/local/music...
[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     $Id$
19 */
20
21 #include <algorithm>
22
23 #include <pbd/xml++.h>
24
25 #include <ardour/send.h>
26 #include <ardour/session.h>
27 #include <ardour/port.h>
28
29 #include "i18n.h"
30
31 using namespace ARDOUR;
32 using namespace PBD;
33
34 Send::Send (Session& s, Placement p)
35         : Redirect (s, string_compose (_("send %1"), (bitslot = s.next_send_id()) + 1), p)
36 {
37         _metering = false;
38         expected_inputs = 0;
39         RedirectCreated (this); /* EMIT SIGNAL */
40 }
41
42 Send::Send (Session& s, const XMLNode& node)
43         : Redirect (s,  "send", PreFader)
44 {
45         _metering = false;
46         expected_inputs = 0;
47
48         if (set_state (node)) {
49                 throw failed_constructor();
50         }
51
52         RedirectCreated (this); /* EMIT SIGNAL */
53 }
54
55 Send::Send (const Send& other)
56         : Redirect (other._session, string_compose (_("send %1"), (bitslot = other._session.next_send_id()) + 1), other.placement())
57 {
58         _metering = false;
59         expected_inputs = 0;
60
61         RedirectCreated (this); /* EMIT SIGNAL */
62 }
63
64 Send::~Send ()
65 {
66         GoingAway ();
67 }
68
69 XMLNode&
70 Send::get_state(void)
71 {
72         return state (true);
73 }
74
75 XMLNode&
76 Send::state(bool full)
77 {
78         XMLNode *node = new XMLNode("Send");
79         char buf[32];
80         node->add_child_nocopy (Redirect::state (full));
81         snprintf (buf, sizeof (buf), "%" PRIu32, bitslot);
82         node->add_property ("bitslot", buf);
83         return *node;
84 }
85
86 int
87 Send::set_state(const XMLNode& node)
88 {
89         XMLNodeList nlist = node.children();
90         XMLNodeIterator niter;
91         const XMLProperty* prop;
92
93         if ((prop = node.property ("bitslot")) == 0) {
94                 bitslot = _session.next_send_id();
95         } else {
96                 sscanf (prop->value().c_str(), "%" PRIu32, &bitslot);
97                 _session.mark_send_id (bitslot);
98         }
99
100         /* Send has regular IO automation (gain, pan) */
101
102         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
103                 if ((*niter)->name() == Redirect::state_node_name) {
104                         Redirect::set_state (**niter);
105                         break;
106                 } else if ((*niter)->name() == X_("Automation")) {
107                         IO::set_automation_state (*(*niter));
108                 }
109         }
110
111         if (niter == nlist.end()) {
112                 error << _("XML node describing a send is missing a Redirect node") << endmsg;
113                 return -1;
114         }
115
116         return 0;
117 }
118
119 void
120 Send::run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes, nframes_t offset)
121 {
122         if (active()) {
123
124                 // we have to copy the input, because IO::deliver_output may alter the buffers
125                 // in-place, which a send must never do.
126
127                 vector<Sample*>& sendbufs = _session.get_send_buffers();
128
129                 for (size_t i=0; i < nbufs; ++i) {
130                         memcpy (sendbufs[i], bufs[i], sizeof (Sample) * nframes);
131                 }
132                 
133                 
134                 IO::deliver_output (sendbufs, nbufs, nframes, offset);
135
136                 if (_metering) {
137                         uint32_t n;
138                         uint32_t no = n_outputs();
139
140                         if (_gain == 0) {
141
142                                 for (n = 0; n < no; ++n) {
143                                         _peak_power[n] = 0;
144                                 } 
145
146                         } else {
147
148                                 for (n = 0; n < no; ++n) {
149                                         _peak_power[n] = Session::compute_peak (output(n)->get_buffer(nframes) + offset, nframes, _peak_power[n]);
150                                 }
151                         }
152                 }
153
154         } else {
155                 silence (nframes, offset);
156                 
157                 if (_metering) {
158                         uint32_t n;
159                         uint32_t no = n_outputs();
160
161                         for (n = 0; n < no; ++n) {
162                                 _peak_power[n] = 0;
163                         } 
164                 }
165         }
166 }
167
168 void
169 Send::set_metering (bool yn)
170 {
171         _metering = yn;
172
173         if (!_metering) {
174                 /* XXX possible thread hazard here */
175                 reset_peak_meters ();
176         }
177 }
178
179 void
180 Send::expect_inputs (uint32_t expected)
181 {
182         if (expected != expected_inputs) {
183                 expected_inputs = expected;
184                 reset_panner ();
185         }
186 }