X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.cpp;h=0a4422ad125769af3799c094179083b46d3bb313;hb=176403004ff97696f3c0b5f8bdf48692177fb34a;hp=c6d27798b38cb24241aaf6a25fbb022cc0a54d6c;hpb=42d8ecf39798c037945ca4bb9073d8dc31c53008;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.cpp b/src/Model/Model_ResultPart.cpp index c6d27798b..0a4422ad1 100644 --- a/src/Model/Model_ResultPart.cpp +++ b/src/Model/Model_ResultPart.cpp @@ -22,13 +22,13 @@ #include #include -#include #include #include #include #include -#define baseRef() std::dynamic_pointer_cast(data()->reference(BASE_REF_ID())->value()) +#define baseRef() \ + std::dynamic_pointer_cast(data()->reference(BASE_REF_ID())->value()) void Model_ResultPart::initAttributes() { @@ -69,7 +69,8 @@ void Model_ResultPart::activate() // activation may cause changes in current features in document, so it must be in transaction bool isNewTransaction = false; SessionPtr aMgr = ModelAPI_Session::get(); - if (!aMgr->isOperation()) { // open transaction even document is not created to set current docs in setActiveDocument + if (!aMgr->isOperation()) { + // open transaction even document is not created to set current docs in setActiveDocument aMgr->startOperation("Activation"); isNewTransaction = true; } @@ -150,39 +151,41 @@ bool Model_ResultPart::setDisabled(std::shared_ptr theThis, std::shared_ptr Model_ResultPart::shape() { std::shared_ptr aResult(new GeomAPI_Shape); - if (myTrsf.get()) { // get shape of the base result and apply the transformation - ResultPtr anOrigResult = baseRef(); - std::shared_ptr anOrigShape = anOrigResult->shape(); - if (anOrigShape.get()) { - TopoDS_Shape aShape = anOrigShape->impl(); - if (!aShape.IsNull()) { - aShape.Move(*(myTrsf.get())); - aResult->setImpl(new TopoDS_Shape(aShape)); - } - } - return aResult; - } if (myShape.IsNull()) { // shape is not produced yet, create it - DocumentPtr aDoc = Model_ResultPart::partDoc(); - if (aDoc.get() && aDoc->isOpened()) { - const std::string& aBodyGroup = ModelAPI_ResultBody::group(); - TopoDS_Compound aResultComp; - BRep_Builder aBuilder; - aBuilder.MakeCompound(aResultComp); - int aNumSubs = 0; - for(int a = aDoc->size(aBodyGroup) - 1; a >= 0; a--) { - ResultPtr aBody = std::dynamic_pointer_cast(aDoc->object(aBodyGroup, a)); - // "object" method filters out disabled and concealed anyway, so don't check - if (aBody.get() && aBody->shape().get()) { - TopoDS_Shape aShape = *(aBody->shape()->implPtr()); - if (!aShape.IsNull()) { - aBuilder.Add(aResultComp, aShape); - aNumSubs++; - } + if (myTrsf.get()) { // get shape of the base result and apply the transformation + ResultPtr anOrigResult = baseRef(); + std::shared_ptr anOrigShape = anOrigResult->shape(); + if (anOrigShape.get()) { + TopoDS_Shape aShape = anOrigShape->impl(); + if (!aShape.IsNull()) { + aShape.Move(*(myTrsf.get())); + myShape = aShape; + aResult->setImpl(new TopoDS_Shape(aShape)); } } - if (aNumSubs) { - myShape = aResultComp; + return aResult; + } else { + DocumentPtr aDoc = Model_ResultPart::partDoc(); + if (aDoc.get() && aDoc->isOpened()) { + const std::string& aBodyGroup = ModelAPI_ResultBody::group(); + TopoDS_Compound aResultComp; + BRep_Builder aBuilder; + aBuilder.MakeCompound(aResultComp); + int aNumSubs = 0; + for(int a = aDoc->size(aBodyGroup) - 1; a >= 0; a--) { + ResultPtr aBody = std::dynamic_pointer_cast(aDoc->object(aBodyGroup, a)); + // "object" method filters out disabled and concealed anyway, so don't check + if (aBody.get() && aBody->shape().get()) { + TopoDS_Shape aShape = *(aBody->shape()->implPtr()); + if (!aShape.IsNull()) { + aBuilder.Add(aResultComp, aShape); + aNumSubs++; + } + } + } + if (aNumSubs) { + myShape = aResultComp; + } } } } @@ -241,7 +244,8 @@ std::string Model_ResultPart::nameInPart(const std::shared_ptr& t if (!aDoc.get()) // the part document is not presented for the moment return ""; TDF_Label anAccessLabel = aDoc->generalLabel(); - // make the selection attribute anyway: otherwise just by name it is not stable to search the result + // make the selection attribute anyway: + // otherwise just by name it is not stable to search the result std::string aName; // for this the context result is needed ResultPtr aContext; @@ -282,6 +286,15 @@ bool Model_ResultPart::updateInPart(const int theIndex) return false; // something is wrong } +gp_Trsf Model_ResultPart::sumTrsf() { + gp_Trsf aResult; + if (myTrsf) { + aResult = *myTrsf; + aResult = aResult * baseRef()->sumTrsf(); + } + return aResult; +} + std::shared_ptr Model_ResultPart::shapeInPart( const std::string& theName, const std::string& theType, int& theIndex) { @@ -304,6 +317,11 @@ std::shared_ptr Model_ResultPart::shapeInPart( aSelAttr->append(theName, theType); theIndex = aSelAttr->size(); aResult = aSelAttr->value(theIndex - 1)->value(); + if (myTrsf.get() && aResult.get() && !aResult->isNull()) { + gp_Trsf aSumTrsf = sumTrsf(); + TopoDS_Shape anOrigMoved = aResult->impl().Moved(aSumTrsf); + aResult->setImpl(new TopoDS_Shape(anOrigMoved)); + } return aResult; } @@ -316,6 +334,11 @@ std::shared_ptr Model_ResultPart::selectionValue(const int theInd AttributeSelectionListPtr aSelAttr = aDoc->selectionInPartFeature(); aResult = aSelAttr->value(theIndex - 1)->value(); + if (myTrsf.get() && aResult.get() && !aResult->isNull()) { + gp_Trsf aSumTrsf = sumTrsf(); + TopoDS_Shape anOrigMoved = aResult->impl().Moved(aSumTrsf); + aResult->setImpl(new TopoDS_Shape(anOrigMoved)); + } return aResult; }