X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/abbc64cf04a35ab3549d5c516f44c7c5921baa63..d111eaf49741a0a79d372445f97c314a637e331e:/FunctionalInterface.cpp?ds=inline diff --git a/FunctionalInterface.cpp b/FunctionalInterface.cpp index cc9f765..7224b3f 100644 --- a/FunctionalInterface.cpp +++ b/FunctionalInterface.cpp @@ -19,9 +19,8 @@ FunctionalInterface::FunctionalInterface(AbstractBlock* _owner, ReferenceInterfa name = reference->getName(); width = reference->getWidth(); direction = reference->getDirection(); - purpose = reference->getPurpose(); - level = reference->getLevel(); - connectedFrom = NULL; + purpose = reference->getPurpose(); + connectedFrom = NULL; } bool FunctionalInterface::isFunctionalInterface() { @@ -65,10 +64,10 @@ int FunctionalInterface::getInterfaceMultiplicity() { return -1; } else if ( reference->getMultiplicity() == -1) { - return ifaceCount+1; + return ifaceCount; } - else if ( reference->getMultiplicity() > ifaceCount) { - return ifaceCount+1; + else if ( ifaceCount < reference->getMultiplicity()) { + return ifaceCount; } return -1; } @@ -79,10 +78,9 @@ AbstractInterface *FunctionalInterface::clone() { FunctionalInterface *inter = new FunctionalInterface(owner, reference); inter->setWidth(width); inter->setDirection(direction); - inter->setPurpose(purpose); - inter->setLevel(level); + inter->setPurpose(purpose); inter->connectFrom(NULL); - inter->setName(reference->getName()+"_"+QString::number(id)); + inter->setName(reference->getName()+"_"+QString::number(id+1)); return inter; } @@ -101,21 +99,26 @@ bool FunctionalInterface::canConnectTo(AbstractInterface *iface) { 2 - iface is owned by the parent group of the block that owns this 2.1 - this is an output, iface is an output of the group 2.2 - both are inout + 3 - this is owned by a source block and iface is owned by the top group */ if (direction == Input) return false; if (iface->isReferenceInterface()) return false; if (iface->getConnectedFrom() != NULL) return false; - + // first case: interface of blocks within the same group if (getOwner()->getParent() == iface->getOwner()->getParent()) { if ((direction == Output) && (iface->getDirection() == Input)) return true; if ((direction == InOut) && (iface->getDirection() == InOut)) return true; } + // second case: iface = interface of the group that contains owner of this else if (getOwner()->getParent() == iface->getOwner()) { if ((direction == Output) && (iface->getDirection() == Output)) return true; if ((direction == InOut) && (iface->getDirection() == InOut)) return true; } + else if ((getOwner()->isSourceBlock()) && (iface->getOwner()->isTopGroupBlock())) { + if ((direction == Output) && (iface->getDirection() == Input)) return true; + } return false;