X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Object.cxx;h=64530903e6def5149778aefb12b7b2302190613d;hb=51aede29b04122754c8e8897ca37fcc9823839be;hp=23f9038cdd8dbe09584119c54768909e06513413;hpb=efb4364f3d91fb7106136328dec46c9e376d2144;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Object.cxx b/src/HYDROData/HYDROData_Object.cxx index 23f9038c..64530903 100644 --- a/src/HYDROData/HYDROData_Object.cxx +++ b/src/HYDROData/HYDROData_Object.cxx @@ -1,100 +1,270 @@ -#include -#include -#include -#include -#include -#include -#include -#include +#include "HYDROData_Object.h" -IMPLEMENT_STANDARD_HANDLE(HYDROData_Object,MMgt_TShared) -IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Object,MMgt_TShared) +#include "HYDROData_Bathymetry.h" +#include "HYDROData_DummyObject3D.h" +#include "HYDROData_ShapesGroup.h" +#include "HYDROData_Iterator.h" -// is equal function for unique object mapping -bool IsEqual(const Handle_HYDROData_Object& theObj1, const Handle_HYDROData_Object& theObj2) +#include +#include + +#include + +#include + +IMPLEMENT_STANDARD_HANDLE(HYDROData_Object,HYDROData_Entity) +IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Object,HYDROData_Entity) + +HYDROData_Object::HYDROData_Object() +: HYDROData_Entity() { - return (theObj1->ID() == theObj2->ID()); } -QString HYDROData_Object::GetName() const +HYDROData_Object::~HYDROData_Object() { - Handle(TDataStd_Name) aName; - if (myLab.FindAttribute(TDataStd_Name::GetID(), aName)) { - TCollection_AsciiString aStr(aName->Get()); - return QString(aStr.ToCString()); +} + +void HYDROData_Object::SetName( const QString& theName ) +{ + QString anOldObjName = GetName(); + if ( anOldObjName != theName ) + { + HYDROData_SequenceOfObjects aGroups = GetGroups(); + HYDROData_SequenceOfObjects::Iterator anIter( aGroups ); + for ( ; anIter.More(); anIter.Next() ) + { + Handle(HYDROData_ShapesGroup) aGroup = + Handle(HYDROData_ShapesGroup)::DownCast( anIter.Value() ); + if ( aGroup.IsNull() ) + continue; + + QString aGroupName = aGroup->GetName(); + if ( anOldObjName.isEmpty() ) + aGroupName.prepend( theName + "_" ); + else if ( aGroupName.startsWith( anOldObjName ) ) + aGroupName.replace( anOldObjName, theName ); + else + continue; + + aGroup->SetName( aGroupName ); + } } - return QString(); + + HYDROData_Entity::SetName( theName ); } -void HYDROData_Object::SetName(const QString& theName) +void HYDROData_Object::Update() { - TDataStd_Name::Set(myLab, TCollection_ExtendedString(theName.toLatin1().constData())); + HYDROData_Entity::Update(); + removeTopShape(); + removeShape3D(); + removeGroupObjects(); } -bool HYDROData_Object::IsRemoved() const +HYDROData_SequenceOfObjects HYDROData_Object::GetAllReferenceObjects() const { - return !myLab.HasAttribute(); + HYDROData_SequenceOfObjects aResSeq = HYDROData_Entity::GetAllReferenceObjects(); + + Handle(HYDROData_Bathymetry) aRefBathymetry = GetBathymetry(); + if ( !aRefBathymetry.IsNull() ) + aResSeq.Append( aRefBathymetry ); + + return aResSeq; } -void HYDROData_Object::Remove() +void HYDROData_Object::SetToUpdate( bool theFlag ) { - return myLab.ForgetAllAttributes(Standard_True); + HYDROData_Entity::SetToUpdate( theFlag ); + + Handle(HYDROData_DummyObject3D) anObject3D = GetObject3D(); + if ( !anObject3D.IsNull() ) + anObject3D->SetToUpdate( theFlag ); } -HYDROData_Object::HYDROData_Object() +void HYDROData_Object::SetTopShape( const TopoDS_Shape& theShape ) { + TNaming_Builder aBuilder( myLab.FindChild( DataTag_TopShape ) ); + aBuilder.Generated( theShape ); } -HYDROData_Object::~HYDROData_Object() +void HYDROData_Object::SetShape3D( const TopoDS_Shape& theShape ) +{ + TNaming_Builder aBuilder( myLab.FindChild( DataTag_Shape3D ) ); + aBuilder.Generated( theShape ); + + // Check the object 3D existance + checkAndSetObject3D(); +} + +Handle(HYDROData_DummyObject3D) HYDROData_Object::GetObject3D() const +{ + Handle(HYDROData_DummyObject3D) anObject; + + TDF_Label aLabel = myLab.FindChild( DataTag_Object3D, false ); + if ( !aLabel.IsNull() ) + { + TDF_Label aChildLabel = aLabel.FindChild( 0, false ); + if ( !aChildLabel.IsNull() ) + { + anObject = Handle(HYDROData_DummyObject3D)::DownCast( + HYDROData_Iterator::Object( aChildLabel ) ); + } + } + + return anObject; +} + +void HYDROData_Object::checkAndSetObject3D() { + TDF_Label aLabel = myLab.FindChild( DataTag_Object3D, false ); + if ( !aLabel.IsNull() ) + return; + + TDF_Label aChildLabel = myLab.FindChild( DataTag_Object3D ).FindChild( 0 ); + HYDROData_Iterator::CreateObject( aChildLabel, KIND_DUMMY_3D ); } -void HYDROData_Object::CopyTo(Handle_HYDROData_Object theDestination) const +HYDROData_SequenceOfObjects HYDROData_Object::GetGroups() const { - TDF_CopyLabel aCopy(myLab, theDestination->Label()); - aCopy.Perform(); + return GetReferenceObjects( DataTag_EdgesGroup ); } -void HYDROData_Object::SetLabel(TDF_Label theLabel) +bool HYDROData_Object::SetBathymetry( const Handle(HYDROData_Bathymetry)& theBathymetry ) { - myLab = theLabel; + if ( theBathymetry.IsNull() ) + return false; + + Handle(HYDROData_Bathymetry) aPrevBathymetry = GetBathymetry(); + if ( IsEqual( aPrevBathymetry, theBathymetry ) ) + return true; + + SetReferenceObject( theBathymetry, DataTag_Bathymetry ); + + // Indicate model of the need to update object + SetToUpdate( true ); + + return true; } -void HYDROData_Object::SaveByteArray(const int theTag, - const char* theData, const int theLen) + +Handle(HYDROData_Bathymetry) HYDROData_Object::GetBathymetry() const { - TDF_Label aLab = theTag == 0 ? myLab : myLab.FindChild(theTag); - // array is empty, remove the attribute - if (theLen <= 0) { - aLab.ForgetAttribute(TDataStd_ByteArray::GetID()); + return Handle(HYDROData_Bathymetry)::DownCast( + GetReferenceObject( DataTag_Bathymetry ) ); +} + +void HYDROData_Object::RemoveBathymetry() +{ + Handle(HYDROData_Bathymetry) aPrevBathymetry = GetBathymetry(); + if ( aPrevBathymetry.IsNull() ) return; + + ClearReferenceObjects( DataTag_Bathymetry ); + + // Indicate model of the need to update object + SetToUpdate( true ); +} + +void HYDROData_Object::SetFillingColor( const QColor& theColor ) +{ + SetColor( theColor, DataTag_FillingColor ); +} + +QColor HYDROData_Object::GetFillingColor() const +{ + return GetColor( getDefaultFillingColor(), DataTag_FillingColor ); +} + +void HYDROData_Object::SetBorderColor( const QColor& theColor ) +{ + SetColor( theColor, DataTag_BorderColor ); +} + +QColor HYDROData_Object::GetBorderColor() const +{ + return GetColor( getDefaultBorderColor(), DataTag_BorderColor ); +} + +QColor HYDROData_Object::DefaultFillingColor() +{ + return QColor( Qt::yellow ); +} + +QColor HYDROData_Object::DefaultBorderColor() +{ + return QColor( Qt::transparent ); +} + +QColor HYDROData_Object::getDefaultFillingColor() const +{ + return DefaultFillingColor(); +} + +QColor HYDROData_Object::getDefaultBorderColor() const +{ + return DefaultBorderColor(); +} + +Handle(HYDROData_ShapesGroup) HYDROData_Object::createGroupObject() +{ + TDF_Label aNewLab = myLab.FindChild( DataTag_EdgesGroup ).NewChild(); + + Handle(HYDROData_ShapesGroup) aNewGroup = + Handle(HYDROData_ShapesGroup)::DownCast( HYDROData_Iterator::CreateObject( aNewLab, KIND_SHAPES_GROUP ) ); + AddReferenceObject( aNewGroup, DataTag_EdgesGroup ); + + return aNewGroup; +} + +void HYDROData_Object::createGroupObjects() +{ +} + +void HYDROData_Object::removeGroupObjects() +{ + TDF_Label aLabel = myLab.FindChild( DataTag_EdgesGroup, false ); + if ( !aLabel.IsNull() ) + aLabel.ForgetAllAttributes(); +} + +TopoDS_Shape HYDROData_Object::getTopShape() const +{ + TDF_Label aLabel = myLab.FindChild( DataTag_TopShape, false ); + if ( !aLabel.IsNull() ) + { + Handle(TNaming_NamedShape) aNamedShape; + if( aLabel.FindAttribute( TNaming_NamedShape::GetID(), aNamedShape ) ) + return aNamedShape->Get(); } - // store data of image in byte array - Handle(TDataStd_ByteArray) aData; - if (!aLab.FindAttribute(TDataStd_ByteArray::GetID(), aData)) { - aData = TDataStd_ByteArray::Set(aLab, 1, theLen); - } - // copy bytes one by one - if (aData->Length() != theLen) { - Handle(TColStd_HArray1OfByte) aNewData = new TColStd_HArray1OfByte(1, theLen); - for(int a = 0; a < theLen; a++) - aNewData->SetValue(a + 1, theData[a]); - aData->ChangeArray(aNewData); - } else { - for(int a = 0; a < theLen; a++) - aData->SetValue(a + 1, theData[a]); + + return TopoDS_Shape(); +} + +void HYDROData_Object::removeTopShape() +{ + TDF_Label aLabel = myLab.FindChild( DataTag_TopShape, false ); + if ( !aLabel.IsNull() ) + aLabel.ForgetAllAttributes(); +} + +TopoDS_Shape HYDROData_Object::getShape3D() const +{ + TDF_Label aLabel = myLab.FindChild( DataTag_Shape3D, false ); + if ( !aLabel.IsNull() ) + { + Handle(TNaming_NamedShape) aNamedShape; + if( aLabel.FindAttribute( TNaming_NamedShape::GetID(), aNamedShape ) ) + return aNamedShape->Get(); } + + return TopoDS_Shape(); } -const char* HYDROData_Object::ByteArray(const int theTag, int& theLen) +void HYDROData_Object::removeShape3D() { - TDF_Label aLab = theTag == 0 ? myLab : myLab.FindChild(theTag); - Handle(TDataStd_ByteArray) aData; - if (!aLab.FindAttribute(TDataStd_ByteArray::GetID(), aData)) - return NULL; // return empty image if there is no array - theLen = aData->Length(); - if (theLen) - return (const char*)(&(aData->InternalArray()->ChangeArray1().ChangeValue(1))); - return NULL; + TDF_Label aLabel = myLab.FindChild( DataTag_Shape3D, false ); + if ( !aLabel.IsNull() ) + aLabel.ForgetAllAttributes(); } +