X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Circle.cpp;h=f252df658aec33b08ba84de96b6d1de0512e733f;hb=f15c64f87240c8ae5719d8186ccc28afb99e2932;hp=623b6c62549757eaf2b35f54ff9ddb38437baebf;hpb=a24b7e6f4d112d5e7889fd76f030298fc428cd01;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Circle.cpp b/src/SketchPlugin/SketchPlugin_Circle.cpp index 623b6c625..f252df658 100644 --- a/src/SketchPlugin/SketchPlugin_Circle.cpp +++ b/src/SketchPlugin/SketchPlugin_Circle.cpp @@ -11,29 +11,83 @@ #include #include #include +#include #include #include #include +#include +#include #include #include #include #include #include +namespace { + static const std::string& CIRCLE_TYPE() + { + static const std::string TYPE("CircleType"); + return TYPE; + } + static const std::string& CIRCLE_TYPE_CENTER_AND_RADIUS() + { + static const std::string TYPE("CenterRadius"); + return TYPE; + } + static const std::string& CIRCLE_TYPE_THREE_POINTS() + { + static const std::string TYPE("ThreePoints"); + return TYPE; + } + + static const std::string& FIRST_POINT_ID() + { + static const std::string FIRST_PNT("FirstPoint"); + return FIRST_PNT; + } + static const std::string& SECOND_POINT_ID() + { + static const std::string SECOND_PNT("SecondPoint"); + return SECOND_PNT; + } + static const std::string& THIRD_POINT_ID() + { + static const std::string THIRD_PNT("ThirdPoint"); + return THIRD_PNT; + } + static const std::string& POINT_ID(int theIndex) + { + switch (theIndex) { + case 1: return FIRST_POINT_ID(); + case 2: return SECOND_POINT_ID(); + case 3: return THIRD_POINT_ID(); + } + + static const std::string DUMMY; + return DUMMY; + } +} + + SketchPlugin_Circle::SketchPlugin_Circle() : SketchPlugin_SketchEntity() { } -void SketchPlugin_Circle::initAttributes() +void SketchPlugin_Circle::initDerivedClassAttributes() { - SketchPlugin_SketchEntity::initAttributes(); - data()->addAttribute(CENTER_ID(), GeomDataAPI_Point2D::typeId()); data()->addAttribute(RADIUS_ID(), ModelAPI_AttributeDouble::typeId()); data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::typeId()); ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EXTERNAL_ID()); + + data()->addAttribute(CIRCLE_TYPE(), ModelAPI_AttributeString::typeId()); + data()->addAttribute(FIRST_POINT_ID(), GeomDataAPI_Point2D::typeId()); + data()->addAttribute(SECOND_POINT_ID(), GeomDataAPI_Point2D::typeId()); + data()->addAttribute(THIRD_POINT_ID(), GeomDataAPI_Point2D::typeId()); + std::dynamic_pointer_cast( + data()->attribute(CIRCLE_TYPE()))->setValue(CIRCLE_TYPE_CENTER_AND_RADIUS()); } void SketchPlugin_Circle::execute() @@ -51,33 +105,80 @@ void SketchPlugin_Circle::execute() std::shared_ptr aCenter(aSketch->to3D(aCenterAttr->x(), aCenterAttr->y())); //std::cout<<"Execute circle "<x()<<" "<y()<<" "<z()< aCenterPointShape = GeomAlgoAPI_PointBuilder::point(aCenter); - std::shared_ptr aConstr1 = document()->createConstruction( - data(), 0); - aConstr1->setShape(aCenterPointShape); - aConstr1->setIsInHistory(false); - setResult(aConstr1, 0); + SketchPlugin_Sketch::createPoint2DResult(this, sketch(), CENTER_ID(), 0); // make a visible circle std::shared_ptr aNDir = std::dynamic_pointer_cast( - aSketch->data()->attribute(SketchPlugin_Sketch::NORM_ID())); - bool aHasPlane = aNDir && !(aNDir->x() == 0 && aNDir->y() == 0 && aNDir->z() == 0); - if (aHasPlane) { - std::shared_ptr aNormal(new GeomAPI_Dir(aNDir->x(), aNDir->y(), aNDir->z())); - // compute the circle radius - double aRadius = aRadiusAttr->value(); + aSketch->data()->attribute(SketchPlugin_Sketch::NORM_ID())); + std::shared_ptr aNormal(new GeomAPI_Dir(aNDir->x(), aNDir->y(), aNDir->z())); + // compute the circle radius + double aRadius = aRadiusAttr->value(); + + std::shared_ptr aCircleShape = GeomAlgoAPI_EdgeBuilder::lineCircle( + aCenter, aNormal, aRadius); + aShapes.push_back(aCircleShape); + std::shared_ptr aConstr2 = document()->createConstruction( + data(), 1); + aConstr2->setShape(aCircleShape); + aConstr2->setIsInHistory(false); + setResult(aConstr2, 1); + } + } +} +AISObjectPtr SketchPlugin_Circle::getAISObject(AISObjectPtr thePrevious) +{ + SketchPlugin_Sketch* aSketch = sketch(); + if (aSketch && !isFeatureValid()) { + // compute a circle point in 3D view + std::shared_ptr aCenterAttr = std::dynamic_pointer_cast< + GeomDataAPI_Point2D>(data()->attribute(CENTER_ID())); + AttributeDoublePtr aRadiusAttr = + std::dynamic_pointer_cast(attribute(RADIUS_ID())); + if (aCenterAttr->isInitialized() && aRadiusAttr->isInitialized()) { + std::shared_ptr aCenter(aSketch->to3D(aCenterAttr->x(), aCenterAttr->y())); + + // make a visible circle + std::shared_ptr aNDir = std::dynamic_pointer_cast( + aSketch->data()->attribute(SketchPlugin_Sketch::NORM_ID())); + std::shared_ptr aNormal = aNDir->dir(); + + double aRadius = aRadiusAttr->value(); std::shared_ptr aCircleShape = GeomAlgoAPI_EdgeBuilder::lineCircle( aCenter, aNormal, aRadius); - aShapes.push_back(aCircleShape); - std::shared_ptr aConstr2 = document()->createConstruction( - data(), 1); - aConstr2->setShape(aCircleShape); - aConstr2->setIsInHistory(false); - setResult(aConstr2, 1); - } + if (aCircleShape && aRadius != 0) { + std::list > aShapes; + // make a visible point + std::shared_ptr aCenterPointShape = GeomAlgoAPI_PointBuilder::point(aCenter); + aShapes.push_back(aCenterPointShape); + aShapes.push_back(aCircleShape); + + std::shared_ptr aCompound = GeomAlgoAPI_CompoundBuilder::compound(aShapes); + AISObjectPtr anAIS = thePrevious; + if (!anAIS) + anAIS = AISObjectPtr(new GeomAPI_AISObject); + anAIS->createShape(aCompound); + anAIS->setWidth(3); + return anAIS; + } } } + return AISObjectPtr(); +} + +bool SketchPlugin_Circle::isFeatureValid() +{ + std::shared_ptr aCenter = + std::dynamic_pointer_cast(attribute(CENTER_ID())); + std::shared_ptr aFirstPnt = + std::dynamic_pointer_cast(attribute(FIRST_POINT_ID())); + std::shared_ptr aSecondPnt = + std::dynamic_pointer_cast(attribute(SECOND_POINT_ID())); + std::shared_ptr aThirdPnt = + std::dynamic_pointer_cast(attribute(THIRD_POINT_ID())); + + return aCenter->isInitialized() && aFirstPnt->isInitialized() && + aSecondPnt->isInitialized() && aThirdPnt->isInitialized(); } void SketchPlugin_Circle::move(double theDeltaX, double theDeltaY) @@ -86,18 +187,16 @@ void SketchPlugin_Circle::move(double theDeltaX, double theDeltaY) if (!aData->isValid()) return; - std::shared_ptr aPoint1 = std::dynamic_pointer_cast( + std::shared_ptr aPoint = std::dynamic_pointer_cast( aData->attribute(CENTER_ID())); - aPoint1->move(theDeltaX, theDeltaY); -} + aPoint->move(theDeltaX, theDeltaY); -double SketchPlugin_Circle::distanceToPoint(const std::shared_ptr& thePoint) -{ - std::shared_ptr aData = data(); - std::shared_ptr aPoint = - std::dynamic_pointer_cast(aData->attribute(CENTER_ID())); - - return aPoint->pnt()->distance(thePoint); + aPoint = std::dynamic_pointer_cast(aData->attribute(FIRST_POINT_ID())); + aPoint->move(theDeltaX, theDeltaY); + aPoint = std::dynamic_pointer_cast(aData->attribute(SECOND_POINT_ID())); + aPoint->move(theDeltaX, theDeltaY); + aPoint = std::dynamic_pointer_cast(aData->attribute(THIRD_POINT_ID())); + aPoint->move(theDeltaX, theDeltaY); } bool SketchPlugin_Circle::isFixed() { @@ -105,7 +204,8 @@ bool SketchPlugin_Circle::isFixed() { } void SketchPlugin_Circle::attributeChanged(const std::string& theID) { - if (theID == EXTERNAL_ID()) { + // the second condition for unability to move external segments anywhere + if (theID == EXTERNAL_ID() || isFixed()) { std::shared_ptr aSelection = data()->selection(EXTERNAL_ID())->value(); // update arguments due to the selection value if (aSelection && !aSelection->isNull() && aSelection->isEdge()) { @@ -117,4 +217,80 @@ void SketchPlugin_Circle::attributeChanged(const std::string& theID) { real(RADIUS_ID())->setValue(aCirc->radius()); } } + else if (theID == CENTER_ID() || theID == RADIUS_ID()) { + std::string aType = std::dynamic_pointer_cast( + data()->attribute(CIRCLE_TYPE()))->value(); + if (aType == CIRCLE_TYPE_THREE_POINTS()) + return; + + std::shared_ptr aCenterAttr = + std::dynamic_pointer_cast(attribute(CENTER_ID())); + if (!aCenterAttr->isInitialized()) + return; + AttributeDoublePtr aRadiusAttr = + std::dynamic_pointer_cast(attribute(RADIUS_ID())); + if (!aRadiusAttr->isInitialized()) + return; + + // check the execute() was called and the shape was built + if (!lastResult()) + return; + + data()->blockSendAttributeUpdated(true); + std::shared_ptr aFirstPnt = + std::dynamic_pointer_cast(attribute(FIRST_POINT_ID())); + std::shared_ptr aSecondPnt = + std::dynamic_pointer_cast(attribute(SECOND_POINT_ID())); + std::shared_ptr aThirdPnt = + std::dynamic_pointer_cast(attribute(THIRD_POINT_ID())); + double aRadius = aRadiusAttr->value(); + aFirstPnt->setValue(aCenterAttr->x() + aRadius, aCenterAttr->y()); + aSecondPnt->setValue(aCenterAttr->x(), aCenterAttr->y() + aRadius); + aThirdPnt->setValue(aCenterAttr->x() - aRadius, aCenterAttr->y()); + data()->blockSendAttributeUpdated(false); + } + else if (theID == FIRST_POINT_ID() || theID == SECOND_POINT_ID() || theID == THIRD_POINT_ID()) { + std::string aType = std::dynamic_pointer_cast( + data()->attribute(CIRCLE_TYPE()))->value(); + if (aType == CIRCLE_TYPE_CENTER_AND_RADIUS()) + return; + + data()->blockSendAttributeUpdated(true); + + std::shared_ptr aPoints[3]; + int aNbInitialized = 0; + for (int i = 1; i <= 3; ++i) { + std::shared_ptr aCurPnt = + std::dynamic_pointer_cast(attribute(POINT_ID(i))); + if (aCurPnt->isInitialized()) + aPoints[aNbInitialized++] = aCurPnt->pnt(); + } + + std::shared_ptr aCenterAttr = std::dynamic_pointer_cast< + GeomDataAPI_Point2D>(data()->attribute(CENTER_ID())); + AttributeDoublePtr aRadiusAttr = + std::dynamic_pointer_cast(data()->attribute(RADIUS_ID())); + + if (aNbInitialized == 1) + aCenterAttr->setValue(aPoints[0]->x(), aPoints[0]->y()); + else if (aNbInitialized == 2) { + std::shared_ptr aCoord = + aPoints[0]->xy()->added(aPoints[1]->xy())->multiplied(0.5); + double aRadius = aPoints[0]->distance(aPoints[1]) * 0.5; + aCenterAttr->setValue(aCoord->x(), aCoord->y()); + aRadiusAttr->setValue(aRadius); + } else { + std::shared_ptr aCircle( + new GeomAPI_Circ2d(aPoints[0], aPoints[1], aPoints[2])); + + std::shared_ptr aCenter = aCircle->center(); + if (aCenter) { + double aRadius = aCircle->radius(); + aCenterAttr->setValue(aCenter->x(), aCenter->y()); + aRadiusAttr->setValue(aRadius); + } + } + + data()->blockSendAttributeUpdated(false); + } }