Salome HOME
Merge branch 'master' into pre/penta18
[modules/smesh.git] / src / SMDS / SMDS_VtkCellIterator.cxx
1 // Copyright (C) 2010-2016  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 #include "SMDS_VtkCellIterator.hxx"
21 #include "utilities.h"
22
23 SMDS_VtkCellIterator::SMDS_VtkCellIterator(SMDS_Mesh* mesh, int vtkCellId, SMDSAbs_EntityType aType) :
24   _mesh(mesh), _cellId(vtkCellId), _index(0), _type(aType)
25 {
26   vtkUnstructuredGrid* grid = _mesh->getGrid();
27   _vtkIdList = vtkIdList::New();
28   const std::vector<int>& interlace = SMDS_MeshCell::fromVtkOrder( aType );
29   if ( interlace.empty() )
30   {
31     grid->GetCellPoints(_cellId, _vtkIdList);
32     _nbNodes = _vtkIdList->GetNumberOfIds();
33   }
34   else
35   {
36     vtkIdType npts, *pts;
37     grid->GetCellPoints( _cellId, npts, pts );
38     _vtkIdList->SetNumberOfIds( _nbNodes = npts );
39     for (int i = 0; i < _nbNodes; i++)
40       _vtkIdList->SetId(i, pts[interlace[i]]);
41   }
42 }
43
44 SMDS_VtkCellIterator::~SMDS_VtkCellIterator()
45 {
46   _vtkIdList->Delete();
47 }
48
49 bool SMDS_VtkCellIterator::more()
50 {
51   return (_index < _nbNodes);
52 }
53
54 const SMDS_MeshElement* SMDS_VtkCellIterator::next()
55 {
56   vtkIdType id = _vtkIdList->GetId(_index++);
57   return _mesh->FindNodeVtk(id);
58 }
59
60 SMDS_VtkCellIteratorToUNV::SMDS_VtkCellIteratorToUNV(SMDS_Mesh* mesh, int vtkCellId, SMDSAbs_EntityType aType) :
61   SMDS_VtkCellIterator()
62 {
63   _mesh = mesh;
64   _cellId = vtkCellId;
65   _index = 0;
66   _type = aType;
67   //MESSAGE("SMDS_VtkCellInterlacedIterator (UNV)" << _type);
68
69   _vtkIdList = vtkIdList::New();
70   vtkIdType* pts;
71   vtkUnstructuredGrid* grid = _mesh->getGrid();
72   grid->GetCellPoints((vtkIdType)_cellId, (vtkIdType&)_nbNodes, pts);
73   _vtkIdList->SetNumberOfIds(_nbNodes);
74   const int *ids = 0;
75   switch (_type)
76   {
77   case SMDSEntity_Quad_Edge:
78   {
79     static int id[] = { 0, 2, 1 };
80     ids = id;
81     break;
82   }
83   case SMDSEntity_Quad_Triangle:
84   case SMDSEntity_BiQuad_Triangle:
85   {
86     static int id[] = { 0, 3, 1, 4, 2, 5 };
87     ids = id;
88     _nbNodes = 6;
89     break;
90   }
91   case SMDSEntity_Quad_Quadrangle:
92   case SMDSEntity_BiQuad_Quadrangle:
93   {
94     static int id[] = { 0, 4, 1, 5, 2, 6, 3, 7 };
95     ids = id;
96     _nbNodes = 8;
97     break;
98   }
99   case SMDSEntity_Quad_Tetra:
100   {
101     static int id[] = { 0, 4, 1, 5, 2, 6, 7, 8, 9, 3 };
102     ids = id;
103     break;
104   }
105   case SMDSEntity_Quad_Pyramid:
106   {
107     static int id[] = { 0, 5, 1, 6, 2, 7, 3, 8, 9, 10, 11, 12, 4 };
108     ids = id;
109     break;
110   }
111   case SMDSEntity_Penta:
112   {
113     static int id[] = { 0, 2, 1, 3, 5, 4 };
114     ids = id;
115     break;
116   }
117   case SMDSEntity_Quad_Penta:
118   case SMDSEntity_BiQuad_Penta: //TODO: check
119   {
120     static int id[] = { 0, 8, 2, 7, 1, 6, 12, 14, 13, 3, 11, 5, 10, 4, 9 };
121     ids = id;
122     break;
123   }
124   case SMDSEntity_Quad_Hexa:
125   case SMDSEntity_TriQuad_Hexa:
126   {
127     static int id[] = { 0, 8, 1, 9, 2, 10, 3, 11, 16, 17, 18, 19, 4, 12, 5, 13, 6, 14, 7, 15 };
128     ids = id;
129     _nbNodes = 20;
130     break;
131   }
132   case SMDSEntity_Polygon:
133   case SMDSEntity_Quad_Polygon:
134   case SMDSEntity_Polyhedra:
135   case SMDSEntity_Quad_Polyhedra:
136   default:
137     const std::vector<int>& i = SMDS_MeshCell::interlacedSmdsOrder(aType, _nbNodes);
138     if ( !i.empty() )
139       ids = & i[0];
140   }
141
142   if ( ids )
143     for (int i = 0; i < _nbNodes; i++)
144       _vtkIdList->SetId(i, pts[ids[i]]);
145   else
146     for (int i = 0; i < _nbNodes; i++)
147       _vtkIdList->SetId(i, pts[i]);
148 }
149
150 bool SMDS_VtkCellIteratorToUNV::more()
151 {
152   return SMDS_VtkCellIterator::more();
153 }
154
155 const SMDS_MeshNode* SMDS_VtkCellIteratorToUNV::next()
156 {
157   return static_cast< const SMDS_MeshNode* >( SMDS_VtkCellIterator::next() );
158 }
159
160 SMDS_VtkCellIteratorToUNV::~SMDS_VtkCellIteratorToUNV()
161 {
162 }
163
164 SMDS_VtkCellIteratorPolyH::SMDS_VtkCellIteratorPolyH(SMDS_Mesh* mesh, int vtkCellId, SMDSAbs_EntityType aType) :
165   SMDS_VtkCellIterator()
166 {
167   _mesh = mesh;
168   _cellId = vtkCellId;
169   _index = 0;
170   _type = aType;
171   //MESSAGE("SMDS_VtkCellIteratorPolyH " << _type);
172   _vtkIdList = vtkIdList::New();
173   vtkUnstructuredGrid* grid = _mesh->getGrid();
174   grid->GetCellPoints(_cellId, _vtkIdList);
175   _nbNodes = _vtkIdList->GetNumberOfIds();
176   switch (_type)
177   {
178   case SMDSEntity_Polyhedra:
179   {
180     //MESSAGE("SMDS_VtkCellIterator Polyhedra");
181     vtkIdType nFaces = 0;
182     vtkIdType* ptIds = 0;
183     grid->GetFaceStream(_cellId, nFaces, ptIds);
184     int id = 0;
185     _nbNodesInFaces = 0;
186     for (int i = 0; i < nFaces; i++)
187     {
188       int nodesInFace = ptIds[id]; // nodeIds in ptIds[id+1 .. id+nodesInFace]
189       _nbNodesInFaces += nodesInFace;
190       id += (nodesInFace + 1);
191     }
192     _vtkIdList->SetNumberOfIds(_nbNodesInFaces);
193     id = 0;
194     int n = 0;
195     for (int i = 0; i < nFaces; i++)
196     {
197       int nodesInFace = ptIds[id]; // nodeIds in ptIds[id+1 .. id+nodesInFace]
198       for (int k = 1; k <= nodesInFace; k++)
199         _vtkIdList->SetId(n++, ptIds[id + k]);
200       id += (nodesInFace + 1);
201     }
202     break;
203   }
204   default:
205     assert(0);
206   }
207 }
208
209 SMDS_VtkCellIteratorPolyH::~SMDS_VtkCellIteratorPolyH()
210 {
211 }
212
213 bool SMDS_VtkCellIteratorPolyH::more()
214 {
215   return (_index < _nbNodesInFaces);
216 }