Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Coincident.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_Coincident.cpp
4 // Created:     12 February 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "SketcherPrs_Coincident.h"
8 #include "SketcherPrs_Tools.h"
9
10 #include <ModelAPI_AttributeRefAttr.h>
11 #include <ModelAPI_Events.h>
12
13 #include <GeomDataAPI_Point2D.h>
14 #include <GeomDataAPI_Dir.h>
15 #include <GeomDataAPI_Point.h>
16
17 #include <GeomAPI_XYZ.h>
18 #include <GeomAPI_Dir.h>
19 #include <GeomAPI_Pnt2d.h>
20
21 #include <SketchPlugin_Constraint.h>
22
23 #include <Graphic3d_AspectMarker3d.hxx>
24 #include <Graphic3d_ArrayOfPoints.hxx>
25 #include <Prs3d_PointAspect.hxx>
26 #include <Prs3d_Root.hxx>
27 #include <SelectMgr_EntityOwner.hxx>
28 #include <SelectMgr_Selection.hxx>
29 #include <Select3D_SensitivePoint.hxx>
30
31
32 IMPLEMENT_STANDARD_HANDLE(SketcherPrs_Coincident, AIS_InteractiveObject);
33 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Coincident, AIS_InteractiveObject);
34
35 SketcherPrs_Coincident::SketcherPrs_Coincident(ModelAPI_Feature* theConstraint,
36                                                const std::shared_ptr<GeomAPI_Ax3>& thePlane)
37 : AIS_InteractiveObject(), myConstraint(theConstraint), mySketcherPlane(thePlane),
38   myPoint(gp_Pnt(0.0, 0.0, 0.0)), myIsConflicting(false)
39 {
40 }
41
42 bool SketcherPrs_Coincident::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
43                                               const std::shared_ptr<GeomAPI_Ax3>& thePlane)
44 {
45   gp_Pnt aPoint;
46   return readyToDisplay(theConstraint, thePlane, aPoint);
47 }
48
49 bool SketcherPrs_Coincident::readyToDisplay(ModelAPI_Feature* theConstraint,
50                                             const std::shared_ptr<GeomAPI_Ax3>& thePlane,
51                                             gp_Pnt& thePoint)
52 {
53   bool aReadyToDisplay = false;
54   // Get point of the presentation
55   std::shared_ptr<GeomAPI_Pnt2d> aPnt = SketcherPrs_Tools::getPoint(theConstraint,
56                                                               SketchPlugin_Constraint::ENTITY_A());
57   if (aPnt.get() == NULL)
58     aPnt = SketcherPrs_Tools::getPoint(theConstraint, SketchPlugin_Constraint::ENTITY_B());
59
60   aReadyToDisplay = aPnt.get() != NULL;
61   if (aReadyToDisplay) {
62     std::shared_ptr<GeomAPI_Pnt> aPoint = thePlane->to3D(aPnt->x(), aPnt->y());
63     thePoint = aPoint->impl<gp_Pnt>();
64   }
65   return aReadyToDisplay;
66 }
67
68
69 void SketcherPrs_Coincident::Compute(
70   const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
71   const Handle(Prs3d_Presentation)& thePresentation,
72   const Standard_Integer theMode)
73 {
74   gp_Pnt aPoint;
75   bool aReadyToDisplay = readyToDisplay(myConstraint, mySketcherPlane, aPoint);
76   if (aReadyToDisplay)
77     myPoint = aPoint;
78
79   // Get point of the presentation
80   static Handle(Graphic3d_AspectMarker3d) aPtA;
81   if (aPtA.IsNull()) {
82     aPtA = new Graphic3d_AspectMarker3d ();
83   }
84   // Create the presentation as a combination of standard point markers
85
86   bool aValid = !myIsConflicting;
87   // The external yellow contour
88   aPtA->SetType(Aspect_TOM_RING3);
89   aPtA->SetScale(2.);
90   aPtA->SetColor(aValid ? Quantity_NOC_YELLOW : myConflictingColor);
91
92   Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePresentation);
93   aGroup->SetPrimitivesAspect(aPtA);
94   Handle(Graphic3d_ArrayOfPoints) aPntArray = new Graphic3d_ArrayOfPoints(1);
95   aPntArray->AddVertex (myPoint.X(), myPoint.Y(), myPoint.Z());
96   aGroup->AddPrimitiveArray (aPntArray);
97
98   // Make a black mid ring
99   aPtA->SetType(Aspect_TOM_RING1);
100   aPtA->SetScale(1.);
101   aPtA->SetColor(aValid ? Quantity_NOC_BLACK : myConflictingColor);
102   aGroup->SetPrimitivesAspect(aPtA);
103   aGroup->AddPrimitiveArray (aPntArray);
104
105   // Make an internal ring
106   aPtA->SetType(Aspect_TOM_POINT);
107   aPtA->SetScale(5.);
108   aGroup->SetPrimitivesAspect(aPtA);
109   aGroup->AddPrimitiveArray (aPntArray);
110
111   if (!aReadyToDisplay)
112     SketcherPrs_Tools::sendEmptyPresentationError(myConstraint,
113                               "An empty AIS presentation: SketcherPrs_Coincident");
114 }
115
116
117 void SketcherPrs_Coincident::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
118                                             const Standard_Integer aMode)
119 {
120   // There is no selection of coincident - a point is selected instead of coincidence
121 }
122
123 void SketcherPrs_Coincident::SetColor(const Quantity_NameOfColor aCol)
124 {
125   SetColor(Quantity_Color(aCol));
126 }
127
128 void SketcherPrs_Coincident::SetColor(const Quantity_Color &aCol)
129 {
130   hasOwnColor=Standard_True;
131   myOwnColor=aCol;
132 }
133
134 void SketcherPrs_Coincident::SetConflictingConstraint(const bool& theConflicting,
135                                                      const std::vector<int>& theColor)
136 {
137   myIsConflicting = theConflicting;
138   myConflictingColor = Quantity_Color(theColor[0] / 255., theColor[1] / 255., theColor[2] / 255.,
139                                       Quantity_TOC_RGB);
140 }