X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Line.cpp;h=75c404a772a12922e9bd6284a8b07e4d3a952d15;hb=cdd9efd8fbc75f120188ae16eed7471dc6492ac3;hp=ee98b3724008d796b41ef343b869f095b54f229b;hpb=4e60e46af3ebb4d1d8e1709e7806ed134edd4be7;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Line.cpp b/src/SketchPlugin/SketchPlugin_Line.cpp index ee98b3724..75c404a77 100644 --- a/src/SketchPlugin/SketchPlugin_Line.cpp +++ b/src/SketchPlugin/SketchPlugin_Line.cpp @@ -5,6 +5,10 @@ #include "SketchPlugin_Line.h" #include "SketchPlugin_Sketch.h" #include +#include +#include +#include +#include #include #include @@ -13,45 +17,44 @@ #include #include -#include - using namespace std; -// face of the square-face displayed for selection of general plane -const double PLANE_SIZE = 200; - SketchPlugin_Line::SketchPlugin_Line() - : SketchPlugin_Feature() + : SketchPlugin_Feature() { } void SketchPlugin_Line::initAttributes() { - data()->addAttribute(LINE_ATTR_START, GeomDataAPI_Point2D::type()); - data()->addAttribute(LINE_ATTR_END, GeomDataAPI_Point2D::type()); -} - -void SketchPlugin_Line::execute() -{ + data()->addAttribute(START_ID(), GeomDataAPI_Point2D::type()); + data()->addAttribute(END_ID(), GeomDataAPI_Point2D::type()); + data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::type()); + ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EXTERNAL_ID()); } -const boost::shared_ptr& SketchPlugin_Line::preview() +void SketchPlugin_Line::execute() { SketchPlugin_Sketch* aSketch = sketch(); if (aSketch) { // compute a start point in 3D view - boost::shared_ptr aStartAttr = - boost::dynamic_pointer_cast(data()->attribute(LINE_ATTR_START)); - boost::shared_ptr aStart(aSketch->to3D(aStartAttr->x(), aStartAttr->y())); + boost::shared_ptr aStartAttr = boost::dynamic_pointer_cast< + GeomDataAPI_Point2D>(data()->attribute(START_ID())); // compute an end point in 3D view - boost::shared_ptr anEndAttr = - boost::dynamic_pointer_cast(data()->attribute(LINE_ATTR_END)); - boost::shared_ptr anEnd(aSketch->to3D(anEndAttr->x(), anEndAttr->y())); - // make linear edge - boost::shared_ptr anEdge = GeomAlgoAPI_EdgeBuilder::line(aStart, anEnd); - setPreview(anEdge); + boost::shared_ptr anEndAttr = boost::dynamic_pointer_cast< + GeomDataAPI_Point2D>(data()->attribute(END_ID())); + if (aStartAttr->isInitialized() && anEndAttr->isInitialized()) { + boost::shared_ptr aStart(aSketch->to3D(aStartAttr->x(), aStartAttr->y())); + boost::shared_ptr anEnd(aSketch->to3D(anEndAttr->x(), anEndAttr->y())); + // make linear edge + boost::shared_ptr anEdge = GeomAlgoAPI_EdgeBuilder::line(aStart, anEnd); + // store the result + boost::shared_ptr aConstr = document()->createConstruction( + data()); + aConstr->setShape(anEdge); + aConstr->setIsInHistory(false); + setResult(aConstr); + } } - return getPreview(); } void SketchPlugin_Line::move(double theDeltaX, double theDeltaY) @@ -60,13 +63,13 @@ void SketchPlugin_Line::move(double theDeltaX, double theDeltaY) if (!aData->isValid()) return; - boost::shared_ptr aPoint1 = - boost::dynamic_pointer_cast(aData->attribute(LINE_ATTR_START)); - aPoint1->setValue(aPoint1->x() + theDeltaX, aPoint1->y() + theDeltaY); + boost::shared_ptr aPoint1 = boost::dynamic_pointer_cast + (aData->attribute(START_ID())); + aPoint1->move(theDeltaX, theDeltaY); - boost::shared_ptr aPoint2 = - boost::dynamic_pointer_cast(aData->attribute(LINE_ATTR_END)); - aPoint2->setValue(aPoint2->x() + theDeltaX, aPoint2->y() + theDeltaY); + boost::shared_ptr aPoint2 = boost::dynamic_pointer_cast + (aData->attribute(END_ID())); + aPoint2->move(theDeltaX, theDeltaY); } double SketchPlugin_Line::distanceToPoint(const boost::shared_ptr& thePoint) @@ -74,20 +77,39 @@ double SketchPlugin_Line::distanceToPoint(const boost::shared_ptr double aDelta = 0; boost::shared_ptr aData = data(); - boost::shared_ptr aPoint1 = - boost::dynamic_pointer_cast(aData->attribute(LINE_ATTR_START)); - boost::shared_ptr aPoint2 = - boost::dynamic_pointer_cast(aData->attribute(LINE_ATTR_END)); + boost::shared_ptr aPoint1 = + boost::dynamic_pointer_cast(aData->attribute(START_ID())); + boost::shared_ptr aPoint2 = + boost::dynamic_pointer_cast(aData->attribute(END_ID())); GeomAPI_Lin2d aLin2d(aPoint1->x(), aPoint1->y(), aPoint2->x(), aPoint2->y()); - if (false/*projection*/) { // TODO: if it has not been necessary, remove this block + if (false/*projection*/) { // TODO: if it has not been necessary, remove this block boost::shared_ptr aResult = aLin2d.project(thePoint); aDelta = aResult->distance(thePoint); - } - else { // distance + } else { // distance aDelta = aLin2d.distance(thePoint); } return aDelta; } + +bool SketchPlugin_Line::isFixed() { + return data()->selection(EXTERNAL_ID())->context(); +} + +void SketchPlugin_Line::attributeChanged() { + static bool myIsUpdated = false; // to avoid infinitive cycle on attrubtes change + boost::shared_ptr aSelection = data()->selection(EXTERNAL_ID())->value(); + if (aSelection && !myIsUpdated) { // update arguments due to the selection value + myIsUpdated = true; + boost::shared_ptr anEdge( new GeomAPI_Edge(aSelection)); + boost::shared_ptr aStartAttr = + boost::dynamic_pointer_cast(attribute(START_ID())); + aStartAttr->setValue(sketch()->to2D(anEdge->firstPoint())); + boost::shared_ptr anEndAttr = + boost::dynamic_pointer_cast(attribute(END_ID())); + anEndAttr->setValue(sketch()->to2D(anEdge->lastPoint())); + myIsUpdated = false; + } +}