diff --git a/src/RWStepAP214/RWStepAP214_GeneralModule.cxx b/src/RWStepAP214/RWStepAP214_GeneralModule.cxx index 24adce5bd4..2d99080436 100644 --- a/src/RWStepAP214/RWStepAP214_GeneralModule.cxx +++ b/src/RWStepAP214/RWStepAP214_GeneralModule.cxx @@ -385,6 +385,7 @@ #include #include #include +#include #include #include #include @@ -923,6 +924,7 @@ #include #include #include +#include #include #include #include @@ -4970,6 +4972,12 @@ void RWStepAP214_GeneralModule::FillSharedCase(const Standard_Integer CN, tool.Share(anent,iter); } break; + case 702: + { + DeclareAndCast(StepRepr_FeatureForDatumTargetRelationship,anent,ent); + RWStepRepr_RWFeatureForDatumTargetRelationship tool; + tool.Share(anent,iter); + } default : break; } @@ -6917,6 +6925,9 @@ Standard_Boolean RWStepAP214_GeneralModule::NewVoid case 701: ent = new StepRepr_ValueRepresentationItem; break; + case 702: + ent = new StepRepr_FeatureForDatumTargetRelationship; + break; default: return Standard_False; diff --git a/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx b/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx index 950b94e290..81d240a64a 100644 --- a/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx +++ b/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx @@ -295,6 +295,7 @@ Handle(atype) result = Handle(atype)::DownCast (start) #include #include #include +#include #include #include #include @@ -686,6 +687,7 @@ Handle(atype) result = Handle(atype)::DownCast (start) #include #include #include +#include #include #include #include @@ -9100,6 +9102,13 @@ void RWStepAP214_ReadWriteModule::ReadStep(const Standard_Integer CN, tool.ReadStep (data,num,ach,anent); } break; + case 702: + { + DeclareAndCast(StepRepr_FeatureForDatumTargetRelationship,anent,ent); + RWStepRepr_RWFeatureForDatumTargetRelationship tool; + tool.ReadStep (data,num,ach,anent); + } + break; default: ach->AddFail("Type Mismatch when reading - Entity"); @@ -13801,6 +13810,13 @@ void RWStepAP214_ReadWriteModule::WriteStep(const Standard_Integer CN, tool.WriteStep (SW,anent); } break; + case 702: + { + DeclareAndCast(StepRepr_FeatureForDatumTargetRelationship,anent,ent); + RWStepRepr_RWFeatureForDatumTargetRelationship tool; + tool.WriteStep (SW,anent); + } + break; default: return; diff --git a/src/RWStepRepr/FILES b/src/RWStepRepr/FILES index 82328855a1..55feba9bc7 100644 --- a/src/RWStepRepr/FILES +++ b/src/RWStepRepr/FILES @@ -38,6 +38,8 @@ RWStepRepr_RWDescriptiveRepresentationItem.cxx RWStepRepr_RWDescriptiveRepresentationItem.hxx RWStepRepr_RWExtension.cxx RWStepRepr_RWExtension.hxx +RWStepRepr_RWFeatureForDatumTargetRelationship.cxx +RWStepRepr_RWFeatureForDatumTargetRelationship.hxx RWStepRepr_RWFunctionallyDefinedTransformation.cxx RWStepRepr_RWFunctionallyDefinedTransformation.hxx RWStepRepr_RWGeometricAlignment.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.cxx b/src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.cxx new file mode 100644 index 0000000000..abecde9602 --- /dev/null +++ b/src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.cxx @@ -0,0 +1,112 @@ +// Created on: 2000-04-18 +// Created by: Andrey BETENEV +// Copyright (c) 2000-2014 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0 + +#include +#include +#include +#include +#include +#include +#include + +//======================================================================= +//function : RWStepRepr_RWFeatureForDatumTargetRelationship +//purpose : +//======================================================================= +RWStepRepr_RWFeatureForDatumTargetRelationship::RWStepRepr_RWFeatureForDatumTargetRelationship () +{ +} + +//======================================================================= +//function : ReadStep +//purpose : +//======================================================================= + +void RWStepRepr_RWFeatureForDatumTargetRelationship::ReadStep (const Handle(StepData_StepReaderData)& data, + const Standard_Integer num, + Handle(Interface_Check)& ach, + const Handle(StepRepr_FeatureForDatumTargetRelationship) &ent) const +{ + // Check number of parameters + if ( ! data->CheckNbParams(num,4,ach,"feature_for_datum_target-relationship") ) return; + + // Own fields of ShapeAspectRelationship + + Handle(TCollection_HAsciiString) aName; + data->ReadString (num, 1, "name", ach, aName); + + Handle(TCollection_HAsciiString) aDescription; + Standard_Boolean hasDescription = Standard_True; + if ( data->IsParamDefined (num,2) ) { + data->ReadString (num, 2, "description", ach, aDescription); + } + else { + hasDescription = Standard_False; + } + + Handle(StepRepr_ShapeAspect) aRelatingShapeAspect; + data->ReadEntity (num, 3, "relating_shape_aspect", ach, STANDARD_TYPE(StepRepr_ShapeAspect), aRelatingShapeAspect); + + Handle(StepRepr_ShapeAspect) aRelatedShapeAspect; + data->ReadEntity (num, 4, "related_shape_aspect", ach, STANDARD_TYPE(StepRepr_ShapeAspect), aRelatedShapeAspect); + + // Initialize entity + ent->Init(aName, + hasDescription, + aDescription, + aRelatingShapeAspect, + aRelatedShapeAspect); +} + +//======================================================================= +//function : WriteStep +//purpose : +//======================================================================= + +void RWStepRepr_RWFeatureForDatumTargetRelationship::WriteStep (StepData_StepWriter& SW, + const Handle(StepRepr_FeatureForDatumTargetRelationship) &ent) const +{ + + // Own fields of ShapeAspectRelationship + + SW.Send (ent->Name()); + + if ( ent->HasDescription() ) { + SW.Send (ent->Description()); + } + else SW.SendUndef(); + + SW.Send (ent->RelatingShapeAspect()); + + SW.Send (ent->RelatedShapeAspect()); +} + +//======================================================================= +//function : Share +//purpose : +//======================================================================= + +void RWStepRepr_RWFeatureForDatumTargetRelationship::Share (const Handle(StepRepr_FeatureForDatumTargetRelationship) &ent, + Interface_EntityIterator& iter) const +{ + + // Own fields of ShapeAspectRelationship + + iter.AddItem (ent->RelatingShapeAspect()); + + iter.AddItem (ent->RelatedShapeAspect()); +} diff --git a/src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.hxx b/src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.hxx new file mode 100644 index 0000000000..47eb8f1be4 --- /dev/null +++ b/src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.hxx @@ -0,0 +1,74 @@ +// Created on: 2000-04-18 +// Created by: Andrey BETENEV +// Copyright (c) 2000-2014 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +#ifndef _RWStepRepr_RWFeatureForDatumTargetRelationship_HeaderFile +#define _RWStepRepr_RWFeatureForDatumTargetRelationship_HeaderFile + +#include +#include +#include + +#include +class StepData_StepReaderData; +class Interface_Check; +class StepRepr_FeatureForDatumTargetRelationship; +class StepData_StepWriter; +class Interface_EntityIterator; + + +//! Read & Write tool for FeatureForDatumTargetRelationship +class RWStepRepr_RWFeatureForDatumTargetRelationship +{ +public: + + DEFINE_STANDARD_ALLOC + + + //! Empty constructor + Standard_EXPORT RWStepRepr_RWFeatureForDatumTargetRelationship(); + + //! Reads ShapeAspectRelationship + Standard_EXPORT void ReadStep (const Handle(StepData_StepReaderData)& data, const Standard_Integer num, Handle(Interface_Check)& ach, const Handle(StepRepr_FeatureForDatumTargetRelationship)& ent) const; + + //! Writes ShapeAspectRelationship + Standard_EXPORT void WriteStep (StepData_StepWriter& SW, const Handle(StepRepr_FeatureForDatumTargetRelationship)& ent) const; + + //! Fills data for graph (shared items) + Standard_EXPORT void Share (const Handle(StepRepr_FeatureForDatumTargetRelationship)& ent, Interface_EntityIterator& iter) const; + + + + +protected: + + + + + +private: + + + + + +}; + + + + + + + +#endif // _RWStepRepr_RWFeatureForDatumTargetRelationship_HeaderFile diff --git a/src/STEPCAFControl/STEPCAFControl_Reader.cxx b/src/STEPCAFControl/STEPCAFControl_Reader.cxx index e25075a6ad..954e94802a 100644 --- a/src/STEPCAFControl/STEPCAFControl_Reader.cxx +++ b/src/STEPCAFControl/STEPCAFControl_Reader.cxx @@ -17,12 +17,15 @@ #include #include #include +#include +#include #include #include #include #include #include #include +#include #include #include #include @@ -51,6 +54,9 @@ #include #include #include +#include +#include +#include #include #include #include @@ -59,23 +65,38 @@ #include #include #include +#include +#include +#include #include #include #include #include +#include #include #include #include #include #include #include +#include #include +#include #include #include #include +#include +#include #include +#include +#include +#include +#include +#include +#include #include #include +#include #include #include #include @@ -85,21 +106,39 @@ #include #include #include +#include #include #include #include +#include #include #include +#include +#include +#include #include #include #include #include +#include #include +#include +#include +#include +#include #include #include #include +#include +#include #include +#include +#include +#include +#include +#include #include +#include #include #include #include @@ -107,14 +146,20 @@ #include #include #include +#include #include #include +#include +#include #include #include #include #include #include #include +#include +#include +#include #include #include #include @@ -122,6 +167,7 @@ #include #include #include +#include #include #include #include @@ -138,6 +184,7 @@ #include #include #include +#include #include #include #include @@ -153,15 +200,25 @@ #include #include #include +#include +#include +#include #include #include #include #include #include #include +#include +#include +#include +#include +#include #include #include - +#include +#include +#include // skl 21.08.2003 for reading G&DT //#include //#include @@ -1567,9 +1624,9 @@ static Standard_Boolean GetLengthConversionFactor(Handle(StepBasic_NamedUnit)& N Handle(StepBasic_SiUnit) SU = Handle(StepBasic_SiUnit)::DownCast(NU2); if(SU->Name()==StepBasic_sunMetre) { if(SU->HasPrefix()) - afact *= STEPConstruct_UnitContext::ConvertSiPrefix (SU->Prefix()); - // convert m to mm - afact *= 1000.; + afact *= STEPConstruct_UnitContext::ConvertSiPrefix (SU->Prefix()); + // convert m to mm + afact *= 1000.; } } } @@ -1577,6 +1634,35 @@ static Standard_Boolean GetLengthConversionFactor(Handle(StepBasic_NamedUnit)& N } +//======================================================================= +//function : GetAngleConversionFactor +//purpose : +//======================================================================= +static Standard_Boolean GetAngleConversionFactor(Handle(StepBasic_NamedUnit)& NU, + Standard_Real& afact) +{ + afact=1.; + if( !NU->IsKind(STANDARD_TYPE(StepBasic_ConversionBasedUnitAndPlaneAngleUnit)) ) return Standard_False; + Handle(StepBasic_ConversionBasedUnitAndPlaneAngleUnit) CBULU = + Handle(StepBasic_ConversionBasedUnitAndPlaneAngleUnit)::DownCast(NU); + Handle(StepBasic_MeasureWithUnit) MWUCBU = CBULU->ConversionFactor(); + afact = MWUCBU->ValueComponent(); + StepBasic_Unit anUnit2 = MWUCBU->UnitComponent(); + if(anUnit2.CaseNum(anUnit2.Value())==1) { + Handle(StepBasic_NamedUnit) NU2 = anUnit2.NamedUnit(); + if(NU2->IsKind(STANDARD_TYPE(StepBasic_SiUnit))) { + Handle(StepBasic_SiUnit) SU = Handle(StepBasic_SiUnit)::DownCast(NU2); + if(SU->Name()==StepBasic_sunRadian) { + if(SU->HasPrefix()) + afact *= STEPConstruct_UnitContext::ConvertSiPrefix (SU->Prefix()); + // convert radian to deg + afact *= 180/M_PI; + } + } + } + return Standard_True; +} + //======================================================================= //function : GetMassConversionFactor //purpose : @@ -1597,7 +1683,7 @@ static Standard_Boolean GetMassConversionFactor(Handle(StepBasic_NamedUnit)& NU, Handle(StepBasic_SiUnit) SU = Handle(StepBasic_SiUnit)::DownCast(NU2); if(SU->Name()==StepBasic_sunGram) { if(SU->HasPrefix()) - afact *= STEPConstruct_UnitContext::ConvertSiPrefix (SU->Prefix()); + afact *= STEPConstruct_UnitContext::ConvertSiPrefix (SU->Prefix()); } } } @@ -1668,234 +1754,1439 @@ static Standard_Boolean ReadDatums(const Handle(XCAFDoc_ShapeTool) &STool, //======================================================================= -//function : ReadGDTs +//function : setDatumToXCAF //purpose : //======================================================================= - -Standard_Boolean STEPCAFControl_Reader::ReadGDTs(const Handle(XSControl_WorkSession) &WS, - Handle(TDocStd_Document)& Doc) const +static Standard_Boolean setDatumToXCAF(const Handle(StepDimTol_Datum)& theDat, + const TDF_Label theGDTL, + const Standard_Integer thePositionCounter, + const XCAFDimTolObjects_DatumModifiersSequence& aXCAFModifiers, + const XCAFDimTolObjects_DatumModifWithValue aXCAFModifWithVal, + const Standard_Real aModifValue, + const Handle(TDocStd_Document)& theDoc, + const Handle(XSControl_WorkSession)& theWS) { - Handle(Interface_InterfaceModel) Model = WS->Model(); - Handle(XCAFDoc_ShapeTool) STool = XCAFDoc_DocumentTool::ShapeTool( Doc->Main() ); - Handle(XSControl_TransferReader) TR = WS->TransferReader(); - Handle(Transfer_TransientProcess) TP = TR->TransientProcess(); - Handle(XCAFDoc_DimTolTool) DGTTool = XCAFDoc_DocumentTool::DimTolTool( Doc->Main() ); - if ( DGTTool.IsNull() ) return Standard_False; - - Standard_Integer nb = Model->NbEntities(); - const Interface_Graph& graph = TP->Graph(); - for(Standard_Integer i=1; i<=nb; i++) { - Handle(Standard_Transient) ent = Model->Value(i); - if(ent->IsKind(STANDARD_TYPE(StepRepr_ShapeAspect))) { - Handle(StepRepr_ShapeAspect) SA = Handle(StepRepr_ShapeAspect)::DownCast(ent); - // find RepresentationItem for current ShapeAspect - Handle(StepRepr_RepresentationItem) RI; - Handle(StepRepr_PropertyDefinition) PropD; - Interface_EntityIterator subs3 = graph.Sharings(SA); - for(subs3.Start(); subs3.More() && PropD.IsNull(); subs3.Next()) { - PropD = Handle(StepRepr_PropertyDefinition)::DownCast(subs3.Value()); + Handle(XCAFDoc_ShapeTool) aSTool = XCAFDoc_DocumentTool::ShapeTool( theDoc->Main() ); + Handle(XCAFDoc_DimTolTool) aDGTTool = XCAFDoc_DocumentTool::DimTolTool( theDoc->Main() ); + Handle(XSControl_TransferReader) aTR = theWS->TransferReader(); + Handle(Transfer_TransientProcess) aTP = aTR->TransientProcess(); + const Interface_Graph& aGraph = aTP->Graph(); + Handle(XCAFDoc_Datum) aDat; + TDF_Label aShL; + Standard_Boolean aRefShapeIsFound = Standard_False; + Standard_Boolean aFirstStep = Standard_True; + Interface_EntityIterator anIterD = aGraph.Sharings(theDat); + for(anIterD.Start(); anIterD.More(); anIterD.Next()) { + Handle(StepRepr_ShapeAspectRelationship) aSAR = + Handle(StepRepr_ShapeAspectRelationship)::DownCast(anIterD.Value()); + if(aSAR.IsNull()) continue; + + Handle(StepRepr_ShapeAspect) aSA = aSAR->RelatingShapeAspect(); + if (aSA.IsNull()) continue; + Handle(StepAP242_GeometricItemSpecificUsage) aPGISU; + if(aSA->IsKind(STANDARD_TYPE(StepRepr_CompShAspAndDatumFeatAndShAsp))) + { + //processing for complex entity + Interface_EntityIterator anIterC = aGraph.Sharings(aSA); + for(anIterC.Start(); anIterC.More(); anIterC.Next()) { + Handle(StepRepr_ShapeAspectRelationship) SAR = + Handle(StepRepr_ShapeAspectRelationship)::DownCast(anIterC.Value()); + if(SAR.IsNull()) continue; + Handle(StepRepr_ShapeAspect) aS = + Handle(StepRepr_ShapeAspect)::DownCast(SAR->RelatedShapeAspect()); + if(aS.IsNull()) continue; + Interface_EntityIterator anIterSA = aGraph.Sharings(aS); + for(anIterSA.Start(); anIterSA.More() && aPGISU.IsNull(); anIterSA.Next()) { + aPGISU = Handle(StepAP242_GeometricItemSpecificUsage)::DownCast(anIterSA.Value()); + } + if(!aPGISU.IsNull()){ + aSA = aS; + break; + } } - if(PropD.IsNull()) continue; - Interface_EntityIterator subs4 = graph.Sharings(PropD); - for(subs4.Start(); subs4.More(); subs4.Next()) { - Handle(StepShape_ShapeDefinitionRepresentation) SDR = - Handle(StepShape_ShapeDefinitionRepresentation)::DownCast(subs4.Value()); - if(!SDR.IsNull()) { - Handle(StepRepr_Representation) Repr = SDR->UsedRepresentation(); - if( !Repr.IsNull() && Repr->NbItems()>0 ) { - RI = Repr->ItemsValue(1); + } + else if(aSA->IsKind(STANDARD_TYPE(StepDimTol_PlacedDatumTargetFeature))) + { + //processing for datum target + Interface_EntityIterator anIterDTF = aGraph.Shareds(aSA); + for(anIterDTF.Start(); anIterDTF.More(); anIterDTF.Next()) { + if(anIterDTF.Value()->IsKind(STANDARD_TYPE(StepRepr_FeatureForDatumTargetRelationship))) + { + Interface_EntityIterator anIterFFD = aGraph.Shareds(anIterDTF.Value()); + for(anIterFFD.Start(); anIterFFD.More(); anIterFFD.Next()) { + if(anIterFFD.Value()->IsKind(STANDARD_TYPE(StepRepr_ShapeAspect))) + { + aSA = Handle(StepRepr_ShapeAspect)::DownCast(anIterFFD.Value()); + } } } } - if(RI.IsNull()) continue; - // read DGT entities: - subs3 = graph.Sharings(SA); - for(subs3.Start(); subs3.More(); subs3.Next()) { - if(subs3.Value()->IsKind(STANDARD_TYPE(StepShape_DimensionalSize))) { - // read dimensions - Handle(StepShape_EdgeCurve) EC = Handle(StepShape_EdgeCurve)::DownCast(RI); - if(EC.IsNull()) continue; - Handle(TCollection_HAsciiString) aName; - Handle(StepShape_DimensionalSize) DimSize = - Handle(StepShape_DimensionalSize)::DownCast(subs3.Value()); - Standard_Real dim1=-1.,dim2=-1.; - subs4 = graph.Sharings(DimSize); - for(subs4.Start(); subs4.More(); subs4.Next()) { - Handle(StepShape_DimensionalCharacteristicRepresentation) DimCharR = - Handle(StepShape_DimensionalCharacteristicRepresentation)::DownCast(subs4.Value()); - if(!DimCharR.IsNull()) { - Handle(StepShape_ShapeDimensionRepresentation) SDimR = DimCharR->Representation(); - if(!SDimR.IsNull() && SDimR->NbItems()>0) { - Handle(StepRepr_RepresentationItem) aRI = SDimR->ItemsValue(1); - Handle(StepRepr_ValueRange) VR = Handle(StepRepr_ValueRange)::DownCast(aRI); - if(!VR.IsNull()) { - aName = VR->Name(); - //StepRepr_CompoundItemDefinition CID = VR->ItemElement(); - //if(CID.IsNull()) continue; - //Handle(StepRepr_CompoundItemDefinitionMember) CIDM = - // Handle(StepRepr_CompoundItemDefinitionMember)::DownCast(CID.Value()); - //if(CIDM.IsNull()) continue; - //if(CIDM->ArrTransient().IsNull()) continue; - //Handle(StepRepr_HArray1OfRepresentationItem) HARI; - //if(CID.CaseMem(CIDM)==1) - // HARI = CID.ListRepresentationItem(); - //if(CID.CaseMem(CIDM)==2) - // HARI = CID.SetRepresentationItem(); - Handle(StepRepr_HArray1OfRepresentationItem) HARI = VR->ItemElement(); - if(HARI.IsNull()) continue; - if(HARI->Length()>0) { - Handle(StepRepr_RepresentationItem) RI1 = - Handle(StepRepr_RepresentationItem)::DownCast(HARI->Value(1)); - if(RI1.IsNull()) continue; - if(RI1->IsKind(STANDARD_TYPE(StepRepr_ReprItemAndLengthMeasureWithUnit))) { - Handle(StepRepr_ReprItemAndLengthMeasureWithUnit) RILMWU = - Handle(StepRepr_ReprItemAndLengthMeasureWithUnit)::DownCast(RI1); - dim1 = RILMWU->GetMeasureWithUnit()->ValueComponent(); - StepBasic_Unit anUnit = RILMWU->GetMeasureWithUnit()->UnitComponent(); - Standard_Real afact=1.; - if(anUnit.IsNull()) continue; - if( !(anUnit.CaseNum(anUnit.Value())==1) ) continue; - Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); - if(GetLengthConversionFactor(NU,afact)) dim1=dim1*afact; - } - } - if(HARI->Length()>1) { - Handle(StepRepr_RepresentationItem) RI2 = - Handle(StepRepr_RepresentationItem)::DownCast(HARI->Value(2)); - if(RI2.IsNull()) continue; - if(RI2->IsKind(STANDARD_TYPE(StepRepr_ReprItemAndLengthMeasureWithUnit))) { - Handle(StepRepr_ReprItemAndLengthMeasureWithUnit) RILMWU = - Handle(StepRepr_ReprItemAndLengthMeasureWithUnit)::DownCast(RI2); - dim2 = RILMWU->GetMeasureWithUnit()->ValueComponent(); - StepBasic_Unit anUnit = RILMWU->GetMeasureWithUnit()->UnitComponent(); - Standard_Real afact=1.; - if(anUnit.IsNull()) continue; - if( !(anUnit.CaseNum(anUnit.Value())==1) ) continue; - Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); - if(GetLengthConversionFactor(NU,afact)) dim2 = dim2*afact; + } + if (aSA.IsNull()) continue; + Interface_EntityIterator anIterDSWP = aGraph.Sharings(aSA); + for(anIterDSWP.Start(); anIterDSWP.More() && aPGISU.IsNull(); anIterDSWP.Next()) { + aPGISU = Handle(StepAP242_GeometricItemSpecificUsage)::DownCast(anIterDSWP.Value()); + } + if(aPGISU.IsNull()) continue; + // get representation item + Handle(StepRepr_RepresentationItem) aRI; + for(Standard_Integer i = 1 ; i <= aPGISU->NbIdentifiedItem() && aRI.IsNull(); i++) + { + aRI = Handle(StepRepr_RepresentationItem)::DownCast(aPGISU->IdentifiedItemValue(i)); + } + if(aRI.IsNull()) continue; + Standard_Integer index = aTP->MapIndex(aRI); + TopoDS_Shape aSh; + if(index >0) { + Handle(Transfer_Binder) binder = aTP->MapItem(index); + aSh = TransferBRep::ShapeResult(binder); + } + if(aSh.IsNull()) continue; + if( !aSTool->Search(aSh, aShL, Standard_True, Standard_True, Standard_True) ) continue; + Handle(TDataStd_TreeNode) aNode; + if(aFirstStep && aShL.FindAttribute(XCAFDoc::DatumRefGUID(),aNode) && aNode->HasFirst() && + aNode->First()->Label().FindAttribute(XCAFDoc_Datum::GetID(),aDat)) + { + //if datums already attached, not need add datum target + aRefShapeIsFound = Standard_True; + } + aFirstStep = Standard_False; + Handle(XCAFDimTolObjects_DatumObject) aDatObj; + if(aSA->IsKind(STANDARD_TYPE(StepDimTol_PlacedDatumTargetFeature))) + { + if(!aRefShapeIsFound) + { + //if datum targers not yet added + TDF_Label aDatL = aDGTTool->AddDatum(); + aDat = XCAFDoc_Datum::Set(aDatL); + aDGTTool->SetDatum(aShL, aDatL); + aDatObj = aDat->GetObject(); + aDatObj->SetName(theDat->Identification()); + aDatObj->IsDatumTarget(Standard_True); + XCAFDimTolObjects_DatumTargetType aType; + if(STEPConstruct_GDTProperty::GetDatumTargetType(aSA->Description(),aType)) + { + aDatObj->SetDatumTargetType(aType); + if(aType == XCAFDimTolObjects_DatumTargetType_Area) + { + Interface_EntityIterator anIterDTF = aGraph.Shareds(aSA); + for(anIterDTF.Start(); anIterDTF.More(); anIterDTF.Next()) { + if(anIterDTF.Value()->IsKind(STANDARD_TYPE(StepAP242_GeometricItemSpecificUsage))) + { + Handle(StepAP242_GeometricItemSpecificUsage) aGISU + = Handle(StepAP242_GeometricItemSpecificUsage)::DownCast(anIterDSWP.Value()); + Handle(StepRepr_RepresentationItem) aRI; + if(aPGISU->NbIdentifiedItem() > 0) { + aRI = Handle(StepRepr_RepresentationItem)::DownCast(aPGISU->IdentifiedItemValue(1)); + } + if(aRI.IsNull()) continue; + Standard_Integer index = aTP->MapIndex(aRI); + TopoDS_Shape aSh; + if(index >0) { + Handle(Transfer_Binder) binder = aTP->MapItem(index); + aSh = TransferBRep::ShapeResult(binder); + aDatObj->SetDatumTarget(aSh); + } + } + } + } + else + { + Interface_EntityIterator anIterDTF = aGraph.Shareds(aSA); + for(anIterDTF.Start(); anIterDTF.More(); anIterDTF.Next()) { + if(anIterDTF.Value()->IsKind(STANDARD_TYPE(StepRepr_PropertyDefinition))) + { + Interface_EntityIterator anIterPD = aGraph.Shareds(anIterDTF.Value()); + for(anIterPD.Start(); anIterPD.More(); anIterPD.Next()) { + if(anIterPD.Value()->IsKind(STANDARD_TYPE(StepShape_ShapeDefinitionRepresentation))) + { + Interface_EntityIterator anIterSDR = aGraph.Sharings(anIterPD.Value()); + for(anIterSDR.Start(); anIterSDR.More(); anIterSDR.Next()) { + if(anIterSDR.Value()->IsKind(STANDARD_TYPE(StepShape_ShapeRepresentationWithParameters))) + { + Handle(StepShape_ShapeRepresentationWithParameters) aSRWP + = Handle(StepShape_ShapeRepresentationWithParameters)::DownCast(anIterSDR.Value()); + for(Standard_Integer r = aSRWP->Items()->Lower(); r <= aSRWP->Items()->Upper(); r++) + { + if(aSRWP->ItemsValue(r)->IsKind(STANDARD_TYPE(StepGeom_Axis2Placement3d))) + { + Handle(StepGeom_Axis2Placement3d) anAx + = Handle(StepGeom_Axis2Placement3d)::DownCast(aSRWP->ItemsValue(r)); + Handle(TColStd_HArray1OfReal) aDirArr = anAx->Axis()->DirectionRatios(); + Handle(TColStd_HArray1OfReal) aDirRArr = anAx->RefDirection()->DirectionRatios(); + Handle(TColStd_HArray1OfReal) aLocArr = anAx->Location()->Coordinates(); + gp_Dir aDir; + gp_Dir aDirR; + gp_Pnt aPnt; + if(!aDirArr.IsNull() && aDirArr->Length() > 2 && + !aDirRArr.IsNull() && aDirRArr->Length() > 2 && + !aLocArr.IsNull() && aLocArr->Length() > 2) + { + aDir.SetCoord(aDirArr->Lower(), aDirArr->Lower()+1, aDirArr->Lower()+2); + aDirR.SetCoord(aDirRArr->Lower(), aDirRArr->Lower()+1, aDirRArr->Lower()+2); + aPnt.SetCoord(aLocArr->Lower(), aLocArr->Lower()+1, aLocArr->Lower()+2); + gp_Ax2 anA(aPnt, aDir, aDirR); + aDatObj->SetDatumTargetAxis(anA); + } + } + else if(aSRWP->ItemsValue(r)->IsKind(STANDARD_TYPE(StepRepr_ReprItemAndLengthMeasureWithUnit))) + { + Handle(StepRepr_ReprItemAndLengthMeasureWithUnit) aM = + Handle(StepRepr_ReprItemAndLengthMeasureWithUnit)::DownCast(aSRWP->ItemsValue(r)); + Standard_Real aVal = aM->GetMeasureWithUnit()->ValueComponent(); + StepBasic_Unit anUnit = aM->GetMeasureWithUnit()->UnitComponent(); + Standard_Real aFact=1.; + if(anUnit.IsNull()) continue; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) continue; + Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); + if(GetLengthConversionFactor(NU,aFact)) aVal=aVal*aFact; + if(aM->Name()->String().IsEqual("target length") || + aM->Name()->String().IsEqual("target diameter")) + aDatObj->SetDatumTargetLength(aVal); + else + aDatObj->SetDatumTargetWidth(aVal); + } + } + } } } } } } } - if(dim1<0) continue; - if(dim2<0) dim2=dim1; - //cout<<"DimensionalSize: dim1="<IsKind(STANDARD_TYPE(StepShape_DimensionalSize))) + { + aStr.AssignCat("Size"); + } + else if(theEnt->IsKind(STANDARD_TYPE(StepShape_DimensionalLocation))) + { + aStr.AssignCat("Location"); + } + TDataStd_Name::Set(aGDTL, aStr); + + if(!aShLS2.IsEmpty()) + { + aDGTTool->SetDimension(aShLS1, aShLS2, aGDTL); + } + else + { + TDF_LabelSequence aEmptySeq; + aDGTTool->SetDimension(aShLS1, aEmptySeq, aGDTL); + } + } + else + { + aGDTL = aDGTTool->AddGeomTolerance(); + Handle(XCAFDoc_GeomTolerance) aGTol = XCAFDoc_GeomTolerance::Set(aGDTL); + TCollection_AsciiString aStr("DGT:GeomTolerance"); + TDataStd_Name::Set(aGDTL, aStr); + aDGTTool->SetGeomTolerance(aShLS1, aGDTL); + Handle(XCAFDimTolObjects_GeomToleranceObject) anObj = aGTol->GetObject(); + if(isAllAround) + anObj->AddModifier(XCAFDimTolObjects_GeomToleranceModif_All_Around); + else if(isAllOver) + anObj->AddModifier(XCAFDimTolObjects_GeomToleranceModif_All_Over); + aGTol->SetObject(anObj); + } + readDatumsAP242(theEnt, aGDTL, theDoc, theWS); + } + return aGDTL; +} + +//======================================================================= +//function : setDimObjectToXCAF +//purpose : +//======================================================================= +static void setDimObjectToXCAF(const Handle(Standard_Transient)& theEnt, + const TDF_Label& aDimL, + const Handle(TDocStd_Document)& theDoc, + const Handle(XSControl_WorkSession)& theWS) +{ + Handle(XCAFDoc_ShapeTool) aSTool = XCAFDoc_DocumentTool::ShapeTool( theDoc->Main() ); + Handle(XCAFDoc_DimTolTool) aDGTTool = XCAFDoc_DocumentTool::DimTolTool( theDoc->Main() ); + Handle(XSControl_TransferReader) aTR = theWS->TransferReader(); + Handle(Transfer_TransientProcess) aTP = aTR->TransientProcess(); + const Interface_Graph& aGraph = aTP->Graph(); + Handle(XCAFDimTolObjects_DimensionObject) aDimObj; + if(!theEnt->IsKind(STANDARD_TYPE(StepShape_DimensionalSize)) && + !theEnt->IsKind(STANDARD_TYPE(StepShape_DimensionalLocation))) + return; + + Handle(StepShape_DimensionalSize) aDimSize = + Handle(StepShape_DimensionalSize)::DownCast(theEnt); + Handle(StepShape_DimensionalLocation) aDimLocation = + Handle(StepShape_DimensionalLocation)::DownCast(theEnt); + + Standard_Real aDim1=-1.,aDim2=-1.,aDim3=-1.; + Handle(StepShape_TypeQualifier) aTQ; + Handle(StepShape_ValueFormatTypeQualifier) aVFTQ; + Handle(StepShape_ToleranceValue) aTV; + Handle(StepShape_LimitsAndFits) aLAF; + Handle(StepRepr_CompoundRepresentationItem) aCRI; + Handle(StepGeom_Axis2Placement3d) anAP; + + Interface_EntityIterator anIterDim; + if(!aDimSize.IsNull()) + { + anIterDim = aGraph.Sharings(aDimSize); + } + else + { + anIterDim = aGraph.Sharings(aDimLocation); + } + for(anIterDim.Start(); anIterDim.More(); anIterDim.Next()) { + Handle(StepShape_DimensionalCharacteristicRepresentation) aDCR = + Handle(StepShape_DimensionalCharacteristicRepresentation)::DownCast(anIterDim.Value()); + Handle(StepShape_PlusMinusTolerance) aPMT = + Handle(StepShape_PlusMinusTolerance)::DownCast(anIterDim.Value()); + if(!aDCR.IsNull()) { + Handle(StepShape_ShapeDimensionRepresentation) aSDR = aDCR->Representation(); + if(!aSDR.IsNull()) { + Handle(StepRepr_HArray1OfRepresentationItem) aHARI = aSDR->Items(); + + if(!aHARI.IsNull()) + { + for(Standard_Integer nr = aHARI->Lower(); nr <= aHARI->Upper(); nr++) + { + Handle(StepRepr_RepresentationItem) aDRI = + Handle(StepRepr_RepresentationItem)::DownCast(aHARI->Value(nr)); + if(aDRI.IsNull()) continue; + + if(aDRI->IsKind(STANDARD_TYPE(StepRepr_ReprItemAndLengthMeasureWithUnit))) { + //get values + Handle(StepRepr_ReprItemAndLengthMeasureWithUnit) aRILMWU = + Handle(StepRepr_ReprItemAndLengthMeasureWithUnit)::DownCast(aDRI); + Standard_Real aVal = aRILMWU->GetMeasureWithUnit()->ValueComponent(); + StepBasic_Unit anUnit = aRILMWU->GetMeasureWithUnit()->UnitComponent(); + Standard_Real aFact=1.; + if(anUnit.IsNull()) continue; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) continue; + Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); + if(GetLengthConversionFactor(NU,aFact)) aVal=aVal*aFact; + if(aDim2 > 0) + { + if(aDim1 > aDim2) + { + Standard_Real aTmp = aDim1; + aDim1 = aDim2; + aDim2 = aTmp; + } + if(aVal < aDim1) + aDim1 = aVal; + else if(aVal > aDim2) + aDim2 = aVal; + } + else if(aDim1 > 0) + { + if (aVal > aDim1) + aDim2 = aVal; + else + { + aDim2 = aDim1; + aDim1 = aVal; + } + } + else + aDim1 = aVal; + } + else if(aDRI->IsKind(STANDARD_TYPE(StepRepr_ReprItemAndPlaneAngleMeasureWithUnit))) { + //get values + Handle(StepRepr_ReprItemAndPlaneAngleMeasureWithUnit) aRIPAMWU = + Handle(StepRepr_ReprItemAndPlaneAngleMeasureWithUnit)::DownCast(aDRI); + Standard_Real aVal = aRIPAMWU->GetMeasureWithUnit()->ValueComponent(); + StepBasic_Unit anUnit = aRIPAMWU->GetMeasureWithUnit()->UnitComponent(); + Standard_Real aFact=1.; + if(anUnit.IsNull()) continue; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) continue; + Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); + if(GetAngleConversionFactor(NU,aFact)) aVal=aVal*aFact; + if(aDim2 > 0) + { + if(aDim1 > aDim2) + { + Standard_Real aTmp = aDim1; + aDim1 = aDim2; + aDim2 = aTmp; + } + if(aVal < aDim1) + aDim1 = aVal; + else if(aVal > aDim2) + aDim2 = aVal; + } + else if(aDim1 > 0) + { + if (aVal > aDim1) + aDim2 = aVal; + else + { + aDim2 = aDim1; + aDim1 = aVal; + } + } + else + aDim1 = aVal; + } + else if(aDRI->IsKind(STANDARD_TYPE(StepShape_QualifiedRepresentationItem))) { + //get qualifier + Handle(StepShape_QualifiedRepresentationItem) aQRI = + Handle(StepShape_QualifiedRepresentationItem)::DownCast(aDRI); + for(Standard_Integer l = 1; l <= aQRI->NbQualifiers(); l++) + { + aTQ = aQRI->Qualifiers()->Value(l).TypeQualifier(); + aVFTQ = aQRI->Qualifiers()->Value(l).ValueFormatTypeQualifier(); + } + } + else if(aDRI->IsKind(STANDARD_TYPE(StepRepr_CompoundRepresentationItem))) { + aCRI = Handle(StepRepr_CompoundRepresentationItem)::DownCast(aDRI); + } + else if(aDRI->IsKind(STANDARD_TYPE(StepGeom_Axis2Placement3d))) + { + anAP = Handle(StepGeom_Axis2Placement3d)::DownCast(aDRI); + } + } + } + } + } + else if (!aPMT.IsNull()) + { + StepShape_ToleranceMethodDefinition aTMD = aPMT->Range(); + if(aPMT.IsNull()) continue; + if(aTMD.CaseNumber() == 1) + //! 1 -> ToleranceValue from StepShape + //! 2 -> LimitsAndFits from StepShape + { + //plus minus tolerance + aTV = aTMD.ToleranceValue(); + if (aTV.IsNull()) continue; + + Standard_Real aVal = aTV->UpperBound()->ValueComponent(); + StepBasic_Unit anUnit = aTV->UpperBound()->UnitComponent(); + Standard_Real aFact=1.; + if(anUnit.IsNull()) continue; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) continue; + Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); + if(GetLengthConversionFactor(NU,aFact)) aVal=aVal*aFact; + aDim3 = aVal; + + aVal = aTV->LowerBound()->ValueComponent(); + anUnit = aTV->LowerBound()->UnitComponent(); + aFact=1.; + if(anUnit.IsNull()) continue; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) continue; + NU = anUnit.NamedUnit(); + if(GetLengthConversionFactor(NU,aFact)) aVal=aVal*aFact; + aDim2 = Abs(aVal); + } + else + { + // calss of tolerance + aLAF = aTMD.LimitsAndFits(); + } + } + } + + if(aDim1<0) return; + + aDimObj = new XCAFDimTolObjects_DimensionObject(); + if(aDim2 < 0) + aDimObj->SetValue(aDim1); + else if (aDim3 < 0) + { + Handle(TColStd_HArray1OfReal) anArr = new TColStd_HArray1OfReal(1,2); + anArr->SetValue(1,aDim1); + anArr->SetValue(2,aDim2); + aDimObj->SetValues(anArr); + } + else + { + Handle(TColStd_HArray1OfReal) anArr = new TColStd_HArray1OfReal(1,3); + anArr->SetValue(1,aDim1); + anArr->SetValue(2,aDim2); + anArr->SetValue(3,aDim3); + aDimObj->SetValues(anArr); + } + if(!aTQ.IsNull()) + { + XCAFDimTolObjects_DimensionQualifier aQ; + if (STEPConstruct_GDTProperty::GetDimQualifierType(aTQ->Name(), aQ)) + { + aDimObj->SetQualifier(aQ); + } + } + + if (!aVFTQ.IsNull()) + { + //A typical value would be ‘NR2 2.2’ + TCollection_HAsciiString aFormat = aVFTQ->FormatType(); + Standard_Integer i = aFormat.Location(1,' ',1,aFormat.Length()); + aFormat.SubString(i+1,i+1)->IntegerValue(); + aDimObj->SetNbOfDecimalPlaces(aFormat.SubString(i+1,i+1)->IntegerValue(), + aFormat.SubString(i+3,i+3)->IntegerValue()); + } + + if (!aLAF.IsNull()) + { + //get class of tolerance + Standard_Boolean aHolle = Standard_False; + XCAFDimTolObjects_DimensionFormVariance aFV = XCAFDimTolObjects_DimensionFormVariance_None; + XCAFDimTolObjects_DimensionGrade aG = XCAFDimTolObjects_DimensionGrade_IT01; + STEPConstruct_GDTProperty::GetDimClassOfTolerance(aLAF, aHolle, aFV, aG); + aDimObj->SetClassOfTolerance(aHolle, aFV, aG); + } + + if (!aCRI.IsNull() && aCRI->ItemElement()->Length() > 0) + { + //get modifiers + XCAFDimTolObjects_DimensionModifiersSequence aModifiers; + STEPConstruct_GDTProperty::GetDimModifiers(aCRI, aModifiers); + if(aModifiers.Length() > 0) + aDimObj->SetModifiers(aModifiers); + } + + Handle(TCollection_HAsciiString) aName; + if(!aDimSize.IsNull()) + { + aName = aDimSize->Name(); + } + else + { + aName = aDimLocation->Name(); + } + XCAFDimTolObjects_DimensionType aType = XCAFDimTolObjects_DimensionType_Location_None; + if (!STEPConstruct_GDTProperty::GetDimType(aName, aType)) + { + if(!aDimSize.IsNull()) + { + Handle(StepShape_AngularSize) anAngSize= + Handle(StepShape_AngularSize)::DownCast(aDimSize); + if(!anAngSize.IsNull()) + { + //get qualifier for angular value + aType = XCAFDimTolObjects_DimensionType_Size_Angular; + if(anAngSize->AngleSelection() == StepShape_Equal) + aDimObj->SetQualifier(XCAFDimTolObjects_DimensionQualifier_Avg); + else if (anAngSize->AngleSelection() == StepShape_Large) + aDimObj->SetQualifier(XCAFDimTolObjects_DimensionQualifier_Max); + else if (anAngSize->AngleSelection() == StepShape_Small) + aDimObj->SetQualifier(XCAFDimTolObjects_DimensionQualifier_Min); + } + } + else + { + Handle(StepShape_AngularLocation) anAngLoc= + Handle(StepShape_AngularLocation)::DownCast(aDimLocation); + if(!anAngLoc.IsNull()) + { + //get qualifier for angular value + aType = XCAFDimTolObjects_DimensionType_Location_Angular; + if(anAngLoc->AngleSelection() == StepShape_Equal) + aDimObj->SetQualifier(XCAFDimTolObjects_DimensionQualifier_Avg); + else if (anAngLoc->AngleSelection() == StepShape_Large) + aDimObj->SetQualifier(XCAFDimTolObjects_DimensionQualifier_Max); + else if (anAngLoc->AngleSelection() == StepShape_Small) + aDimObj->SetQualifier(XCAFDimTolObjects_DimensionQualifier_Min); + } + } + if(aType == XCAFDimTolObjects_DimensionType_Location_None) + { + Handle(StepRepr_ShapeAspect) aPSA; + if(!aDimSize.IsNull()) + { + Handle(StepShape_DimensionalSizeWithPath) aDimSizeWithPath= + Handle(StepShape_DimensionalSizeWithPath)::DownCast(aDimSize); + if (!aDimSizeWithPath.IsNull()) + { + aType = XCAFDimTolObjects_DimensionType_Size_WithPath; + aPSA = aDimSizeWithPath->Path(); + } + } + else + { + Handle(StepShape_DimensionalLocationWithPath) aDimLocWithPath= + Handle(StepShape_DimensionalLocationWithPath)::DownCast(aDimLocation); + if (!aDimLocWithPath.IsNull()) + { + aType = XCAFDimTolObjects_DimensionType_Location_WithPath; + aPSA = aDimLocWithPath->Path(); + } + } + + if(!aPSA.IsNull()) + { + //for DimensionalLocationWithPath + Handle(StepGeom_GeometricRepresentationItem) aGRI; + Handle(StepAP242_GeometricItemSpecificUsage) aPGISU; + Interface_EntityIterator anIterDSWP = aGraph.Sharings(aPSA); + for(anIterDSWP.Start(); anIterDSWP.More() && aPGISU.IsNull(); anIterDSWP.Next()) { + aPGISU = Handle(StepAP242_GeometricItemSpecificUsage)::DownCast(anIterDSWP.Value()); + } + if(aPGISU.IsNull()) return; + if(aPGISU->NbIdentifiedItem() > 0) { + aGRI = Handle(StepGeom_GeometricRepresentationItem)::DownCast(aPGISU->IdentifiedItemValue(1)); + } + if(aGRI.IsNull()) return; + Handle(StepRepr_RepresentationItem) aPRI; + Interface_EntityIterator anIterGRI = aGraph.Sharings(aGRI); + for(anIterGRI.Start(); anIterGRI.More() && aPGISU.IsNull(); anIterGRI.Next()) { + aPRI = Handle(StepRepr_RepresentationItem)::DownCast(anIterGRI.Value()); + } + Standard_Integer anIndex = aTP->MapIndex(aPRI); + TopoDS_Edge aSh; + if(anIndex >0) { + Handle(Transfer_Binder) aBinder = aTP->MapItem(anIndex); + aSh = TopoDS::Edge(TransferBRep::ShapeResult(aBinder)); + } + if(aSh.IsNull()) return; + aDimObj->SetPath(aSh); + } + else if(!anAP.IsNull()) + { + if(anAP->Name()->String().IsEqual("orientation") && !anAP->Axis().IsNull()) + { + //for Oriented Dimensional Location + Handle(TColStd_HArray1OfReal) aDirArr = anAP->RefDirection()->DirectionRatios(); + gp_Dir aDir; + if(!aDirArr.IsNull() && aDirArr->Length() > 2) + { + aDir.SetCoord(aDirArr->Lower(), aDirArr->Lower()+1, aDirArr->Lower()+2); + aDimObj->SetDirection(aDir); + } + else if(aDirArr->Length() > 1) + { + aDir.SetCoord(aDirArr->Lower(), aDirArr->Lower()+1, 0); + aDimObj->SetDirection(aDir); + } + } + } + } + } + aDimObj->SetType(aType); + + if(!aDimObj.IsNull()) + { + Handle(XCAFDoc_Dimension) aDim; + if(aDimL.FindAttribute(XCAFDoc_Dimension::GetID(),aDim)) + { + aDim->SetObject(aDimObj); + } + } +} + +//======================================================================= +//function : getTolType +//purpose : +//======================================================================= +static Standard_Boolean getTolType(const Handle(Standard_Transient)& theEnt, + XCAFDimTolObjects_GeomToleranceType& theType) +{ + if(!theEnt->IsKind(STANDARD_TYPE(StepDimTol_GeometricTolerance))) + return Standard_False; + theType = XCAFDimTolObjects_GeomToleranceType_None; + if (theEnt->IsKind(STANDARD_TYPE(StepDimTol_GeoTolAndGeoTolWthDatRef))) + { + Handle(StepDimTol_GeoTolAndGeoTolWthDatRef) anE = Handle(StepDimTol_GeoTolAndGeoTolWthDatRef)::DownCast(theEnt); + theType = (XCAFDimTolObjects_GeomToleranceType)anE->GetToleranceType(); + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_AngularityTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Angularity; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_CircularRunoutTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_CircularRunout; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_RoundnessTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_CircularityOrRoundness; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_CoaxialityTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Coaxiality; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_ConcentricityTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Concentricity; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_CylindricityTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Cylindricity; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_FlatnessTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Flatness; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_ParallelismTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Parallelism; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_PerpendicularityTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Perpendicularity; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_PositionTolerance)) || + theEnt->IsKind(STANDARD_TYPE(StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Position; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_LineProfileTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_ProfileOfLine; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_SurfaceProfileTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_ProfileOfSurface; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_StraightnessTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Straightness; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_SymmetryTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_Symmetry; + } + else if(theEnt->IsKind(STANDARD_TYPE(StepDimTol_TotalRunoutTolerance))) + { + theType = XCAFDimTolObjects_GeomToleranceType_TotalRunout; + } + return Standard_True; +} +//======================================================================= +//function : setGeomTolObjectToXCAF +//purpose : +//======================================================================= +static void setGeomTolObjectToXCAF(const Handle(Standard_Transient)& theEnt, + const TDF_Label& theTolL, + const Handle(TDocStd_Document)& theDoc, + const Handle(XSControl_WorkSession)& theWS) +{ + Handle(XCAFDoc_ShapeTool) aSTool = XCAFDoc_DocumentTool::ShapeTool( theDoc->Main() ); + Handle(XCAFDoc_DimTolTool) aDGTTool = XCAFDoc_DocumentTool::DimTolTool( theDoc->Main() ); + Handle(XSControl_TransferReader) aTR = theWS->TransferReader(); + Handle(Transfer_TransientProcess) aTP = aTR->TransientProcess(); + const Interface_Graph& aGraph = aTP->Graph(); + Handle(XCAFDoc_GeomTolerance) aGTol; + if(!theTolL.FindAttribute(XCAFDoc_GeomTolerance::GetID(), aGTol)) + { + return; + } + Handle(XCAFDimTolObjects_GeomToleranceObject) aTolObj = aGTol->GetObject(); + Handle(StepDimTol_GeometricTolerance) aTolEnt = Handle(StepDimTol_GeometricTolerance)::DownCast(theEnt); + + XCAFDimTolObjects_GeomToleranceType aType = XCAFDimTolObjects_GeomToleranceType_None; + getTolType(theEnt, aType); + aTolObj->SetType(aType); + if(!aTolEnt->Magnitude().IsNull()){ + //get value + Standard_Real aVal = aTolEnt->Magnitude()->ValueComponent(); + StepBasic_Unit anUnit = aTolEnt->Magnitude()->UnitComponent(); + Standard_Real aFact=1.; + if(anUnit.IsNull()) return; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) return; + Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); + if(GetLengthConversionFactor(NU,aFact)) + aVal=aVal*aFact; + aTolObj->SetValue(aVal); + } + //get modifiers + XCAFDimTolObjects_GeomToleranceTypeValue aTypeV = XCAFDimTolObjects_GeomToleranceTypeValue_None; + Interface_EntityIterator anIter = aGraph.Sharings(aTolEnt); + for(anIter.Start(); anIter.More(); anIter.Next()) { + if(anIter.Value()->IsKind(STANDARD_TYPE(StepDimTol_ToleranceZone))){ + Handle(StepDimTol_ToleranceZoneForm) aForm + = Handle(StepDimTol_ToleranceZone)::DownCast(anIter.Value())->Form(); + STEPConstruct_GDTProperty::GetTolValueType(aForm->Name(), aTypeV); + Interface_EntityIterator anIt = aGraph.Sharings(anIter.Value()); + for(anIt.Start(); anIt.More(); anIt.Next()) { + if(anIt.Value()->IsKind(STANDARD_TYPE(StepDimTol_ProjectedZoneDefinition))){ + Handle(StepDimTol_ProjectedZoneDefinition) aPZone + = Handle(StepDimTol_ProjectedZoneDefinition)::DownCast(anIt.Value()); + if(!aPZone->ProjectionLength().IsNull()) + { + Standard_Real aVal = aPZone->ProjectionLength()->ValueComponent(); + StepBasic_Unit anUnit = aPZone->ProjectionLength()->UnitComponent(); + Standard_Real aFact=1.; + if(anUnit.IsNull()) return; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) return; + Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); + if(GetLengthConversionFactor(NU,aFact)) + aVal=aVal*aFact; + aTolObj->SetValueOfZoneModifier(aVal); + } + } + else if (anIt.Value()->IsKind(STANDARD_TYPE(StepDimTol_RunoutZoneDefinition))) + { + Handle(StepDimTol_RunoutZoneDefinition) aRZone + = Handle(StepDimTol_RunoutZoneDefinition)::DownCast(anIt.Value()); + if(!aRZone->Orientation().IsNull()) + { + Standard_Real aVal = aRZone->Orientation()->Angle()->ValueComponent(); + StepBasic_Unit anUnit = aRZone->Orientation()->Angle()->UnitComponent(); + Standard_Real aFact=1.; + if(anUnit.IsNull()) continue; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) continue; + Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); + if(GetAngleConversionFactor(NU,aFact)) aVal=aVal*aFact; + aTolObj->SetValueOfZoneModifier(aVal); + } + } + } + aTolObj->SetTypeOfValue(aTypeV); + } + } + Handle(StepDimTol_HArray1OfGeometricToleranceModifier) aModifiers; + if (aTolEnt->IsKind(STANDARD_TYPE(StepDimTol_GeometricToleranceWithModifiers))) + { + aModifiers = Handle(StepDimTol_GeometricToleranceWithModifiers)::DownCast(aTolEnt)->Modifiers(); + } + else if (aTolEnt->IsKind(STANDARD_TYPE(StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod))) + { + aModifiers = Handle(StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod) + ::DownCast(aTolEnt)->GetGeometricToleranceWithModifiers()->Modifiers(); + } + else if (aTolEnt->IsKind(STANDARD_TYPE(StepDimTol_GeoTolAndGeoTolWthMod))) + { + aModifiers = Handle(StepDimTol_GeoTolAndGeoTolWthMod) + ::DownCast(aTolEnt)->GetGeometricToleranceWithModifiers()->Modifiers(); + } + if(!aModifiers.IsNull()) + { + for(Standard_Integer i = aModifiers->Lower(); i <= aModifiers->Upper(); i++) + { + if(aModifiers->Value(i) == StepDimTol_GTMLeastMaterialRequirement) + aTolObj->SetMaterialRequirementModifier(XCAFDimTolObjects_GeomToleranceMatReqModif_L); + else if (aModifiers->Value(i) == StepDimTol_GTMMaximumMaterialRequirement) + aTolObj->SetMaterialRequirementModifier(XCAFDimTolObjects_GeomToleranceMatReqModif_M); + else + aTolObj->AddModifier((XCAFDimTolObjects_GeomToleranceModif)aModifiers->Value(i)); + } + } + if (aTolEnt->IsKind(STANDARD_TYPE(StepDimTol_GeometricToleranceWithMaximumTolerance))) + { + Handle(StepDimTol_GeometricToleranceWithMaximumTolerance) aMax = Handle(StepDimTol_GeometricToleranceWithMaximumTolerance)::DownCast(aTolEnt); + Standard_Real aVal = aMax->MaximumUpperTolerance()->ValueComponent(); + StepBasic_Unit anUnit = aMax->MaximumUpperTolerance()->UnitComponent(); + Standard_Real aFact=1.; + if(anUnit.IsNull()) return; + if( !(anUnit.CaseNum(anUnit.Value())==1) ) return; + Handle(StepBasic_NamedUnit) NU = anUnit.NamedUnit(); + if(GetAngleConversionFactor(NU,aFact)) aVal=aVal*aFact; + aTolObj->SetMaxValueModifier(aVal); + } + + aGTol->SetObject(aTolObj); +} + +//======================================================================= +//function : ReadGDTs +//purpose : +//======================================================================= + +Standard_Boolean STEPCAFControl_Reader::ReadGDTs(const Handle(XSControl_WorkSession)& theWS, + Handle(TDocStd_Document)& theDoc) const +{ + Handle(Interface_InterfaceModel) aModel = theWS->Model(); + Handle(StepData_StepModel) aSM = Handle(StepData_StepModel)::DownCast(aModel); + Interface_EntityIterator anI = aSM->Header(); + Handle(HeaderSection_FileSchema) aH; + for(anI.Start(); anI.More() && aH.IsNull();anI.Next()) + aH = Handle(HeaderSection_FileSchema)::DownCast(anI.Value()); + Handle(XCAFDoc_ShapeTool) aSTool = XCAFDoc_DocumentTool::ShapeTool( theDoc->Main() ); + Handle(XSControl_TransferReader) aTR = theWS->TransferReader(); + Handle(Transfer_TransientProcess) aTP = aTR->TransientProcess(); + Handle(XCAFDoc_DimTolTool) aDGTTool = XCAFDoc_DocumentTool::DimTolTool( theDoc->Main() ); + if ( aDGTTool.IsNull() ) return Standard_False; + + Standard_Integer nb = aModel->NbEntities(); + for(Standard_Integer i=1; i<=nb; i++) { + Handle(Standard_Transient) anEnt = aModel->Value(i); + if(anEnt->IsKind(STANDARD_TYPE(StepShape_DimensionalSize)) || + anEnt->IsKind(STANDARD_TYPE(StepShape_DimensionalLocation)) || + anEnt->IsKind(STANDARD_TYPE(StepDimTol_GeometricTolerance))) { + TDF_Label aGDTL = createGDTObjectInXCAF(anEnt,theDoc,theWS); + if(!aGDTL.IsNull()){ + if(anEnt->IsKind(STANDARD_TYPE(StepDimTol_GeometricTolerance))){ + setGeomTolObjectToXCAF(anEnt, aGDTL,theDoc,theWS); + } + else { + setDimObjectToXCAF(anEnt, aGDTL,theDoc,theWS); + } + } + } + } return Standard_True; } diff --git a/src/STEPCAFControl/STEPCAFControl_Writer.cxx b/src/STEPCAFControl/STEPCAFControl_Writer.cxx index 538998cc6f..f5e8ecd193 100644 --- a/src/STEPCAFControl/STEPCAFControl_Writer.cxx +++ b/src/STEPCAFControl/STEPCAFControl_Writer.cxx @@ -2079,7 +2079,8 @@ Standard_Boolean STEPCAFControl_Writer::WriteDGTs (const Handle(XSControl_WorkSe for(i=1; i<=DGTLabels.Length(); i++) { TDF_Label DatumL = DGTLabels.Value(i); TDF_LabelSequence ShapeL; - if(!DGTTool->GetRefShapeLabel(DatumL,ShapeL)) continue; + TDF_LabelSequence aNullSeq; + if(!DGTTool->GetRefShapeLabel(DatumL,ShapeL,aNullSeq)) continue; // find target shape TopoDS_Shape aShape = XCAFDoc_ShapeTool::GetShape(ShapeL.Value(1)); TopLoc_Location Loc; @@ -2160,7 +2161,8 @@ Standard_Boolean STEPCAFControl_Writer::WriteDGTs (const Handle(XSControl_WorkSe for(i=1; i<=DGTLabels.Length(); i++) { TDF_Label DimTolL = DGTLabels.Value(i); TDF_LabelSequence ShapeL; - if(!DGTTool->GetRefShapeLabel(DimTolL,ShapeL)) continue; + TDF_LabelSequence aNullSeq; + if(!DGTTool->GetRefShapeLabel(DimTolL,ShapeL,aNullSeq)) continue; // find target shape TopoDS_Shape aShape = XCAFDoc_ShapeTool::GetShape(ShapeL.Value(1)); TopLoc_Location Loc; diff --git a/src/STEPConstruct/FILES b/src/STEPConstruct/FILES index 95b83dc3f4..1ef37dd949 100755 --- a/src/STEPConstruct/FILES +++ b/src/STEPConstruct/FILES @@ -12,6 +12,8 @@ STEPConstruct_DataMapOfAsciiStringTransient.hxx STEPConstruct_DataMapOfPointTransient.hxx STEPConstruct_ExternRefs.cxx STEPConstruct_ExternRefs.hxx +STEPConstruct_GDTProperty.cxx +STEPConstruct_GDTProperty.hxx STEPConstruct_Part.cxx STEPConstruct_Part.hxx STEPConstruct_PointHasher.cxx diff --git a/src/STEPConstruct/STEPConstruct_GDTProperty.cxx b/src/STEPConstruct/STEPConstruct_GDTProperty.cxx new file mode 100644 index 0000000000..c777b29ba4 --- /dev/null +++ b/src/STEPConstruct/STEPConstruct_GDTProperty.cxx @@ -0,0 +1,600 @@ +// Created on: 1999-09-09 +// Created by: Andrey BETENEV +// Copyright (c) 1999-1999 Matra Datavision +// Copyright (c) 1999-2014 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +#include +#include + +//======================================================================= +//function : STEPConstruct_GDTProperty +//purpose : +//======================================================================= + +STEPConstruct_GDTProperty::STEPConstruct_GDTProperty () +{ +} + +//======================================================================= +//function : getDimModifiers +//purpose : +//======================================================================= +void STEPConstruct_GDTProperty::GetDimModifiers(const Handle(StepRepr_CompoundRepresentationItem)& theCRI, + XCAFDimTolObjects_DimensionModifiersSequence& theModifiers) +{ + for (Standard_Integer l = 1; l <= theCRI->ItemElement()->Length(); l++) + { + Handle(StepRepr_DescriptiveRepresentationItem) aDRI = + Handle(StepRepr_DescriptiveRepresentationItem)::DownCast(theCRI->ItemElement()->Value(l)); + if(aDRI.IsNull()) continue; + XCAFDimTolObjects_DimensionModif aModifier = XCAFDimTolObjects_DimensionModif_ControlledRadius; + const TCollection_AsciiString aModifStr = aDRI->Description()->String(); + Standard_Boolean aFound = Standard_False; + if(aModifStr.IsEqual("controlled radius")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_ControlledRadius; + } + else if(aModifStr.IsEqual("square")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_Square; + } + else if(aModifStr.IsEqual("statistical")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_StatisticalTolerance; + } + else if(aModifStr.IsEqual("continuous feature")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_ContinuousFeature; + } + else if(aModifStr.IsEqual("two point size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_TwoPointSize; + } + else if(aModifStr.IsEqual("local size defined by a sphere")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_LocalSizeDefinedBySphere; + } + else if(aModifStr.IsEqual("least squares association criteria")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_LeastSquaresAssociationCriterion; + } + else if(aModifStr.IsEqual("maximum inscribed association criteria")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_MaximumInscribedAssociation; + } + else if(aModifStr.IsEqual("minimum circumscribed association criteria")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_MinimumCircumscribedAssociation; + } + else if(aModifStr.IsEqual("circumference diameter calculated size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_CircumferenceDiameter; + } + else if(aModifStr.IsEqual("area diameter calculated size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_AreaDiameter; + } + else if(aModifStr.IsEqual("volume diameter calculated size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_VolumeDiameter; + } + else if(aModifStr.IsEqual("maximum rank order size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_MaximumSize; + } + else if(aModifStr.IsEqual("minimum rank order size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_MinimumSize; + } + else if(aModifStr.IsEqual("average rank order size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_AverageSize; + } + else if(aModifStr.IsEqual("median rank order size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_MedianSize; + } + else if(aModifStr.IsEqual("mid range rank order size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_MidRangeSize; + } + else if(aModifStr.IsEqual("range rank order size")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_RangeOfSizes; + } + else if(aModifStr.IsEqual("any part of the feature")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_AnyRestrictedPortionOfFeature; + } + else if(aModifStr.IsEqual("any cross section")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_AnyCrossSection; + } + else if(aModifStr.IsEqual("specific fixed cross section")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_SpecificFixedCrossSection; + } + else if(aModifStr.IsEqual("common tolerance")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_CommonTolerance; + } + else if(aModifStr.IsEqual("free state condition")) + { + aFound = Standard_True; + aModifier = XCAFDimTolObjects_DimensionModif_FreeStateCondition; + } + if (aFound) + theModifiers.Append(aModifier); + } +} + +//======================================================================= +//function : getClassOfTolerance +//purpose : +//======================================================================= +void STEPConstruct_GDTProperty::GetDimClassOfTolerance(const Handle(StepShape_LimitsAndFits)& theLAF, + Standard_Boolean theHolle, + XCAFDimTolObjects_DimensionFormVariance theFV, + XCAFDimTolObjects_DimensionGrade theG) +{ + Handle(TCollection_HAsciiString) aFormV = theLAF->FormVariance(); + Handle(TCollection_HAsciiString) aGrade = theLAF->Grade(); + theFV = XCAFDimTolObjects_DimensionFormVariance_None; + Standard_Boolean aFound; + theHolle = Standard_False; + //it is not verified information + for(Standard_Integer c = 0; c <= 1; c++) + { + aFound = Standard_False; + Standard_Boolean aCaseSens = Standard_False; + if (c == 1) + aCaseSens = Standard_True; + Handle(TCollection_HAsciiString) aStr = new TCollection_HAsciiString("a"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_A; + continue; + } + aStr = new TCollection_HAsciiString("b"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_B; + continue; + } + aStr = new TCollection_HAsciiString("c"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_C; + continue; + } + aStr = new TCollection_HAsciiString("cd"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_CD; + continue; + } + aStr = new TCollection_HAsciiString("d"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_D; + continue; + } + aStr = new TCollection_HAsciiString("e"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_E; + continue; + } + aStr = new TCollection_HAsciiString("ef"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_EF; + continue; + } + aStr = new TCollection_HAsciiString("f"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_F; + continue; + } + aStr = new TCollection_HAsciiString("fg"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_FG; + continue; + } + aStr = new TCollection_HAsciiString("g"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_G; + continue; + } + aStr = new TCollection_HAsciiString("h"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_H; + continue; + } + aStr = new TCollection_HAsciiString("js"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_JS; + continue; + } + aStr = new TCollection_HAsciiString("k"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_K; + continue; + } + aStr = new TCollection_HAsciiString("m"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_M; + continue; + } + aStr = new TCollection_HAsciiString("n"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_N; + continue; + } + aStr = new TCollection_HAsciiString("p"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_P; + continue; + } + aStr = new TCollection_HAsciiString("r"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_R; + continue; + } + aStr = new TCollection_HAsciiString("s"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_S; + continue; + } + aStr = new TCollection_HAsciiString("t"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_T; + continue; + } + aStr = new TCollection_HAsciiString("u"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_U; + continue; + } + aStr = new TCollection_HAsciiString("v"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_V; + continue; + } + aStr = new TCollection_HAsciiString("x"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_X; + continue; + } + aStr = new TCollection_HAsciiString("y"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_Y; + continue; + } + aStr = new TCollection_HAsciiString("b"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_B; + continue; + } + aStr = new TCollection_HAsciiString("z"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_Z; + continue; + } + aStr = new TCollection_HAsciiString("za"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_ZA; + continue; + } + aStr = new TCollection_HAsciiString("zb"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_ZB; + continue; + } + aStr = new TCollection_HAsciiString("zc"); + if(aFormV->IsSameString(aStr, aCaseSens)) + { + aFound = Standard_True; + theFV = XCAFDimTolObjects_DimensionFormVariance_ZC; + continue; + } + + if (c == 1 && !aFound) + theHolle = Standard_True; + } + Handle(TCollection_HAsciiString) aStr = new TCollection_HAsciiString("01"); + if(aGrade->IsSameString(aStr)) + { + theG = XCAFDimTolObjects_DimensionGrade_IT01; + } + else + { + theG = (XCAFDimTolObjects_DimensionGrade)(aGrade->IntegerValue()+1); + } +} + +//======================================================================= +//function : getDimType +//purpose : +//======================================================================= +Standard_Boolean STEPConstruct_GDTProperty::GetDimType(const Handle(TCollection_HAsciiString)& theName, + XCAFDimTolObjects_DimensionType& theType) +{ + TCollection_AsciiString aName = theName->String(); + aName.LowerCase(); + theType = XCAFDimTolObjects_DimensionType_Location_None; + if(aName.IsEqual("curve length")) + { + theType = XCAFDimTolObjects_DimensionType_Size_CurveLength; + } + else if(aName.IsEqual("diameter")) + { + theType = XCAFDimTolObjects_DimensionType_Size_Diameter; + } + else if(aName.IsEqual("spherical diameter")) + { + theType = XCAFDimTolObjects_DimensionType_Size_SphericalDiameter; + } + else if(aName.IsEqual("radius")) + { + theType = XCAFDimTolObjects_DimensionType_Size_Radius; + } + else if(aName.IsEqual("spherical radius")) + { + theType = XCAFDimTolObjects_DimensionType_Size_SphericalRadius; + } + else if(aName.IsEqual("toroidal minor diameter")) + { + theType = XCAFDimTolObjects_DimensionType_Size_ToroidalMinorDiameter; + } + else if(aName.IsEqual("toroidal major diameter")) + { + theType = XCAFDimTolObjects_DimensionType_Size_ToroidalMajorDiameter; + } + else if(aName.IsEqual("toroidal minor radius")) + { + theType = XCAFDimTolObjects_DimensionType_Size_ToroidalMinorRadius; + } + else if(aName.IsEqual("toroidal major radius")) + { + theType = XCAFDimTolObjects_DimensionType_Size_ToroidalMajorRadius; + } + else if(aName.IsEqual("toroidal high major diameter")) + { + theType = XCAFDimTolObjects_DimensionType_Size_ToroidalHighMajorDiameter; + } + else if(aName.IsEqual("toroidal low major diameter")) + { + theType = XCAFDimTolObjects_DimensionType_Size_ToroidalLowMajorDiameter; + } + else if(aName.IsEqual("toroidal high major radius")) + { + theType = XCAFDimTolObjects_DimensionType_Size_ToroidalHighMajorRadius; + } + else if(aName.IsEqual("toroidal low major radius")) + { + theType = XCAFDimTolObjects_DimensionType_Size_ToroidalLowMajorRadius; + } + else if(aName.IsEqual("thickness")) + { + theType = XCAFDimTolObjects_DimensionType_Size_Thickness; + } + else if(aName.IsEqual("curved distance")) + { + theType = XCAFDimTolObjects_DimensionType_Location_CurvedDistance; + } + else if(aName.IsEqual("linear distance")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance; + } + else if(aName.IsEqual("linear distance centre outer")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance_FromCenterToOuter; + } + else if(aName.IsEqual("linear distance centre inner")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance_FromCenterToInner; + } + else if(aName.IsEqual("linear distance outer centre")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance_FromOuterToCenter; + } + else if(aName.IsEqual("linear distance outer outer")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance_FromOuterToOuter; + } + else if(aName.IsEqual("linear distance outer inner")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance_FromOuterToInner; + } + else if(aName.IsEqual("linear distance inner centre")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance_FromInnerToCenter; + } + else if(aName.IsEqual("linear distance inner outer")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance_FromInnerToOuter; + } + else if(aName.IsEqual("linear distance inner inner")) + { + theType = XCAFDimTolObjects_DimensionType_Location_LinearDistance_FromInnerToInner; + } + + if(theType != XCAFDimTolObjects_DimensionType_Location_None) + { + return Standard_True; + } + return Standard_False; +} + + +//======================================================================= +//function : DatumTargetType +//purpose : +//======================================================================= +Standard_Boolean STEPConstruct_GDTProperty::GetDatumTargetType(const Handle(TCollection_HAsciiString)& theDescription, + XCAFDimTolObjects_DatumTargetType& theType) +{ + TCollection_AsciiString aName = theDescription->String(); + aName.LowerCase(); + if(aName.IsEqual("area")) + { + theType = XCAFDimTolObjects_DatumTargetType_Area; + return Standard_True; + } + else if(aName.IsEqual("line")) + { + theType = XCAFDimTolObjects_DatumTargetType_Line; + return Standard_True; + } + else if(aName.IsEqual("circle")) + { + theType = XCAFDimTolObjects_DatumTargetType_Circle; + return Standard_True; + } + else if(aName.IsEqual("rectangle")) + { + theType = XCAFDimTolObjects_DatumTargetType_Rectangle; + return Standard_True; + } + else if(aName.IsEqual("point")) + { + theType = XCAFDimTolObjects_DatumTargetType_Point; + return Standard_True; + } + return Standard_False; +} + +//======================================================================= +//function : GetDimQualifierType +//purpose : +//======================================================================= +Standard_Boolean STEPConstruct_GDTProperty::GetDimQualifierType(const Handle(TCollection_HAsciiString)& theDescription, + XCAFDimTolObjects_DimensionQualifier& theType) +{ + TCollection_AsciiString aName = theDescription->String(); + aName.LowerCase(); + theType = XCAFDimTolObjects_DimensionQualifier_None; + if(aName.IsEqual("maximum")) + { + theType = XCAFDimTolObjects_DimensionQualifier_Max; + } + else if(aName.IsEqual("minimum")) + { + theType = XCAFDimTolObjects_DimensionQualifier_Min; + } + else if(aName.IsEqual("average")) + { + theType = XCAFDimTolObjects_DimensionQualifier_Avg; + } + if(theType != XCAFDimTolObjects_DimensionQualifier_None) + { + return Standard_True; + } + return Standard_False; +} + +//======================================================================= +//function : GetTolValueType +//purpose : +//======================================================================= +Standard_Boolean STEPConstruct_GDTProperty::GetTolValueType(const Handle(TCollection_HAsciiString)& theDescription, + XCAFDimTolObjects_GeomToleranceTypeValue& theType) +{ + TCollection_AsciiString aName = theDescription->String(); + aName.LowerCase(); + theType = XCAFDimTolObjects_GeomToleranceTypeValue_None; + if(aName.IsEqual("cylindrical or circular")) + { + theType = XCAFDimTolObjects_GeomToleranceTypeValue_Diameter; + } + else if(aName.IsEqual("spherical")) + { + theType = XCAFDimTolObjects_GeomToleranceTypeValue_SphericalDiameter; + } + if(theType != XCAFDimTolObjects_GeomToleranceTypeValue_None) + { + return Standard_True; + } + return Standard_False; +} \ No newline at end of file diff --git a/src/STEPConstruct/STEPConstruct_GDTProperty.hxx b/src/STEPConstruct/STEPConstruct_GDTProperty.hxx new file mode 100644 index 0000000000..cd995eb43c --- /dev/null +++ b/src/STEPConstruct/STEPConstruct_GDTProperty.hxx @@ -0,0 +1,68 @@ +// Created on: 1999-09-08 +// Created by: Andrey BETENEV +// Copyright (c) 1999 Matra Datavision +// Copyright (c) 1999-2014 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +#ifndef _STEPConstruct_GDTProperty_HeaderFile +#define _STEPConstruct_GDTProperty_HeaderFile + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +//! This class provides tools for access (read) +//! the GDT properties. +class STEPConstruct_GDTProperty +{ +public: + + DEFINE_STANDARD_ALLOC + + Standard_EXPORT STEPConstruct_GDTProperty(); + Standard_EXPORT static void GetDimModifiers(const Handle(StepRepr_CompoundRepresentationItem)& theCRI, + XCAFDimTolObjects_DimensionModifiersSequence& theModifiers); + + Standard_EXPORT static void GetDimClassOfTolerance(const Handle(StepShape_LimitsAndFits)& theLAF, + Standard_Boolean theHolle, + XCAFDimTolObjects_DimensionFormVariance theFV, + XCAFDimTolObjects_DimensionGrade theG); + + Standard_EXPORT static Standard_Boolean GetDimType(const Handle(TCollection_HAsciiString)& theName, + XCAFDimTolObjects_DimensionType& theType); + + Standard_EXPORT static Standard_Boolean GetDatumTargetType(const Handle(TCollection_HAsciiString)& theDescription, + XCAFDimTolObjects_DatumTargetType& theType); + + Standard_EXPORT static Standard_Boolean GetDimQualifierType(const Handle(TCollection_HAsciiString)& theDescription, + XCAFDimTolObjects_DimensionQualifier& theType); + + Standard_EXPORT static Standard_Boolean GetTolValueType(const Handle(TCollection_HAsciiString)& theDescription, + XCAFDimTolObjects_GeomToleranceTypeValue& theType); + +}; + +#endif // _STEPConstruct_GDTProperty_HeaderFile diff --git a/src/StepAP214/StepAP214_Protocol.cxx b/src/StepAP214/StepAP214_Protocol.cxx index 8542b3ac70..bf9c60a296 100644 --- a/src/StepAP214/StepAP214_Protocol.cxx +++ b/src/StepAP214/StepAP214_Protocol.cxx @@ -288,6 +288,7 @@ static Standard_CString schemaAP203 = "CONFIG_CONTROL_DESIGN"; #include #include #include +#include #include #include #include @@ -1411,6 +1412,7 @@ StepAP214_Protocol::StepAP214_Protocol () types.Bind (STANDARD_TYPE(StepRepr_CompShAspAndDatumFeatAndShAsp), 699); types.Bind (STANDARD_TYPE(StepRepr_IntegerRepresentationItem), 700); types.Bind (STANDARD_TYPE(StepRepr_ValueRepresentationItem), 701); + types.Bind (STANDARD_TYPE(StepRepr_FeatureForDatumTargetRelationship), 702); } //======================================================================= diff --git a/src/StepRepr/FILES b/src/StepRepr/FILES index ecbd76d4d1..7eced5dded 100644 --- a/src/StepRepr/FILES +++ b/src/StepRepr/FILES @@ -48,6 +48,8 @@ StepRepr_Extension.cxx StepRepr_Extension.hxx StepRepr_ExternallyDefinedRepresentation.cxx StepRepr_ExternallyDefinedRepresentation.hxx +StepRepr_FeatureForDatumTargetRelationship.cxx +StepRepr_FeatureForDatumTargetRelationship.hxx StepRepr_FunctionallyDefinedTransformation.cxx StepRepr_FunctionallyDefinedTransformation.hxx StepRepr_GeometricAlignment.cxx diff --git a/src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.cxx b/src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.cxx new file mode 100644 index 0000000000..4e2bb8af94 --- /dev/null +++ b/src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.cxx @@ -0,0 +1,29 @@ +// Created on: 2000-04-18 +// Created by: Andrey BETENEV +// Copyright (c) 2000-2014 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0 + +#include +#include +#include + +//======================================================================= +//function : StepRepr_FeatureForDatumtargetRelationship +//purpose : +//======================================================================= + +StepRepr_FeatureForDatumTargetRelationship::StepRepr_FeatureForDatumTargetRelationship () +{ +} \ No newline at end of file diff --git a/src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.hxx b/src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.hxx new file mode 100644 index 0000000000..887e6ac754 --- /dev/null +++ b/src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.hxx @@ -0,0 +1,59 @@ +// Created on: 2000-04-18 +// Created by: Andrey BETENEV +// Copyright (c) 2000-2014 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +#ifndef _StepRepr_FeatureForDatumtargetRelationship_HeaderFile +#define _StepRepr_FeatureForDatumtargetRelationship_HeaderFile + +#include +#include + +#include + + +class StepRepr_FeatureForDatumTargetRelationship; +DEFINE_STANDARD_HANDLE(StepRepr_FeatureForDatumTargetRelationship, StepRepr_ShapeAspectRelationship) + +//! Representation of STEP entity DimensionalLocation +class StepRepr_FeatureForDatumTargetRelationship : public StepRepr_ShapeAspectRelationship +{ + +public: + + + //! Empty constructor + Standard_EXPORT StepRepr_FeatureForDatumTargetRelationship(); + + + DEFINE_STANDARD_RTTI(StepRepr_FeatureForDatumTargetRelationship,StepRepr_ShapeAspectRelationship) + +protected: + + + + +private: + + + + +}; + + + + + + + +#endif // _StepRepr_FeatureForDatumtargetRelationship_HeaderFile diff --git a/src/StepShape/StepShape_ValueQualifier.cxx b/src/StepShape/StepShape_ValueQualifier.cxx index 24b0063f25..2fd64416d7 100644 --- a/src/StepShape/StepShape_ValueQualifier.cxx +++ b/src/StepShape/StepShape_ValueQualifier.cxx @@ -15,6 +15,7 @@ #include #include #include +#include #include StepShape_ValueQualifier::StepShape_ValueQualifier () { } @@ -33,3 +34,6 @@ Handle(StepShape_PrecisionQualifier) StepShape_ValueQualifier::PrecisionQualifi Handle(StepShape_TypeQualifier) StepShape_ValueQualifier::TypeQualifier () const { return Handle(StepShape_TypeQualifier)::DownCast(Value()); } + +Handle(StepShape_ValueFormatTypeQualifier) StepShape_ValueQualifier::ValueFormatTypeQualifier () const +{ return Handle(StepShape_ValueFormatTypeQualifier)::DownCast(Value()); } \ No newline at end of file diff --git a/src/StepShape/StepShape_ValueQualifier.hxx b/src/StepShape/StepShape_ValueQualifier.hxx index 0397497158..f9f833cb33 100644 --- a/src/StepShape/StepShape_ValueQualifier.hxx +++ b/src/StepShape/StepShape_ValueQualifier.hxx @@ -25,6 +25,7 @@ class Standard_Transient; class StepShape_PrecisionQualifier; class StepShape_TypeQualifier; +class StepShape_ValueFormatTypeQualifier; //! Added for Dimensional Tolerances @@ -49,6 +50,9 @@ public: //! Returns Value as TypeQualifier Standard_EXPORT Handle(StepShape_TypeQualifier) TypeQualifier() const; + //! Returns Value as ValueFormatTypeQualifier + Standard_EXPORT Handle(StepShape_ValueFormatTypeQualifier) ValueFormatTypeQualifier() const; + diff --git a/src/XCAFDimTolObjects/FILES b/src/XCAFDimTolObjects/FILES index 5b2e9413db..0344eb26bc 100644 --- a/src/XCAFDimTolObjects/FILES +++ b/src/XCAFDimTolObjects/FILES @@ -9,6 +9,7 @@ XCAFDimTolObjects_Tool.cxx XCAFDimTolObjects_Tool.hxx XCAFDimTolObjects_DatumModifWithValue.hxx XCAFDimTolObjects_DatumSingleModif.hxx +XCAFDimTolObjects_DatumTargetType.hxx XCAFDimTolObjects_DimensionModif.hxx XCAFDimTolObjects_DimensionFormVariance.hxx XCAFDimTolObjects_DimensionGrade.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.cxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.cxx index 9770a57619..02195ce366 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.cxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.cxx @@ -21,6 +21,7 @@ XCAFDimTolObjects_DatumObject::XCAFDimTolObjects_DatumObject() { + myIsDTarget = Standard_False; } //======================================================================= @@ -35,6 +36,9 @@ XCAFDimTolObjects_DatumObject::XCAFDimTolObjects_DatumObject(const Handle(XCAFDi myModifierWithValue = theObj->myModifierWithValue; myValueOfModifier = theObj->myValueOfModifier; myDatumTarget = theObj->myDatumTarget; + myIsDTarget = theObj->myIsDTarget; + myAxis = theObj->myAxis; + myDTargetType = theObj->myDTargetType; } //======================================================================= @@ -131,12 +135,123 @@ void XCAFDimTolObjects_DatumObject::SetDatumTarget (const TopoDS_Shape& theShape myDatumTarget = theShape; } +//======================================================================= +//function : GetPosition +//purpose : +//======================================================================= + +Standard_Integer XCAFDimTolObjects_DatumObject::GetPosition() const +{ + return myPosition; +} + +//======================================================================= +//function : SetName +//purpose : +//======================================================================= + +void XCAFDimTolObjects_DatumObject::SetPosition(const Standard_Integer thePosition) +{ + myPosition = thePosition; +} + //======================================================================= //function : IsDatumTarget //purpose : //======================================================================= -Standard_Boolean XCAFDimTolObjects_DatumObject::IsDatumTarget() const +Standard_Boolean XCAFDimTolObjects_DatumObject::IsDatumTarget() const { - return !myDatumTarget.IsNull(); + return myIsDTarget; } + +//======================================================================= +//function : IsDatumTarget +//purpose : +//======================================================================= + +void XCAFDimTolObjects_DatumObject::IsDatumTarget(const Standard_Boolean theIsDT) +{ + myIsDTarget = theIsDT; +} + +//======================================================================= +//function : GetDatumTargetType +//purpose : +//======================================================================= + +XCAFDimTolObjects_DatumTargetType XCAFDimTolObjects_DatumObject::GetDatumTargetType() const +{ + return myDTargetType; +} + +//======================================================================= +//function : SetDatumTargetType +//purpose : +//======================================================================= + +void XCAFDimTolObjects_DatumObject::SetDatumTargetType(const XCAFDimTolObjects_DatumTargetType theType) +{ + myDTargetType = theType; +} + +//======================================================================= +//function : GetDatumTargetAxis +//purpose : +//======================================================================= + +gp_Ax2 XCAFDimTolObjects_DatumObject::GetDatumTargetAxis() const +{ + return myAxis; +} + +//======================================================================= +//function : SetDatumTargetAxis +//purpose : +//======================================================================= + +void XCAFDimTolObjects_DatumObject::SetDatumTargetAxis(const gp_Ax2& theAxis) +{ + myAxis = theAxis; +} + +//======================================================================= +//function : GetDatumTargetLength +//purpose : +//======================================================================= + +Standard_Real XCAFDimTolObjects_DatumObject::GetDatumTargetLength() const +{ + return myLength; +} + +//======================================================================= +//function : SetDatumTargetLength +//purpose : +//======================================================================= + +void XCAFDimTolObjects_DatumObject::SetDatumTargetLength(const Standard_Real theLength) +{ + myLength = theLength; +} + + +//======================================================================= +//function : GetDatumTargetWidth +//purpose : +//======================================================================= + +Standard_Real XCAFDimTolObjects_DatumObject::GetDatumTargetWidth() const +{ + return myWidth; +} + +//======================================================================= +//function : SetDatumTargetWidth +//purpose : +//======================================================================= + +void XCAFDimTolObjects_DatumObject::SetDatumTargetWidth(const Standard_Real theWidth) +{ + myWidth = theWidth; +} \ No newline at end of file diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.hxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.hxx index 80d1f3fb95..a18d8b34ac 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.hxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.hxx @@ -21,6 +21,7 @@ #include #include +#include #include #include #include @@ -29,6 +30,7 @@ #include #include #include +#include class XCAFDimTolObjects_DatumObject; DEFINE_STANDARD_HANDLE(XCAFDimTolObjects_DatumObject, Standard_Transient) @@ -60,9 +62,31 @@ public: Standard_EXPORT TopoDS_Shape GetDatumTarget() const; Standard_EXPORT void SetDatumTarget (const TopoDS_Shape& theShape); + + Standard_EXPORT Standard_Integer GetPosition () const; + + Standard_EXPORT void SetPosition (const Standard_Integer thePosition); Standard_EXPORT Standard_Boolean IsDatumTarget() const; + Standard_EXPORT void IsDatumTarget(const Standard_Boolean theIsDT); + + Standard_EXPORT XCAFDimTolObjects_DatumTargetType GetDatumTargetType() const; + + Standard_EXPORT void SetDatumTargetType (const XCAFDimTolObjects_DatumTargetType theType); + + Standard_EXPORT gp_Ax2 GetDatumTargetAxis() const; + + Standard_EXPORT void SetDatumTargetAxis (const gp_Ax2& theAxis); + + Standard_EXPORT Standard_Real GetDatumTargetLength() const; + + Standard_EXPORT void SetDatumTargetLength (const Standard_Real theLength); + + Standard_EXPORT Standard_Real GetDatumTargetWidth() const; + + Standard_EXPORT void SetDatumTargetWidth (const Standard_Real theWidth); + DEFINE_STANDARD_RTTI(XCAFDimTolObjects_DatumObject,Standard_Transient) @@ -73,6 +97,13 @@ private: XCAFDimTolObjects_DatumModifWithValue myModifierWithValue; Standard_Real myValueOfModifier; TopoDS_Shape myDatumTarget; + Standard_Integer myPosition; + Standard_Boolean myIsDTarget; + XCAFDimTolObjects_DatumTargetType myDTargetType; + gp_Ax2 myAxis; + Standard_Real myLength; + Standard_Real myWidth; + }; diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumTargetType.hxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumTargetType.hxx new file mode 100644 index 0000000000..4a8543bbb8 --- /dev/null +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumTargetType.hxx @@ -0,0 +1,30 @@ +// Created on: 2015-08-06 +// Created by: Ilya Novikov +// Copyright (c) 2004-2014 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + + +#ifndef _XCAFDimTolObjects_DatumTargetType_HeaderFile +#define _XCAFDimTolObjects_DatumTargetType_HeaderFile + +//! Defines types of dimension +enum XCAFDimTolObjects_DatumTargetType +{ +XCAFDimTolObjects_DatumTargetType_Point, +XCAFDimTolObjects_DatumTargetType_Line, +XCAFDimTolObjects_DatumTargetType_Rectangle, +XCAFDimTolObjects_DatumTargetType_Circle, +XCAFDimTolObjects_DatumTargetType_Area +}; + +#endif // _XCAFDimTolObjects_DatumTargetType_HeaderFile diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.cxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.cxx index dc63687682..c0811b52b6 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.cxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.cxx @@ -313,10 +313,10 @@ Standard_Boolean XCAFDimTolObjects_DimensionObject::GetClassOfTolerance (Standar XCAFDimTolObjects_DimensionFormVariance& theFormVariance, XCAFDimTolObjects_DimensionGrade& theGrade) const { + theFormVariance = myFormVariance; if(myFormVariance != XCAFDimTolObjects_DimensionFormVariance_None) { theHole = myIsHole; - theFormVariance = myFormVariance; theGrade = myGrade; return Standard_True; } diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModif.hxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModif.hxx index 77985bc50d..ea9cec277d 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModif.hxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModif.hxx @@ -33,7 +33,9 @@ XCAFDimTolObjects_GeomToleranceModif_Pitch_Diameter, XCAFDimTolObjects_GeomToleranceModif_Reciprocity_Requirement, XCAFDimTolObjects_GeomToleranceModif_Separate_Requirement, XCAFDimTolObjects_GeomToleranceModif_Statistical_Tolerance, -XCAFDimTolObjects_GeomToleranceModif_Tangent_Plane +XCAFDimTolObjects_GeomToleranceModif_Tangent_Plane, +XCAFDimTolObjects_GeomToleranceModif_All_Around, +XCAFDimTolObjects_GeomToleranceModif_All_Over, }; #endif // _XCAFDimTolObjects_GeomToleranceModif_HeaderFile diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx index 8cbda95825..dd14dfc9d0 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx @@ -20,6 +20,7 @@ XCAFDimTolObjects_GeomToleranceObject::XCAFDimTolObjects_GeomToleranceObject() { + myHasAxis = Standard_False; } //======================================================================= @@ -37,6 +38,8 @@ XCAFDimTolObjects_GeomToleranceObject::XCAFDimTolObjects_GeomToleranceObject(con myValueOfZoneModif = theObj->myValueOfZoneModif; myModifiers = theObj->myModifiers; myMaxValueModif = theObj->myMaxValueModif; + myAxis = theObj->GetAxis(); + myHasAxis = Standard_False; } //======================================================================= @@ -208,3 +211,34 @@ Standard_Real XCAFDimTolObjects_GeomToleranceObject::GetMaxValueModifier() cons { return myMaxValueModif; } + +//======================================================================= +//function : +//purpose : +//======================================================================= + +void XCAFDimTolObjects_GeomToleranceObject::SetAxis (const gp_Ax2 theAxis) +{ + myAxis = theAxis; + myHasAxis = Standard_True; +} + +//======================================================================= +//function : +//purpose : +//======================================================================= + +gp_Ax2 XCAFDimTolObjects_GeomToleranceObject::GetAxis() const +{ + return myAxis; +} + +//======================================================================= +//function : +//purpose : +//======================================================================= + +Standard_Boolean XCAFDimTolObjects_GeomToleranceObject::HasAxis () const +{ + return myHasAxis; +} \ No newline at end of file diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx index c55ab6c9f5..d53ae52d27 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx @@ -29,6 +29,7 @@ #include #include #include +#include class XCAFDimTolObjects_GeomToleranceObject; DEFINE_STANDARD_HANDLE(XCAFDimTolObjects_GeomToleranceObject, Standard_Transient) @@ -77,6 +78,12 @@ public: Standard_EXPORT Standard_Real GetMaxValueModifier() const; + Standard_EXPORT void SetAxis (const gp_Ax2 theAxis); + + Standard_EXPORT gp_Ax2 GetAxis() const; + + Standard_EXPORT Standard_Boolean HasAxis () const; + DEFINE_STANDARD_RTTI(XCAFDimTolObjects_GeomToleranceObject,Standard_Transient) private: @@ -89,8 +96,8 @@ private: Standard_Real myValueOfZoneModif; XCAFDimTolObjects_GeomToleranceModifiersSequence myModifiers; Standard_Real myMaxValueModif; - - + gp_Ax2 myAxis; + Standard_Boolean myHasAxis; }; diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_Tool.cxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_Tool.cxx index 4969413b27..b70ef39e14 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_Tool.cxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_Tool.cxx @@ -173,11 +173,11 @@ Standard_Boolean XCAFDimTolObjects_Tool::GetRefDatum(const TopoDS_Shape& theShap myDimTolTool->ShapeTool()->Search(theShape, aShapeL); if(!aShapeL.IsNull()) { - TDF_Label aDatumL; + TDF_LabelSequence aDatumL; if(myDimTolTool->GetRefDatumLabel(aShapeL, aDatumL)) { Handle(XCAFDoc_Datum) aDatum; - if( aDatumL.FindAttribute(XCAFDoc_Datum::GetID(),aDatum)){ + if( aDatumL.First().FindAttribute(XCAFDoc_Datum::GetID(),aDatum)){ theDatumObject = aDatum->GetObject(); return Standard_True; } diff --git a/src/XCAFDoc/XCAFDoc.cxx b/src/XCAFDoc/XCAFDoc.cxx index ab339a5941..99b5f95ef1 100644 --- a/src/XCAFDoc/XCAFDoc.cxx +++ b/src/XCAFDoc/XCAFDoc.cxx @@ -94,12 +94,23 @@ Standard_GUID XCAFDoc::DimTolRefGUID() //purpose : //======================================================================= -Standard_GUID XCAFDoc::DimensionRefGUID() +Standard_GUID XCAFDoc::DimensionRefFirstGUID() { static Standard_GUID ID("efd212e3-6dfd-11d4-b9c8-0060b0ee281b"); return ID; } +//======================================================================= +//function : DimensionRefGUID +//purpose : +//======================================================================= + +Standard_GUID XCAFDoc::DimensionRefSecondGUID() +{ + static Standard_GUID ID("efd212e0-6dfd-11d4-b9c8-0060b0ee281b"); + return ID; +} + //======================================================================= //function : GeomToleranceRefGUID //purpose : diff --git a/src/XCAFDoc/XCAFDoc.hxx b/src/XCAFDoc/XCAFDoc.hxx index 703e70cfa6..9b44ad7099 100644 --- a/src/XCAFDoc/XCAFDoc.hxx +++ b/src/XCAFDoc/XCAFDoc.hxx @@ -78,7 +78,10 @@ public: Standard_EXPORT static Standard_GUID DimTolRefGUID(); //! Return GUIDs for TreeNode representing specified types of Dimension - Standard_EXPORT static Standard_GUID DimensionRefGUID() ; + Standard_EXPORT static Standard_GUID DimensionRefFirstGUID() ; + + //! Return GUIDs for TreeNode representing specified types of Dimension + Standard_EXPORT static Standard_GUID DimensionRefSecondGUID() ; //! Return GUIDs for TreeNode representing specified types of GeomTolerance Standard_EXPORT static Standard_GUID GeomToleranceRefGUID() ; diff --git a/src/XCAFDoc/XCAFDoc_Datum.cxx b/src/XCAFDoc/XCAFDoc_Datum.cxx index b326f36e59..3e7a07a50b 100644 --- a/src/XCAFDoc/XCAFDoc_Datum.cxx +++ b/src/XCAFDoc/XCAFDoc_Datum.cxx @@ -17,10 +17,12 @@ #include #include #include +#include #include #include #include #include +#include #include #include #include @@ -34,7 +36,14 @@ enum ChildLab ChildLab_Name = 1, ChildLab_Modifiers, ChildLab_ModifierWithValue, - ChildLab_DatumTarget + ChildLab_IsDTarget, + ChildLab_DTargetType, + ChildLab_AxisLoc, + ChildLab_AxisN, + ChildLab_AxisRef, + ChildLab_DTargetLength, + ChildLab_DTargetWidth, + ChildLab_DatumTarget, }; //======================================================================= @@ -152,7 +161,12 @@ Handle(TCollection_HAsciiString) XCAFDoc_Datum::GetIdentification() const void XCAFDoc_Datum::SetObject(const Handle(XCAFDimTolObjects_DatumObject)& theObject) { Backup(); - if (!theObject->GetName().IsNull()) + TDF_ChildIterator anIter(Label()); + for(;anIter.More(); anIter.Next()) + { + anIter.Value().ForgetAllAttributes(); + } + if (!theObject->GetName().IsNull() && !theObject->GetName()->IsEmpty()) { Handle(TDataStd_AsciiString) anAttName; if(!Label().FindChild(ChildLab_Name).FindAttribute(TDataStd_AsciiString::GetID(), anAttName)) @@ -162,16 +176,8 @@ void XCAFDoc_Datum::SetObject(const Handle(XCAFDimTolObjects_DatumObject)& theOb } anAttName->Set(theObject->GetName()->String()); } - else - { - Label().FindChild(ChildLab_Name).ForgetAllAttributes(); - } - if(theObject->GetModifiers().Length() == 0) - { - Label().FindChild(ChildLab_Modifiers).ForgetAllAttributes(); - } - else + if(theObject->GetModifiers().Length() > 0) { Handle(TDataStd_IntegerArray) aModifiers; if(!Label().FindChild(ChildLab_Modifiers).FindAttribute(TDataStd_IntegerArray::GetID(), aModifiers)) @@ -205,19 +211,60 @@ void XCAFDoc_Datum::SetObject(const Handle(XCAFDimTolObjects_DatumObject)& theOb aModifierWithValueM->Set(aM); aModifierWithValueV->Set(aV); } - else - { - Label().FindChild(ChildLab_ModifierWithValue).ForgetAllAttributes(); - } - if(!theObject->GetDatumTarget().IsNull()) + Handle(TDataStd_Integer) aIsTarget = new TDataStd_Integer(); + aIsTarget->Set(theObject->IsDatumTarget()); + Label().FindChild(ChildLab_IsDTarget).AddAttribute(aIsTarget); + + if(theObject->IsDatumTarget()) { - TNaming_Builder tnBuild(Label().FindChild(ChildLab_DatumTarget)); - tnBuild.Generated(theObject->GetDatumTarget()); - } - else - { - Label().FindChild(ChildLab_DatumTarget).ForgetAllAttributes(); + Handle(TDataStd_Integer) aType = new TDataStd_Integer(); + aType->Set(theObject->GetDatumTargetType()); + Label().FindChild(ChildLab_DTargetType).AddAttribute(aType); + + if(theObject->GetDatumTargetType() == XCAFDimTolObjects_DatumTargetType_Area) + { + if(!theObject->GetDatumTarget().IsNull()) + { + TNaming_Builder tnBuild(Label().FindChild(ChildLab_DatumTarget)); + tnBuild.Generated(theObject->GetDatumTarget()); + } + } + else + { + Handle(TDataStd_RealArray) aLoc = new TDataStd_RealArray(); + Handle(TDataStd_RealArray) aN = new TDataStd_RealArray(); + Handle(TDataStd_RealArray) aR = new TDataStd_RealArray(); + gp_Ax2 anAx = theObject->GetDatumTargetAxis(); + aLoc->SetValue(aLoc->Upper(),anAx.Location().X()); + aLoc->SetValue(aLoc->Upper()+1,anAx.Location().Y()); + aLoc->SetValue(aLoc->Upper()+2,anAx.Location().Z()); + + aN->SetValue(aN->Upper(),anAx.Axis().Direction().X()); + aN->SetValue(aN->Upper(),anAx.Axis().Direction().X()); + aN->SetValue(aN->Upper(),anAx.Axis().Direction().X()); + + aR->SetValue(aR->Upper(),anAx.Direction().X()); + aR->SetValue(aR->Upper(),anAx.Direction().X()); + aR->SetValue(aR->Upper(),anAx.Direction().X()); + + Label().FindChild(ChildLab_AxisLoc).AddAttribute(aLoc); + Label().FindChild(ChildLab_AxisN).AddAttribute(aN); + Label().FindChild(ChildLab_AxisRef).AddAttribute(aR); + + if(theObject->GetDatumTargetType() != XCAFDimTolObjects_DatumTargetType_Point) + { + Handle(TDataStd_Real) aLen = new TDataStd_Real(); + aLen->Set(theObject->GetDatumTargetLength()); + Label().FindChild(ChildLab_DTargetLength).AddAttribute(aLen); + if(theObject->GetDatumTargetType() == XCAFDimTolObjects_DatumTargetType_Rectangle) + { + Handle(TDataStd_Real) aWidth = new TDataStd_Real(); + aWidth->Set(theObject->GetDatumTargetWidth()); + Label().FindChild(ChildLab_DTargetWidth).AddAttribute(aWidth); + } + } + } } } @@ -257,10 +304,64 @@ Handle(XCAFDimTolObjects_DatumObject) XCAFDoc_Datum::GetObject() const } } - Handle(TNaming_NamedShape) aDatumTarget; - if(Label().FindChild(ChildLab_DatumTarget).FindAttribute(TNaming_NamedShape::GetID(), aDatumTarget)) + Handle(TDataStd_Integer) aIsDTarget; + if(Label().FindChild(ChildLab_IsDTarget).FindAttribute(TDataStd_Integer::GetID(), aIsDTarget)) { - anObj->SetDatumTarget(aDatumTarget->Get()); + anObj->IsDatumTarget((aIsDTarget->Get() != 0)); + } + else + { + return anObj; + } + + if (aIsDTarget->Get() != 0) + { + Handle(TDataStd_Integer) aDTargetType; + if(Label().FindChild(ChildLab_DTargetType).FindAttribute(TDataStd_Integer::GetID(), aDTargetType)) + { + anObj->SetDatumTargetType((XCAFDimTolObjects_DatumTargetType)aDTargetType->Get()); + if(anObj->GetDatumTargetType() == XCAFDimTolObjects_DatumTargetType_Area) + { + Handle(TNaming_NamedShape) aDatumTarget; + if(Label().FindChild(ChildLab_DatumTarget).FindAttribute(TNaming_NamedShape::GetID(), aDatumTarget)) + { + anObj->SetDatumTarget(aDatumTarget->Get()); + } + } + else + { + Handle(TDataStd_RealArray) aLoc; + Handle(TDataStd_RealArray) aN; + Handle(TDataStd_RealArray) aR; + if(Label().FindChild(ChildLab_AxisLoc).FindAttribute(TDataStd_RealArray::GetID(), aLoc) && aLoc->Length() == 3 && + Label().FindChild(ChildLab_AxisN).FindAttribute(TDataStd_RealArray::GetID(), aN) && aN->Length() == 3 && + Label().FindChild(ChildLab_AxisRef).FindAttribute(TDataStd_RealArray::GetID(), aR) && aR->Length() == 3 ) + { + gp_Pnt aL(aLoc->Value(aLoc->Upper()), aLoc->Value(aLoc->Upper()+1), aLoc->Value(aLoc->Upper()+2)); + gp_Dir aD(aN->Value(aN->Upper()), aN->Value(aN->Upper()+1), aN->Value(aN->Upper()+2)); + gp_Dir aDR(aR->Value(aR->Upper()), aR->Value(aR->Upper()+1), aR->Value(aR->Upper()+2)); + gp_Ax2 anAx(aL, aD, aDR); + anObj->SetDatumTargetAxis(anAx); + } + + if(anObj->GetDatumTargetType() != XCAFDimTolObjects_DatumTargetType_Point) + { + Handle(TDataStd_Real) aLen; + if(Label().FindChild(ChildLab_DTargetLength).FindAttribute(TDataStd_Integer::GetID(), aLen)) + { + anObj->SetDatumTargetLength(aLen->Get()); + } + if(anObj->GetDatumTargetType() == XCAFDimTolObjects_DatumTargetType_Rectangle) + { + Handle(TDataStd_Real) aWidth; + if(Label().FindChild(ChildLab_DTargetWidth).FindAttribute(TDataStd_Integer::GetID(), aWidth)) + { + anObj->SetDatumTargetWidth(aWidth->Get()); + } + } + } + } + } } return anObj; diff --git a/src/XCAFDoc/XCAFDoc_DimTolTool.cxx b/src/XCAFDoc/XCAFDoc_DimTolTool.cxx index de7183155a..09d8813eb7 100644 --- a/src/XCAFDoc/XCAFDoc_DimTolTool.cxx +++ b/src/XCAFDoc/XCAFDoc_DimTolTool.cxx @@ -314,43 +314,79 @@ void XCAFDoc_DimTolTool::SetDimension(const TDF_Label& theFirstL, const TDF_Label& theSecondL, const TDF_Label& theDimTolL) const { - Handle(XCAFDoc_GraphNode) aChGNode; - Handle(XCAFDoc_GraphNode) aFGNode; - Handle(XCAFDoc_GraphNode) aSecondFGNode; + TDF_LabelSequence aFirstLS, aSecondLS; + if(!theFirstL.IsNull()) + aFirstLS.Append(theFirstL); + if(!theSecondL.IsNull()) + aSecondLS.Append(theSecondL); + SetDimension(aFirstLS, aSecondLS, theDimTolL); +} - //Handle(XCAFDoc_GraphNode) ChGNode, FGNode; - if ( theDimTolL.FindAttribute (XCAFDoc::DimensionRefGUID(), aChGNode) ) { - while (aChGNode->NbFathers() > 0) { - aFGNode = aChGNode->GetFather(1); - aFGNode->UnSetChild(aChGNode); - } - theDimTolL.ForgetAttribute ( XCAFDoc::DimTolRefGUID() ); - } +//======================================================================= +//function : SetDimension +//purpose : +//======================================================================= - if(!IsDimension(theDimTolL)) +void XCAFDoc_DimTolTool::SetDimension(const TDF_LabelSequence& theFirstL, + const TDF_LabelSequence& theSecondL, + const TDF_Label& theDimTolL) const +{ + if(!IsDimension(theDimTolL) || theFirstL.Length() == 0) { return; } - if (!theDimTolL.FindAttribute(XCAFDoc::DimensionRefGUID(), aChGNode) ) { + Handle(XCAFDoc_GraphNode) aChGNode; + Handle(XCAFDoc_GraphNode) aFGNode; + Handle(XCAFDoc_GraphNode) aSecondFGNode; + + if ( theDimTolL.FindAttribute (XCAFDoc::DimensionRefFirstGUID(), aChGNode) ) { + while (aChGNode->NbFathers() > 0) { + aFGNode = aChGNode->GetFather(1); + aFGNode->UnSetChild(aChGNode); + if(aFGNode->NbChildren() == 0) + aFGNode->ForgetAttribute( XCAFDoc::DimensionRefFirstGUID() ); + } + theDimTolL.ForgetAttribute ( XCAFDoc::DimensionRefFirstGUID() ); + } + if ( theDimTolL.FindAttribute (XCAFDoc::DimensionRefSecondGUID(), aChGNode) ) { + while (aChGNode->NbFathers() > 0) { + aFGNode = aChGNode->GetFather(1); + aFGNode->UnSetChild(aChGNode); + if(aFGNode->NbChildren() == 0) + aFGNode->ForgetAttribute( XCAFDoc::DimensionRefSecondGUID() ); + } + theDimTolL.ForgetAttribute ( XCAFDoc::DimensionRefSecondGUID() ); + } + + if (!theDimTolL.FindAttribute(XCAFDoc::DimensionRefFirstGUID(), aChGNode)) { aChGNode = new XCAFDoc_GraphNode; aChGNode = XCAFDoc_GraphNode::Set(theDimTolL); + aChGNode->SetGraphID(XCAFDoc::DimensionRefFirstGUID()); } - if (!theFirstL.FindAttribute(XCAFDoc::DimensionRefGUID(), aFGNode) ) { - aFGNode = new XCAFDoc_GraphNode; - aFGNode = XCAFDoc_GraphNode::Set(theFirstL); - } - aFGNode->SetGraphID(XCAFDoc::DimensionRefGUID()); - aChGNode->SetGraphID(XCAFDoc::DimensionRefGUID()); - aFGNode->SetChild(aChGNode); - aChGNode->SetFather(aFGNode); - - if (!theSecondL.IsNull()){ - if(!theSecondL.FindAttribute(XCAFDoc::DimensionRefGUID(), aSecondFGNode) ) { - aSecondFGNode = new XCAFDoc_GraphNode; - aSecondFGNode = XCAFDoc_GraphNode::Set(theSecondL); + for(Standard_Integer i = theFirstL.Lower(); i <= theFirstL.Upper(); i++) + { + if (!theFirstL.Value(i).FindAttribute(XCAFDoc::DimensionRefFirstGUID(), aFGNode) ) { + aFGNode = new XCAFDoc_GraphNode; + aFGNode = XCAFDoc_GraphNode::Set(theFirstL.Value(i)); } - aSecondFGNode->SetGraphID(XCAFDoc::DimensionRefGUID()); + aFGNode->SetGraphID(XCAFDoc::DimensionRefFirstGUID()); + aFGNode->SetChild(aChGNode); + aChGNode->SetFather(aFGNode); + } + + if (!theDimTolL.FindAttribute(XCAFDoc::DimensionRefSecondGUID(), aChGNode) && theSecondL.Length() > 0) { + aChGNode = new XCAFDoc_GraphNode; + aChGNode = XCAFDoc_GraphNode::Set(theDimTolL); + aChGNode->SetGraphID(XCAFDoc::DimensionRefSecondGUID()); + } + for(Standard_Integer i = theSecondL.Lower(); i <= theSecondL.Upper(); i++) + { + if(!theSecondL.Value(i).FindAttribute(XCAFDoc::DimensionRefSecondGUID(), aSecondFGNode) ) { + aSecondFGNode = new XCAFDoc_GraphNode; + aSecondFGNode = XCAFDoc_GraphNode::Set(theSecondL.Value(i)); + } + aSecondFGNode->SetGraphID(XCAFDoc::DimensionRefSecondGUID()); aSecondFGNode->SetChild(aChGNode); aChGNode->SetFather(aSecondFGNode); } @@ -364,12 +400,60 @@ void XCAFDoc_DimTolTool::SetDimension(const TDF_Label& theFirstL, void XCAFDoc_DimTolTool::SetGeomTolerance(const TDF_Label& theL, const TDF_Label& theDimTolL) const { - // set reference - Handle(TDataStd_TreeNode) refNode, mainNode; - refNode = TDataStd_TreeNode::Set ( theDimTolL, XCAFDoc::GeomToleranceRefGUID() ); - mainNode = TDataStd_TreeNode::Set ( theL, XCAFDoc::GeomToleranceRefGUID() ); - refNode->Remove(); // abv: fix against bug in TreeNode::Append() - mainNode->Append(refNode); + TDF_LabelSequence aSeq; + aSeq.Append(theL); + SetGeomTolerance(aSeq, theDimTolL); +} + +//======================================================================= +//function : SetGeomTolerance +//purpose : +//======================================================================= + +void XCAFDoc_DimTolTool::SetGeomTolerance(const TDF_LabelSequence& theL, + const TDF_Label& theDimTolL) const +{ + // // set reference + // Handle(TDataStd_TreeNode) refNode, mainNode; + // refNode = TDataStd_TreeNode::Set ( theDimTolL, XCAFDoc::GeomToleranceRefGUID() ); + // mainNode = TDataStd_TreeNode::Set ( theL, XCAFDoc::GeomToleranceRefGUID() ); + // refNode->Remove(); // abv: fix against bug in TreeNode::Append() + // mainNode->Append(refNode); + + if(!IsGeomTolerance(theDimTolL) || theL.Length() == 0) + { + return; + } + + Handle(XCAFDoc_GraphNode) aChGNode; + Handle(XCAFDoc_GraphNode) aFGNode; + + //Handle(XCAFDoc_GraphNode) ChGNode, FGNode; + if ( theDimTolL.FindAttribute (XCAFDoc::GeomToleranceRefGUID(), aChGNode) ) { + while (aChGNode->NbFathers() > 0) { + aFGNode = aChGNode->GetFather(1); + aFGNode->UnSetChild(aChGNode); + if(aFGNode->NbChildren() == 0) + aFGNode->ForgetAttribute( XCAFDoc::GeomToleranceRefGUID() ); + } + theDimTolL.ForgetAttribute ( XCAFDoc::GeomToleranceRefGUID() ); + } + + if (!theDimTolL.FindAttribute(XCAFDoc::GeomToleranceRefGUID(), aChGNode)) { + aChGNode = new XCAFDoc_GraphNode; + aChGNode = XCAFDoc_GraphNode::Set(theDimTolL); + aChGNode->SetGraphID(XCAFDoc::GeomToleranceRefGUID()); + } + for(Standard_Integer i = theL.Lower(); i <= theL.Upper(); i++) + { + if (!theL.Value(i).FindAttribute(XCAFDoc::GeomToleranceRefGUID(), aFGNode) ) { + aFGNode = new XCAFDoc_GraphNode; + aFGNode = XCAFDoc_GraphNode::Set(theL.Value(i)); + } + aFGNode->SetGraphID(XCAFDoc::GeomToleranceRefGUID()); + aFGNode->SetChild(aChGNode); + aChGNode->SetFather(aFGNode); + } } //======================================================================= @@ -412,26 +496,43 @@ TDF_Label XCAFDoc_DimTolTool::SetDimTol(const TDF_Label& L, //======================================================================= Standard_Boolean XCAFDoc_DimTolTool::GetRefShapeLabel(const TDF_Label& theL, - TDF_LabelSequence& theShapeL) const + TDF_LabelSequence& theShapeLFirst, + TDF_LabelSequence& theShapeLSecond) const { - theShapeL.Clear(); + theShapeLFirst.Clear(); + theShapeLSecond.Clear(); Handle(TDataStd_TreeNode) aNode; if( !theL.FindAttribute(XCAFDoc::DimTolRefGUID(),aNode) || !aNode->HasFather() ) { if( !theL.FindAttribute(XCAFDoc::DatumRefGUID(),aNode) || !aNode->HasFather() ) { - if( !theL.FindAttribute(XCAFDoc::GeomToleranceRefGUID(),aNode) || !aNode->HasFather() ) { - Handle(XCAFDoc_GraphNode) aGNode; - if( theL.FindAttribute(XCAFDoc::DimensionRefGUID(),aGNode) && aGNode->NbFathers() > 0 ) { + Handle(XCAFDoc_GraphNode) aGNode; + if( theL.FindAttribute(XCAFDoc::GeomToleranceRefGUID(),aGNode) && aGNode->NbFathers() > 0 ) { + for(Standard_Integer i = 1; i <= aGNode->NbFathers(); i++) + { + theShapeLFirst.Append(aGNode->GetFather(i)->Label()); + } + return Standard_True; + } + else if( theL.FindAttribute(XCAFDoc::DimensionRefFirstGUID(),aGNode) && aGNode->NbFathers() > 0 ) { + for(Standard_Integer i = 1; i <= aGNode->NbFathers(); i++) + { + theShapeLFirst.Append(aGNode->GetFather(i)->Label()); + } + if( theL.FindAttribute(XCAFDoc::DimensionRefSecondGUID(),aGNode) && aGNode->NbFathers() > 0 ) { for(Standard_Integer i = 1; i <= aGNode->NbFathers(); i++) { - theShapeL.Append(aGNode->GetFather(i)->Label()); + theShapeLSecond.Append(aGNode->GetFather(i)->Label()); } - return Standard_True; } + return Standard_True; + } + else + { return Standard_False; } } } - theShapeL.Append(aNode->Father()->Label()); + + theShapeLFirst.Append(aNode->Father()->Label()); return Standard_True; } @@ -444,14 +545,22 @@ Standard_Boolean XCAFDoc_DimTolTool::GetRefDimensionLabels(const TDF_Label& theS TDF_LabelSequence& theDimTols) const { Handle(XCAFDoc_GraphNode) aGNode; - if( theShapeL.FindAttribute(XCAFDoc::DimensionRefGUID(),aGNode) && aGNode->NbChildren() > 0 ) { + Standard_Boolean aResult = Standard_False; + if( theShapeL.FindAttribute(XCAFDoc::DimensionRefFirstGUID(),aGNode) && aGNode->NbChildren() > 0 ) { for(Standard_Integer i = 1; i <= aGNode->NbChildren(); i++) { theDimTols.Append(aGNode->GetChild(i)->Label()); } - return Standard_True; + aResult = Standard_True; } - return Standard_False; + if( theShapeL.FindAttribute(XCAFDoc::DimensionRefSecondGUID(),aGNode) && aGNode->NbChildren() > 0 ) { + for(Standard_Integer i = 1; i <= aGNode->NbChildren(); i++) + { + theDimTols.Append(aGNode->GetChild(i)->Label()); + } + aResult = Standard_True; + } + return aResult; } //======================================================================= @@ -462,16 +571,14 @@ Standard_Boolean XCAFDoc_DimTolTool::GetRefDimensionLabels(const TDF_Label& theS Standard_Boolean XCAFDoc_DimTolTool::GetRefGeomToleranceLabels(const TDF_Label& theShapeL, TDF_LabelSequence& theDimTols) const { - Handle(TDataStd_TreeNode) aNode; - if( !theShapeL.FindAttribute(XCAFDoc::GeomToleranceRefGUID(),aNode) || - !aNode->HasFirst() ) { + Handle(XCAFDoc_GraphNode) aGNode; + if( !theShapeL.FindAttribute(XCAFDoc::GeomToleranceRefGUID(),aGNode) || + aGNode->NbChildren() == 0 ) { return Standard_False; } - Handle(TDataStd_TreeNode) aLast = aNode->First(); - theDimTols.Append(aLast->Label()); - while(aLast->HasNext()) { - aLast = aLast->Next(); - theDimTols.Append(aLast->Label()); + for(Standard_Integer i = 1; i <= aGNode->NbChildren(); i++) + { + theDimTols.Append(aGNode->GetChild(i)->Label()); } return Standard_True; } @@ -482,15 +589,20 @@ Standard_Boolean XCAFDoc_DimTolTool::GetRefGeomToleranceLabels(const TDF_Label& //======================================================================= Standard_Boolean XCAFDoc_DimTolTool::GetRefDatumLabel(const TDF_Label& theShapeL, - TDF_Label& theDatum) const + TDF_LabelSequence& theDatum) const { Handle(TDataStd_TreeNode) aNode; if( !theShapeL.FindAttribute(XCAFDoc::DatumRefGUID(),aNode) || !aNode->HasFirst() ) { return Standard_False; } - Handle(TDataStd_TreeNode) aLast = aNode->First(); - theDatum = aLast->Label(); + Handle(TDataStd_TreeNode) aFirst = aNode->First(); + theDatum.Append(aFirst->Label()); + for(Standard_Integer i = 1; i < aNode->NbChildren(); i++) + { + aFirst = aFirst->Next(); + theDatum.Append(aFirst->Label()); + } return Standard_True; } diff --git a/src/XCAFDoc/XCAFDoc_DimTolTool.hxx b/src/XCAFDoc/XCAFDoc_DimTolTool.hxx index 29abd8267a..53a75f071a 100644 --- a/src/XCAFDoc/XCAFDoc_DimTolTool.hxx +++ b/src/XCAFDoc/XCAFDoc_DimTolTool.hxx @@ -68,6 +68,9 @@ public: //! in the DGTtable Standard_EXPORT void GetDimensionLabels (TDF_LabelSequence& theLabels) const; + //! Sets a link with GUID + Standard_EXPORT void SetDimension (const TDF_LabelSequence& theFirstLS, const TDF_LabelSequence& theSecondLS, const TDF_Label& theDimTolL) const; + //! Sets a link with GUID Standard_EXPORT void SetDimension (const TDF_Label& theFirstL, const TDF_Label& theSecondL, const TDF_Label& theDimTolL) const; @@ -90,6 +93,9 @@ public: //! Sets a link with GUID Standard_EXPORT void SetGeomTolerance (const TDF_Label& theL, const TDF_Label& theDimTolL) const; + + //! Sets a link with GUID + Standard_EXPORT void SetGeomTolerance (const TDF_LabelSequence& theL, const TDF_Label& theDimTolL) const; //! Returns all GeomTolerance labels defined for label ShapeL Standard_EXPORT Standard_Boolean GetRefGeomToleranceLabels (const TDF_Label& theShapeL, TDF_LabelSequence& theDimTols) const; @@ -126,7 +132,7 @@ public: //! Returns ShapeL defined for label DimTolL //! Returns False if the DimTolL is not in DGTtable - Standard_EXPORT Standard_Boolean GetRefShapeLabel (const TDF_Label& DimTolL, TDF_LabelSequence& ShapeL) const; + Standard_EXPORT Standard_Boolean GetRefShapeLabel (const TDF_Label& DimTolL, TDF_LabelSequence& ShapeLFirst, TDF_LabelSequence& ShapeLSecond) const; //! Returns all DimTol labels defined for label ShapeL Standard_EXPORT Standard_Boolean GetRefDGTLabels (const TDF_Label& ShapeL, TDF_LabelSequence& DimTols) const; @@ -175,7 +181,7 @@ public: Standard_EXPORT Standard_Boolean GetTolerOfDatumLabels (const TDF_Label& theDatumL, TDF_LabelSequence& theTols) const; //! Returns Datum label defined for label ShapeL - Standard_EXPORT Standard_Boolean GetRefDatumLabel (const TDF_Label& theShapeL, TDF_Label& theDatum) const; + Standard_EXPORT Standard_Boolean GetRefDatumLabel (const TDF_Label& theShapeL, TDF_LabelSequence& theDatum) const; Standard_EXPORT const Standard_GUID& ID() const; diff --git a/src/XCAFDoc/XCAFDoc_Dimension.cxx b/src/XCAFDoc/XCAFDoc_Dimension.cxx index bd5268dd85..d9a7222822 100644 --- a/src/XCAFDoc/XCAFDoc_Dimension.cxx +++ b/src/XCAFDoc/XCAFDoc_Dimension.cxx @@ -14,6 +14,7 @@ #include #include +#include #include #include #include @@ -86,78 +87,59 @@ void XCAFDoc_Dimension::SetObject (const Handle(XCAFDimTolObjects_DimensionObjec { Backup(); - Handle(TDataStd_Integer) aType; - if(!Label().FindChild(ChildLab_Type).FindAttribute(TDataStd_Integer::GetID(), aType)) + //Label().ForForgetAllAttributes(); + TDF_ChildIterator anIter(Label()); + for(;anIter.More(); anIter.Next()) { - aType = new TDataStd_Integer(); - Label().FindChild(ChildLab_Type).AddAttribute(aType); + anIter.Value().ForgetAllAttributes(); } + Handle(TDataStd_Integer) aType = new TDataStd_Integer(); + Label().FindChild(ChildLab_Type).AddAttribute(aType); aType->Set(theObject->GetType()); - if(theObject->GetValues().IsNull()) + if(!theObject->GetValues().IsNull()) { - Label().FindChild(ChildLab_Value).ForgetAllAttributes(); - } - else - { - Handle(TDataStd_RealArray) aVal; - if(!Label().FindChild(ChildLab_Value).FindAttribute(TDataStd_RealArray::GetID(), aVal)) - { - aVal = new TDataStd_RealArray(); - Label().FindChild(ChildLab_Value).AddAttribute(aVal); - } + Handle(TDataStd_RealArray) aVal = new TDataStd_RealArray(); + Label().FindChild(ChildLab_Value).AddAttribute(aVal); aVal->ChangeArray(theObject->GetValues()); } - Handle(TDataStd_Integer) aQualifier; - if(!Label().FindChild(ChildLab_Qualifier).FindAttribute(TDataStd_Integer::GetID(), aQualifier)) - { - aQualifier = new TDataStd_Integer(); - Label().FindChild(ChildLab_Qualifier).AddAttribute(aQualifier); - } + Handle(TDataStd_Integer) aQualifier = new TDataStd_Integer(); + Label().FindChild(ChildLab_Qualifier).AddAttribute(aQualifier); aQualifier->Set(theObject->GetQualifier()); Standard_Boolean aH; XCAFDimTolObjects_DimensionFormVariance aF; XCAFDimTolObjects_DimensionGrade aG; theObject->GetClassOfTolerance(aH,aF,aG); - Handle(TDataStd_IntegerArray) aClass; - if(!Label().FindChild(ChildLab_Class).FindAttribute(TDataStd_IntegerArray::GetID(), aClass)) + Handle(TColStd_HArray1OfInteger) anArrI; + if(aF != XCAFDimTolObjects_DimensionFormVariance_None) { - aClass = new TDataStd_IntegerArray(); + Handle(TDataStd_IntegerArray) aClass = new TDataStd_IntegerArray(); Label().FindChild(ChildLab_Class).AddAttribute(aClass); + anArrI = new TColStd_HArray1OfInteger(1,3); + anArrI->SetValue(1,aH); + anArrI->SetValue(2,aF); + anArrI->SetValue(3,aG); + aClass->ChangeArray(anArrI); } - Handle(TColStd_HArray1OfInteger) anArrI = new TColStd_HArray1OfInteger(1,3); - anArrI->SetValue(1,aH); - anArrI->SetValue(2,aF); - anArrI->SetValue(3,aG); - aClass->ChangeArray(anArrI); Standard_Integer aL, aR; theObject->GetNbOfDecimalPlaces(aL, aR); - Handle(TDataStd_IntegerArray) aDec; - if(!Label().FindChild(ChildLab_Dec).FindAttribute(TDataStd_IntegerArray::GetID(), aDec)) + if (aL > 0 || aR > 0) { - aDec = new TDataStd_IntegerArray(); + Handle(TDataStd_IntegerArray) aDec = new TDataStd_IntegerArray(); Label().FindChild(ChildLab_Dec).AddAttribute(aDec); + anArrI = new TColStd_HArray1OfInteger(1,2); + anArrI->SetValue(1,aL); + anArrI->SetValue(2,aR); + aDec->ChangeArray(anArrI); } - anArrI = new TColStd_HArray1OfInteger(1,2); - anArrI->SetValue(1,aL); - anArrI->SetValue(2,aR); - aDec->ChangeArray(anArrI); - - if(theObject->GetModifiers().Length() == 0) + + if(theObject->GetModifiers().Length() > 0) { - Label().FindChild(ChildLab_Modifiers).ForgetAllAttributes(); - } - else - { - Handle(TDataStd_IntegerArray) aModifiers; - if(!Label().FindChild(ChildLab_Modifiers).FindAttribute(TDataStd_IntegerArray::GetID(), aModifiers)) - { - aModifiers = new TDataStd_IntegerArray(); - Label().FindChild(ChildLab_Modifiers).AddAttribute(aModifiers); - } + Handle(TDataStd_IntegerArray) aModifiers = new TDataStd_IntegerArray(); + Label().FindChild(ChildLab_Modifiers).AddAttribute(aModifiers); anArrI = new TColStd_HArray1OfInteger(1,theObject->GetModifiers().Length()); for(Standard_Integer i = 1; i <= theObject->GetModifiers().Length(); i++) anArrI->SetValue(i,theObject->GetModifiers().Value(i)); @@ -166,44 +148,37 @@ void XCAFDoc_Dimension::SetObject (const Handle(XCAFDimTolObjects_DimensionObjec if(!theObject->GetPath().IsNull()) { - TNaming_Builder tnBuild(Label().FindChild(ChildLab_Path)); - tnBuild.Generated(theObject->GetPath()); - } - else - { - Label().FindChild(ChildLab_Path).ForgetAllAttributes(); + TNaming_Builder tnBuild(Label().FindChild(ChildLab_Path)); + tnBuild.Generated(theObject->GetPath()); } - Handle(TDataStd_RealArray) aDir; - if(!Label().FindChild(ChildLab_Dir).FindAttribute(TDataStd_RealArray::GetID(), aDir)) + Handle(TColStd_HArray1OfReal) anArrR; + if(theObject->GetType() == XCAFDimTolObjects_DimensionType_Location_Oriented) { - aDir = new TDataStd_RealArray(); + gp_Dir aD; + theObject->GetDirection(aD); + Handle(TDataStd_RealArray) aDir = new TDataStd_RealArray(); Label().FindChild(ChildLab_Dir).AddAttribute(aDir); + anArrR = new TColStd_HArray1OfReal(1,3); + anArrR->SetValue(1,aD.X()); + anArrR->SetValue(2,aD.Y()); + anArrR->SetValue(3,aD.Z()); + aDir->ChangeArray(anArrR); } - gp_Dir aD; - theObject->GetDirection(aD); - Handle(TColStd_HArray1OfReal) anArrR = new TColStd_HArray1OfReal(1,3); - anArrR->SetValue(1,aD.X()); - anArrR->SetValue(2,aD.Y()); - anArrR->SetValue(3,aD.Z()); - aDir->ChangeArray(anArrR); - Handle(TDataStd_RealArray) aPnts; - if(!Label().FindChild(ChildLab_Pnts).FindAttribute(TDataStd_RealArray::GetID(), aPnts)) - { - aPnts = new TDataStd_RealArray(); - Label().FindChild(ChildLab_Pnts).AddAttribute(aPnts); - } Handle(TColgp_HArray1OfPnt) aP = theObject->GetPoints(); if(!aP.IsNull() && aP->Length() > 0) { anArrR = new TColStd_HArray1OfReal(1,6); + Handle(TDataStd_RealArray) aPnts; anArrR->SetValue(1,aP->Value(1).X()); anArrR->SetValue(2,aP->Value(1).Y()); anArrR->SetValue(3,aP->Value(1).Z()); anArrR->SetValue(4,aP->Value(2).X()); anArrR->SetValue(5,aP->Value(2).Y()); anArrR->SetValue(6,aP->Value(2).Z()); + aPnts = new TDataStd_RealArray(); + Label().FindChild(ChildLab_Pnts).AddAttribute(aPnts); aPnts->ChangeArray(anArrR); } } diff --git a/src/XCAFDoc/XCAFDoc_GeomTolerance.cxx b/src/XCAFDoc/XCAFDoc_GeomTolerance.cxx index 1d9b4fe23c..99a423df62 100644 --- a/src/XCAFDoc/XCAFDoc_GeomTolerance.cxx +++ b/src/XCAFDoc/XCAFDoc_GeomTolerance.cxx @@ -14,10 +14,12 @@ #include #include +#include #include #include #include #include +#include #include #include @@ -30,7 +32,10 @@ enum ChildLab ChildLab_ZoneModif, ChildLab_ValueOfZoneModif, ChildLab_Modifiers, - ChildLab_aMaxValueModif + ChildLab_aMaxValueModif, + ChildLab_AxisLoc, + ChildLab_AxisN, + ChildLab_AxisRef }; //======================================================================= @@ -80,80 +85,90 @@ void XCAFDoc_GeomTolerance::SetObject (const Handle(XCAFDimTolObjects_GeomTolera { Backup(); - Handle(TDataStd_Integer) aType; - if(!Label().FindChild(ChildLab_Type).FindAttribute(TDataStd_Integer::GetID(), aType)) + //Label().ForForgetAllAttributes(); + TDF_ChildIterator anIter(Label()); + for(;anIter.More(); anIter.Next()) { - aType = new TDataStd_Integer(); - Label().FindChild(ChildLab_Type).AddAttribute(aType); + anIter.Value().ForgetAllAttributes(); } - aType->Set(theObject->GetType()); - Handle(TDataStd_Integer) aTypeOfValue; - if(!Label().FindChild(ChildLab_TypeOfValue).FindAttribute(TDataStd_Integer::GetID(), aTypeOfValue)) + Handle(TDataStd_Integer) aType = new TDataStd_Integer(); + aType->Set(theObject->GetType()); + Label().FindChild(ChildLab_Type).AddAttribute(aType); + + if(theObject->GetTypeOfValue() != XCAFDimTolObjects_GeomToleranceTypeValue_None) { - aTypeOfValue = new TDataStd_Integer(); + Handle(TDataStd_Integer) aTypeOfValue = new TDataStd_Integer(); + aTypeOfValue->Set(theObject->GetTypeOfValue()); Label().FindChild(ChildLab_TypeOfValue).AddAttribute(aTypeOfValue); } - aTypeOfValue->Set(theObject->GetTypeOfValue()); - Handle(TDataStd_Real) aValue; - if(!Label().FindChild(ChildLab_Value).FindAttribute(TDataStd_Real::GetID(), aValue)) - { - aValue = new TDataStd_Real(); - Label().FindChild(ChildLab_Value).AddAttribute(aValue); - } + Handle(TDataStd_Real) aValue = new TDataStd_Real(); aValue->Set(theObject->GetValue()); + Label().FindChild(ChildLab_Value).AddAttribute(aValue); Handle(TDataStd_Integer) aMatReqModif; - if(!Label().FindChild(ChildLab_MatReqModif).FindAttribute(TDataStd_Integer::GetID(), aMatReqModif)) + if(theObject->GetMaterialRequirementModifier() != XCAFDimTolObjects_GeomToleranceMatReqModif_None) { + Label().FindChild(ChildLab_MatReqModif).FindAttribute(TDataStd_Integer::GetID(), aMatReqModif); aMatReqModif = new TDataStd_Integer(); Label().FindChild(ChildLab_MatReqModif).AddAttribute(aMatReqModif); + aMatReqModif->Set(theObject->GetMaterialRequirementModifier()); } - aMatReqModif->Set(theObject->GetMaterialRequirementModifier()); - Handle(TDataStd_Integer) aZoneModif; - if(!Label().FindChild(ChildLab_ZoneModif).FindAttribute(TDataStd_Integer::GetID(), aZoneModif)) + if(theObject->GetZoneModifier() != XCAFDimTolObjects_GeomToleranceZoneModif_None) { - aZoneModif = new TDataStd_Integer(); + Handle(TDataStd_Integer) aZoneModif = new TDataStd_Integer(); + aZoneModif->Set(theObject->GetZoneModifier()); Label().FindChild(ChildLab_ZoneModif).AddAttribute(aZoneModif); } - aZoneModif->Set(theObject->GetZoneModifier()); - - Handle(TDataStd_Real) aValueOfZoneModif; - if(!Label().FindChild(ChildLab_ValueOfZoneModif).FindAttribute(TDataStd_Real::GetID(), aValueOfZoneModif)) + + if(theObject->GetValueOfZoneModifier() > 0) { - aValueOfZoneModif = new TDataStd_Real(); + Handle(TDataStd_Real) aValueOfZoneModif = new TDataStd_Real(); + aValueOfZoneModif->Set(theObject->GetValueOfZoneModifier()); Label().FindChild(ChildLab_ValueOfZoneModif).AddAttribute(aValueOfZoneModif); } - aValueOfZoneModif->Set(theObject->GetValueOfZoneModifier()); - if(theObject->GetModifiers().Length() == 0) + if(theObject->GetModifiers().Length() > 0) { - Label().FindChild(ChildLab_Modifiers).ForgetAllAttributes(); - } - else - { - Handle(TDataStd_IntegerArray) aModifiers; - if(!Label().FindChild(ChildLab_Modifiers).FindAttribute(TDataStd_IntegerArray::GetID(), aModifiers) - || theObject->GetModifiers().Length() == 0) - { - aModifiers = new TDataStd_IntegerArray(); - Label().FindChild(ChildLab_Modifiers).AddAttribute(aModifiers); - } + Handle(TDataStd_IntegerArray) aModifiers = new TDataStd_IntegerArray(); Handle(TColStd_HArray1OfInteger) anArr = new TColStd_HArray1OfInteger(1,theObject->GetModifiers().Length()); for(Standard_Integer i = 1; i <= theObject->GetModifiers().Length(); i++) anArr->SetValue(i,theObject->GetModifiers().Value(i)); aModifiers->ChangeArray(anArr); + Label().FindChild(ChildLab_Modifiers).AddAttribute(aModifiers); } - Handle(TDataStd_Real) aMaxValueModif; - if(!Label().FindChild(ChildLab_aMaxValueModif).FindAttribute(TDataStd_Real::GetID(), aMaxValueModif)) + if(theObject->GetMaxValueModifier() > 0) { - aMaxValueModif = new TDataStd_Real(); + Handle(TDataStd_Real) aMaxValueModif = new TDataStd_Real(); + aMaxValueModif->Set(theObject->GetMaxValueModifier()); Label().FindChild(ChildLab_aMaxValueModif).AddAttribute(aMaxValueModif); } - aMaxValueModif->Set(theObject->GetMaxValueModifier()); + + if(theObject->HasAxis()) + { + Handle(TDataStd_RealArray) aLoc = new TDataStd_RealArray(); + Handle(TDataStd_RealArray) aN = new TDataStd_RealArray(); + Handle(TDataStd_RealArray) aR = new TDataStd_RealArray(); + gp_Ax2 anAx = theObject->GetAxis(); + aLoc->SetValue(aLoc->Upper(),anAx.Location().X()); + aLoc->SetValue(aLoc->Upper()+1,anAx.Location().Y()); + aLoc->SetValue(aLoc->Upper()+2,anAx.Location().Z()); + + aN->SetValue(aN->Upper(),anAx.Axis().Direction().X()); + aN->SetValue(aN->Upper(),anAx.Axis().Direction().X()); + aN->SetValue(aN->Upper(),anAx.Axis().Direction().X()); + + aR->SetValue(aR->Upper(),anAx.Direction().X()); + aR->SetValue(aR->Upper(),anAx.Direction().X()); + aR->SetValue(aR->Upper(),anAx.Direction().X()); + + Label().FindChild(ChildLab_AxisLoc).AddAttribute(aLoc); + Label().FindChild(ChildLab_AxisN).AddAttribute(aN); + Label().FindChild(ChildLab_AxisRef).AddAttribute(aR); + } } //======================================================================= @@ -216,7 +231,20 @@ Handle(XCAFDimTolObjects_GeomToleranceObject) XCAFDoc_GeomTolerance::GetObject() { anObj->SetMaxValueModifier(aMaxValueModif->Get()); } - + + Handle(TDataStd_RealArray) aLoc; + Handle(TDataStd_RealArray) aN; + Handle(TDataStd_RealArray) aR; + if(Label().FindChild(ChildLab_AxisLoc).FindAttribute(TDataStd_RealArray::GetID(), aLoc) && aLoc->Length() == 3 && + Label().FindChild(ChildLab_AxisN).FindAttribute(TDataStd_RealArray::GetID(), aN) && aN->Length() == 3 && + Label().FindChild(ChildLab_AxisRef).FindAttribute(TDataStd_RealArray::GetID(), aR) && aR->Length() == 3 ) + { + gp_Pnt aL(aLoc->Value(aLoc->Upper()), aLoc->Value(aLoc->Upper()+1), aLoc->Value(aLoc->Upper()+2)); + gp_Dir aD(aN->Value(aN->Upper()), aN->Value(aN->Upper()+1), aN->Value(aN->Upper()+2)); + gp_Dir aDR(aR->Value(aR->Upper()), aR->Value(aR->Upper()+1), aR->Value(aR->Upper()+2)); + gp_Ax2 anAx(aL, aD, aDR); + anObj->SetAxis(anAx); + } return anObj; } diff --git a/src/XDEDRAW/XDEDRAW.cxx b/src/XDEDRAW/XDEDRAW.cxx index 092fc1b42b..46d8ed7bbb 100644 --- a/src/XDEDRAW/XDEDRAW.cxx +++ b/src/XDEDRAW/XDEDRAW.cxx @@ -595,7 +595,6 @@ static Standard_Integer XAttributeValue (Draw_Interpretor& di, Standard_Integer else if ( att->ID() == XCAFDoc::ColorRefGUID(XCAFDoc_ColorSurf) ) type = "Surface Color Link"; else if ( att->ID() == XCAFDoc::ColorRefGUID(XCAFDoc_ColorCurv) ) type = "Curve Color Link"; else if ( att->ID() == XCAFDoc::DimTolRefGUID() ) type = "DGT Link"; - else if ( att->ID() == XCAFDoc::GeomToleranceRefGUID() ) type = "GeomTolerance Link"; else if ( att->ID() == XCAFDoc::DatumRefGUID() ) type = "Datum Link"; else if ( att->ID() == XCAFDoc::MaterialRefGUID() ) type = "Material Link"; Handle(TDataStd_TreeNode) TN = Handle(TDataStd_TreeNode)::DownCast(att); @@ -763,8 +762,14 @@ static Standard_Integer XAttributeValue (Draw_Interpretor& di, Standard_Integer else if ( att->ID() == XCAFDoc::DatumTolRefGUID() ) { type = "DatumToler Link"; } - else if ( att->ID() == XCAFDoc::DimensionRefGUID() ) { - type = "Dimension Link"; + else if ( att->ID() == XCAFDoc::DimensionRefFirstGUID() ) { + type = "Dimension Link First"; + } + else if ( att->ID() == XCAFDoc::DimensionRefSecondGUID() ) { + type = "Dimension Link Second"; + } + else if ( att->ID() == XCAFDoc::GeomToleranceRefGUID() ){ + type = "GeomTolerance Link"; } else return 0; diff --git a/src/XDEDRAW/XDEDRAW_GDTs.cxx b/src/XDEDRAW/XDEDRAW_GDTs.cxx index 4f7c455957..2c13b0bb9a 100644 --- a/src/XDEDRAW/XDEDRAW_GDTs.cxx +++ b/src/XDEDRAW/XDEDRAW_GDTs.cxx @@ -123,7 +123,7 @@ static Standard_Integer DumpDGTs (Draw_Interpretor& di, Standard_Integer argc, c { TCollection_AsciiString Entry; TDF_Tool::Entry(aLabels.Value(i), Entry); - di << "\n " << Entry; + di << "\n " << Entry << " Shape" << "."<< i; flag = Standard_False; } TCollection_AsciiString Entry; @@ -131,7 +131,54 @@ static Standard_Integer DumpDGTs (Draw_Interpretor& di, Standard_Integer argc, c di << "\n \t " << Entry; flag = Standard_False; - di << " Dimension"; + di << " Dimension" << "."<< i << "."<< j; + if (argc > 3) + { + di <<" ("; + di << " T " << aDimTolObj->GetType(); + if(aDimTolObj->IsDimWithRange()) + { + di << ", LB " << aDimTolObj->GetLowerBound(); + di << ", UB " << aDimTolObj->GetUpperBound(); + } + else + { + di << ", V " << aDimTolObj->GetValue(); + if (aDimTolObj->IsDimWithPlusMinusTolerance()) + { + di << ", VL " << aDimTolObj->GetLowerTolValue(); + di << ", VU " << aDimTolObj->GetUpperTolValue(); + } + else if (aDimTolObj->IsDimWithClassOfTolerance()) + { + Standard_Boolean isH; + XCAFDimTolObjects_DimensionFormVariance aFV; + XCAFDimTolObjects_DimensionGrade aG; + aDimTolObj->GetClassOfTolerance(isH, aFV, aG); + di << ", H " << (Standard_Integer)isH<< " F " << aFV << " G " << aG; + } + } + if (aDimTolObj->HasQualifier()) + di << ", Q " << aDimTolObj->GetQualifier(); + if (aDimTolObj->GetType() == XCAFDimTolObjects_DimensionType_Location_Oriented) + { + gp_Dir aD; + aDimTolObj->GetDirection(aD); + di << ", D (" << aD.X() << ", " << aD.Y() << ", " << aD.Z() << ")"; + } + XCAFDimTolObjects_DimensionModifiersSequence aModif = + aDimTolObj->GetModifiers(); + if (!aModif.IsEmpty()) + { + di << ","; + for (Standard_Integer k = aModif.Lower(); k <= aModif.Upper(); k++) + { + di << " M " << aModif.Value(k); + } + } + di << ", P " << (Standard_Integer)!aDimTolObj->GetPath().IsNull(); + di << " )"; + } } } aGDTs.Clear(); @@ -146,7 +193,7 @@ static Standard_Integer DumpDGTs (Draw_Interpretor& di, Standard_Integer argc, c { TCollection_AsciiString Entry; TDF_Tool::Entry(aLabels.Value(i), Entry); - di << "\n " << Entry; + di << "\n " << Entry << " Shape" << "."<< i; flag = Standard_False; } TCollection_AsciiString Entry; @@ -154,7 +201,50 @@ static Standard_Integer DumpDGTs (Draw_Interpretor& di, Standard_Integer argc, c di << "\n \t " << Entry; flag = Standard_False; - di << " GeomTolerance"; + di << " GeomTolerance" << "."<< i << "."<< j; + if (argc > 3) + { + di <<" ("; + di << " T " << aDimTolObj->GetType(); + di << " TV " << aDimTolObj->GetTypeOfValue(); + di << ", V " << aDimTolObj->GetValue(); + + if (aDimTolObj->HasAxis()) + { + gp_Ax2 anAx = aDimTolObj->GetAxis(); + di << ", A ( L (" << anAx.Location().X() << anAx.Location().Y() << anAx.Location().Z() + << "), XD (" << anAx.XDirection().X() << anAx.XDirection().Y() << anAx.XDirection().Z() + << "), RD (" << anAx.YDirection().X() << anAx.YDirection().Y() << anAx.YDirection().Z() << "))"; + } + XCAFDimTolObjects_GeomToleranceModifiersSequence aModif = + aDimTolObj->GetModifiers(); + if (!aModif.IsEmpty()) + { + di << ","; + for (Standard_Integer k = aModif.Lower(); k <= aModif.Upper(); k++) + { + di << " M " << aModif.Value(k); + } + } + if (aDimTolObj->GetMaterialRequirementModifier() != XCAFDimTolObjects_GeomToleranceMatReqModif_None) + { + di << ", MR " << aDimTolObj->GetMaterialRequirementModifier(); + } + if (aDimTolObj->GetMaxValueModifier() > 0) + { + di << "MaxV " << aDimTolObj->GetMaxValueModifier(); + } + if ( aDimTolObj->GetZoneModifier() != XCAFDimTolObjects_GeomToleranceZoneModif_None) + { + di << ", ZM " << aDimTolObj->GetZoneModifier(); + if (aDimTolObj->GetValueOfZoneModifier() > 0) + { + di << " ZMV " <GetValueOfZoneModifier(); + } + } + + di << " )"; + } Handle(XCAFDoc_GraphNode) aNode; if(aGDTs.Value(j).FindAttribute(XCAFDoc::DatumTolRefGUID(), aNode) && aNode->NbChildren() > 0) { @@ -163,40 +253,153 @@ static Standard_Integer DumpDGTs (Draw_Interpretor& di, Standard_Integer argc, c Handle(XCAFDoc_Datum) aDatum; if(aNode->GetChild(k)->Label().FindAttribute(XCAFDoc_Datum::GetID(), aDatum)) { + Handle(XCAFDimTolObjects_DatumObject) aDatumObj = aDatum->GetObject(); TCollection_AsciiString anEntry; TDF_Tool::Entry(aNode->GetChild(k)->Label(), anEntry); di << "\n \t \t " << anEntry; - di << " Datum"; + di << " Datum" << "."<< i << "."<< j << "."<< k; + if (argc > 3) + { + di <<" ("; + XCAFDimTolObjects_DatumModifiersSequence aModif = + aDatumObj->GetModifiers(); + if (!aModif.IsEmpty()) + { + di << ","; + for (Standard_Integer k = aModif.Lower(); k <= aModif.Upper(); k++) + { + di << " M " << aModif.Value(k); + } + } + XCAFDimTolObjects_DatumModifWithValue aM; + Standard_Real aV; + aDatumObj->GetModifierWithValue(aM, aV); + if (aM != XCAFDimTolObjects_DatumModifWithValue_None) + { + di << ", MV" << aM << " " << aV; + } + di << " )"; + } } } } } } - TDF_Label aDatumL; + TDF_LabelSequence aDatumL; if (aDimTolTool->GetRefDatumLabel(aLabels.Value(i), aDatumL)) { - Handle(XCAFDoc_Datum) aDatum; - if(aDatumL.FindAttribute(XCAFDoc_Datum::GetID(), aDatum)) + for(Standard_Integer j = aDatumL.Lower(); j <= aDatumL.Upper(); j++) { - if(flag) + Handle(XCAFDoc_Datum) aDatum; + if(aDatumL.Value(j).FindAttribute(XCAFDoc_Datum::GetID(), aDatum) && + aDatum->GetObject()->IsDatumTarget()) { + Handle(XCAFDimTolObjects_DatumObject) aDatumObj = aDatum->GetObject(); + if(flag) + { + TCollection_AsciiString Entry; + TDF_Tool::Entry(aLabels.Value(i), Entry); + di << "\n " << Entry << " Shape" << "."<< i; + flag = Standard_False; + } TCollection_AsciiString Entry; - TDF_Tool::Entry(aLabels.Value(i), Entry); - di << "\n " << Entry; + TDF_Tool::Entry(aDatumL.First(), Entry); + di << "\n \t " << Entry; flag = Standard_False; - } - TCollection_AsciiString Entry; - TDF_Tool::Entry(aDatumL, Entry); - di << "\n \t " << Entry; - flag = Standard_False; - di << " Datum"; + di << " Datum target" << "."<< i << "."<< j; + if (argc > 3) + { + di <<" ("; + di << " T " << aDatumObj->GetDatumTargetType(); + if (aDatumObj->GetDatumTargetType() != XCAFDimTolObjects_DatumTargetType_Area) + { + gp_Ax2 anAx = aDatumObj->GetDatumTargetAxis(); + di << ", A ( L (" << anAx.Location().X() << anAx.Location().Y() << anAx.Location().Z() + << "), XD (" << anAx.XDirection().X() << anAx.XDirection().Y() << anAx.XDirection().Z() + << "), RD (" << anAx.YDirection().X() << anAx.YDirection().Y() << anAx.YDirection().Z() << "))"; + if (aDatumObj->GetDatumTargetType() != XCAFDimTolObjects_DatumTargetType_Point) + { + di << ", L " << aDatumObj->GetDatumTargetLength() ; + if (aDatumObj->GetDatumTargetType() == XCAFDimTolObjects_DatumTargetType_Rectangle) + { + di << ", W " << aDatumObj->GetDatumTargetWidth() ; + } + } + } + di << " )"; + } + } } } } return 0; } +static Standard_Integer DumpNbDGTs (Draw_Interpretor& di, Standard_Integer argc, const char** argv) +{ + if (argc < 2) { + di<<"Use: "<<"XDumpNbDGTs Doc"; + return 1; + } + Handle(TDocStd_Document) Doc; + DDocStd::GetDocument(argv[1], Doc); + if ( Doc.IsNull() ) { di << argv[1] << " is not a document" << "\n"; return 1; } + Handle(XCAFDoc_DimTolTool) aDimTolTool= XCAFDoc_DocumentTool::DimTolTool(Doc->Main()); + Handle(XCAFDoc_ShapeTool) aShapeTool= XCAFDoc_DocumentTool::ShapeTool(Doc->Main()); + + TDF_LabelSequence aLabels; + aShapeTool->GetShapes(aLabels); + for ( Standard_Integer i=1; i <= aLabels.Length(); i++ ) + { + aShapeTool->GetSubShapes(aLabels.Value(i), aLabels); + } + + TDF_LabelSequence aGDTs; + aDimTolTool->GetDimensionLabels(aGDTs); + di << "\n NbOfDimensions : " << aGDTs.Length(); + + aGDTs.Clear(); + aDimTolTool->GetGeomToleranceLabels(aGDTs); + di << "\n NbOfTolerances : " << aGDTs.Length(); + + Standard_Integer aCounter = 0; + Standard_Integer aCounter1 = 0; + Standard_Integer aCounter2 = 0; + + for ( Standard_Integer i=1; i <= aLabels.Length(); i++ ) + { + Standard_Boolean isDatum = Standard_False; + TDF_LabelSequence aDatL; + if(aDimTolTool->GetRefDatumLabel(aLabels.Value(i), aDatL)) + { + for(Standard_Integer j = aDatL.Lower(); j <= aDatL.Upper(); j++) + { + Handle(XCAFDoc_Datum) aDat; + if(aDatL.Value(j).FindAttribute(XCAFDoc_Datum::GetID(), aDat)) + { + if(aDat->GetObject()->IsDatumTarget()) + { + aCounter1++; + } + else + { + aCounter2++; + isDatum = Standard_True; + } + } + } + if(isDatum) + aCounter++; + } + } + di << "\n NbOfDatumFeature : " << aCounter; + di << "\n NbOfAttachedDatum : " << aCounter2; + di << "\n NbOfDatumTarget : " << aCounter1; + + return 0; +} + static Standard_Integer addDim (Draw_Interpretor& di, Standard_Integer argc, const char** argv) { if (argc < 3) { @@ -378,25 +581,16 @@ static Standard_Integer getDatum (Draw_Interpretor& di, Standard_Integer argc, c return 1; } - TDF_Label aD; + TDF_LabelSequence aD; if(!aDimTolTool->GetRefDatumLabel(aLabel, aD)) { - TDF_LabelSequence aDS; - if(aDimTolTool->GetDatumOfTolerLabels(aLabel, aDS)) - { - for(Standard_Integer i = 1; i<=aDS.Length();i++) - { - if(i>1) di<<", "; - TCollection_AsciiString Entry; - TDF_Tool::Entry(aDS.Value(i), Entry); - di<GetDatumOfTolerLabels(aLabel, aD); } - else + for(Standard_Integer i = aD.Lower(); i <= aD.Upper(); i++) { + if(i>1) di<<", "; TCollection_AsciiString Entry; - TDF_Tool::Entry(aD, Entry); + TDF_Tool::Entry(aD.Value(i), Entry); di< 1} { + set path_file [locate_data_file $filename] + if { [catch { ReadStep D_First $path_file } catch_result] } { + set err_msg "Error: First - file was not read - exception " + puts $err_msg + append todo_msg $todo_mask $err_msg $end_line + set mist 1 + } + +} else { + set mist 1 +} + +# Get information about translation +if { $mist < 1} { + puts "" + + set xst [ XDumpNbDGTs D_First ] + + if { [llength $xst] > 0 } { + regexp {NbOfDimensions +: +([-0-9.+eE]+)} $xst full nbDim + regexp {NbOfTolerances +: +([-0-9.+eE]+)} $xst full nbTol + regexp {NbOfDatumFeature +: +([-0-9.+eE]+)} $xst full nbDat + regexp {NbOfAttachedDatum +: +([-0-9.+eE]+)} $xst full nbAttDat + regexp {NbOfDatumTarget +: +([-0-9.+eE]+)} $xst full nbDatT + } else { + puts " GDT information was NOT provided" + } + set xstruct [ XDumpDGTs D_First all 1] +} + +if { $mist != 1 } { + puts "" + set result "" + append result [format $xst] + append result [format "\n"] + append result [format $xstruct] +} + +set err_compare_ref "" + +if { [catch { Close D_First } catch_result] } { + set err_msg "Error : cannot close a document D_First - exception" + puts $err_msg +} + + +# Put reference data to the test script file if option "dump" is set +if { $dump_file == 1 } { + set fd_stream [open $dirname/$groupname/$gridname/$casename w] + puts $fd_stream "# !!!! This file is generated automatically, do not edit manually! See end script" + puts $fd_stream "set filename $filename" + if { $mist != 1 } { + puts $fd_stream "" + puts $fd_stream "set ref_data \{" + puts $fd_stream $result + puts $fd_stream "\}" + } + close $fd_stream +} elseif { $mist != 1 } { + puts "========================== Comparision with reference data ========" + puts "" + # Comparision of reference data with obtained result + set ref_list [split $ref_data \n] + set cur_list [split $result \n] + set nb_ref [llength $ref_list] + set nb_cur [llength $cur_list] + for { set i 0 } { $i < $nb_cur } { incr i } { + set j [expr $i +1] + set refstr [lindex $ref_list $j] + set curstr [lindex $cur_list $i] + set isOK 1; + + if {[string equal $refstr $curstr] == 0} { + set isOK 0 + } + + if { $isOK == 0} { + incr ref_Compare + append err_compare_ref " Reference data - $refstr\n" + append err_compare_ref " Current data - $curstr\n" + append err_compare_ref "--------------------------------------------------------------------\n" + } + } +} + +if { $dump_file != 0 } { + puts "Error : Running in regeneration mode, comparision was not performed!" + if { $mist != 1 } { + puts "Generation of test file $groupname/$gridname/$casename successful" + } else { + puts "Generation of reference data failed" + } +} else { + if { $ref_Compare > 0} { + puts "Error : $ref_Compare differences with reference data found :\n$err_compare_ref" + } else { + puts "Comparision of current result with reference data - OK\n" + } +} + +puts "--------------------------------------------------------------------" +puts "" + +puts "TEST COMPLETED"