Salome HOME
Merge from V6_main 13/12/2012
[plugins/blsurfplugin.git] / src / BLSURFPlugin / BLSURFPlugin_Hypothesis_i.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
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.
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    : BLSURFPlugin_Hypothesis.hxx
22 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA) & Lioka RAZAFINDRAZAKA (CEA)
23 //           Size maps developement: Nicolas GEIMER (OCC) & Gilles DAVID (EURIWARE)
24 // ---
25 //
26 #ifndef _BLSURFPlugin_Hypothesis_i_HXX_
27 #define _BLSURFPlugin_Hypothesis_i_HXX_
28
29 #include <SALOMEconfig.h>
30 #include CORBA_SERVER_HEADER(BLSURFPlugin_Algorithm)
31
32 #include "SMESH_Hypothesis_i.hxx"
33 #include "BLSURFPlugin_Hypothesis.hxx"
34
35 class SMESH_Gen;
36 class GEOM_Object;
37
38 // BLSURFPlugin parameters hypothesis
39
40 class BLSURFPlugin_Hypothesis_i: public virtual POA_BLSURFPlugin::BLSURFPlugin_Hypothesis,
41     public virtual SMESH_Hypothesis_i {
42 public:
43   // Constructor
44   BLSURFPlugin_Hypothesis_i(PortableServer::POA_ptr thePOA, int theStudyId, ::SMESH_Gen* theGenImpl);
45   // Destructor
46   virtual ~BLSURFPlugin_Hypothesis_i();
47
48   void SetPhysicalMesh(CORBA::Long theValue);
49   CORBA::Long GetPhysicalMesh();
50
51   void SetGeometricMesh(CORBA::Long theValue);
52   CORBA::Long GetGeometricMesh();
53
54   void SetPhySize(CORBA::Double theValue);
55   void SetPhySizeRel(CORBA::Double theValue);
56   CORBA::Double GetPhySize();
57   CORBA::Boolean IsPhySizeRel();
58
59   void SetMinSize(CORBA::Double theMinSize);
60   void SetMinSizeRel(CORBA::Double theMinSize);
61   CORBA::Double GetMinSize();
62   CORBA::Boolean IsMinSizeRel();
63
64   void SetMaxSize(CORBA::Double theMaxSize);
65   void SetMaxSizeRel(CORBA::Double theMaxSize);
66   CORBA::Double GetMaxSize();
67   CORBA::Boolean IsMaxSizeRel();
68
69   void SetGradation(CORBA::Double theValue);
70   CORBA::Double GetGradation();
71
72   void SetQuadAllowed(CORBA::Boolean theValue);
73   CORBA::Boolean GetQuadAllowed();
74
75   void SetAngleMesh(CORBA::Double theValue);
76   CORBA::Double GetAngleMesh();
77   
78   void SetChordalError(CORBA::Double distance);
79   CORBA::Double GetChordalError();
80   
81   void SetAnisotropic(CORBA::Boolean anisotropic);
82   CORBA::Boolean GetAnisotropic();
83   
84   void SetAnisotropicRatio(CORBA::Double ratio);
85   CORBA::Double GetAnisotropicRatio();
86   
87   void SetRemoveTinyEdges(CORBA::Boolean remove);
88   CORBA::Boolean GetRemoveTinyEdges();
89   
90   void SetTinyEdgeLength(CORBA::Double length);
91   CORBA::Double GetTinyEdgeLength();
92   
93   void SetBadElementRemoval(CORBA::Boolean remove);
94   CORBA::Boolean GetBadElementRemoval();
95   
96   void SetBadElementAspectRatio(CORBA::Double ratio);
97   CORBA::Double GetBadElementAspectRatio();
98   
99   void SetOptimizeMesh(CORBA::Boolean optimize);
100   CORBA::Boolean GetOptimizeMesh();
101   
102   void SetQuadraticMesh(CORBA::Boolean quadratic);
103   CORBA::Boolean GetQuadraticMesh();
104
105   void SetTopology(CORBA::Long theValue);
106   CORBA::Long GetTopology();
107
108   void SetVerbosity(CORBA::Short theVal) throw (SALOME::SALOME_Exception);
109   CORBA::Short GetVerbosity();
110
111   void SetPreCADMergeEdges(CORBA::Boolean theValue);
112   CORBA::Boolean GetPreCADMergeEdges();
113
114   void SetPreCADProcess3DTopology(CORBA::Boolean theValue);
115   CORBA::Boolean GetPreCADProcess3DTopology();
116
117   void SetPreCADDiscardInput(CORBA::Boolean theValue);
118   CORBA::Boolean GetPreCADDiscardInput();
119
120   void SetOptionValue(const char* optionName, const char* optionValue) throw (SALOME::SALOME_Exception);
121   void SetPreCADOptionValue(const char* optionName, const char* optionValue) throw (SALOME::SALOME_Exception);
122   char* GetOptionValue(const char* optionName) throw (SALOME::SALOME_Exception);
123   char* GetPreCADOptionValue(const char* optionName) throw (SALOME::SALOME_Exception);
124
125   void UnsetOption(const char* optionName);
126   void UnsetPreCADOption(const char* optionName);
127
128   BLSURFPlugin::string_array* GetOptionValues();
129   BLSURFPlugin::string_array* GetPreCADOptionValues();
130
131   void SetOptionValues(const BLSURFPlugin::string_array& options) throw (SALOME::SALOME_Exception);
132   void SetPreCADOptionValues(const BLSURFPlugin::string_array& options) throw (SALOME::SALOME_Exception);
133
134   void SetSizeMapEntry(const char* entry, const char* sizeMap) throw (SALOME::SALOME_Exception);
135
136   void SetConstantSizeMapEntry(const char* entry, GEOM::shape_type shapeType, CORBA::Double sizeMap) throw (SALOME::SALOME_Exception);
137
138   char* GetSizeMapEntry(const char* entry) throw (SALOME::SALOME_Exception);
139
140   void UnsetEntry(const char* entry);
141
142   BLSURFPlugin::string_array* GetSizeMapEntries();
143
144   void SetSizeMapEntries(const BLSURFPlugin::string_array& sizeMaps) throw (SALOME::SALOME_Exception);
145
146   void SetSizeMap(GEOM::GEOM_Object_ptr GeomObj, const char* sizeMap);
147
148   void SetConstantSizeMap(GEOM::GEOM_Object_ptr GeomObj, CORBA::Double sizeMap);
149
150   void UnsetSizeMap(GEOM::GEOM_Object_ptr GeomObj);
151
152   void ClearSizeMaps();
153
154   void SetAttractor(GEOM::GEOM_Object_ptr GeomObj, const char* attractor);
155
156   void UnsetAttractor(GEOM::GEOM_Object_ptr GeomObj);
157
158   void SetAttractorEntry(const char* entry, const char* attractor) throw (SALOME::SALOME_Exception);
159
160   char* GetAttractorEntry(const char* entry) throw (SALOME::SALOME_Exception);
161
162   BLSURFPlugin::string_array* GetAttractorEntries();
163   
164   
165   /*!
166     * Set/get/unset an attractor on a face 
167     */
168   
169   void SetAttractorGeom(GEOM::GEOM_Object_ptr GeomObj, GEOM::GEOM_Object_ptr Attractor, CORBA::Double StartSize, CORBA::Double EndSize, CORBA::Double ActionRadius, CORBA::Double ConstantRadius );
170
171   void UnsetAttractorGeom(GEOM::GEOM_Object_ptr GeomObj);
172
173   void SetClassAttractorEntry(const char* entry, const char* att_entry, CORBA::Double StartSize, CORBA::Double EndSize, CORBA::Double ActionRadius, CORBA::Double ConstantRadius)  throw (SALOME::SALOME_Exception);
174
175   BLSURFPlugin::TAttParamsMap* GetAttractorParams();
176   
177
178   /*
179    void SetCustomSizeMap(GEOM::GEOM_Object_ptr GeomObj, const char* sizeMap);
180
181    void UnsetCustomSizeMap(GEOM::GEOM_Object_ptr GeomObj);
182
183    void SetCustomSizeMapEntry(const char* entry,const char* sizeMap )  throw (SALOME::SALOME_Exception);
184
185    char* GetCustomSizeMapEntry(const char* entry)  throw (SALOME::SALOME_Exception);
186
187    BLSURFPlugin::string_array* GetCustomSizeMapEntries();
188    */
189
190   ///////////////////////
191   // ENFORCED VERTEXES //
192   ///////////////////////
193
194   BLSURFPlugin::TFaceEntryEnfVertexListMap* GetAllEnforcedVerticesByFace();
195   BLSURFPlugin::TEnfVertexList* GetAllEnforcedVertices();
196
197   BLSURFPlugin::TFaceEntryCoordsListMap* GetAllCoordsByFace();
198   BLSURFPlugin::TCoordsEnfVertexMap* GetAllEnforcedVerticesByCoords();
199
200   BLSURFPlugin::TFaceEntryEnfVertexEntryListMap* GetAllEnfVertexEntriesByFace();
201   BLSURFPlugin::TEnfVertexEntryEnfVertexMap* GetAllEnforcedVerticesByEnfVertexEntry();
202
203   void ClearAllEnforcedVertices();
204
205   /*!
206    * Set/get/unset an enforced vertex on geom object
207    */
208   bool SetEnforcedVertex(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z)
209       throw (SALOME::SALOME_Exception);
210   bool SetEnforcedVertexNamed(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z, const char* theVertexName)
211       throw (SALOME::SALOME_Exception);
212   bool SetEnforcedVertexGeom(GEOM::GEOM_Object_ptr theFace, GEOM::GEOM_Object_ptr theVertex)
213       throw (SALOME::SALOME_Exception);
214   bool SetEnforcedVertexWithGroup(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z, const char* theGroupName)
215       throw (SALOME::SALOME_Exception);
216   bool SetEnforcedVertexNamedWithGroup(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z, const char* theVertexName, const char* theGroupName)
217       throw (SALOME::SALOME_Exception);
218   bool SetEnforcedVertexGeomWithGroup(GEOM::GEOM_Object_ptr theFace, GEOM::GEOM_Object_ptr theVertex, const char* theGroupName)
219       throw (SALOME::SALOME_Exception);
220
221   BLSURFPlugin::TEnfVertexList* GetEnforcedVertices(GEOM::GEOM_Object_ptr theFace) throw (SALOME::SALOME_Exception);
222
223   bool UnsetEnforcedVertex(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z)
224       throw (SALOME::SALOME_Exception);
225   bool UnsetEnforcedVertexGeom(GEOM::GEOM_Object_ptr theFace, GEOM::GEOM_Object_ptr theVertex)
226       throw (SALOME::SALOME_Exception);
227   bool UnsetEnforcedVertices(GEOM::GEOM_Object_ptr theFace) throw (SALOME::SALOME_Exception);
228
229   /*!
230    * Set/get/unset an enforced vertex on geom object given by entry
231    */
232   bool SetEnforcedVertexEntry(const char* theFaceEntry, CORBA::Double x = 0, CORBA::Double y = 0, CORBA::Double z = 0,
233       const char* theVertexName = "", const char* theVertexEntry = "", const char* theGroupName = "")
234       throw (SALOME::SALOME_Exception);
235
236   BLSURFPlugin::TEnfVertexList* GetEnforcedVerticesEntry(const char* theFaceEntry) throw (SALOME::SALOME_Exception);
237
238   bool UnsetEnforcedVertexEntry(const char* theFaceEntry, CORBA::Double x, CORBA::Double y, CORBA::Double z,
239       const char* theVertexEntry = "") throw (SALOME::SALOME_Exception);
240   bool UnsetEnforcedVerticesEntry(const char* theFaceEntry) throw (SALOME::SALOME_Exception);
241
242   /*!
243    * To add internal vertices as enforced vertices
244    */
245   void SetInternalEnforcedVertexAllFaces(CORBA::Boolean toEnforceInternalVertices);
246   CORBA::Boolean GetInternalEnforcedVertexAllFaces();
247   void SetInternalEnforcedVertexAllFacesGroup(const char*  groupName = "");
248   char* GetInternalEnforcedVertexAllFacesGroup();
249
250 // Enable internal enforced vertices on specific face if requested by user
251 //  void SetInternalEnforcedVertex(GEOM::GEOM_Object_ptr theFace, CORBA::Boolean toEnforceInternalVertices) throw (SALOME::SALOME_Exception);
252 //  void SetInternalEnforcedVertexWithGroup(GEOM::GEOM_Object_ptr theFace, CORBA::Boolean toEnforceInternalVertices, const char* theGroupName = "") throw (SALOME::SALOME_Exception);
253 //  void SetInternalEnforcedVertexEntry(const char* theFaceEntry, CORBA::Boolean toEnforceInternalVertices, const char* theGroupName = "") throw (SALOME::SALOME_Exception);
254 //  CORBA::Boolean GetInternalEnforcedVertex(GEOM::GEOM_Object_ptr theFace) throw (SALOME::SALOME_Exception);
255 //  CORBA::Boolean GetInternalEnforcedVertexEntry(const char* theFaceEntry) throw (SALOME::SALOME_Exception);
256   
257   ///////////////////////
258   
259   /*!
260     * Sets the file for export resulting mesh in GMF format
261     */
262 //   void SetGMFFile(const char* theFileName, CORBA::Boolean isBinary);
263   void SetGMFFile(const char* theFileName);
264   char* GetGMFFile();
265 //   CORBA::Boolean GetGMFFileMode();
266
267   // Get implementation
268   ::BLSURFPlugin_Hypothesis* GetImpl();
269
270   // Verify whether hypothesis supports given entity type 
271   CORBA::Boolean IsDimSupported(SMESH::Dimension type);
272
273
274   //
275   // Obsolete methods - To be removed in V7
276   //
277   void SetPhyMin(CORBA::Double theMinSize);
278   CORBA::Double GetPhyMin();
279   void SetPhyMax(CORBA::Double theMaxSize);
280   CORBA::Double GetPhyMax();
281   void SetGeoMin(CORBA::Double theMinSize);
282   CORBA::Double GetGeoMin();
283   void SetGeoMax(CORBA::Double theMaxSize);
284   CORBA::Double GetGeoMax();
285   void SetAngleMeshS(CORBA::Double angle);
286   CORBA::Double GetAngleMeshS();
287   void SetAngleMeshC(CORBA::Double angle);
288   CORBA::Double GetAngleMeshC();
289   void SetDecimesh(CORBA::Boolean toIgnoreEdges);
290   CORBA::Boolean GetDecimesh();
291   void SetPreCADRemoveNanoEdges(CORBA::Boolean toRemoveNanoEdges);
292   CORBA::Boolean GetPreCADRemoveNanoEdges();
293   void SetPreCADEpsNano(CORBA::Double epsNano);
294   CORBA::Double GetPreCADEpsNano();
295 };
296
297 #endif