Salome HOME
Merge branch 'master' into V7_5_BR
[modules/smesh.git] / src / SMDS / SMDS_UnstructuredGrid.hxx
1 // Copyright (C) 2010-2014  CEA/DEN, EDF R&D, OPEN CASCADE
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 // File:    SMDS_UnstructuredGrid.hxx
21 // Author:  prascle
22 // Created: September 16, 2009, 10:28 PM
23
24 #ifndef _SMDS_UNSTRUCTUREDGRID_HXX
25 #define _SMDS_UNSTRUCTUREDGRID_HXX
26
27 #include "SMESH_SMDS.hxx"
28
29 #include <vtkUnstructuredGrid.h>
30 #include <vtkCellLinks.h>
31
32 #include <vector>
33 #include <set>
34 #include <map>
35
36 //#define VTK_HAVE_POLYHEDRON
37 //#ifdef VTK_HAVE_POLYHEDRON
38 #define VTK_MAXTYPE VTK_POLYHEDRON
39 //#else
40 //  #define VTK_MAXTYPE VTK_QUADRATIC_PYRAMID
41 //#endif
42
43 #define NBMAXNEIGHBORS 100
44
45 // allow very huge polyhedrons in tests
46 #define NBMAXNODESINCELL 5000
47
48 class SMDS_Downward;
49 class SMDS_Mesh;
50 class SMDS_MeshCell;
51 class SMDS_MeshVolume;
52
53 class SMDS_EXPORT SMDS_CellLinks: public vtkCellLinks
54 {
55 public:
56   void ResizeForPoint(vtkIdType vtkID);
57   static SMDS_CellLinks* New();
58 protected:
59   SMDS_CellLinks();
60   ~SMDS_CellLinks();
61 };
62
63 class SMDS_EXPORT SMDS_UnstructuredGrid: public vtkUnstructuredGrid
64 {
65 public:
66   void setSMDS_mesh(SMDS_Mesh *mesh);
67   void compactGrid(std::vector<int>& idNodesOldToNew,
68                    int               newNodeSize,
69                    std::vector<int>& idCellsOldToNew,
70                    int               newCellSize);
71   virtual unsigned long GetMTime();
72   // OUV_PORTING_VTK6: seems to be useless
73   //virtual void Update();
74   //virtual void UpdateInformation();
75   virtual vtkPoints *GetPoints();
76
77   //#ifdef VTK_HAVE_POLYHEDRON
78   int InsertNextLinkedCell(int type, int npts, vtkIdType *pts);
79   //#endif
80
81   int CellIdToDownId(int vtkCellId);
82   void setCellIdToDownId(int vtkCellId, int downId);
83   void CleanDownwardConnectivity();
84   void BuildDownwardConnectivity(bool withEdges);
85   int GetNeighbors(int* neighborsVtkIds, int* downIds, unsigned char* downTypes, int vtkId, bool getSkin=false);
86   int GetParentVolumes(int* volVtkIds, int vtkId);
87   int GetParentVolumes(int* volVtkIds, int downId, unsigned char downType);
88   void GetNodeIds(std::set<int>& nodeSet, int downId, unsigned char downType);
89   void ModifyCellNodes(int vtkVolId, std::map<int, int> localClonedNodeIds);
90   int getOrderedNodesOfFace(int vtkVolId, int& dim, std::vector<vtkIdType>& orderedNodes);
91   void BuildLinks();
92   SMDS_MeshCell* extrudeVolumeFromFace(int vtkVolId, int domain1, int domain2,
93                                        std::set<int>&                      originalNodes,
94                                        std::map<int, std::map<int, int> >& nodeDomains,
95                                        std::map<int, std::map<long,int> >& nodeQuadDomains);
96   vtkCellLinks* GetLinks()
97   {
98     return Links;
99   }
100   SMDS_Downward* getDownArray(unsigned char vtkType)
101   {
102     return _downArray[vtkType];
103   }
104   void AllocateDiameters( vtkIdType maxVtkID );
105   void SetBallDiameter( vtkIdType vtkID, double diameter );
106   double GetBallDiameter( vtkIdType vtkID ) const;
107
108   static SMDS_UnstructuredGrid* New();
109   SMDS_Mesh *_mesh;
110
111 protected:
112   SMDS_UnstructuredGrid();
113   ~SMDS_UnstructuredGrid();
114   void copyNodes(vtkPoints *newPoints, std::vector<int>& idNodesOldToNew, int& alreadyCopied, int start, int end);
115   void copyBloc(vtkUnsignedCharArray *newTypes, std::vector<int>& idCellsOldToNew, std::vector<int>& idNodesOldToNew,
116                 vtkCellArray* newConnectivity, vtkIdTypeArray* newLocations, vtkIdType* pointsCell, int& alreadyCopied,
117                 int start, int end);
118
119   std::vector<int> _cellIdToDownId; //!< convert vtk Id to downward[vtkType] id, initialized with -1
120   std::vector<unsigned char> _downTypes;
121   std::vector<SMDS_Downward*> _downArray;
122 };
123
124 #endif  /* _SMDS_UNSTRUCTUREDGRID_HXX */
125