Salome HOME
Image positioning by two points.
[modules/hydro.git] / src / HYDROData / HYDROData_CalculationCase.cxx
1
2 #include "HYDROData_CalculationCase.h"
3
4 #include "HYDROData_ArtificialObject.h"
5 #include "HYDROData_Document.h"
6 #include "HYDROData_Iterator.h"
7 #include "HYDROData_NaturalObject.h"
8 #include "HYDROData_SplitToZonesTool.h"
9 #include "HYDROData_Region.h"
10 #include "HYDROData_Tool.h"
11 #include "HYDROData_Zone.h"
12
13 #define PYTHON_CALCULATION_ID "KIND_CALCULATION"
14
15 IMPLEMENT_STANDARD_HANDLE(HYDROData_CalculationCase, HYDROData_Entity)
16 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_CalculationCase, HYDROData_Entity)
17
18 HYDROData_CalculationCase::HYDROData_CalculationCase()
19 : HYDROData_Entity()
20 {
21 }
22
23 HYDROData_CalculationCase::~HYDROData_CalculationCase()
24 {
25 }
26
27 QStringList HYDROData_CalculationCase::DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const
28 {
29   QStringList aResList;
30
31   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( this );
32   if ( aDocument.IsNull() )
33     return aResList;
34                              
35   QString aDocName = aDocument->GetDocPyName();
36   QString aCalculName = GetName();
37
38   aResList << QString( "%1 = %2.CreateObject( %3 );" )
39               .arg( aCalculName ).arg( aDocName ).arg( PYTHON_CALCULATION_ID );
40   aResList << QString( "%1.SetName( \"%2\" );" )
41               .arg( aCalculName ).arg( aCalculName );
42   aResList << QString( "" );
43
44   HYDROData_SequenceOfObjects aGeomObjects = GetGeometryObjects();
45   HYDROData_SequenceOfObjects::Iterator anIter( aGeomObjects );
46   for ( ; anIter.More(); anIter.Next() )
47   {
48     Handle(HYDROData_Object) aRefGeomObj =
49       Handle(HYDROData_Object)::DownCast( anIter.Value() );
50     if ( !aRefGeomObj.IsNull() )
51       setPythonReferenceObject( theTreatedObjects, aResList, aRefGeomObj, "AddGeometryObject" );
52   }
53   aResList << QString( "" );
54
55   aResList << QString( "%1.SplitGeometryObjects();" ).arg( aCalculName );
56   aResList << QString( "" );
57
58   // Now we restore the regions and zones order
59   HYDROData_SequenceOfObjects aRegions = GetRegions();
60   anIter.Init( aRegions );
61   for ( ; anIter.More(); anIter.Next() )
62   {
63     Handle(HYDROData_Region) aRegion =
64       Handle(HYDROData_Region)::DownCast( anIter.Value() );
65     if ( aRegion.IsNull() )
66       continue;
67
68     QString aRegionName = aRegion->GetName();
69     // TODO
70   }
71
72   return aResList;
73 }
74
75 void HYDROData_CalculationCase::SplitGeometryObjects()
76 {
77   // At first we remove previously created regions
78   RemoveRegions();
79
80   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( this );
81   if ( aDocument.IsNull() )
82     return;
83
84   HYDROData_SequenceOfObjects aGeomObjects = GetGeometryObjects();
85   if ( aGeomObjects.IsEmpty() )
86     return;
87
88   HYDROData_SplitToZonesTool::SplitDataList aSplitedZones =
89     HYDROData_SplitToZonesTool::SplitToZones( aGeomObjects );
90   if ( aSplitedZones.isEmpty() )
91     return;
92
93   // Create result regions for case, by default one zone for one region
94   HYDROData_SplitToZonesTool::SplitDataListIterator anIter( aSplitedZones );
95   while( anIter.hasNext() )
96   {
97     const HYDROData_SplitToZonesTool::SplitData& aSplitData = anIter.next();
98
99     // Create new region
100     Handle(HYDROData_Region) aRegion = addNewRegion();
101
102     QString aRegionName = HYDROData_Tool::GenerateObjectName( aDocument, "Region" );
103     aRegion->SetName( aRegionName );
104
105     // Add the zone for region
106     Handle(HYDROData_Zone) aRegionZone = aRegion->addNewZone();
107
108     QString aZoneName = HYDROData_Tool::GenerateObjectName( aDocument, "Zone" );
109     aRegionZone->SetName( aZoneName );
110
111     aRegionZone->SetShape( aSplitData.Face() );
112
113     // Add the reference object for zone
114     for ( int i = 0, n = aSplitData.ObjectNames.length(); i < n; ++i )
115     {
116       const QString& anObjName = aSplitData.ObjectNames.at( i );
117       
118       Handle(HYDROData_Object) aRefObject = Handle(HYDROData_Object)::DownCast(
119         HYDROData_Tool::FindObjectByName( aDocument, anObjName ) );
120       if ( aRefObject.IsNull() )
121         continue;
122
123       aRegionZone->AddGeometryObject( aRefObject );
124     }
125   }
126 }
127
128 bool HYDROData_CalculationCase::AddGeometryObject( const Handle(HYDROData_Object)& theObject )
129 {
130   if ( theObject.IsNull() )
131     return false;
132   
133   if ( !theObject->IsKind( STANDARD_TYPE(HYDROData_ArtificialObject) ) &&
134        !theObject->IsKind( STANDARD_TYPE(HYDROData_NaturalObject) ) )
135     return false; // Wrong type of object
136
137   if ( HasReference( theObject, DataTag_GeometryObject ) )
138     return false; // Object is already in reference list
139
140   AddReferenceObject( theObject, DataTag_GeometryObject );
141   return true;
142 }
143
144 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetGeometryObjects() const
145 {
146   return GetReferenceObjects( DataTag_GeometryObject );
147 }
148
149 void HYDROData_CalculationCase::RemoveGeometryObject( const Handle(HYDROData_Object)& theObject )
150 {
151   if ( theObject.IsNull() )
152     return;
153
154   RemoveReferenceObject( theObject->Label(), DataTag_GeometryObject );
155 }
156
157 void HYDROData_CalculationCase::RemoveGeometryObjects()
158 {
159   ClearReferenceObjects( DataTag_GeometryObject );
160 }
161
162 Handle(HYDROData_Region) HYDROData_CalculationCase::AddNewRegion( const Handle(HYDROData_Zone)& theZone )
163 {
164   Handle(HYDROData_Region) aNewRegion = addNewRegion();
165   if ( aNewRegion.IsNull() )
166     return aNewRegion;
167
168   // Generate new name for new region
169   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( this );
170   if ( !aDocument.IsNull() )
171   {
172     QString aNewRegionName = HYDROData_Tool::GenerateObjectName( aDocument, "Region" );
173     aNewRegion->SetName( aNewRegionName );
174   }
175
176   aNewRegion->AddZone( theZone );
177
178   return aNewRegion;
179 }
180
181 bool HYDROData_CalculationCase::AddRegion( const Handle(HYDROData_Region)& theRegion )
182 {
183   if ( theRegion.IsNull() )
184     return false;
185   
186   if ( HasReference( theRegion, DataTag_Region ) )
187     return false; // Object is already in reference list
188
189   // Move the region from other calculation
190   Handle(HYDROData_CalculationCase) aFatherCalc = 
191     Handle(HYDROData_CalculationCase)::DownCast( theRegion->GetFatherObject() );
192   if ( !aFatherCalc.IsNull() && aFatherCalc->Label() != myLab )
193   {
194     Handle(HYDROData_Region) aNewRegion = addNewRegion();
195     theRegion->CopyTo( aNewRegion );
196
197     aFatherCalc->RemoveRegion( theRegion );
198
199     theRegion->SetLabel( aNewRegion->Label() );
200   }
201
202   AddReferenceObject( theRegion, DataTag_Region );
203   return true;
204 }
205
206 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetRegions() const
207 {
208   return GetReferenceObjects( DataTag_Region );
209 }
210
211 void HYDROData_CalculationCase::RemoveRegion( const Handle(HYDROData_Region)& theRegion )
212 {
213   if ( theRegion.IsNull() )
214     return;
215
216   RemoveReferenceObject( theRegion->Label(), DataTag_Region );
217
218   // Remove region from data model
219   Handle(HYDROData_CalculationCase) aFatherCalc = 
220     Handle(HYDROData_CalculationCase)::DownCast( theRegion->GetFatherObject() );
221   if ( !aFatherCalc.IsNull() && aFatherCalc->Label() == myLab )
222     theRegion->Remove();
223 }
224
225 void HYDROData_CalculationCase::RemoveRegions()
226 {
227   ClearReferenceObjects( DataTag_Region );
228   myLab.FindChild( DataTag_ChildRegion ).ForgetAllAttributes( true );
229 }
230
231 Handle(HYDROData_Region) HYDROData_CalculationCase::addNewRegion()
232 {
233   TDF_Label aNewLab = myLab.FindChild( DataTag_ChildRegion ).NewChild();
234
235   Handle(HYDROData_Region) aNewRegion =
236     Handle(HYDROData_Region)::DownCast( HYDROData_Iterator::CreateObject( aNewLab, KIND_REGION ) );
237   AddRegion( aNewRegion );
238
239   return aNewRegion;
240 }
241