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.
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.
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
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #ifndef HYDROData_SplitToZonesTool_H
20 #define HYDROData_SplitToZonesTool_H
23 #pragma warning ( disable: 4251 )
26 #include <HYDROData_Object.h>
27 #include <HYDROData_Transform.h>
28 #include <TopoDS_Shape.hxx>
29 #include <TopoDS_Compound.hxx>
30 #include <TopoDS_Face.hxx>
31 #include <TopTools_ShapeMapHasher.hxx>
32 #include <NCollection_IndexedMap.hxx>
33 #include <TopTools_IndexedDataMapOfShapeShape.hxx>
34 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
35 #include <TopTools_ListOfShape.hxx>
36 #include <QStringList>
37 #include <NCollection_DataMap.hxx>
39 class HYDROData_PolylineXY;
42 * \class HYDROData_SplitToZonesTool
43 * \brief This class contains methods used for splitting geometry objects
44 * into non-intersected regions.
46 class HYDRODATA_EXPORT HYDROData_SplitToZonesTool
49 struct HYDRODATA_EXPORT SplitData
60 QStringList ObjectNames;
66 SplitData( const SplitObjectType& theType,
67 const TopoDS_Shape& theShape,
68 const QStringList& theObjectNames ) :
69 Type( theType ), Shape( theShape ), ObjectNames( theObjectNames ) {}
71 SplitData( const SplitObjectType& theType,
72 const TopoDS_Shape& theShape,
73 const QString& theObjectName ) :
74 Type( theType ), Shape( theShape ), ObjectNames( theObjectName ) {}
76 TopoDS_Face Face() const;
79 typedef QList <SplitData> SplitDataList;
80 typedef QListIterator<SplitData> SplitDataListIterator;
81 typedef NCollection_IndexedMap<TopoDS_Shape, TopTools_ShapeMapHasher> HYDROData_MapOfShape;
82 typedef HYDROData_MapOfShape::Iterator HYDROData_MapIteratorOfMapOfShape;
83 typedef NCollection_IndexedDataMap<TopoDS_Shape, TopTools_ListOfShape, TopTools_ShapeMapHasher> HYDROData_DataMapOfShapeListOfShape;
84 typedef HYDROData_DataMapOfShapeListOfShape::Iterator HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape;
85 typedef NCollection_IndexedDataMap<TopoDS_Shape, QStringList, TopTools_ShapeMapHasher> HYDROData_DataMapOfShapeListOfString;
86 typedef HYDROData_DataMapOfShapeListOfString::Iterator HYDROData_DataMapIteratorOfDataMapOfShapeListOfString;
87 #undef _NCollection_MapHasher
91 static SplitDataList Split( const HYDROData_SequenceOfObjects& theObjectList,
92 const HYDROData_SequenceOfObjects& theGroupsList,
93 const Handle(HYDROData_PolylineXY)& thePolyline,
94 const HYDROData_SequenceOfObjects& InterPolys );
96 static SplitDataList Split( const HYDROData_SequenceOfObjects& theObjectList );
98 static void AddInternalEdges(HYDROData_DataMapOfShapeListOfShape& DM,
99 const HYDROData_SequenceOfObjects& thePolylines,
100 NCollection_DataMap<TopoDS_Shape, Handle(HYDROData_PolylineXY), TopTools_ShapeMapHasher>* OutNE);
102 static void CutFaceByEdges(const TopoDS_Face& in,
103 TopTools_ListOfShape& out,
104 const HYDROData_SequenceOfObjects& thePolylines,
105 NCollection_DataMap<TopoDS_Shape, Handle(HYDROData_PolylineXY), TopTools_ShapeMapHasher>* OutNE,
106 TopTools_IndexedDataMapOfShapeListOfShape* OutOrSh2M);
108 static int CutByEdges(const TopoDS_Shape& InSh, const TopTools_ListOfShape& InW,
109 TopTools_ListOfShape& outShs,
110 TopTools_IndexedDataMapOfShapeShape* OutNE2OE,
111 TopTools_IndexedDataMapOfShapeListOfShape* OInSH2MSH);
113 static void SetFileNames(const QString& theNameBefore, const QString& theNameAfter);
120 static Standard_Integer SplitFaces(const TopoDS_Compound& theComp, HYDROData_Transform& theTool);
124 #pragma warning ( default: 4251 )