diff options
author | David Robillard <d@drobilla.net> | 2007-04-08 20:10:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-04-08 20:10:33 +0000 |
commit | f211975fd97c39668b61170d11960bd1c565ae79 (patch) | |
tree | 2aca3164063eb5b8aa3655ccc0f04dc3f0ad5c44 /src/libs/client/Store.cpp | |
parent | c34d7b6e9354529b6e83c136857e798c63b256fe (diff) | |
download | ingen-f211975fd97c39668b61170d11960bd1c565ae79.tar.gz ingen-f211975fd97c39668b61170d11960bd1c565ae79.tar.bz2 ingen-f211975fd97c39668b61170d11960bd1c565ae79.zip |
Fix connections directly between subpatch input/output ports.
git-svn-id: http://svn.drobilla.net/lad/ingen@427 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/Store.cpp')
-rw-r--r-- | src/libs/client/Store.cpp | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/src/libs/client/Store.cpp b/src/libs/client/Store.cpp index dfa73d9e..304056a3 100644 --- a/src/libs/client/Store.cpp +++ b/src/libs/client/Store.cpp @@ -126,7 +126,7 @@ Store::resolve_connection_orphans(SharedPtr<PortModel> port) ++next; if ((*c)->src_port() && (*c)->dst_port()) { - SharedPtr<PatchModel> patch = PtrCast<PatchModel>(this->object((*c)->patch_path())); + SharedPtr<PatchModel> patch = connection_patch((*c)->src_port_path(), (*c)->dst_port_path()); if (patch) { cerr << "Resolved orphan connection " << (*c)->src_port_path() << (*c)->dst_port_path() << endl; @@ -444,6 +444,22 @@ Store::control_change_event(const Path& port_path, float value) } +SharedPtr<PatchModel> +Store::connection_patch(const Path& src_port_path, const Path& dst_port_path) +{ + // Connection between patch ports + if (src_port_path.parent() == dst_port_path.parent()) { + SharedPtr<PatchModel> patch = PtrCast<PatchModel>(this->object(src_port_path.parent())); + if (patch) + return patch; + } + + // Normal connection + assert(src_port_path.parent().parent() == dst_port_path.parent().parent()); + return PtrCast<PatchModel>(this->object(src_port_path.parent().parent())); +} + + void Store::connection_event(const Path& src_port_path, const Path& dst_port_path) { @@ -457,7 +473,7 @@ Store::connection_event(const Path& src_port_path, const Path& dst_port_path) assert(src_port->parent()); assert(dst_port->parent()); - SharedPtr<PatchModel> patch = PtrCast<PatchModel>(this->object(dangling_cm->patch_path())); + SharedPtr<PatchModel> patch = connection_patch(src_port_path, dst_port_path); assert(patch); SharedPtr<ConnectionModel> cm(new ConnectionModel(src_port, dst_port)); @@ -492,12 +508,13 @@ Store::disconnection_event(const Path& src_port_path, const Path& dst_port_path) SharedPtr<ConnectionModel> cm(new ConnectionModel(src_port, dst_port)); - SharedPtr<PatchModel> patch = PtrCast<PatchModel>(this->object(cm->patch_path())); + SharedPtr<PatchModel> patch = connection_patch(src_port_path, dst_port_path); if (patch) patch->remove_connection(src_port_path, dst_port_path); else - cerr << "ERROR: disconnection in nonexistant patch " << cm->patch_path() << endl; + cerr << "ERROR: disconnection in nonexistant patch: " + << src_port_path << " -> " << dst_port_path << endl; } |