Salome HOME
Merge multi-study removal branch.
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_SimpleHypothesis_2D_i.cxx
1 // Copyright (C) 2007-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 //  NETGENPlugin : C++ implementation
21 // File      : NETGENPlugin_SimpleHypothesis_2D_i.cxx
22 // Author    : Edward AGAPOV
23 // Project   : SALOME
24 //=============================================================================
25 //
26 #include "NETGENPlugin_SimpleHypothesis_2D_i.hxx"
27 #include "NETGENPlugin_SimpleHypothesis_2D.hxx"
28
29 #include <SMESH_Gen.hxx>
30 #include <SMESH_PythonDump.hxx>
31
32 #include <Utils_CorbaException.hxx>
33 #include <utilities.h>
34
35 #include <TCollection_AsciiString.hxx>
36
37 using namespace std;
38
39 //=============================================================================
40 /*!
41  *  NETGENPlugin_SimpleHypothesis_2D_i::NETGENPlugin_SimpleHypothesis_2D_i
42  *
43  *  Constructor
44  */
45 //=============================================================================
46 NETGENPlugin_SimpleHypothesis_2D_i::
47 NETGENPlugin_SimpleHypothesis_2D_i (PortableServer::POA_ptr thePOA,
48                                     ::SMESH_Gen*            theGenImpl)
49   : SALOME::GenericObj_i( thePOA ),
50     SMESH_Hypothesis_i( thePOA )
51 {
52   //MESSAGE( "NETGENPlugin_SimpleHypothesis_2D_i::NETGENPlugin_SimpleHypothesis_2D_i" );
53   myBaseImpl = new ::NETGENPlugin_SimpleHypothesis_2D (theGenImpl->GetANewId(),
54                                                        theGenImpl);
55 }
56
57 //=============================================================================
58 /*!
59  *  NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i
60  *
61  *  Destructor
62  */
63 //=============================================================================
64 NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i()
65 {
66   //MESSAGE( "NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i" );
67 }
68
69 //=============================================================================
70 /*!
71  *  NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments
72  */
73 //=============================================================================
74 void NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments(CORBA::Short nb)
75   throw ( SALOME::SALOME_Exception )
76 {
77   ASSERT(myBaseImpl);
78   try {
79     this->GetImpl()->SetNumberOfSegments(nb);
80   }
81   catch (SALOME_Exception& S_ex) {
82     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
83   }
84   SMESH::TPythonDump() << _this() << ".SetNumberOfSegments( " << SMESH::TVar(nb) << " )";
85 }
86
87 //=============================================================================
88 /*!
89  *  NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments()
90  */
91 //=============================================================================
92 CORBA::Short NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments()
93 {
94   ASSERT(myBaseImpl);
95   return this->GetImpl()->GetNumberOfSegments();
96 }
97
98 //================================================================================
99 /*!
100  * LocalLength()
101  */
102 //================================================================================
103
104 void NETGENPlugin_SimpleHypothesis_2D_i::SetLocalLength(CORBA::Double segmentLength)
105 {
106   ASSERT(myBaseImpl);
107   try {
108     this->GetImpl()->SetLocalLength(segmentLength);
109   }
110   catch (SALOME_Exception& S_ex) {
111     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
112   }
113   SMESH::TPythonDump() << _this() << ".SetLocalLength( " << SMESH::TVar(segmentLength) << " )";
114 }
115
116 //================================================================================
117 /*!
118  * GetLocalLength()
119  */
120 //================================================================================
121
122 CORBA::Double NETGENPlugin_SimpleHypothesis_2D_i::GetLocalLength()
123 {
124   ASSERT(myBaseImpl);
125   return this->GetImpl()->GetLocalLength();
126 }
127
128 //=============================================================================
129 /*!
130  *  NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges()
131  */
132 //=============================================================================
133 void NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges()
134 {
135   ASSERT(myBaseImpl);
136   this->GetImpl()->LengthFromEdges();
137   SMESH::TPythonDump() << _this() << ".LengthFromEdges()";
138 }
139
140 //=============================================================================
141 /*!
142  *  NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea()
143  */
144 //=============================================================================
145 void NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea(CORBA::Double area)
146 {
147   ASSERT(myBaseImpl);
148   this->GetImpl()->SetMaxElementArea(area);
149   SMESH::TPythonDump() << _this() << ".SetMaxElementArea( " << SMESH::TVar(area) << " )";
150 }
151
152
153 //=============================================================================
154 /*!
155  *  NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea()
156  */
157 //=============================================================================
158
159 CORBA::Double NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea()
160 {
161   ASSERT(myBaseImpl);
162   return this->GetImpl()->GetMaxElementArea();
163 }
164
165 //=============================================================================
166 /*!
167  * Enables/disables generation of quadrangular faces
168  */
169 //=============================================================================
170
171 void NETGENPlugin_SimpleHypothesis_2D_i::SetAllowQuadrangles(CORBA::Boolean toAllow)
172 {
173   ASSERT(myBaseImpl);
174   SMESH::TPythonDump() << _this() << ".SetAllowQuadrangles( " << toAllow << " )";
175   this->GetImpl()->SetAllowQuadrangles(toAllow);
176 }
177
178 //=============================================================================
179 /*!
180  * Returns true if generation of quadrangular faces is enabled
181  */
182 //=============================================================================
183
184 CORBA::Boolean NETGENPlugin_SimpleHypothesis_2D_i::GetAllowQuadrangles()
185 {
186   return this->GetImpl()->GetAllowQuadrangles();
187 }
188 //=============================================================================
189 /*!
190  *  NETGENPlugin_SimpleHypothesis_2D_i::GetImpl
191  */
192 //=============================================================================
193 ::NETGENPlugin_SimpleHypothesis_2D* NETGENPlugin_SimpleHypothesis_2D_i::GetImpl() const
194 {
195   return (::NETGENPlugin_SimpleHypothesis_2D*)myBaseImpl;
196 }
197
198 //================================================================================
199 /*!
200  * \brief Verify whether hypothesis supports given entity type 
201  * \param type - dimension (see SMESH::Dimension enumeration)
202  * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
203  *
204  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
205  */
206 //================================================================================  
207 CORBA::Boolean NETGENPlugin_SimpleHypothesis_2D_i::IsDimSupported( SMESH::Dimension type )
208 {
209   return type == SMESH::DIM_2D;
210 }
211
212 //================================================================================
213 /*!
214  * \brief method intended to remove explicit treatment of Netgen hypotheses from SMESH_NoteBook
215  */
216 //================================================================================
217
218 int NETGENPlugin_SimpleHypothesis_2D_i::getParamIndex(const TCollection_AsciiString& method,
219                                                       int nbVars) const
220 {
221   if ( method == "SetLocalLength"      ) return 0;
222   if ( method == "SetNumberOfSegments" ) return 0;
223   if ( method == "SetMaxElementArea"   ) return 1;
224   if ( method == "LengthFromEdges"     ) return 10; // just to go to the next state
225   if ( method == "SetMaxElementVolume" ) return 2;
226   if ( method == "LengthFromFaces"     ) return 10; // just to go to the next state
227
228   return SMESH_Hypothesis_i::getParamIndex( method, nbVars ); // return default value
229 }
230
231 //================================================================================
232 /*!
233  * \brief Method used to convert variable parameters stored in an old study
234  * into myMethod2VarParams. It should return a method name for an index of
235  * variable parameters. Index is countered from zero
236  */
237 //================================================================================
238
239 std::string NETGENPlugin_SimpleHypothesis_2D_i::getMethodOfParameter(const int paramIndex,
240                                                                      int nbVars) const
241 {
242   switch ( paramIndex ) {
243   case 0: return GetImpl()->GetNumberOfSegments() ? "SetNumberOfSegments" : "SetLocalLength";
244   case 1: return "SetMaxElementArea";
245   case 2: return "SetMaxElementVolume";
246   }
247   return "";
248 }