summaryrefslogtreecommitdiff
path: root/libs/ardour/send.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-02-14 17:28:01 +0000
committerCarl Hetherington <carl@carlh.net>2009-02-14 17:28:01 +0000
commit50d7d196146769a42fb7261b8f1bb81cc1dec17a (patch)
tree1bfbdf8f469d40c6572cb7b97a32857fd99694e5 /libs/ardour/send.cc
parente9fde9baa7cc62a2c2132435c850452097458920 (diff)
Fix send copying by paste and drag n drop.
git-svn-id: svn://localhost/ardour2/branches/3.0@4550 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/send.cc')
-rw-r--r--libs/ardour/send.cc53
1 files changed, 35 insertions, 18 deletions
diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc
index bb5a424575..252ca691be 100644
--- a/libs/ardour/send.cc
+++ b/libs/ardour/send.cc
@@ -43,7 +43,7 @@ Send::Send (Session& s, Placement p)
}
Send::Send (Session& s, const XMLNode& node)
- : IOProcessor (s, "send", PreFader)
+ : IOProcessor (s, "send", PreFader)
{
_metering = false;
@@ -61,37 +61,31 @@ Send::Send (const Send& other)
expected_inputs.set (DataType::AUDIO, 0);
-#ifdef THIS_NEEDS_FIXING_FOR_V3
-
/* 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) {
- add_output_port ("", 0);
- Port* p = other.output (i);
+ for (uint32_t i = 0; i < other._io->n_outputs().get (_io->default_type()); ++i) {
+ _io->add_output_port ("", 0);
+ Port* p = other._io->output (i);
if (p) {
/* this is what the other send's output is connected to */
- const char **connections = p->get_connections ();
- if (connections) {
- for (uint32_t c = 0; connections[c]; ++c) {
- connect_output (output (i), connections [c], 0);
- }
+ std::vector<std::string> connections;
+ p->get_connections (connections);
+ for (uint32_t j = 0; j < connections.size(); ++j) {
+ _io->connect_output (_io->output (i), connections[j], 0);
}
}
}
/* setup panner */
- _io->no_panner_reset = false;
-
- /* copy state */
+ _io->allow_pan_reset ();
- XMLNode& other_state (const_cast<Send*>(&other)->_panner->get_state());
- _panner->set_state (other_state);
+ XMLNode& other_state (other._io->panner().get_state ());
+ _io->panner().set_state (other_state);
delete &other_state;
-#endif
ProcessorCreated (this); /* EMIT SIGNAL */
}
@@ -265,3 +259,26 @@ Send::expect_inputs (const ChanCount& expected)
_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);
+ }
+}