X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FSketchPlugin%2FSketchPlugin_Point.cpp;h=2bfe7e60a4863c52cedf3ed8ceb3c1ad681bbfb6;hb=b6dee14600299470ff26d198967fa48fb5bba99c;hp=63cf747a21c43b0a05195795a76a424e386396b6;hpb=93d047cf2a5a37eaf9525025f2341e845033b569;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Point.cpp b/src/SketchPlugin/SketchPlugin_Point.cpp index 63cf747a2..2bfe7e60a 100644 --- a/src/SketchPlugin/SketchPlugin_Point.cpp +++ b/src/SketchPlugin/SketchPlugin_Point.cpp @@ -1,38 +1,84 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: SketchPlugin_Point.cpp // Created: 07 May 2014 // Author: Artem ZHIDKOV #include "SketchPlugin_Point.h" #include "SketchPlugin_Sketch.h" + #include +#include +#include +#include +#include + +#include +#include #include #include -using namespace std; - SketchPlugin_Point::SketchPlugin_Point() + : SketchPlugin_SketchEntity() { } -void SketchPlugin_Point::initAttributes() +void SketchPlugin_Point::initDerivedClassAttributes() { - data()->addAttribute(POINT_ATTR_COORD, GeomDataAPI_Point2D::type()); + data()->addAttribute(SketchPlugin_Point::COORD_ID(), GeomDataAPI_Point2D::typeId()); + data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::typeId()); + ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EXTERNAL_ID()); } -void SketchPlugin_Point::execute() +void SketchPlugin_Point::execute() { + SketchPlugin_Sketch* aSketch = sketch(); + if (aSketch) { + // compute a point in 3D view + std::shared_ptr aPoint = + std::dynamic_pointer_cast( + data()->attribute(SketchPlugin_Point::COORD_ID())); + std::shared_ptr aPoint3D(aSketch->to3D(aPoint->x(), aPoint->y())); + // make a visible point + std::shared_ptr aPointShape = GeomAlgoAPI_PointBuilder::vertex(aPoint3D); + std::shared_ptr aConstr = document()->createConstruction(data()); + aConstr->setShape(aPointShape); + aConstr->setIsInHistory(false); + setResult(aConstr); + } } -const boost::shared_ptr& SketchPlugin_Point::preview() +void SketchPlugin_Point::move(double theDeltaX, double theDeltaY) { - SketchPlugin_Sketch* aSketch = sketch(); - // compute a point in 3D view - boost::shared_ptr aPoint = - boost::dynamic_pointer_cast(data()->attribute(POINT_ATTR_COORD)); - boost::shared_ptr aPoint3D(aSketch->to3D(aPoint->x(), aPoint->y())); - // make a visible point - boost::shared_ptr aPointShape = GeomAlgoAPI_PointBuilder::point(aPoint3D); - setPreview(aPointShape); - - return getPreview(); + std::shared_ptr aData = data(); + if (!aData->isValid()) + return; + + std::shared_ptr aPoint1 = std::dynamic_pointer_cast( + aData->attribute(SketchPlugin_Point::COORD_ID())); + aPoint1->move(theDeltaX, theDeltaY); +} + +bool SketchPlugin_Point::isFixed() { + return data()->selection(EXTERNAL_ID())->context().get() != NULL; +} + +void SketchPlugin_Point::attributeChanged(const std::string& theID) { + // the second condition for unability to move external point anywhere + if (theID == EXTERNAL_ID() || isFixed()) { + std::shared_ptr aSelection = data()->selection(EXTERNAL_ID())->value(); + if (!aSelection) { + // empty shape in selection shows that the shape is equal to context + ResultPtr anExtRes = selection(EXTERNAL_ID())->context(); + if (anExtRes) + aSelection = anExtRes->shape(); + } + // update arguments due to the selection value + if (aSelection && !aSelection->isNull() && aSelection->isVertex()) { + std::shared_ptr aVertex(new GeomAPI_Vertex(aSelection)); + std::shared_ptr aCoordAttr = + std::dynamic_pointer_cast(attribute(COORD_ID())); + aCoordAttr->setValue(sketch()->to2D(aVertex->point())); + } + } }