Salome HOME
Merge branch 'csgroup_IS2'
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Parallel.cpp
1 // Copyright (C) 2014-2021  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_Parallel.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
31 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Parallel, SketcherPrs_SymbolPrs);
32
33 static Handle(Image_AlienPixMap) MyPixMap;
34
35 SketcherPrs_Parallel::SketcherPrs_Parallel(ModelAPI_Feature* theConstraint,
36   SketchPlugin_Sketch* theSketcher)
37  : SketcherPrs_SymbolPrs(theConstraint, theSketcher)
38 {
39 }
40
41 bool SketcherPrs_Parallel::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
42                                             const std::shared_ptr<GeomAPI_Ax3>& thePlane)
43 {
44   bool aReadyToDisplay = false;
45   if (thePlane) {
46     ObjectPtr aObj1 =
47       SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
48     ObjectPtr aObj2 =
49       SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_B());
50
51     aReadyToDisplay = SketcherPrs_Tools::getShape(aObj1).get() != NULL &&
52                       SketcherPrs_Tools::getShape(aObj2).get() != NULL;
53   }
54   return aReadyToDisplay;
55 }
56
57 bool SketcherPrs_Parallel::updateIfReadyToDisplay(double theStep, bool withColor) const
58 {
59   if (!IsReadyToDisplay(myConstraint, plane()))
60     return false;
61
62   ObjectPtr aObj1 =
63     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
64   ObjectPtr aObj2 =
65     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
66
67   // Compute position of symbols
68   SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
69   gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep);
70   gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
71   myPntArray = new Graphic3d_ArrayOfPoints(2, withColor);
72   myPntArray->AddVertex(aP1);
73   myPntArray->AddVertex(aP2);
74   return true;
75 }
76
77
78 void SketcherPrs_Parallel::drawLines(const Handle(Prs3d_Presentation)& thePrs,
79   Quantity_Color theColor) const
80 {
81   Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePrs);
82
83   Handle(Graphic3d_AspectLine3d) aLineAspect =
84     new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2);
85   aGroup->SetPrimitivesAspect(aLineAspect);
86
87   // Draw constrained lines
88   addLine(aGroup, SketchPlugin_Constraint::ENTITY_A());
89   addLine(aGroup, SketchPlugin_Constraint::ENTITY_B());
90 }
91