Salome HOME
PR: debug SMDS memimp
[modules/smesh.git] / src / SMDS / SMDS_MeshElementIDFactory.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SMESH SMDS : implementaion of Salome mesh data structure
23 //  File   : SMDS_MeshElementIDFactory.cxx
24 //  Author : Jean-Michel BOULCOURT
25 //  Module : SMESH
26 //
27 #ifdef _MSC_VER
28 #pragma warning(disable:4786)
29 #endif
30
31 #include "SMDS_MeshElementIDFactory.hxx"
32 #include "SMDS_MeshElement.hxx"
33 #include "SMDS_Mesh.hxx"
34
35 #include "utilities.h"
36
37 #include <vtkUnstructuredGrid.h>
38 #include <vtkCellType.h>
39
40 using namespace std;
41
42 //=======================================================================
43 //function : SMDS_MeshElementIDFactory
44 //purpose  : 
45 //=======================================================================
46 SMDS_MeshElementIDFactory::SMDS_MeshElementIDFactory():
47   SMDS_MeshNodeIDFactory()
48 {
49 //    myIDElements.clear();
50 //    myVtkIndex.clear();
51     myVtkCellTypes.clear();
52     myVtkCellTypes.reserve(SMDSEntity_Last);
53     myVtkCellTypes[SMDSEntity_Node]            = VTK_VERTEX;
54     myVtkCellTypes[SMDSEntity_0D]              = VTK_VERTEX;
55     myVtkCellTypes[SMDSEntity_Edge]            = VTK_LINE;
56     myVtkCellTypes[SMDSEntity_Quad_Edge]       = VTK_QUADRATIC_EDGE;
57     myVtkCellTypes[SMDSEntity_Triangle]        = VTK_TRIANGLE;
58     myVtkCellTypes[SMDSEntity_Quad_Triangle]   = VTK_QUADRATIC_TRIANGLE;
59     myVtkCellTypes[SMDSEntity_Quadrangle]      = VTK_QUAD;
60     myVtkCellTypes[SMDSEntity_Quad_Quadrangle] = VTK_QUADRATIC_TRIANGLE;
61     myVtkCellTypes[SMDSEntity_Polygon]         = VTK_POLYGON;
62     myVtkCellTypes[SMDSEntity_Quad_Polygon]    = VTK_POLYGON; // -PR- verifer
63     myVtkCellTypes[SMDSEntity_Tetra]           = VTK_TETRA;
64     myVtkCellTypes[SMDSEntity_Quad_Tetra]      = VTK_QUADRATIC_TETRA;
65     myVtkCellTypes[SMDSEntity_Pyramid]         = VTK_PYRAMID;
66     myVtkCellTypes[SMDSEntity_Quad_Pyramid]    = VTK_CONVEX_POINT_SET;
67     myVtkCellTypes[SMDSEntity_Hexa]            = VTK_HEXAHEDRON;
68     myVtkCellTypes[SMDSEntity_Quad_Hexa]       = VTK_QUADRATIC_HEXAHEDRON;
69     myVtkCellTypes[SMDSEntity_Penta]           = VTK_WEDGE;
70     myVtkCellTypes[SMDSEntity_Quad_Penta]      = VTK_QUADRATIC_WEDGE;
71     myVtkCellTypes[SMDSEntity_Polyhedra]       = VTK_CONVEX_POINT_SET;
72     myVtkCellTypes[SMDSEntity_Quad_Polyhedra]  = VTK_CONVEX_POINT_SET;
73 }
74
75 int SMDS_MeshElementIDFactory::SetInVtkGrid(SMDS_MeshElement * elem)
76 {
77    // --- retreive nodes ID
78
79   vector<vtkIdType> nodeIds;
80   SMDS_ElemIteratorPtr it = elem->nodesIterator();
81   while(it->more())
82   {
83       int nodeId = it->next()->GetID();
84       //MESSAGE("   node in cell " << ID << " : " <<nodeId)
85       nodeIds.push_back(nodeId);
86   }
87
88   // --- insert cell in vtkUnstructuredGrid
89
90   vtkUnstructuredGrid * grid = myMesh->getGrid();
91   int typ = GetVtkCellType(elem->GetType());
92   int cellId = grid->InsertNextLinkedCell(typ, nodeIds.size(), &nodeIds[0]);
93   SMDS_MeshCell *cell = dynamic_cast<SMDS_MeshCell*>(elem);
94   assert(cell);
95   cell->setVtkId(cellId); 
96   //MESSAGE("SMDS_MeshElementIDFactory::SetInVtkGrid " << cellId);
97   return cellId;
98 }
99
100 //=======================================================================
101 //function : BindID
102 //purpose  : 
103 //=======================================================================
104
105 bool SMDS_MeshElementIDFactory::BindID(int ID, SMDS_MeshElement * elem)
106 {
107   MESSAGE("SMDS_MeshElementIDFactory::BindID " << ID);
108   SetInVtkGrid(elem);
109   return myMesh->registerElement(ID, elem);
110 }
111
112 //=======================================================================
113 //function : MeshElement
114 //purpose  : 
115 //=======================================================================
116 SMDS_MeshElement* SMDS_MeshElementIDFactory::MeshElement(int ID)
117 {
118   if ((ID<0) || (ID>myMax) || (myMesh->myIDElements[ID]<0))
119     return NULL;
120   const SMDS_MeshElement* elem = GetMesh()->FindElement(ID);
121   return (SMDS_MeshElement*)(elem);
122 }
123
124 //=======================================================================
125 //function : ReleaseID
126 //purpose  : 
127 //=======================================================================
128 void SMDS_MeshElementIDFactory::ReleaseID(const int ID)
129 {
130   int vtkId = myMesh->myIDElements[ID];
131   //MESSAGE("~~~~~~~~~~~~~~ SMDS_MeshElementIDFactory::ReleaseID smdsId vtkId " << ID << " " << vtkId);
132   myMesh->myIDElements[ID] = -1;
133   myMesh->myVtkIndex[vtkId] = -1;
134   SMDS_MeshIDFactory::ReleaseID(ID);
135   if (ID == myMax)
136     myMax = 0;
137   if (ID == myMin)
138     myMax = 0;
139 }
140
141 //=======================================================================
142 //function : updateMinMax
143 //purpose  : 
144 //=======================================================================
145
146 void SMDS_MeshElementIDFactory::updateMinMax() const
147 {
148   myMin = IntegerLast();
149   myMax = 0;
150   for (int i=0; i<myMesh->myIDElements.size(); i++)
151       if (int id=myMesh->myIDElements[i] >=0)
152       {
153         if (id > myMax) myMax = id;
154         if (id < myMin) myMin = id;
155       }
156   if (myMin == IntegerLast())
157     myMin = 0;
158 }
159
160 //=======================================================================
161 //function : elementsIterator
162 //purpose  : Return an iterator on elements of the factory
163 //=======================================================================
164
165 SMDS_ElemIteratorPtr SMDS_MeshElementIDFactory::elementsIterator() const
166 {
167     return myMesh->elementsIterator(SMDSAbs_All);
168 }
169
170 void SMDS_MeshElementIDFactory::Clear()
171 {
172   myMesh->myIDElements.clear();
173   myMin = myMax = 0;
174   SMDS_MeshIDFactory::Clear();
175 }
176
177 int SMDS_MeshElementIDFactory::GetVtkCellType(int SMDSType)
178 {
179     assert((SMDSType >=0) && (SMDSType< SMDSEntity_Last));
180     return myVtkCellTypes[SMDSType];
181 }