Salome HOME
Updated copyright comment
[plugins/ghs3dplugin.git] / src / GHS3DPlugin / GHS3DPlugin_GHS3D.hxx
1 // Copyright (C) 2004-2024  CEA, EDF
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 //=============================================================================
21 // File      : GHS3DPlugin_GHS3D.hxx
22 // Author    : Edward AGAPOV, modified by Lioka RAZAFINDRAZAKA (CEA) 09/02/2007
23 // Project   : SALOME
24 //=============================================================================
25 //
26 #ifndef _GHS3DPlugin_GHS3D_HXX_
27 #define _GHS3DPlugin_GHS3D_HXX_
28
29 #include <SMESH_Algo.hxx>
30 #include <SMESH_Gen.hxx>
31 #include <SMESH_Gen_i.hxx>
32 #include <SMESH_ProxyMesh.hxx>
33
34 #include <map>
35 #include <vector>
36
37 #ifndef GMFVERSION
38 #define GMFVERSION GmfDouble
39 #endif
40 #define GMFDIMENSION 3
41
42 class GHS3DPlugin_Hypothesis;
43 class SMDS_MeshNode;
44 class SMESH_Mesh;
45 class StdMeshers_ViscousLayers;
46 class TCollection_AsciiString;
47 class _Ghs2smdsConvertor;
48 class TopoDS_Shape;
49
50 class GHS3DPlugin_GHS3D: public SMESH_3D_Algo
51 {
52 public:
53
54   GHS3DPlugin_GHS3D(int hypId, SMESH_Gen* gen);
55   virtual ~GHS3DPlugin_GHS3D();
56
57   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
58                                const TopoDS_Shape& aShape,
59                                Hypothesis_Status&  aStatus);
60   virtual void CancelCompute();
61   bool         computeCanceled() { return _computeCanceled; }
62
63   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
64                         MapShapeNbElems& aResMap);
65
66   virtual bool Compute(SMESH_Mesh&         aMesh,
67                        const TopoDS_Shape& aShape);
68   
69   virtual bool Compute(SMESH_Mesh&         theMesh,
70                        SMESH_MesherHelper* aHelper);                          
71   
72   virtual void SubmeshRestored(SMESH_subMesh* subMesh);
73
74   virtual void SetEventListener(SMESH_subMesh* subMesh);
75
76   bool         importGMFMesh(const char* aGMFFileName, SMESH_Mesh& aMesh);
77
78   virtual double GetProgress() const;
79
80
81   static const char* Name() { return "MG-Tetra"; }
82
83   static SMESH_ComputeErrorPtr getErrorDescription(const char*                logFile,
84                                                    const std::string&         log,
85                                                    const _Ghs2smdsConvertor & toSmdsConvertor,
86                                                    const bool                 isOK = false);
87
88 protected:
89   const GHS3DPlugin_Hypothesis*   _hyp;
90   const StdMeshers_ViscousLayers* _viscousLayersHyp;
91   std::string                     _genericName;
92
93 private:
94
95   TopoDS_Shape entryToShape(std::string entry);
96
97   int                 _iShape;
98   int                 _nbShape;
99   bool                _keepFiles;
100   bool                _removeLogOnSuccess;
101   bool                _logInStandardOutput;
102
103   bool                _isLibUsed;
104   double              _progressAdvance;
105 };
106
107 /*!
108  * \brief Convertor of MG-Tetra elements to SMDS ones
109  */
110 class _Ghs2smdsConvertor
111 {
112   const std::map <int,const SMDS_MeshNode*> * _ghs2NodeMap;
113   const std::vector <const SMDS_MeshNode*> *  _nodeByGhsId;
114   SMESH_ProxyMesh::Ptr                        _mesh;
115
116 public:
117   _Ghs2smdsConvertor( const std::map <int,const SMDS_MeshNode*> & ghs2NodeMap,
118                       SMESH_ProxyMesh::Ptr                        mesh);
119
120   _Ghs2smdsConvertor( const std::vector <const SMDS_MeshNode*> &  nodeByGhsId,
121                       SMESH_ProxyMesh::Ptr                        mesh);
122
123   const SMDS_MeshElement* getElement(const std::vector<int>& ghsNodes) const;
124   const SMDS_Mesh*        getMesh() const;
125 };
126
127 #endif