2009-05-07 13:31:18 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000 Paul Davis
|
2009-05-07 13:31:18 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include "pbd/xml++.h"
|
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
#include "ardour/amp.h"
|
2009-05-07 13:31:18 -04:00
|
|
|
#include "ardour/audio_port.h"
|
|
|
|
#include "ardour/buffer_set.h"
|
2009-06-09 16:21:19 -04:00
|
|
|
#include "ardour/io.h"
|
2009-05-07 13:31:18 -04:00
|
|
|
#include "ardour/meter.h"
|
|
|
|
#include "ardour/panner.h"
|
2009-06-09 16:21:19 -04:00
|
|
|
#include "ardour/port.h"
|
|
|
|
#include "ardour/return.h"
|
|
|
|
#include "ardour/session.h"
|
2010-05-17 19:28:13 -04:00
|
|
|
#include "ardour/mute_master.h"
|
2009-05-07 13:31:18 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
|
2009-06-16 10:58:33 -04:00
|
|
|
Return::Return (Session& s, bool internal)
|
2009-10-14 12:10:01 -04:00
|
|
|
: IOProcessor (s, (internal ? false : true), false,
|
2009-06-16 10:58:33 -04:00
|
|
|
string_compose (_("return %1"), (_bitslot = s.next_return_id()) + 1))
|
2009-06-09 16:21:19 -04:00
|
|
|
, _metering (false)
|
2009-05-07 13:31:18 -04:00
|
|
|
{
|
2009-06-09 16:21:19 -04:00
|
|
|
/* never muted */
|
|
|
|
|
2010-05-17 19:28:13 -04:00
|
|
|
_amp.reset (new Amp (_session));
|
2009-06-09 16:21:19 -04:00
|
|
|
_meter.reset (new PeakMeter (_session));
|
2009-05-07 13:31:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Return::~Return ()
|
|
|
|
{
|
2010-03-31 21:24:13 -04:00
|
|
|
_session.unmark_return_id (_bitslot);
|
2009-05-07 13:31:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
XMLNode&
|
|
|
|
Return::get_state(void)
|
|
|
|
{
|
|
|
|
return state (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLNode&
|
|
|
|
Return::state(bool full)
|
|
|
|
{
|
|
|
|
XMLNode& node = IOProcessor::state(full);
|
|
|
|
char buf[32];
|
|
|
|
node.add_property ("type", "return");
|
|
|
|
snprintf (buf, sizeof (buf), "%" PRIu32, _bitslot);
|
|
|
|
node.add_property ("bitslot", buf);
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2009-10-14 20:57:55 -04:00
|
|
|
Return::set_state (const XMLNode& node, int version)
|
2009-05-07 13:31:18 -04:00
|
|
|
{
|
|
|
|
XMLNodeList nlist = node.children();
|
|
|
|
XMLNodeIterator niter;
|
|
|
|
const XMLProperty* prop;
|
|
|
|
const XMLNode* insert_node = &node;
|
|
|
|
|
|
|
|
/* Return has regular IO automation (gain, pan) */
|
|
|
|
|
|
|
|
for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
|
|
|
|
if ((*niter)->name() == "IOProcessor") {
|
|
|
|
insert_node = *niter;
|
|
|
|
} else if ((*niter)->name() == X_("Automation")) {
|
|
|
|
// _io->set_automation_state (*(*niter), Evoral::Parameter(GainAutomation));
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-10-15 14:56:11 -04:00
|
|
|
IOProcessor::set_state (*insert_node, version);
|
2009-05-07 13:31:18 -04:00
|
|
|
|
2010-03-31 21:24:13 -04:00
|
|
|
if ((prop = node.property ("bitslot")) == 0) {
|
|
|
|
_bitslot = _session.next_return_id();
|
|
|
|
} else {
|
|
|
|
_session.unmark_return_id (_bitslot);
|
|
|
|
sscanf (prop->value().c_str(), "%" PRIu32, &_bitslot);
|
|
|
|
_session.mark_return_id (_bitslot);
|
|
|
|
}
|
|
|
|
|
2009-05-07 13:31:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-12-03 17:26:29 -05:00
|
|
|
Return::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool)
|
2009-05-07 13:31:18 -04:00
|
|
|
{
|
2009-07-21 10:39:21 -04:00
|
|
|
if ((!_active && !_pending_active) || _input->n_ports() == ChanCount::ZERO) {
|
2009-06-09 16:21:19 -04:00
|
|
|
return;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
_input->collect_input (bufs, nframes, _configured_input);
|
|
|
|
bufs.set_count(_configured_output);
|
|
|
|
|
|
|
|
// Can't automate gain for sends or returns yet because we need different buffers
|
|
|
|
// so that we don't overwrite the main automation data for the route amp
|
|
|
|
// _amp->setup_gain_automation (start_frame, end_frame, nframes);
|
2009-11-25 18:29:52 -05:00
|
|
|
_amp->run (bufs, start_frame, end_frame, nframes, true);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
if (_metering) {
|
|
|
|
if (_amp->gain_control()->get_value() == 0) {
|
|
|
|
_meter->reset();
|
|
|
|
} else {
|
2009-11-25 18:29:52 -05:00
|
|
|
_meter->run (bufs, start_frame, end_frame, nframes, true);
|
2009-06-09 16:21:19 -04:00
|
|
|
}
|
2009-05-07 13:31:18 -04:00
|
|
|
}
|
2009-07-21 10:39:21 -04:00
|
|
|
|
|
|
|
_active = _pending_active;
|
2009-05-07 13:31:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Return::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
|
|
|
|
{
|
2009-06-09 16:21:19 -04:00
|
|
|
out = in + _input->n_ports();
|
2009-05-07 13:31:18 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Return::configure_io (ChanCount in, ChanCount out)
|
|
|
|
{
|
2009-06-09 16:21:19 -04:00
|
|
|
if (out != in + _input->n_ports()) {
|
2009-05-07 13:31:18 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure there are enough buffers (since we add some)
|
|
|
|
if (_session.get_scratch_buffers(in).count() < out) {
|
|
|
|
Glib::Mutex::Lock em (_session.engine().process_lock());
|
|
|
|
IO::PortCountChanged(out);
|
|
|
|
}
|
|
|
|
|
|
|
|
Processor::configure_io(in, out);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set up the XML description of a return so that its name is unique.
|
|
|
|
* @param state XML return state.
|
|
|
|
* @param session Session.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Return::make_unique (XMLNode &state, Session &session)
|
|
|
|
{
|
|
|
|
uint32_t const bitslot = session.next_return_id() + 1;
|
|
|
|
|
|
|
|
char buf[32];
|
|
|
|
snprintf (buf, sizeof (buf), "%" PRIu32, bitslot);
|
|
|
|
state.property("bitslot")->set_value (buf);
|
|
|
|
|
|
|
|
std::string const name = string_compose (_("return %1"), bitslot);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-07 13:31:18 -04:00
|
|
|
state.property("name")->set_value (name);
|
|
|
|
|
|
|
|
XMLNode* io = state.child ("IO");
|
|
|
|
if (io) {
|
|
|
|
io->property("name")->set_value (name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
|