]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROData/HYDROData_BoundaryPolygonTools.cxx
Salome HOME
lot 14: cut tool : cut mode -> fuse mode
[modules/hydro.git] / src / HYDROData / HYDROData_BoundaryPolygonTools.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include <HYDROData_Tool.h>
20 #include <HYDROData_BoundaryPolygonTools.h>
21
22 #include <TopExp_Explorer.hxx>
23 #include <TopoDS.hxx>
24 #include <TopoDS_Face.hxx>
25 #include <TopoDS_Shape.hxx>
26 #include <TopoDS_Wire.hxx>
27
28
29 #include <BRep_Builder.hxx>
30 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
31 #include <TopExp.hxx>
32 #include <NCollection_List.hxx>
33 #include <TopTools_ListIteratorOfListOfShape.hxx>
34
35 #include <TopExp_Explorer.hxx>
36
37 #include <NCollection_IndexedDataMap.hxx>
38 #include <BOPAlgo_BOP.hxx>
39 #include <BOPAlgo_Section.hxx>
40
41
42 #include <Basics_OCCTVersion.hxx>
43
44 static bool FindInterBySection(const TopoDS_Face& IncF, TopoDS_Shape poly)
45 {
46   if (IncF.IsNull())
47     return false;
48   //make cmp from edges of Inc_sh
49   TopTools_IndexedMapOfShape IncToolsE;
50   TopExp::MapShapes(IncF, TopAbs_EDGE, IncToolsE);
51   BRep_Builder BB;
52   TopoDS_Compound aToolCmp;
53   BB.MakeCompound(aToolCmp);
54   for (int i=1; i<= IncToolsE.Extent();i++)
55     BB.Add(aToolCmp, IncToolsE(i));
56   //
57   //perform bsection - poly vs aToolCmp
58   BOPAlgo_Section aBOP;
59   aBOP.AddArgument(poly);
60   aBOP.AddArgument(aToolCmp);
61   aBOP.SetRunParallel(true);
62
63   aBOP.Perform();
64   //aBOP.GetReport());
65
66 //#if OCC_VERSION_LARGE > 0x07020000
67 //  if (aBOP.HasErrors())
68 //    return false;
69 //#endif
70
71   const TopoDS_Shape& aRes=aBOP.Shape();
72   if (aRes.IsNull())
73     return false;
74
75   bool IsInter = false;
76   TopTools_IndexedMapOfShape aShVE;
77   TopExp::MapShapes(aRes, TopAbs_VERTEX, aShVE);
78   if (aShVE.IsEmpty())
79   {
80     TopExp::MapShapes(aRes, TopAbs_EDGE, aShVE);
81     if (!aShVE.IsEmpty())
82       IsInter = true;
83   }
84   else
85     IsInter = true;
86   return IsInter;
87 }
88
89 bool HYDROData_BoundaryPolygonTools::CutTool( const TopTools_SequenceOfShape& CutTools, 
90                                               NCollection_IndexedDataMap<TopoDS_Shape, TopoDS_Shape>& ObjToRes )
91 {
92   TopTools_IndexedMapOfShape EdgesTools;
93   for (int i =1; i<=CutTools.Length();i++)
94   {
95     const TopoDS_Shape& CSH = CutTools(i);
96     TopExp::MapShapes(CSH, TopAbs_EDGE, EdgesTools);
97   }
98   //
99   BRep_Builder BB;
100   TopoDS_Compound aToolCmp;
101   BB.MakeCompound(aToolCmp);
102   for (int i=1; i<= EdgesTools.Extent();i++)
103     BB.Add(aToolCmp, EdgesTools(i));
104
105   TopoDS_Compound aObjCmp;
106   BB.MakeCompound(aObjCmp);
107   for (int i = 1; i <= ObjToRes.Extent(); i++ )
108   {
109     const TopoDS_Shape& Obj = ObjToRes.FindKey(i);
110     if (!Obj.IsNull())
111       BB.Add(aObjCmp, Obj);
112   }
113
114   Standard_Real aTol;
115
116   aTol = Precision::Confusion();
117   BOPAlgo_BOP aBOP;
118   //
119   aBOP.AddArgument(aObjCmp);
120   aBOP.AddTool(aToolCmp);
121   aBOP.SetOperation(BOPAlgo_FUSE);
122   aBOP.SetRunParallel(true);
123
124   aBOP.Perform();
125
126 #if OCC_VERSION_LARGE > 0x07020000
127   if (aBOP.HasErrors())
128     return false;
129 #endif
130
131   for (int i = 1; i <= ObjToRes.Extent(); i++ )
132   {
133     const TopoDS_Shape& Obj = ObjToRes.FindKey(i);
134     Standard_Real aTol;
135     if (!Obj.IsNull()) 
136     {
137       TopTools_ListOfShape ls = aBOP.Modified(Obj);
138       TopoDS_Shape aRes;
139       if (ls.IsEmpty())
140         aRes = Obj; //no fusing of toolcmp with Obj
141       else if (ls.Extent() == 1)
142         aRes = ls.First();
143       else
144       {
145         BRep_Builder BB;
146         TopoDS_Compound cmp;
147         BB.MakeCompound(cmp);
148         TopTools_ListIteratorOfListOfShape aItLS(ls);
149         for (; aItLS.More(); aItLS.Next()) 
150           BB.Add(cmp, aItLS.Value());
151         aRes = cmp;
152       }  
153       //const TopoDS_Shape& aRes=aBOP.Shape();
154       ObjToRes.ChangeFromKey(Obj) = aRes;
155     }
156   }
157
158   return true;
159 }
160
161
162 bool HYDROData_BoundaryPolygonTools::IncludeTool( const TopTools_SequenceOfShape& IncludeTools, 
163   TopoDS_Shape Obj)
164 {
165   TopExp_Explorer exp(Obj, TopAbs_VERTEX);
166   if (!exp.More())
167     return false;
168   TopoDS_Vertex aV = TopoDS::Vertex(exp.Current());
169   gp_Pnt aP = BRep_Tool::Pnt(aV);
170   for (int i=1; i<=IncludeTools.Size(); i++)
171   {
172     TopoDS_Face IncF = TopoDS::Face(IncludeTools(i));
173     bool IsInter = FindInterBySection(IncF, Obj);
174     if (IsInter)
175       return false;
176     //
177     gp_XY aP2d(aP.X(), aP.Y());
178     TopAbs_State aState = HYDROData_Tool::ComputePointState(aP2d, IncF);
179     if (aState != TopAbs_IN)
180       return false;
181   }
182   return true;
183 }
184
185 bool HYDROData_BoundaryPolygonTools::SelectionTool( const TopTools_SequenceOfShape& SelectionTool, 
186                                     TopoDS_Shape Obj)
187 {
188   for (int i=1; i<=SelectionTool.Size(); i++)
189   {
190     TopoDS_Face IncF = TopoDS::Face(SelectionTool(i));
191     bool IsInter = FindInterBySection(IncF, Obj);
192     if (!IsInter)
193       return false;
194   }
195   return true;
196 }
197
198