Fix send copying by paste and drag n drop.

git-svn-id: svn://localhost/ardour2/branches/3.0@4550 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-02-14 17:28:01 +00:00
parent e9fde9baa7
commit 50d7d19614
4 changed files with 46 additions and 20 deletions

View file

@ -964,9 +964,17 @@ ProcessorBox::paste_processor_state (const XMLNode& node)
for (niter = nlist.begin(); niter != nlist.end(); ++niter) { for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
cerr << "try using " << (*niter)->name() << endl; cerr << "try using " << (*niter)->name() << endl;
XMLProperty const * type = (*niter)->property ("type");
assert (type);
try { try {
if (type->value() == "send") {
XMLNode n (**niter);
Send::make_unique (n, _session);
copies.push_back (boost::shared_ptr<Processor> (new Send (_session, n)));
} else {
copies.push_back (boost::shared_ptr<Processor> (new PluginInsert (_session, **niter))); copies.push_back (boost::shared_ptr<Processor> (new PluginInsert (_session, **niter)));
} }
}
catch (...) { catch (...) {
cerr << "plugin insert constructor failed\n"; cerr << "plugin insert constructor failed\n";
} }

View file

@ -62,6 +62,7 @@ class Send : public IOProcessor
bool configure_io (ChanCount in, ChanCount out); bool configure_io (ChanCount in, ChanCount out);
static uint32_t how_many_sends(); static uint32_t how_many_sends();
static void make_unique (XMLNode &, Session &);
private: private:
bool _metering; bool _metering;

View file

@ -61,37 +61,31 @@ Send::Send (const Send& other)
expected_inputs.set (DataType::AUDIO, 0); expected_inputs.set (DataType::AUDIO, 0);
#ifdef THIS_NEEDS_FIXING_FOR_V3
/* set up the same outputs, and connect them to the same places */ /* set up the same outputs, and connect them to the same places */
_io->no_panner_reset = true; _io->defer_pan_reset ();
for (uint32_t i = 0; i < other.n_outputs (); ++i) { for (uint32_t i = 0; i < other._io->n_outputs().get (_io->default_type()); ++i) {
add_output_port ("", 0); _io->add_output_port ("", 0);
Port* p = other.output (i); Port* p = other._io->output (i);
if (p) { if (p) {
/* this is what the other send's output is connected to */ /* this is what the other send's output is connected to */
const char **connections = p->get_connections (); std::vector<std::string> connections;
if (connections) { p->get_connections (connections);
for (uint32_t c = 0; connections[c]; ++c) { for (uint32_t j = 0; j < connections.size(); ++j) {
connect_output (output (i), connections [c], 0); _io->connect_output (_io->output (i), connections[j], 0);
}
} }
} }
} }
/* setup panner */ /* setup panner */
_io->no_panner_reset = false; _io->allow_pan_reset ();
/* copy state */ XMLNode& other_state (other._io->panner().get_state ());
_io->panner().set_state (other_state);
XMLNode& other_state (const_cast<Send*>(&other)->_panner->get_state());
_panner->set_state (other_state);
delete &other_state; delete &other_state;
#endif
ProcessorCreated (this); /* EMIT SIGNAL */ ProcessorCreated (this); /* EMIT SIGNAL */
} }
@ -265,3 +259,26 @@ Send::expect_inputs (const ChanCount& expected)
_io->reset_panner (); _io->reset_panner ();
} }
} }
/** Set up the XML description of a send so that its name is unique.
* @param state XML send state.
* @param session Session.
*/
void
Send::make_unique (XMLNode &state, Session &session)
{
uint32_t const bitslot = session.next_send_id() + 1;
char buf[32];
snprintf (buf, sizeof (buf), "%" PRIu32, bitslot);
state.property("bitslot")->set_value (buf);
std::string const name = string_compose (_("send %1"), bitslot);
state.property("name")->set_value (name);
XMLNode* io = state.child ("IO");
if (io) {
io->property("name")->set_value (name);
}
}