]> SALOME platform Git repositories - plugins/hexablockplugin.git/blob - src/HEXABLOCKPlugin/HEXABLOCKPlugin_Hypothesis_i.cxx
Salome HOME
First publish of HEXABLOCKPLUGIN
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_Hypothesis_i.cxx
1 //  Copyright (C) 2004-2010  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 // File      : HEXABLOCKPlugin_Hypothesis_i.cxx
21 // Created   : Wed Apr  2 13:53:01 2008
22 // Author    : Lioka RAZAFINDRAZAKA (CEA)
23 //
24 #include <SMESH_Gen.hxx>
25 #include <SMESH_PythonDump.hxx>
26 #include <SMESH_Mesh_i.hxx>
27
28 #include "HEXABLOCK.hxx"
29 #include "HEXABLOCKPlugin_Hypothesis_i.hxx"
30 #include "HexDocument_impl.hxx"
31
32 #include <Utils_CorbaException.hxx>
33 #include <utilities.h>
34
35 //=======================================================================
36 //function : HEXABLOCKPlugin_Hypothesis_i
37 //=======================================================================
38
39 HEXABLOCKPlugin_Hypothesis_i::HEXABLOCKPlugin_Hypothesis_i (PortableServer::POA_ptr thePOA,
40                                                     int                     theStudyId,
41                                                     ::SMESH_Gen*            theGenImpl)
42   : SALOME::GenericObj_i( thePOA ), 
43     SMESH_Hypothesis_i( thePOA )
44 {
45   MESSAGE( "HEXABLOCKPlugin_Hypothesis_i::HEXABLOCKPlugin_Hypothesis_i" );
46   myBaseImpl = new ::HEXABLOCKPlugin_Hypothesis (theGenImpl->GetANewId(),
47                                               theStudyId,
48                                               theGenImpl);
49 }
50
51 //=======================================================================
52 //function : ~HEXABLOCKPlugin_Hypothesis_i
53 //=======================================================================
54
55 HEXABLOCKPlugin_Hypothesis_i::~HEXABLOCKPlugin_Hypothesis_i()
56 {
57   MESSAGE( "HEXABLOCKPlugin_Hypothesis_i::~HEXABLOCKPlugin_Hypothesis_i" );
58 }
59
60 //=============================================================================
61 /*!
62  *  Get implementation
63  */
64 //=============================================================================
65
66 ::HEXABLOCKPlugin_Hypothesis* HEXABLOCKPlugin_Hypothesis_i::GetImpl()
67 {
68   return (::HEXABLOCKPlugin_Hypothesis*)myBaseImpl;
69 }
70
71 //================================================================================
72 /*!
73  * \brief Verify whether hypothesis supports given entity type 
74  */
75 //================================================================================  
76
77 CORBA::Boolean HEXABLOCKPlugin_Hypothesis_i::IsDimSupported( SMESH::Dimension type )
78 {
79   return type == SMESH::DIM_3D;
80 }
81
82 //================================================================================
83 /*!
84  * Define the document to be meshed, mandatory
85  */
86 //================================================================================
87
88 HEXABLOCK_ORB::Document_ptr HEXABLOCKPlugin_Hypothesis_i::GetDocument() {
89   ASSERT(myBaseImpl);
90   HEXA_NS::Document* d = this->GetImpl()->GetDocument();
91   Document_impl* servantCorba = new Document_impl(d);
92   HEXABLOCK_ORB::Document_ptr result = servantCorba->_this();
93   return result;
94 }
95
96 void HEXABLOCKPlugin_Hypothesis_i::SetDocument(HEXABLOCK_ORB::Document_ptr doc) {
97   Document_impl* docServant = ::DownCast<Document_impl*>(doc);
98   if ( docServant ) {
99     HEXA_NS::Document* d = docServant->GetImpl();
100     ASSERT(myBaseImpl);
101     this->GetImpl()->SetDocument(d);
102   }
103 }
104
105 //================================================================================
106 /*!
107  * To define the hight dimension to generated: 3 = hexas, 2 = quads, 1 = segments, 0 = nodes
108  */
109 //================================================================================
110
111 CORBA::Long HEXABLOCKPlugin_Hypothesis_i::GetDimension() {
112   ASSERT(myBaseImpl);
113   return this->GetImpl()->GetDimension();
114 }
115
116 void HEXABLOCKPlugin_Hypothesis_i::SetDimension(CORBA::Long dim) {
117   ASSERT(myBaseImpl);
118   this->GetImpl()->SetDimension(dim);
119 }