X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Rigid.cpp;h=082ab5cfc6bfde3476b3d6461ce1a7a623069b91;hb=d34842c50d5f335cca443c78910c16c54139c7d0;hp=c436e586acb5e8add2cb989cebcde831197ea507;hpb=fb0152c9215e449f46ee788c06e2902b4b77eefa;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Rigid.cpp b/src/SketcherPrs/SketcherPrs_Rigid.cpp index c436e586a..082ab5cfc 100644 --- a/src/SketcherPrs/SketcherPrs_Rigid.cpp +++ b/src/SketcherPrs/SketcherPrs_Rigid.cpp @@ -13,26 +13,14 @@ #include #include +#include + #include -#include #include -#include -#include -#include - -#include -#include #include -#include - -#include -#include - -#include -#include -#include +#include #include #include @@ -41,70 +29,96 @@ #include -extern std::shared_ptr getFeaturePoint(DataPtr theData, - const std::string& theAttribute); - IMPLEMENT_STANDARD_HANDLE(SketcherPrs_Rigid, SketcherPrs_SymbolPrs); IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Rigid, SketcherPrs_SymbolPrs); -static Handle(Image_AlienPixMap) MyPixMap; +static Handle(Image_AlienPixMap) MyPixMap; -SketcherPrs_Rigid::SketcherPrs_Rigid(SketchPlugin_Constraint* theConstraint, + + +SketcherPrs_Rigid::SketcherPrs_Rigid(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane) : SketcherPrs_SymbolPrs(theConstraint, thePlane) { - myPntArray = new Graphic3d_ArrayOfPoints(1); - myPntArray->AddVertex(0., 0., 0.); -} +} -void SketcherPrs_Rigid::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, - const Handle(Prs3d_Presentation)& thePresentation, - const Standard_Integer theMode) +bool SketcherPrs_Rigid::IsReadyToDisplay(ModelAPI_Feature* theConstraint, + const std::shared_ptr& thePlane) { - prepareAspect(); + bool aReadyToDisplay = false; - ObjectPtr aObj1 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A()); - std::shared_ptr aLine1 = SketcherPrs_Tools::getShape(aObj1); - if (aLine1.get() == NULL) - return; + std::shared_ptr aData = theConstraint->data(); + std::shared_ptr anAttr = aData->refattr(SketchPlugin_Constraint::ENTITY_A()); + AttributePtr aRefAttr = anAttr->attr(); + if (anAttr->isObject()) { + // The constraint attached to an object + ObjectPtr aObj = anAttr->object(); + aReadyToDisplay = SketcherPrs_Tools::getShape(aObj).get() != NULL; - SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get(); - gp_Pnt aP1 = aMgr->getPosition(aObj1, this); + } else { + // The constraint attached to a point + std::shared_ptr aPnt = SketcherPrs_Tools::getPoint(theConstraint, + SketchPlugin_Constraint::ENTITY_A()); + aReadyToDisplay = aPnt.get() != NULL; + } + return aReadyToDisplay; +} - Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePresentation); - aGroup->SetPrimitivesAspect(myAspect); - myPntArray->SetVertice(1, aP1); - aGroup->AddPrimitiveArray(myPntArray); +bool SketcherPrs_Rigid::updateIfReadyToDisplay(double theStep) const +{ + if (!IsReadyToDisplay(myConstraint, myPlane)) + return false; + + std::shared_ptr aData = myConstraint->data(); + std::shared_ptr anAttr = aData->refattr(SketchPlugin_Constraint::ENTITY_A()); + AttributePtr aRefAttr = anAttr->attr(); + if (anAttr->isObject()) { + // The constraint attached to an object + ObjectPtr aObj = anAttr->object(); + + SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get(); + gp_Pnt aP1 = aMgr->getPosition(aObj, this, theStep); + myPntArray->SetVertice(1, aP1); + } else { + // The constraint attached to a point + std::shared_ptr aPnt = SketcherPrs_Tools::getPoint(myConstraint, + SketchPlugin_Constraint::ENTITY_A()); + std::shared_ptr aPoint = myPlane->to3D(aPnt->x(), aPnt->y() + theStep); + myPntArray->SetVertice(1, aPoint->impl()); + } + return true; } + void SketcherPrs_Rigid::drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const { ObjectPtr aObj = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A()); - std::shared_ptr aShape = SketcherPrs_Tools::getShape(aObj); + FeaturePtr aFeature = std::dynamic_pointer_cast(aObj); + std::shared_ptr aShape; + if (aFeature.get()) { + // If constraint attached to a feature + const std::list& aResults = aFeature->results(); + std::list::const_iterator aIt; + // Find a shape + for (aIt = aResults.cbegin(); aIt != aResults.cend(); aIt++) { + aShape = (*aIt)->shape(); + if (aShape->isEdge()) + break; + } + } else { + // Else it is a result + aShape = SketcherPrs_Tools::getShape(aObj); + } if (aShape.get() == NULL) return; Handle(Graphic3d_Group) aGroup = Prs3d_Root::NewGroup(thePrs); - if (aShape->isEdge()) { - Handle(Graphic3d_AspectLine3d) aLineAspect = new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2); - aGroup->SetPrimitivesAspect(aLineAspect); - std::shared_ptr aCurve = std::shared_ptr(new GeomAPI_Curve(aShape)); - if (aCurve->isLine()) { - addLine(aGroup, SketchPlugin_Constraint::ENTITY_A()); - } else { - GeomAdaptor_Curve aAdaptor(aCurve->impl(), aCurve->startParam(), aCurve->endParam()); - StdPrs_DeflectionCurve::Add(thePrs,aAdaptor,myDrawer); - } - } else { - // This is a point - Handle(Prs3d_PointAspect) aPntAspect = new Prs3d_PointAspect(Aspect_TOM_PLUS, theColor, 1); - myDrawer->SetPointAspect(aPntAspect); - - std::shared_ptr aVertex = std::shared_ptr(new GeomAPI_Vertex(aShape)); - std::shared_ptr aPnt = aVertex->point(); - Handle(Geom_CartesianPoint) aPoint = new Geom_CartesianPoint(aPnt->impl()); - StdPrs_Point::Add(thePrs, aPoint, myDrawer); - } + Handle(Graphic3d_AspectLine3d) aLineAspect = new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2); + aGroup->SetPrimitivesAspect(aLineAspect); + + Handle(Prs3d_PointAspect) aPntAspect = new Prs3d_PointAspect(Aspect_TOM_PLUS, theColor, 1); + myDrawer->SetPointAspect(aPntAspect); + drawShape(aShape, thePrs); }