X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintDistance.cpp;h=092d3c74cfedc4cfdcc5714e9eac186edc6cfd0c;hb=cc7a7d32e0b6e31f65013e016055e9708283a289;hp=ed7bc297418012c1e7476bbf8dcbc9da0be5b22b;hpb=7bde8327d8b41eb689fc4eef8edf34b9c0b58b1b;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintDistance.cpp b/src/SketchPlugin/SketchPlugin_ConstraintDistance.cpp index ed7bc2974..092d3c74c 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintDistance.cpp +++ b/src/SketchPlugin/SketchPlugin_ConstraintDistance.cpp @@ -4,167 +4,236 @@ #include "SketchPlugin_ConstraintDistance.h" #include +#include +#include -#include -#include +#include +#include #include #include #include -#include -#include -#include - -/// Obtain the point object from specified constraint parameter -static boost::shared_ptr getFeaturePoint( - DataPtr theData, - const std::string& theAttribute); - +#include SketchPlugin_ConstraintDistance::SketchPlugin_ConstraintDistance() { } +//************************************************************************************* void SketchPlugin_ConstraintDistance::initAttributes() { - data()->addAttribute(CONSTRAINT_ATTR_VALUE, ModelAPI_AttributeDouble::type()); - data()->addAttribute(CONSTRAINT_ATTR_FLYOUT_VALUE_PNT, GeomDataAPI_Point2D::type()); - data()->addAttribute(CONSTRAINT_ATTR_ENTITY_A, ModelAPI_AttributeRefAttr::type()); - data()->addAttribute(CONSTRAINT_ATTR_ENTITY_B, ModelAPI_AttributeRefAttr::type()); + data()->addAttribute(SketchPlugin_Constraint::VALUE(), ModelAPI_AttributeDouble::type()); + data()->addAttribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT(), GeomDataAPI_Point2D::type()); + data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::type()); + data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::type()); } +//************************************************************************************* void SketchPlugin_ConstraintDistance::execute() { - boost::shared_ptr aData = data(); + std::shared_ptr aData = data(); + AttributeDoublePtr anAttrValue = std::dynamic_pointer_cast( + aData->attribute(SketchPlugin_Constraint::VALUE())); - boost::shared_ptr anAttr_A = - boost::dynamic_pointer_cast(aData->attribute(CONSTRAINT_ATTR_ENTITY_A)); - boost::shared_ptr anAttr_B = - boost::dynamic_pointer_cast(aData->attribute(CONSTRAINT_ATTR_ENTITY_B)); + if(anAttrValue->isInitialized()) + return; - AttributeDoublePtr anAttr_Value = - boost::dynamic_pointer_cast(aData->attribute(CONSTRAINT_ATTR_VALUE)); - if (anAttr_A->isInitialized() && anAttr_B->isInitialized() && !anAttr_Value->isInitialized()) - { - FeaturePtr aFeature_A = anAttr_A->feature(); - FeaturePtr aFeature_B = anAttr_B->feature(); - if (aFeature_A && aFeature_A) { - // calculate the distance - boost::shared_ptr aPoint_A = - boost::dynamic_pointer_cast - (aFeature_A->data()->attribute(POINT_ATTR_COORD)); - boost::shared_ptr aPoint_B = - boost::dynamic_pointer_cast - (aFeature_B->data()->attribute(POINT_ATTR_COORD)); - if (aPoint_A && aPoint_B) { - anAttr_Value->setValue(aPoint_A->pnt()->distance(aPoint_B->pnt())); - } - } + double aDistance = calculateCurrentDistance(); + if(aDistance >= 0) { + anAttrValue->setValue(aDistance); } } -Handle(AIS_InteractiveObject) SketchPlugin_ConstraintDistance::getAISShape( - Handle_AIS_InteractiveObject thePrevious) +//************************************************************************************* +AISObjectPtr SketchPlugin_ConstraintDistance::getAISObject(AISObjectPtr thePrevious) { if (!sketch()) return thePrevious; - boost::shared_ptr aPlane = sketch()->plane(); + std::shared_ptr aPlane = sketch()->plane(); DataPtr aData = data(); - boost::shared_ptr aPoint_A = getFeaturePoint(aData, CONSTRAINT_ATTR_ENTITY_A); - boost::shared_ptr aPoint_B = getFeaturePoint(aData, CONSTRAINT_ATTR_ENTITY_B); - if (!aPoint_A || !aPoint_B) - return thePrevious; - - // fly out calculation - boost::shared_ptr aFlyOutAttr = - boost::dynamic_pointer_cast(aData->attribute(CONSTRAINT_ATTR_FLYOUT_VALUE_PNT)); - double aFlyout = 0; - if (aFlyOutAttr->isInitialized()) { - boost::shared_ptr aFlyOutPnt = aFlyOutAttr->pnt(); - - boost::shared_ptr aFeatureLin = - boost::shared_ptr(new GeomAPI_Lin2d(aPoint_A->x(), aPoint_A->y(), - aPoint_B->x(), aPoint_B->y())); - boost::shared_ptr aProjectedPoint = aFeatureLin->project(aFlyOutPnt); - double aDistance = aFlyOutPnt->distance(aProjectedPoint); - if (!aFeatureLin->isRight(aFlyOutPnt)) - aDistance = -aDistance; - aFlyout = aDistance; - } - - //Build dimension here - boost::shared_ptr aPoint1 = sketch()->to3D(aPoint_A->x(), aPoint_A->y()); - boost::shared_ptr aPoint2 = sketch()->to3D(aPoint_B->x(), aPoint_B->y()); - - // value calculation - boost::shared_ptr aValueAttr = - boost::dynamic_pointer_cast(aData->attribute(CONSTRAINT_ATTR_VALUE)); - double aValue = aValueAttr->value(); - - Handle(AIS_InteractiveObject) anAIS = thePrevious; - if (anAIS.IsNull()) - { - Handle(AIS_LengthDimension) aDimAIS = - new AIS_LengthDimension(aPoint1->impl(), aPoint2->impl(), aPlane->impl()); - aDimAIS->SetCustomValue(aValue); - - Handle(Prs3d_DimensionAspect) anAspect = new Prs3d_DimensionAspect(); - anAspect->MakeArrows3d (Standard_False); - anAspect->MakeText3d(false); - anAspect->TextAspect()->SetHeight(CONSTRAINT_TEXT_HEIGHT); - anAspect->MakeTextShaded(false); - aDimAIS->DimensionAspect()->MakeUnitsDisplayed(false); - aDimAIS->SetDimensionAspect (anAspect); - aDimAIS->SetFlyout(aFlyout); - aDimAIS->SetSelToleranceForText2d(CONSTRAINT_TEXT_SELECTION_TOLERANCE); - - anAIS = aDimAIS; - } - else { - // update presentation - Handle(AIS_LengthDimension) aDimAIS = Handle(AIS_LengthDimension)::DownCast(anAIS); - if (!aDimAIS.IsNull()) { - aDimAIS->SetMeasuredGeometry(aPoint1->impl(), aPoint2->impl(), aPlane->impl()); - aDimAIS->SetCustomValue(aValue); - aDimAIS->SetFlyout(aFlyout); - - aDimAIS->Redisplay(Standard_True); + std::shared_ptr aPoint_A = getFeaturePoint( + aData, SketchPlugin_Constraint::ENTITY_A()); + std::shared_ptr aPoint_B = getFeaturePoint( + aData, SketchPlugin_Constraint::ENTITY_B()); + + std::shared_ptr aPnt_A; + std::shared_ptr aPnt_B; + + if (aPoint_A && aPoint_B) { + aPnt_A = aPoint_A->pnt(); + aPnt_B = aPoint_B->pnt(); + } else if (!aPoint_A && aPoint_B) { + std::shared_ptr aLine = getFeatureLine( + aData, SketchPlugin_Constraint::ENTITY_A()); + if (aLine) { + aPnt_B = aPoint_B->pnt(); + aPnt_A = getProjectionPoint(aLine, aPnt_B); + } + } else if (aPoint_A && !aPoint_B) { + std::shared_ptr aLine = getFeatureLine( + aData, SketchPlugin_Constraint::ENTITY_B()); + if (aLine) { + aPnt_A = aPoint_A->pnt(); + aPnt_B = getProjectionPoint(aLine, aPnt_A); } } + if (!aPnt_A || !aPnt_B) + return AISObjectPtr(); + + std::shared_ptr aFlyOutAttr = std::dynamic_pointer_cast< + GeomDataAPI_Point2D>(aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT())); + + std::shared_ptr aPoint1 = sketch()->to3D(aPnt_A->x(), aPnt_A->y()); + std::shared_ptr aPoint2 = sketch()->to3D(aPnt_B->x(), aPnt_B->y()); + std::shared_ptr aFlyoutPnt = std::shared_ptr(); + if(aFlyOutAttr->isInitialized()) { + aFlyoutPnt = sketch()->to3D(aFlyOutAttr->x(), aFlyOutAttr->y()); + } else { + std::shared_ptr aLine = std::shared_ptr(new GeomAPI_Lin2d(aPnt_A, aPnt_B)); + double aDist = aPoint1->distance(aPoint2)/5.; + std::shared_ptr aFPnt = aLine->shiftedLocation(aDist); + aFlyOutAttr->setValue(aFPnt); + aFlyoutPnt = sketch()->to3D(aFPnt->x(), aFPnt->y()); + } + // value calculation + std::shared_ptr aValueAttr = std::dynamic_pointer_cast< + ModelAPI_AttributeDouble>(aData->attribute(SketchPlugin_Constraint::VALUE())); + double aValue = 0; + // Issue #196: checking the positivity of the distance constraint + // there is a validator for a distance constraint, that the value should be positive + // in case if an invalid value is set, the current distance value is shown + if (aValueAttr->isInitialized()) + aValue = aValueAttr->value(); + + AISObjectPtr anAIS = thePrevious; + if (!anAIS) + anAIS = AISObjectPtr(new GeomAPI_AISObject); + anAIS->createDistance(aPoint1, aPoint2, aFlyoutPnt, aPlane, aValue); + + // Set color from preferences + std::vector aRGB = Config_PropManager::color("Visualization", "distance_color", + DISTANCE_COLOR); + anAIS->setColor(aRGB[0], aRGB[1], aRGB[2]); return anAIS; } +//************************************************************************************* void SketchPlugin_ConstraintDistance::move(double theDeltaX, double theDeltaY) { - boost::shared_ptr aData = data(); + std::shared_ptr aData = data(); if (!aData->isValid()) return; - boost::shared_ptr aPoint1 = - boost::dynamic_pointer_cast(aData->attribute(CONSTRAINT_ATTR_FLYOUT_VALUE_PNT)); - aPoint1->setValue(aPoint1->x() + theDeltaX, aPoint1->y() + theDeltaY); + std::shared_ptr aPoint = std::dynamic_pointer_cast( + aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT())); + aPoint->move(theDeltaX, theDeltaY); } -boost::shared_ptr getFeaturePoint(DataPtr theData, +double SketchPlugin_ConstraintDistance::calculateCurrentDistance() const +{ + double aDistance = -1.; + + std::shared_ptr aData = data(); + std::shared_ptr aPointA = + getFeaturePoint(aData, SketchPlugin_Constraint::ENTITY_A()); + std::shared_ptr aPointB = + getFeaturePoint(aData, SketchPlugin_Constraint::ENTITY_B()); + + if (aPointA && aPointB) { // both points + aDistance = aPointA->pnt()->distance(aPointB->pnt()); + } else { + if (!aPointA && aPointB) { //Line and point + std::shared_ptr aLine = + getFeatureLine(aData, SketchPlugin_Constraint::ENTITY_A()); + if (aLine) { + aDistance = aLine->distanceToPoint(aPointB->pnt()); + } + } else if (aPointA && !aPointB) { // Point and line + std::shared_ptr aLine = + getFeatureLine(aData, SketchPlugin_Constraint::ENTITY_B()); + if (aLine) { + aDistance = aLine->distanceToPoint(aPointA->pnt()); + } + } + } + return aDistance; +} + +void SketchPlugin_ConstraintDistance::attributeChanged(const std::string& theID) { + if (theID == SketchPlugin_Constraint::ENTITY_A() || + theID == SketchPlugin_Constraint::ENTITY_B()) + { + std::shared_ptr aValueAttr = std::dynamic_pointer_cast< + ModelAPI_AttributeDouble>(data()->attribute(SketchPlugin_Constraint::VALUE())); + if (!aValueAttr->isInitialized()) { // only if it is not initialized, try to compute the current value + double aDistance = calculateCurrentDistance(); + if (aDistance > 0) { // set as value the length of updated references + aValueAttr->setValue(aDistance); + } + } + } +} + +//************************************************************************************* +std::shared_ptr getFeaturePoint(DataPtr theData, const std::string& theAttribute) { - boost::shared_ptr aPointAttr; + std::shared_ptr aPointAttr; if (!theData) return aPointAttr; FeaturePtr aFeature; - boost::shared_ptr anAttr = - boost::dynamic_pointer_cast(theData->attribute(theAttribute)); + std::shared_ptr anAttr = std::dynamic_pointer_cast< + ModelAPI_AttributeRefAttr>(theData->attribute(theAttribute)); if (anAttr) - aFeature = anAttr->feature(); - - if (aFeature && aFeature->getKind() == SKETCH_POINT_KIND) - aPointAttr = boost::dynamic_pointer_cast - (aFeature->data()->attribute(POINT_ATTR_COORD)); + aFeature = ModelAPI_Feature::feature(anAttr->object()); + + if (aFeature && aFeature->getKind() == SketchPlugin_Point::ID()) + aPointAttr = std::dynamic_pointer_cast( + aFeature->data()->attribute(SketchPlugin_Point::COORD_ID())); + else if (aFeature && aFeature->getKind() == SketchPlugin_Circle::ID()) + aPointAttr = std::dynamic_pointer_cast( + aFeature->data()->attribute(SketchPlugin_Circle::CENTER_ID())); + else if (anAttr->attr()) { + aPointAttr = std::dynamic_pointer_cast(anAttr->attr()); + } return aPointAttr; } +//************************************************************************************* +std::shared_ptr getFeatureLine(DataPtr theData, + const std::string& theAttribute) +{ + std::shared_ptr aLine; + if (!theData) + return aLine; + + std::shared_ptr anAttr = std::dynamic_pointer_cast< + ModelAPI_AttributeRefAttr>(theData->attribute(theAttribute)); + if (anAttr) { + FeaturePtr aFeature = ModelAPI_Feature::feature(anAttr->object()); + if (aFeature && aFeature->getKind() == SketchPlugin_Line::ID()) { + aLine = std::dynamic_pointer_cast(aFeature); + } + } + return aLine; +} + +//************************************************************************************* +std::shared_ptr getProjectionPoint( + const std::shared_ptr& theLine, + const std::shared_ptr& thePoint) +{ + std::shared_ptr aData = theLine->data(); + std::shared_ptr aPoint1 = std::dynamic_pointer_cast( + aData->attribute(SketchPlugin_Line::START_ID())); + std::shared_ptr aPoint2 = std::dynamic_pointer_cast( + aData->attribute(SketchPlugin_Line::END_ID())); + + GeomAPI_Lin2d aLin2d(aPoint1->x(), aPoint1->y(), aPoint2->x(), aPoint2->y()); + return aLin2d.project(thePoint); +}