diff options
Diffstat (limited to 'src/libs/engine/ObjectSender.cpp')
-rw-r--r-- | src/libs/engine/ObjectSender.cpp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/libs/engine/ObjectSender.cpp b/src/libs/engine/ObjectSender.cpp index 872c8d92..8a5fc367 100644 --- a/src/libs/engine/ObjectSender.cpp +++ b/src/libs/engine/ObjectSender.cpp @@ -57,14 +57,11 @@ ObjectSender::send_patch(ClientInterface* client, const Patch* patch) send_node(client, node); } - for (List<Connection*>::const_iterator j = patch->connections().begin(); - j != patch->connections().end(); ++j) - client->connection((*j)->src_port()->path(), (*j)->dst_port()->path()); - // Send port information for (size_t i=0; i < patch->num_ports(); ++i) { Port* const port = patch->ports().at(i); - + send_port(client, port); +/* // Send metadata const map<string, string>& data = port->metadata(); for (map<string, string>::const_iterator i = data.begin(); i != data.end(); ++i) @@ -74,7 +71,15 @@ ObjectSender::send_patch(ClientInterface* client, const Patch* patch) if (port->type() == DataType::FLOAT && port->buffer_size() == 1) client->control_change(port->path(), dynamic_cast<TypedPort<sample>*>(port)->buffer(0)->value_at(0)); +*/ } + + + // Send connections + for (List<Connection*>::const_iterator j = patch->connections().begin(); + j != patch->connections().end(); ++j) + client->connection((*j)->src_port()->path(), (*j)->dst_port()->path()); + // Send metadata const map<string, string>& data = patch->metadata(); |