Salome HOME
first part of the porting on OCCT 7.0
[modules/hydro.git] / src / HYDROData / HYDROData_Entity.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include <HYDROData_Entity.h>
20 #include <HYDROData_Document.h>
21 #include <HYDROData_Iterator.h>
22 #include <HYDROData_Tool.h>
23 #include <Standard_GUID.hxx>
24 #include <TDataStd_Name.hxx>
25 #include <TDataStd_ByteArray.hxx>
26 #include <TDataStd_UAttribute.hxx>
27 #include <TDataStd_AsciiString.hxx>
28 #include <TDataStd_Integer.hxx>
29 #include <TDataStd_IntegerArray.hxx>
30 #include <TDataStd_ReferenceList.hxx>
31 #include <TDataStd_Real.hxx>
32 #include <TDF_CopyLabel.hxx>
33 #include <TDF_ListIteratorOfLabelList.hxx>
34 #include <TNaming_Builder.hxx>
35 #include <TNaming_NamedShape.hxx>
36 #include <TopoDS_Shape.hxx>
37 #include <QColor>
38 #include <QRegExp>
39 #include <QStringList>
40 #include <QVariant>
41
42 #define _DEVDEBUG_
43 #include "HYDRO_trace.hxx"
44
45 HYDROData_SequenceOfObjects::HYDROData_SequenceOfObjects()
46   : NCollection_Sequence<Handle(HYDROData_Entity)>()
47 {
48 }
49
50 HYDROData_SequenceOfObjects::HYDROData_SequenceOfObjects( const HYDROData_SequenceOfObjects& theSequence )
51   : NCollection_Sequence<Handle(HYDROData_Entity)>( theSequence )
52 {
53 }
54
55 HYDROData_SequenceOfObjects::HYDROData_SequenceOfObjects( const NCollection_Sequence<Handle(HYDROData_Entity)>& theSequence )
56   : NCollection_Sequence<Handle(HYDROData_Entity)>( theSequence )
57 {
58 }
59
60 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Entity,MMgt_TShared)
61
62 // is equal function for unique object mapping
63 bool IsEqual(const Handle(HYDROData_Entity)& theObj1, const Handle(HYDROData_Entity)& theObj2)
64 {
65   if ( !theObj1.IsNull() && !theObj2.IsNull() )
66     return theObj1->Label() == theObj2->Label();
67   return false;
68 }
69
70 QString HYDROData_Entity::GetName() const
71 {
72   Handle(TDataStd_Name) aName;
73   if (myLab.FindAttribute(TDataStd_Name::GetID(), aName)) {
74     TCollection_AsciiString aStr(aName->Get());
75     return QString(aStr.ToCString());
76   }
77   return QString();
78 }
79
80 QString HYDROData_Entity::GetObjPyName() const
81 {
82   QString aName = GetName();
83   aName.replace(QRegExp("[\\W]"), "_");
84
85   return aName;
86 }
87
88 QString HYDROData_Entity::GetDefaultName() const
89 {
90   QString aName;
91
92   TDF_Label aLabel = myLab.FindChild(DataTag_DefaultName, false);
93   if (!aLabel.IsNull())
94     {
95       Handle(TDataStd_AsciiString) anAsciiStr;
96       if (aLabel.FindAttribute(TDataStd_AsciiString::GetID(), anAsciiStr))
97         aName = QString(anAsciiStr->Get().ToCString());
98     }
99   else
100     aName = GetName();
101
102   return aName;
103
104 }
105
106 void HYDROData_Entity::SetName(const QString& theName, bool isDefault)
107 {
108   TDataStd_Name::Set(myLab, TCollection_ExtendedString(theName.toLatin1().constData()));
109   if (isDefault)
110     {
111       TDF_Label aDefaultNameLabel = myLab.FindChild( DataTag_DefaultName, true );
112       if ( aDefaultNameLabel.IsNull() )
113         return;
114       Handle(TDataStd_AsciiString) theDefaultName;
115
116       if ( !aDefaultNameLabel.FindAttribute( TDataStd_AsciiString::GetID(), theDefaultName ))
117         {
118           TCollection_AsciiString aName = theName.toStdString().c_str();
119           theDefaultName = TDataStd_AsciiString::Set(myLab.FindChild( DataTag_DefaultName), aName );
120         }
121     }
122 }
123
124 QStringList HYDROData_Entity::DumpToPython( const QString& thePyScriptPath,
125                                             MapOfTreatedObjects& theTreatedObjects ) const
126 {
127   QStringList anEmptyList;
128   return anEmptyList;
129 }
130
131 void HYDROData_Entity::Update()
132 {
133   ClearChanged();
134 }
135
136 void HYDROData_Entity::UpdateLocalCS( double theDx, double theDy )
137 {
138   //On the base level no actions are necessary
139 }
140
141 bool HYDROData_Entity::IsHas2dPrs() const
142 {
143   return false;
144 }
145
146 void HYDROData_Entity::Show()
147 {
148   if ( !IsHas2dPrs() )
149     return;
150
151   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
152   if ( aDocument.IsNull() )
153     return;
154
155   aDocument->Show( this );
156 }
157
158 QVariant HYDROData_Entity::GetDataVariant()
159 {
160   return QVariant();
161 }
162
163 void HYDROData_Entity::ClearChanged()
164 {
165   TDataStd_Integer::Set( myLab.FindChild( DataTag_GeomChange ), 0 );
166 }
167
168 int HYDROData_Entity::GetGeomChangeFlag() const
169 {
170   int aGeomChangeFlag = 0;
171   Handle(TDataStd_Integer) aGeomChangeAttr;
172   TDF_Label aGeomChangeLab = myLab.FindChild( DataTag_GeomChange );
173   aGeomChangeLab.FindAttribute( TDataStd_Integer::GetID(), aGeomChangeAttr );
174   if ( !aGeomChangeAttr.IsNull() )
175     aGeomChangeFlag = aGeomChangeAttr->Get();
176   return aGeomChangeFlag;
177 }
178
179 void HYDROData_Entity::Changed( Geometry theChangedGeometry )
180 {
181   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
182   if( aDocument.IsNull() )
183     return;
184
185   int aGeomChangeFlag = 0;
186   Handle(TDataStd_Integer) aGeomChangeAttr;
187   TDF_Label aGeomChangeLab = myLab.FindChild( DataTag_GeomChange );
188   aGeomChangeLab.FindAttribute( TDataStd_Integer::GetID(), aGeomChangeAttr );
189   if ( !aGeomChangeAttr.IsNull() )
190     aGeomChangeFlag = aGeomChangeAttr->Get();
191
192   int aBitsToChange = ( myGeom & theChangedGeometry );
193   if( aBitsToChange == 0 )
194     return;
195
196   aGeomChangeFlag = ( aGeomChangeFlag | aBitsToChange );
197   TDataStd_Integer::Set( aGeomChangeLab, aGeomChangeFlag );
198
199   HYDROData_Iterator anIter( aDocument );
200   for ( ; anIter.More(); anIter.Next() )
201   {
202     Handle(HYDROData_Entity) anObject = anIter.Current();
203     if( anObject.IsNull() )
204       continue;
205     HYDROData_SequenceOfObjects aRefSeq = anObject->GetAllReferenceObjects();
206     for ( int i = 1, n = aRefSeq.Length(); i <= n; ++i )
207     {
208       Handle(HYDROData_Entity) aRefObject = aRefSeq.Value( i );
209       if( aRefObject->Label()==myLab )
210         anObject->Changed( theChangedGeometry );
211     }
212   }
213 }
214
215 bool HYDROData_Entity::IsMustBeUpdated( Geometry theGeom ) const
216 {
217   return ( ( GetGeomChangeFlag() & theGeom ) != 0 );
218 }
219
220 bool HYDROData_Entity::CanBeUpdated() const
221 {
222   return true;
223 }
224
225 bool HYDROData_Entity::IsRemoved() const
226 {
227   return !myLab.HasAttribute();
228 }
229
230 void HYDROData_Entity::Remove()
231 {
232   return myLab.ForgetAllAttributes( true );
233 }
234
235 bool HYDROData_Entity::CanRemove()
236 {
237   return true;
238 }
239
240 HYDROData_Entity::HYDROData_Entity( Geometry theGeom )
241   : myGeom( theGeom )
242 {
243 }
244
245 HYDROData_Entity::~HYDROData_Entity()
246 {
247 }
248
249 void HYDROData_Entity::CopyTo( const Handle(HYDROData_Entity)& theDestination,
250                                bool isGenerateNewName ) const
251 {
252   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
253   if ( aDocument.IsNull() ) {
254     return;
255   }
256
257   TDF_CopyLabel aCopy(myLab, theDestination->Label());
258   aCopy.Perform();
259          
260   if( isGenerateNewName )
261   {
262     // generate a new unique name for the clone object:
263     // case 1: Image_1 -> Image_2
264     // case 2: ImageObj -> ImageObj_1
265     QString aName = theDestination->GetName();
266     QString aPrefix = aName;
267     if( aName.contains( '_' ) ) { // case 1
268       QString aSuffix = aName.section( '_', -1 );
269       bool anIsInteger = false;
270       aSuffix.toInt( &anIsInteger );
271       if( anIsInteger )
272         aPrefix = aName.section( '_', 0, -2 );
273     } else { // case 2
274       aPrefix = aName;
275     }
276
277     aName = HYDROData_Tool::GenerateObjectName( aDocument, aPrefix );
278     theDestination->SetName( aName );
279   }
280 }
281
282 Handle(HYDROData_Entity) HYDROData_Entity::GetFatherObject() const
283 {
284   Handle(HYDROData_Entity) aFather;
285
286   if ( !myLab.IsNull() )
287   {
288     TDF_Label aFatherLabel = myLab.Father();
289
290     while ( aFather.IsNull() && !aFatherLabel.IsNull() && !aFatherLabel.IsRoot() )
291     {
292       aFather = HYDROData_Iterator::Object( aFatherLabel );
293       aFatherLabel = aFatherLabel.Father();
294     }
295   }
296
297   return aFather;
298 }
299
300 HYDROData_SequenceOfObjects HYDROData_Entity::GetAllReferenceObjects() const
301 {
302   return HYDROData_SequenceOfObjects();
303 }
304
305 Standard_Boolean HYDROData_Entity::GetZLevel( Standard_Integer& theLevel ) const
306 {
307   theLevel = -1;
308
309   TDF_Label aLabel = myLab.FindChild( DataTag_ZLevel, false );
310   if ( !aLabel.IsNull() )
311   {
312     Handle(TDataStd_Integer) anIntVal;
313     if ( aLabel.FindAttribute( TDataStd_Integer::GetID(), anIntVal ) )
314     {
315       theLevel = anIntVal->Get();
316       return Standard_True;
317     }
318   }
319
320   return Standard_False;
321 }
322
323 void HYDROData_Entity::SetZLevel( const Standard_Integer& theLevel )
324 {
325   TDataStd_Integer::Set( myLab.FindChild( DataTag_ZLevel ), theLevel );
326 }
327
328 void HYDROData_Entity::RemoveZLevel()
329 {
330   TDF_Label aLabel = myLab.FindChild( DataTag_ZLevel, false );
331   if ( !aLabel.IsNull() )
332     aLabel.ForgetAllAttributes();
333 }
334
335 void HYDROData_Entity::SetLabel( const TDF_Label& theLabel )
336 {
337   myLab = theLabel;
338 }
339
340 void HYDROData_Entity::SaveByteArray( const int   theTag, 
341                                       const char* theData,
342                                       const int   theLen )
343 {
344   TDF_Label aLab = theTag == 0 ? myLab : myLab.FindChild(theTag);
345   // array is empty, remove the attribute
346   if (theLen <= 0) {
347     aLab.ForgetAttribute(TDataStd_ByteArray::GetID());
348     return;
349   }
350   // store data of image in byte array
351   Handle(TDataStd_ByteArray) aData;
352   if (!aLab.FindAttribute(TDataStd_ByteArray::GetID(), aData)) {
353     aData = TDataStd_ByteArray::Set(aLab, 1, theLen);
354   }
355   // copy bytes one by one
356   if (aData->Length() != theLen) {
357     Handle(TColStd_HArray1OfByte) aNewData = new TColStd_HArray1OfByte(1, theLen);
358     for(int a = 0; a < theLen; a++)
359       aNewData->SetValue(a + 1, theData[a]);
360     aData->ChangeArray(aNewData);
361   } else {
362     for(int a = 0; a < theLen; a++)
363       aData->SetValue(a + 1, theData[a]);
364   }
365 }
366
367 const char* HYDROData_Entity::ByteArray(const int theTag, int& theLen) const
368 {
369   TDF_Label aLab = theTag == 0 ? myLab : myLab.FindChild(theTag);
370   Handle(TDataStd_ByteArray) aData;
371   if (!aLab.FindAttribute(TDataStd_ByteArray::GetID(), aData))
372     return NULL; // return empty image if there is no array
373   theLen = aData->Length();
374   if (theLen)
375     return (const char*)(&(aData->InternalArray()->ChangeArray1().ChangeValue(1)));
376   return NULL;
377 }
378
379 int HYDROData_Entity::NbReferenceObjects( const int theTag ) const
380 {
381   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, false );
382   return aRefs.IsNull() ? 0 : aRefs->Extent();
383 }
384
385 bool HYDROData_Entity::HasReference( const Handle(HYDROData_Entity)& theObj,
386                                      const int                      theTag ) const
387 {
388   if ( theObj.IsNull() )
389     return false;
390
391   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, false );
392   if ( aRefs.IsNull() || aRefs->IsEmpty() )
393     return false;
394
395   TDF_ListIteratorOfLabelList aListIt( aRefs->List() );
396   for ( ; aListIt.More(); aListIt.Next() )
397   {
398     const TDF_Label& aRefLabel = aListIt.Value();
399     if  ( theObj->Label() == aRefLabel )
400       return true;
401   }
402
403   return false;
404 }
405
406 void HYDROData_Entity::AddReferenceObject( const Handle(HYDROData_Entity)& theObj,
407                                            const int                      theTag )
408 {
409   if ( theObj.IsNull() )
410     return;
411
412   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, true );
413   aRefs->Append( theObj->Label() );
414 }
415
416 void HYDROData_Entity::SetReferenceObject( const Handle(HYDROData_Entity)& theObj,
417                                            const int                      theTag,
418                                            const int                      theIndex )
419 {
420   if ( theObj.IsNull() )
421   {
422     RemoveReferenceObject( theTag, theIndex );
423     return;
424   }
425
426   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, true );
427
428   if ( theIndex >= aRefs->Extent() )
429   {
430     aRefs->Append( theObj->Label() );
431   }
432   else if ( theIndex < 0 )
433   {
434     aRefs->Prepend( theObj->Label() );
435   }
436   else
437   {
438     RemoveReferenceObject( theTag, theIndex );
439
440     Handle(HYDROData_Entity) aBeforeObj = GetReferenceObject( theTag, theIndex );
441
442     aRefs = getReferenceList( theTag, true ); // because reference list can be removed
443     if ( !aBeforeObj.IsNull() )
444       aRefs->InsertBefore( theObj->Label(), aBeforeObj->Label() );
445     else 
446       aRefs->Append( theObj->Label() );
447   }
448 }
449
450 void HYDROData_Entity::InsertReferenceObject( const Handle(HYDROData_Entity)& theObj,
451                                               const int                      theTag,
452                                               const int                      theBeforeIndex )
453 {
454   if ( theObj.IsNull() )
455     return;
456
457   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, true );
458
459   if ( theBeforeIndex >= aRefs->Extent() )
460   {
461     aRefs->Append( theObj->Label() );
462   }
463   else if ( theBeforeIndex < 0 )
464   {
465     aRefs->Prepend( theObj->Label() );
466   }
467   else
468   {
469     Handle(HYDROData_Entity) aBeforeObj = GetReferenceObject( theTag, theBeforeIndex );
470     if ( !aBeforeObj.IsNull() )
471       aRefs->InsertBefore( theObj->Label(), aBeforeObj->Label() );
472     else 
473       aRefs->Append( theObj->Label() );
474   }
475 }
476
477 void HYDROData_Entity::SetReferenceObjects( const HYDROData_SequenceOfObjects& theObjects,
478                                             const int                          theTag )
479 {
480   ClearReferenceObjects( theTag );
481   if ( theObjects.IsEmpty() )
482     return;
483
484   HYDROData_SequenceOfObjects::Iterator anIter( theObjects );
485   for ( ; anIter.More(); anIter.Next() )
486     AddReferenceObject( anIter.Value(), theTag );
487 }
488
489 Handle(HYDROData_Entity) HYDROData_Entity::GetReferenceObject( const int theTag,
490                                                                const int theIndex ) const
491 {
492   Handle(HYDROData_Entity) aRes;
493
494   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, false );
495   if ( aRefs.IsNull() || theIndex < 0 || theIndex >= aRefs->Extent() )
496     return aRes;
497
498   TDF_ListIteratorOfLabelList anIter( aRefs->List() );
499   for ( int anIndex = 0; anIndex != theIndex && anIter.More(); anIter.Next(), ++anIndex );
500
501   const TDF_Label& aRefLabel = anIter.Value();
502   aRes = HYDROData_Iterator::Object( aRefLabel );
503
504   return aRes;
505 }
506
507 HYDROData_SequenceOfObjects HYDROData_Entity::GetReferenceObjects( const int theTag ) const
508 {
509   HYDROData_SequenceOfObjects aRes;
510
511   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, false );
512   if ( aRefs.IsNull() )
513     return aRes;
514
515   TDF_ListIteratorOfLabelList anIter( aRefs->List() );
516   for ( ; anIter.More(); anIter.Next() )
517   {
518     const TDF_Label& aRefLabel = anIter.Value();
519
520     Handle(HYDROData_Entity) aRefObject = HYDROData_Iterator::Object( aRefLabel );
521     if ( aRefObject.IsNull() )
522       continue;
523
524     aRes.Append( aRefObject );
525   }
526
527   return aRes;
528 }
529
530 void HYDROData_Entity::RemoveReferenceObject( const TDF_Label& theRefLabel,
531                                               const int        theTag )
532 {
533   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, false );
534   if ( aRefs.IsNull() )
535     return;
536
537   if ( aRefs->Extent() == 1 )
538   { 
539     // remove all if only one
540     ClearReferenceObjects( theTag );
541     return;
542   }
543
544   aRefs->Remove( theRefLabel );
545 }
546
547 void HYDROData_Entity::RemoveReferenceObject( const int theTag,
548                                               const int theIndex )
549 {
550   Handle(TDataStd_ReferenceList) aRefs = getReferenceList( theTag, false );
551   if ( aRefs.IsNull() )
552     return;
553
554   if ( aRefs->Extent() == 1 && theIndex == 0 )
555   { 
556     // remove all if only one
557     ClearReferenceObjects( theTag );
558     return;
559   }
560
561   int anIndex = 0;
562   TDF_ListIteratorOfLabelList anIter( aRefs->List() );
563   for ( ; anIndex != theIndex && anIter.More(); anIter.Next(), ++anIndex );
564
565   if ( anIndex != theIndex || !anIter.More() )
566     return;
567
568   const TDF_Label& aRefLabel = anIter.Value();
569   aRefs->Remove( aRefLabel );
570 }
571
572 void HYDROData_Entity::ClearReferenceObjects( const int theTag )
573 {
574   TDF_Label aSetLabel = theTag == 0 ? myLab : myLab.FindChild( theTag );
575   aSetLabel.ForgetAttribute( TDataStd_ReferenceList::GetID() );
576 }
577
578 Handle(TDataStd_ReferenceList) HYDROData_Entity::getReferenceList( const int theTag,
579                                                                    const bool theIsCreate ) const
580 {
581   TDF_Label aLabel = theTag == 0 ? myLab : myLab.FindChild( theTag );
582
583   Handle(TDataStd_ReferenceList) aRefs;
584   if ( !aLabel.FindAttribute( TDataStd_ReferenceList::GetID(), aRefs ) && theIsCreate )
585     aRefs = TDataStd_ReferenceList::Set( aLabel );
586
587   return aRefs;
588 }
589
590 void HYDROData_Entity::SetColor( const QColor& theColor,
591                                  const int     theTag )
592 {
593   TDF_Label aLabel = theTag == 0 ? myLab : myLab.FindChild( theTag );
594
595   Handle(TDataStd_IntegerArray) aColorArray;
596   if ( !aLabel.FindAttribute( TDataStd_IntegerArray::GetID(), aColorArray ) )
597     aColorArray = TDataStd_IntegerArray::Set( aLabel, 1, 4 );
598
599   aColorArray->SetValue( 1, theColor.red()   );
600   aColorArray->SetValue( 2, theColor.green() );
601   aColorArray->SetValue( 3, theColor.blue()  );
602   aColorArray->SetValue( 4, theColor.alpha() );
603 }
604
605 QColor HYDROData_Entity::GetColor( const QColor& theDefColor,
606                                    const int     theTag ) const
607 {
608   QColor aResColor = theDefColor;
609
610   TDF_Label aLabel = theTag == 0 ? myLab : myLab.FindChild( theTag );
611
612   Handle(TDataStd_IntegerArray) aColorArray;
613   if ( aLabel.FindAttribute( TDataStd_IntegerArray::GetID(), aColorArray ) )
614   {
615     aResColor.setRed(   aColorArray->Value( 1 ) );
616     aResColor.setGreen( aColorArray->Value( 2 ) );
617     aResColor.setBlue(  aColorArray->Value( 3 ) );
618     aResColor.setAlpha( aColorArray->Value( 4 ) );
619   }
620
621   return aResColor;
622 }
623
624 QStringList HYDROData_Entity::dumpObjectCreation( MapOfTreatedObjects& theTreatedObjects ) const
625 {
626   QStringList aResList;
627
628   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
629   if ( aDocument.IsNull() )
630     return aResList;
631
632   QString aDocName = aDocument->GetDocPyName();
633   QString aName = GetObjPyName();
634
635   aResList << QString( "%1 = %2.CreateObject( %3 )" )
636               .arg( aName ).arg( aDocName ).arg( getPyTypeID() );
637   aResList << QString( "%1.SetName( \"%2\" )" )
638               .arg( aName ).arg( GetName() );
639   aResList << QString( "" );
640
641   if ( IsHas2dPrs() )
642   {
643     // Dump object z-level in viewer
644     Standard_Integer anObjZLevel = -1;
645     if ( GetZLevel( anObjZLevel ) )
646     {
647       aResList << QString( "%1.SetZLevel( %2 )" )
648                   .arg( aName ).arg( anObjZLevel );
649       aResList << QString( "" );
650     }
651   }
652
653   return aResList;
654 }
655
656 QString HYDROData_Entity::getPyTypeID() const
657 {
658   DEBTRACE("HYDROData_Entity::getPyTypeID " << GetKind());
659   switch( GetKind() )
660   {
661     case KIND_IMAGE:             return "KIND_IMAGE";
662     case KIND_POLYLINE:          return "KIND_POLYLINE";
663     case KIND_BATHYMETRY:        return "KIND_BATHYMETRY";
664     case KIND_ALTITUDE:          return "KIND_ALTITUDE";
665     case KIND_IMMERSIBLE_ZONE:   return "KIND_IMMERSIBLE_ZONE";
666     case KIND_RIVER:             return "KIND_RIVER";
667     case KIND_STREAM:            return "KIND_STREAM";
668     case KIND_CONFLUENCE:        return "KIND_CONFLUENCE";
669     case KIND_CHANNEL:           return "KIND_CHANNEL";
670     case KIND_OBSTACLE:          return "KIND_OBSTACLE";
671     case KIND_DIGUE:             return "KIND_DIGUE";
672     case KIND_PROFILE:           return "KIND_PROFILE";
673     case KIND_PROFILEUZ:         return "KIND_PROFILEUZ";
674     case KIND_POLYLINEXY:        return "KIND_POLYLINEXY";
675     case KIND_CALCULATION:       return "KIND_CALCULATION";
676     case KIND_ZONE:              return "KIND_ZONE";
677     case KIND_REGION:            return "KIND_REGION";
678     case KIND_VISUAL_STATE:      return "KIND_VISUAL_STATE";
679     case KIND_ARTIFICIAL_OBJECT: return "KIND_ARTIFICIAL_OBJECT";
680     case KIND_NATURAL_OBJECT:    return "KIND_NATURAL_OBJECT";
681     case KIND_DUMMY_3D:          return "KIND_DUMMY_3D";
682     case KIND_SHAPES_GROUP:      return "KIND_SHAPES_GROUP";
683     case KIND_SPLIT_GROUP:       return "KIND_SPLIT_GROUP";
684     case KIND_STREAM_ALTITUDE:   return "KIND_STREAM_ALTITUDE";
685     case KIND_OBSTACLE_ALTITUDE: return "KIND_OBSTACLE_ALTITUDE";
686     case KIND_STRICKLER_TABLE:   return "KIND_STRICKLER_TABLE";
687     case KIND_LAND_COVER_OBSOLETE: return "";
688     case KIND_CHANNEL_ALTITUDE:  return "KIND_CHANNEL_ALTITUDE";
689     case KIND_LAND_COVER_MAP:    return "KIND_LAND_COVER_MAP";
690     default:                     return "KIND_UNKNOWN"; ///! Unrecognized object
691   }
692 }
693
694 void HYDROData_Entity::setPythonReferenceObject( const QString&                  thePyScriptPath,
695                                                  MapOfTreatedObjects&            theTreatedObjects,
696                                                  QStringList&                    theScript,
697                                                  const Handle(HYDROData_Entity)& theRefObject,
698                                                  const QString&                  theMethod ) const
699 {
700   if ( !checkObjectPythonDefinition( thePyScriptPath, theTreatedObjects, theScript, theRefObject ) )
701     return;
702
703   QString aRefObjName = theRefObject->GetObjPyName();
704
705   QString anObjName = GetObjPyName();
706   theScript << QString( "%1.%2( %3 )" )
707                .arg( anObjName ).arg( theMethod ).arg( aRefObjName );
708 }
709
710 bool HYDROData_Entity::checkObjectPythonDefinition( const QString&                  thePyScriptPath,
711                                                     MapOfTreatedObjects&            theTreatedObjects,
712                                                     QStringList&                    theScript,
713                                                     const Handle(HYDROData_Entity)& theRefObject ) const
714 {
715   if ( theRefObject.IsNull() )
716     return false;
717
718   QString aRefObjName = theRefObject->GetName();
719   if ( aRefObjName.isEmpty() )
720     return false;
721
722   if ( theTreatedObjects.contains( aRefObjName ) )
723     return true;
724
725   // The definition of reference object must be dumped before this
726   QStringList aRefObjDump = theRefObject->DumpToPython( thePyScriptPath, theTreatedObjects );
727   if ( aRefObjDump.isEmpty() )
728     return false;
729
730   QStringList aTmpList = theScript;
731   theScript = aRefObjDump;
732
733   theScript << QString( "" );
734   theScript << aTmpList;
735
736   theTreatedObjects.insert( aRefObjName, theRefObject );
737
738   return true;
739 }
740
741 void HYDROData_Entity::setPythonObjectColor( QStringList&         theScript,
742                                              const QColor&        theColor,
743                                              const QColor&        theDefaultColor,
744                                              const QString&       theMethod ) const
745 {
746   if ( theColor == theDefaultColor )
747     return; //Do not set the color for object if it like default
748
749   QString anObjName = GetObjPyName();
750   theScript << QString( "%1.%2( QColor( %3, %4, %5, %6 ) )" )
751               .arg( anObjName ).arg( theMethod )
752               .arg( theColor.red()  ).arg( theColor.green() )
753               .arg( theColor.blue() ).arg( theColor.alpha() );
754 }
755
756 void HYDROData_Entity::findPythonReferenceObject( QStringList& theScript,
757                                                   QString      defName) const
758 {
759   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
760   if ( aDocument.IsNull() )
761     return;
762
763   if (defName.isEmpty())
764     theScript << QString( "%1 = %2.FindObjectByName( \"%3\" )" ).arg( GetObjPyName() )
765                                                                 .arg( aDocument->GetDocPyName() )
766                                                                 .arg( GetDefaultName() );
767   else
768     theScript << QString( "%1 = %2.FindObjectByName( \"%3\" )" ).arg( GetObjPyName() )
769                                                                 .arg( aDocument->GetDocPyName() )
770                                                                 .arg( defName );
771 }
772
773 void HYDROData_Entity::SetNameInDumpPython(QStringList&  theScript,
774                                            QString       theName) const
775 {
776   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
777   if ( aDocument.IsNull() )
778     return;
779
780   if (theName.isEmpty())
781       theScript << QString( "%1.SetName( \"%2\" )" ).arg( GetObjPyName() )
782                                                     .arg( GetName() );
783   else
784     theScript << QString( "%1.SetName( \"%2\" )" ).arg( GetObjPyName() )
785                                                   .arg( theName );
786 }
787
788 void HYDROData_Entity::SetShape( int theTag, const TopoDS_Shape& theShape )
789 {
790   TNaming_Builder aBuilder( myLab.FindChild( theTag ) );
791   aBuilder.Generated( theShape );
792 }
793
794 TopoDS_Shape HYDROData_Entity::GetShape( int theTag ) const
795 {
796   TDF_Label aShapeLabel = myLab.FindChild( theTag, false );
797   if ( !aShapeLabel.IsNull() )
798   {
799     Handle(TNaming_NamedShape) aNamedShape;
800     if ( aShapeLabel.FindAttribute( TNaming_NamedShape::GetID(), aNamedShape ) )
801       return aNamedShape->Get();
802   }
803   return TopoDS_Shape();
804 }
805
806 void HYDROData_Entity::SetDouble( int theTag, double theValue )
807 {
808   Handle(TDataStd_Real) anAttr;
809   TDF_Label aLabel = myLab.FindChild( theTag );
810   if( !aLabel.FindAttribute( TDataStd_Real::GetID(), anAttr ) )
811     aLabel.AddAttribute( anAttr = new TDataStd_Real() );
812   anAttr->Set( theValue );
813 }
814
815 double HYDROData_Entity::GetDouble( int theTag, double theDefValue ) const
816 {
817   Handle(TDataStd_Real) anAttr;
818   TDF_Label aLabel = myLab.FindChild( theTag );
819   if( !aLabel.FindAttribute( TDataStd_Real::GetID(), anAttr ) )
820     return theDefValue;
821
822   return anAttr->Get();
823 }