]> SALOME platform Git repositories - modules/smesh.git/blob - src/StdMeshers/StdMeshers_ProjectionSource2D.cxx
Salome HOME
PAL13473 (Build repetitive mesh):
[modules/smesh.git] / src / StdMeshers / StdMeshers_ProjectionSource2D.cxx
1 //  SMESH SMESH : idl implementation based on 'SMESH' unit's classes
2 //
3 //  Copyright (C) 2003  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 //
23 //
24 //  File   : StdMeshers_ProjectionSource2D.cxx
25 //  Author : Edward AGAPOV
26 //  Module : SMESH
27 //  $Header$
28
29
30 #include "StdMeshers_ProjectionSource2D.hxx"
31
32 #include "SMESH_Mesh.hxx"
33
34 #include "utilities.h"
35
36 #include <TopoDS.hxx>
37
38 using namespace std;
39
40 //=============================================================================
41 /*!
42  *  StdMeshers_ProjectionSource2D::StdMeshers_ProjectionSource2D
43  *
44  *  Constructor
45  */
46 //=============================================================================
47
48 StdMeshers_ProjectionSource2D::StdMeshers_ProjectionSource2D(int hypId, int studyId,
49                                                              SMESH_Gen * gen)
50   : SMESH_Hypothesis(hypId, studyId, gen)
51 {
52   _name = "ProjectionSource2D"; // used by Projection_2D
53   _param_algo_dim = 2; // 2D
54   _sourceMesh = 0;
55 }
56
57 //=============================================================================
58 /*!
59  *  StdMeshers_ProjectionSource2D::~StdMeshers_ProjectionSource2D
60  *
61  *  Destructor
62  */
63 //=============================================================================
64
65 StdMeshers_ProjectionSource2D::~StdMeshers_ProjectionSource2D()
66 {
67   MESSAGE( "StdMeshers_ProjectionSource2D::~StdMeshers_ProjectionSource2D" );
68 }
69
70 //=============================================================================
71   /*!
72    * Sets a source <face> to take a mesh pattern from
73    */
74 //=============================================================================
75
76 void StdMeshers_ProjectionSource2D::SetSourceFace(const TopoDS_Shape& Face)
77   throw ( SALOME_Exception )
78 {
79   if ( Face.IsNull() )
80     throw SALOME_Exception(LOCALIZED("Null Face is not allowed"));
81
82   if ( Face.ShapeType() != TopAbs_FACE )
83     throw SALOME_Exception(LOCALIZED("Wrong shape type"));
84
85   if ( !_sourceFace.IsSame( Face ) )
86   {
87     _sourceFace = TopoDS::Face( Face );
88
89     NotifySubMeshesHypothesisModification();
90   }
91 }
92
93 //=============================================================================
94 /*!
95  * Sets vertex association between the source face and the target one.
96  * This parameter is optional.
97  * Two vertices must belong to one edge of a face
98  */
99 //=============================================================================
100
101 void StdMeshers_ProjectionSource2D::SetVertexAssociation(const TopoDS_Shape& sourceVertex1,
102                                                          const TopoDS_Shape& sourceVertex2,
103                                                          const TopoDS_Shape& targetVertex1,
104                                                          const TopoDS_Shape& targetVertex2)
105   throw ( SALOME_Exception )
106 {
107   if ( sourceVertex1.IsNull() != targetVertex1.IsNull() ||
108        sourceVertex2.IsNull() != targetVertex2.IsNull() ||
109        sourceVertex1.IsNull() != targetVertex2.IsNull() )
110     throw SALOME_Exception(LOCALIZED("Two or none pairs of vertices must be provided"));
111
112   if ( !sourceVertex1.IsNull() ) {
113     if ( sourceVertex1.ShapeType() != TopAbs_VERTEX ||
114          sourceVertex2.ShapeType() != TopAbs_VERTEX ||
115          targetVertex1.ShapeType() != TopAbs_VERTEX ||
116          targetVertex2.ShapeType() != TopAbs_VERTEX )
117       throw SALOME_Exception(LOCALIZED("Wrong shape type"));
118   }
119
120   if ( !_sourceVertex1.IsSame( sourceVertex1 ) ||
121        !_sourceVertex2.IsSame( sourceVertex2 ) ||
122        !_targetVertex1.IsSame( targetVertex1 ) ||
123        !_targetVertex2.IsSame( targetVertex2 ) )
124   {
125     _sourceVertex1 = TopoDS::Vertex( sourceVertex1 );
126     _sourceVertex2 = TopoDS::Vertex( sourceVertex2 );
127     _targetVertex1 = TopoDS::Vertex( targetVertex1 );
128     _targetVertex2 = TopoDS::Vertex( targetVertex2 );
129
130     NotifySubMeshesHypothesisModification();
131   }
132 }
133
134 //=============================================================================
135 /*!
136  * Returns the source face
137  */
138 //=============================================================================
139
140 TopoDS_Face StdMeshers_ProjectionSource2D::GetSourceFace() const
141 {
142   return _sourceFace;
143 }
144
145 //=============================================================================
146 /*!
147  * Returns the vertex associated with the target vertex.
148  * Result may be nil if association not set
149  */
150 //=============================================================================
151
152 TopoDS_Vertex StdMeshers_ProjectionSource2D::GetSourceVertex(int i) const
153   throw ( SALOME_Exception )
154 {
155   if ( i == 1 )
156     return _sourceVertex1;
157   else if ( i == 2 )
158     return _sourceVertex2;
159   else
160     throw SALOME_Exception(LOCALIZED("Wrong vertex index"));
161 }
162
163 //=============================================================================
164 /*!
165  * Returns the <i>-th target vertex associated with the <i>-th source vertex.
166  * Result may be nil if association not set.
167  */
168 //=============================================================================
169
170 TopoDS_Vertex StdMeshers_ProjectionSource2D::GetTargetVertex(int i) const
171   throw ( SALOME_Exception )
172 {
173   if ( i == 1 )
174     return _targetVertex1;
175   else if ( i == 2 )
176     return _targetVertex2;
177   else
178     throw SALOME_Exception(LOCALIZED("Wrong vertex index"));
179 }
180
181 //=============================================================================
182 /*!
183  *  
184  */
185 //=============================================================================
186
187 ostream & StdMeshers_ProjectionSource2D::SaveTo(ostream & save)
188 {
189   // we store it in order to be able to detect that hypo is really modified
190   save << " " << _sourceFace.TShape().operator->()  ;
191   save << " " << _sourceVertex1.TShape().operator->();
192   save << " " << _targetVertex1.TShape().operator->();
193   save << " " << _sourceVertex2.TShape().operator->();
194   save << " " << _targetVertex2.TShape().operator->();
195   save << " " << ( _sourceMesh ? _sourceMesh->GetId() : -1 );
196   return save;
197 }
198
199 //=============================================================================
200 /*!
201  *  
202  */
203 //=============================================================================
204
205 istream & StdMeshers_ProjectionSource2D::LoadFrom(istream & load)
206 {
207   // impossible to restore w/o any context
208   // It is done by servant
209   return load;
210 }
211
212 //=============================================================================
213 /*!
214  *  
215  */
216 //=============================================================================
217
218 ostream & operator <<(ostream & save, StdMeshers_ProjectionSource2D & hyp)
219 {
220   return hyp.SaveTo( save );
221 }
222
223 //=============================================================================
224 /*!
225  *  
226  */
227 //=============================================================================
228
229 istream & operator >>(istream & load, StdMeshers_ProjectionSource2D & hyp)
230 {
231   return hyp.LoadFrom( load );
232 }
233
234 //================================================================================
235 /*!
236  * \brief Initialize start and end length by the mesh built on the geometry
237  * \param theMesh - the built mesh
238  * \param theShape - the geometry of interest
239  * \retval bool - true if parameter values have been successfully defined
240  */
241 //================================================================================
242
243 bool StdMeshers_ProjectionSource2D::SetParametersByMesh(const SMESH_Mesh*   ,
244                                                         const TopoDS_Shape& )
245 {
246   return false;
247 }
248
249 //================================================================================
250 /*!
251  * \brief Return all parameters
252  */
253 //================================================================================
254
255 void StdMeshers_ProjectionSource2D::GetStoreParams(TopoDS_Shape& s1,
256                                                    TopoDS_Shape& s2,
257                                                    TopoDS_Shape& s3,
258                                                    TopoDS_Shape& s4,
259                                                    TopoDS_Shape& s5) const
260 {
261   s1 = _sourceFace;
262   s2 = _sourceVertex1;
263   s3 = _sourceVertex2;
264   s4 = _targetVertex1;
265   s5 = _targetVertex2;
266 }
267
268 //================================================================================
269 /*!
270  * \brief Set all parameters without notifying on modification
271  */
272 //================================================================================
273
274 void StdMeshers_ProjectionSource2D::RestoreParams(const TopoDS_Shape& s1,
275                                                   const TopoDS_Shape& s2,
276                                                   const TopoDS_Shape& s3,
277                                                   const TopoDS_Shape& s4,
278                                                   const TopoDS_Shape& s5,
279                                                   SMESH_Mesh*         mesh)
280 {
281   _sourceFace    = TopoDS::Face( s1 );
282   _sourceVertex1 = TopoDS::Vertex( s2 );
283   _sourceVertex2 = TopoDS::Vertex( s3 );
284   _targetVertex1 = TopoDS::Vertex( s4 );
285   _targetVertex2 = TopoDS::Vertex( s5 );
286   _sourceMesh   = mesh;
287 }