Salome HOME
Reference Bathymetry objects moved to base for geometry objects class.
[modules/hydro.git] / src / HYDROData / HYDROData_Calculation.cxx
1
2 #include "HYDROData_Calculation.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_Calculation, HYDROData_Entity)
16 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Calculation, HYDROData_Entity)
17
18 HYDROData_Calculation::HYDROData_Calculation()
19 : HYDROData_Entity()
20 {
21 }
22
23 HYDROData_Calculation::~HYDROData_Calculation()
24 {
25 }
26
27 QStringList HYDROData_Calculation::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_Calculation::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_Calculation::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_Calculation::GetGeometryObjects() const
145 {
146   return GetReferenceObjects( DataTag_GeometryObject );
147 }
148
149 void HYDROData_Calculation::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_Calculation::RemoveGeometryObjects()
158 {
159   ClearReferenceObjects( DataTag_GeometryObject );
160 }
161
162 Handle(HYDROData_Region) HYDROData_Calculation::AddNewRegion()
163 {
164   TDF_Label aNewLab = myLab.FindChild( ChildTag_Region ).NewChild();
165
166   Handle(HYDROData_Region) aNewRegion =
167     Handle(HYDROData_Region)::DownCast( HYDROData_Iterator::CreateObject( aNewLab, KIND_REGION ) );
168   AddRegion( aNewRegion );
169
170   return aNewRegion;
171 }
172
173 bool HYDROData_Calculation::AddRegion( Handle(HYDROData_Region)& theRegion )
174 {
175   if ( theRegion.IsNull() )
176     return false;
177   
178   if ( HasReference( theRegion, DataTag_Region ) )
179     return false; // Object is already in reference list
180
181   // Move the region from other calculation
182   Handle(HYDROData_Calculation) aFatherCalc = 
183     Handle(HYDROData_Calculation)::DownCast( theRegion->GetFatherObject() );
184   if ( !aFatherCalc.IsNull() && aFatherCalc->Label() != myLab )
185   {
186     Handle(HYDROData_Region) aNewRegion = AddNewRegion();
187     theRegion->CopyTo( aNewRegion );
188
189     aFatherCalc->RemoveRegion( theRegion );
190
191     theRegion = aNewRegion;
192   }
193
194   AddReferenceObject( theRegion, DataTag_Region );
195   return true;
196 }
197
198 HYDROData_SequenceOfObjects HYDROData_Calculation::GetRegions() const
199 {
200   return GetReferenceObjects( DataTag_Region );
201 }
202
203 void HYDROData_Calculation::RemoveRegion( const Handle(HYDROData_Region)& theRegion )
204 {
205   if ( theRegion.IsNull() || !HasReference( theRegion, DataTag_Region ) )
206     return;
207
208   RemoveReferenceObject( theRegion->Label(), DataTag_Region );
209
210   // Remove region from data model
211   theRegion->Remove();
212 }
213
214 void HYDROData_Calculation::RemoveRegions()
215 {
216   ClearReferenceObjects( DataTag_Region );
217   myLab.FindChild( ChildTag_Region ).ForgetAllAttributes( true );
218 }