Salome HOME
Update copyrights
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Equal.cpp
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "SketcherPrs_Equal.h"
21 #include "SketcherPrs_Tools.h"
22 #include "SketcherPrs_PositionMgr.h"
23
24 #include <SketchPlugin_Constraint.h>
25
26 #include <Graphic3d_AspectLine3d.hxx>
27 #include <Prs3d_Root.hxx>
28
29
30 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Equal, SketcherPrs_SymbolPrs);
31
32 static Handle(Image_AlienPixMap) MyPixMap;
33
34 SketcherPrs_Equal::SketcherPrs_Equal(ModelAPI_Feature* theConstraint,
35   SketchPlugin_Sketch* theSketcher)
36  : SketcherPrs_SymbolPrs(theConstraint, theSketcher)
37 {
38 }
39
40 bool SketcherPrs_Equal::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
41                                          const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
42 {
43   bool aReadyToDisplay = false;
44
45   ObjectPtr aObj1 =
46     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
47   ObjectPtr aObj2 =
48     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_B());
49
50   aReadyToDisplay = SketcherPrs_Tools::getShape(aObj1).get() != NULL &&
51                     SketcherPrs_Tools::getShape(aObj2).get() != NULL;
52
53   return aReadyToDisplay;
54 }
55
56 bool SketcherPrs_Equal::updateIfReadyToDisplay(double theStep, bool withColor) const
57 {
58   if (!IsReadyToDisplay(myConstraint, myPlane))
59     return false;
60
61   ObjectPtr aObj1 =
62     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
63   ObjectPtr aObj2 =
64     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
65
66   // Set points of the presentation
67   SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
68   gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep);
69   gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
70
71   myPntArray = new Graphic3d_ArrayOfPoints(2, withColor);
72   myPntArray->AddVertex(aP1);
73   myPntArray->AddVertex(aP2);
74   return true;
75 }
76
77 void SketcherPrs_Equal::drawLines(const Handle(Prs3d_Presentation)& thePrs,
78                                   Quantity_Color theColor) const
79 {
80   // Draw first line
81   ObjectPtr aObj = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
82   std::shared_ptr<GeomAPI_Shape> aLine = SketcherPrs_Tools::getShape(aObj);
83   if (aLine.get() == NULL)
84     return;
85   drawShape(aLine, thePrs, theColor);
86
87   // Draw second line
88   aObj = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
89   aLine = SketcherPrs_Tools::getShape(aObj);
90   if (aLine.get() == NULL)
91     return;
92   drawShape(aLine, thePrs, theColor);
93 }
94