]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/SketchPlugin_Point.cpp
Salome HOME
Table template
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Point.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:    SketchPlugin_Point.cpp
4 // Created: 07 May 2014
5 // Author:  Artem ZHIDKOV
6
7 #include "SketchPlugin_Point.h"
8 #include "SketchPlugin_Sketch.h"
9
10 #include <ModelAPI_Data.h>
11 #include <ModelAPI_ResultConstruction.h>
12 #include <ModelAPI_AttributeSelection.h>
13 #include <ModelAPI_Validator.h>
14 #include <ModelAPI_Session.h>
15
16 #include <GeomAPI_Pnt2d.h>
17 #include <GeomAPI_Vertex.h>
18 #include <GeomDataAPI_Point2D.h>
19 #include <GeomAlgoAPI_PointBuilder.h>
20
21 using namespace std;
22
23 SketchPlugin_Point::SketchPlugin_Point()
24     : SketchPlugin_SketchEntity()
25 {
26 }
27
28 void SketchPlugin_Point::initAttributes()
29 {
30   SketchPlugin_SketchEntity::initAttributes();
31
32   data()->addAttribute(SketchPlugin_Point::COORD_ID(), GeomDataAPI_Point2D::typeId());
33
34   data()->addAttribute(SketchPlugin_Point::TABLE_ID(), GeomDataAPI_Point2D::typeId());
35
36   data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::typeId());
37   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EXTERNAL_ID());
38 }
39
40 void SketchPlugin_Point::execute()
41 {
42   SketchPlugin_Sketch* aSketch = sketch();
43   if (aSketch) {
44     // compute a point in 3D view
45     std::shared_ptr<GeomDataAPI_Point2D> aPoint =
46         std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
47             data()->attribute(SketchPlugin_Point::COORD_ID()));
48     std::shared_ptr<GeomAPI_Pnt> aPoint3D(aSketch->to3D(aPoint->x(), aPoint->y()));
49     // make a visible point
50     std::shared_ptr<GeomAPI_Shape> aPointShape = GeomAlgoAPI_PointBuilder::point(aPoint3D);
51     std::shared_ptr<ModelAPI_ResultConstruction> aConstr = document()->createConstruction(data());
52     aConstr->setShape(aPointShape);
53     aConstr->setIsInHistory(false);
54     setResult(aConstr);
55   }
56 }
57
58 void SketchPlugin_Point::move(double theDeltaX, double theDeltaY)
59 {
60   std::shared_ptr<ModelAPI_Data> aData = data();
61   if (!aData->isValid())
62     return;
63
64   std::shared_ptr<GeomDataAPI_Point2D> aPoint1 = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
65       aData->attribute(SketchPlugin_Point::COORD_ID()));
66   aPoint1->move(theDeltaX, theDeltaY);
67 }
68
69 bool SketchPlugin_Point::isFixed() {
70   return data()->selection(EXTERNAL_ID())->context().get() != NULL;
71 }
72
73 void SketchPlugin_Point::attributeChanged(const std::string& theID) {
74   // the second condition for unability to move external point anywhere
75   if (theID == EXTERNAL_ID() || isFixed()) {
76     std::shared_ptr<GeomAPI_Shape> aSelection = data()->selection(EXTERNAL_ID())->value();
77      // update arguments due to the selection value
78     if (aSelection && !aSelection->isNull() && aSelection->isVertex()) {
79       std::shared_ptr<GeomAPI_Vertex> aVertex(new GeomAPI_Vertex(aSelection));
80       std::shared_ptr<GeomDataAPI_Point2D> aCoordAttr = 
81         std::dynamic_pointer_cast<GeomDataAPI_Point2D>(attribute(COORD_ID()));
82       aCoordAttr->setValue(sketch()->to2D(aVertex->point()));
83     }
84   }
85 }