mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-06 07:51:47 +00:00
64dc2ea95c
* Windows/MSVC build scripts: option to build and use official Open CASCADE instead of the community edition.
* Fix C4800 warnings ("'Standard_Boolean': forcing value to bool 'true' or 'false' (performance warning)") + unnecessary integer cast.
* build-deps.cmd: fix OCCT download
* Fix MSVC linking against OCCT 7.0.0. Example executables fail still, needs research.
* occt-V7_0_0-9059ca1_CMakeLists.txt: add_definitions(-DHAVE_NO_DLL) in order to fix static linking to OCCT. Mark IfcOpenShell patches in the OCCT patch files for clarity.
* Patch OCCT in order to fix compliaction when HAVE_NO_DLL is defind. Clean up IfcOpenSHell's linker warnings by defining HAVE_NO_DLL.
* CMakeLists.txt: remove linking to the newly added OCCT libs, these are not needed when HAVE_NO_DLL is defined.
* cmake/CMakeLists.txt: make add_debug_variants() function to handle filenames/paths also. Apply the coding conventions while at it. Fixes #123.
* Patch OCCT's OpenGl_PrimitiveArray.cxx and XCAFDoc_GeomTolerance.cxx in order to fix Debug build. Do not trigger OCCT rebuild each time build-deps.cmd is ran.
* build-deps.cmd: fix OCCT file patch copy.
* Non-MSVC compiler: use -Wextra, suppress/fix -Wignored-qualifiers warnings.
* build-deps.cmd: do not check return values of copy commands as they seem not to be fully reliable.
425 lines
14 KiB
C++
425 lines
14 KiB
C++
// 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 <XCAFDoc_Dimension.hxx>
|
|
|
|
#include <TDF_RelocationTable.hxx>
|
|
#include <TDF_ChildIterator.hxx>
|
|
#include <XCAFDoc.hxx>
|
|
#include <TDataStd_TreeNode.hxx>
|
|
#include <Precision.hxx>
|
|
#include <TColgp_HArray1OfPnt.hxx>
|
|
#include <TDataStd_Integer.hxx>
|
|
#include <TDataStd_IntegerArray.hxx>
|
|
#include <TDataStd_Real.hxx>
|
|
#include <TDataStd_RealArray.hxx>
|
|
#include <TNaming_Builder.hxx>
|
|
#include <TNaming_NamedShape.hxx>
|
|
#include <TColStd_HArray1OfReal.hxx>
|
|
#include <TopoDS.hxx>
|
|
#include <XCAFDimTolObjects_DimensionObject.hxx>
|
|
#include <TNaming_Tool.hxx>
|
|
#include <TDataStd_Name.hxx>
|
|
|
|
// IfcOpenShell begin
|
|
#ifdef GetObject
|
|
#undef GetObject
|
|
#endif
|
|
// IfcOpenShell end
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(XCAFDoc_Dimension,TDF_Attribute)
|
|
|
|
enum ChildLab
|
|
{
|
|
ChildLab_Type = 1,
|
|
ChildLab_Value,
|
|
ChildLab_Qualifier,
|
|
ChildLab_Class,
|
|
ChildLab_Dec,
|
|
ChildLab_Modifiers,
|
|
ChildLab_Path,
|
|
ChildLab_Dir,
|
|
ChildLab_Pnts,
|
|
ChildLab_PlaneLoc,
|
|
ChildLab_PlaneN,
|
|
ChildLab_PlaneRef,
|
|
ChildLab_PntText,
|
|
ChildLab_Presentation
|
|
|
|
};
|
|
|
|
//=======================================================================
|
|
//function : XCAFDoc_Dimension
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
XCAFDoc_Dimension::XCAFDoc_Dimension()
|
|
{
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : GetID
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const Standard_GUID& XCAFDoc_Dimension::GetID()
|
|
{
|
|
static Standard_GUID DGTID ("58ed092c-44de-11d8-8776-001083004c77");
|
|
//static Standard_GUID ID("efd212e9-6dfd-11d4-b9c8-0060b0ee281b");
|
|
return DGTID;
|
|
//return ID;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Set
|
|
//purpose :
|
|
//=======================================================================
|
|
Handle(XCAFDoc_Dimension) XCAFDoc_Dimension::Set(const TDF_Label& theLabel)
|
|
{
|
|
Handle(XCAFDoc_Dimension) A;
|
|
if (!theLabel.FindAttribute(XCAFDoc_Dimension::GetID(), A)) {
|
|
A = new XCAFDoc_Dimension();
|
|
theLabel.AddAttribute(A);
|
|
}
|
|
return A;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetObject
|
|
//purpose :
|
|
//=======================================================================
|
|
void XCAFDoc_Dimension::SetObject (const Handle(XCAFDimTolObjects_DimensionObject)& theObject)
|
|
{
|
|
Backup();
|
|
|
|
//Label().ForForgetAllAttributes();
|
|
TDF_ChildIterator anIter(Label());
|
|
for(;anIter.More(); anIter.Next())
|
|
{
|
|
anIter.Value().ForgetAllAttributes();
|
|
}
|
|
Handle(TDataStd_Integer) aType = new TDataStd_Integer();
|
|
Label().FindChild(ChildLab_Type).AddAttribute(aType);
|
|
aType->Set(theObject->GetType());
|
|
|
|
if(!theObject->GetValues().IsNull())
|
|
{
|
|
Handle(TDataStd_RealArray) aVal = new TDataStd_RealArray();
|
|
Label().FindChild(ChildLab_Value).AddAttribute(aVal);
|
|
aVal->ChangeArray(theObject->GetValues());
|
|
}
|
|
|
|
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(TColStd_HArray1OfInteger) anArrI;
|
|
if(aF != XCAFDimTolObjects_DimensionFormVariance_None)
|
|
{
|
|
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);
|
|
}
|
|
|
|
Standard_Integer aL, aR;
|
|
theObject->GetNbOfDecimalPlaces(aL, aR);
|
|
if (aL > 0 || aR > 0)
|
|
{
|
|
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);
|
|
}
|
|
|
|
if(theObject->GetModifiers().Length() > 0)
|
|
{
|
|
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));
|
|
aModifiers->ChangeArray(anArrI);
|
|
}
|
|
|
|
if(!theObject->GetPath().IsNull())
|
|
{
|
|
TNaming_Builder tnBuild(Label().FindChild(ChildLab_Path));
|
|
tnBuild.Generated(theObject->GetPath());
|
|
}
|
|
|
|
Handle(TColStd_HArray1OfReal) anArrR;
|
|
if(theObject->GetType() == XCAFDimTolObjects_DimensionType_Location_Oriented)
|
|
{
|
|
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);
|
|
}
|
|
|
|
Handle(TColgp_HArray1OfPnt) aP = theObject->GetPoints();
|
|
if(!aP.IsNull() && aP->Length() > 0)
|
|
{
|
|
anArrR = new TColStd_HArray1OfReal(1,aP->Length() * 3);
|
|
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());
|
|
if (aP->Length() == 2) {
|
|
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);
|
|
}
|
|
|
|
if (theObject->HasPlane())
|
|
{
|
|
Handle(TDataStd_RealArray) aLoc = new TDataStd_RealArray();
|
|
Handle(TDataStd_RealArray) aN = new TDataStd_RealArray();
|
|
Handle(TDataStd_RealArray) aRAtt = new TDataStd_RealArray();
|
|
gp_Ax2 anAx = theObject->GetPlane();
|
|
|
|
Handle(TColStd_HArray1OfReal) aLocArr = new TColStd_HArray1OfReal(1, 3);
|
|
for (Standard_Integer i = 1; i <= 3; i++)
|
|
aLocArr->SetValue(i, anAx.Location().Coord(i));
|
|
aLoc->ChangeArray(aLocArr);
|
|
|
|
Handle(TColStd_HArray1OfReal) aNArr = new TColStd_HArray1OfReal(1, 3);
|
|
for (Standard_Integer i = 1; i <= 3; i++)
|
|
aNArr->SetValue(i, anAx.Direction().Coord(i));
|
|
aN->ChangeArray(aNArr);
|
|
|
|
Handle(TColStd_HArray1OfReal) aRArr = new TColStd_HArray1OfReal(1, 3);
|
|
for (Standard_Integer i = 1; i <= 3; i++)
|
|
aRArr->SetValue(i, anAx.XDirection().Coord(i));
|
|
aRAtt->ChangeArray(aRArr);
|
|
|
|
Label().FindChild(ChildLab_PlaneLoc).AddAttribute(aLoc);
|
|
Label().FindChild(ChildLab_PlaneN).AddAttribute(aN);
|
|
Label().FindChild(ChildLab_PlaneRef).AddAttribute(aRAtt);
|
|
}
|
|
|
|
if (theObject->HasTextPoint())
|
|
{
|
|
Handle(TDataStd_RealArray) aLoc = new TDataStd_RealArray();
|
|
gp_Pnt aPntText = theObject->GetPointTextAttach();
|
|
|
|
Handle(TColStd_HArray1OfReal) aLocArr = new TColStd_HArray1OfReal(1, 3);
|
|
for (Standard_Integer i = 1; i <= 3; i++)
|
|
aLocArr->SetValue(i, aPntText.Coord(i));
|
|
aLoc->ChangeArray(aLocArr);
|
|
|
|
Label().FindChild(ChildLab_PntText).AddAttribute(aLoc);
|
|
}
|
|
|
|
TopoDS_Shape aPresentation = theObject->GetPresentation();
|
|
if( !aPresentation.IsNull())
|
|
{
|
|
TDF_Label aLPres = Label().FindChild( ChildLab_Presentation);
|
|
TNaming_Builder tnBuild(aLPres);
|
|
tnBuild.Generated(aPresentation);
|
|
Handle(TCollection_HAsciiString) aName = theObject->GetPresentationName();
|
|
if( !aName.IsNull() )
|
|
{
|
|
TCollection_ExtendedString str ( aName->String() );
|
|
TDataStd_Name::Set ( aLPres, str );
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetObject
|
|
//purpose :
|
|
//=======================================================================
|
|
Handle(XCAFDimTolObjects_DimensionObject) XCAFDoc_Dimension::GetObject() const
|
|
{
|
|
Handle(XCAFDimTolObjects_DimensionObject) anObj = new XCAFDimTolObjects_DimensionObject();
|
|
|
|
Handle(TDataStd_Integer) aType;
|
|
if(Label().FindChild(ChildLab_Type).FindAttribute(TDataStd_Integer::GetID(), aType))
|
|
{
|
|
anObj->SetType((XCAFDimTolObjects_DimensionType)aType->Get());
|
|
}
|
|
|
|
Handle(TDataStd_RealArray) aVal;
|
|
if(Label().FindChild(ChildLab_Value).FindAttribute(TDataStd_RealArray::GetID(), aVal)
|
|
&& !aVal->Array().IsNull())
|
|
{
|
|
anObj->SetValues(aVal->Array());
|
|
}
|
|
|
|
Handle(TDataStd_Integer) aQualifier;
|
|
if(Label().FindChild(ChildLab_Qualifier).FindAttribute(TDataStd_Integer::GetID(), aQualifier))
|
|
{
|
|
anObj->SetQualifier((XCAFDimTolObjects_DimensionQualifier)aQualifier->Get());
|
|
}
|
|
|
|
Handle(TDataStd_IntegerArray) aClass;
|
|
if(Label().FindChild(ChildLab_Class).FindAttribute(TDataStd_IntegerArray::GetID(), aClass)
|
|
&& !aClass->Array().IsNull() && aClass->Array()->Length() > 0)
|
|
{
|
|
anObj->SetClassOfTolerance(aClass->Array()->Value(1), (XCAFDimTolObjects_DimensionFormVariance)aClass->Array()->Value(2), (XCAFDimTolObjects_DimensionGrade)aClass->Array()->Value(3));
|
|
}
|
|
|
|
Handle(TDataStd_IntegerArray) aDec;
|
|
if(Label().FindChild(ChildLab_Dec).FindAttribute(TDataStd_IntegerArray::GetID(), aDec)
|
|
&& !aDec->Array().IsNull() && aDec->Array()->Length() > 0)
|
|
{
|
|
anObj->SetNbOfDecimalPlaces(aDec->Array()->Value(1), aDec->Array()->Value(2));
|
|
}
|
|
|
|
Handle(TDataStd_IntegerArray) aModifiers;
|
|
if(Label().FindChild(ChildLab_Modifiers).FindAttribute(TDataStd_IntegerArray::GetID(), aModifiers)
|
|
&& !aModifiers->Array().IsNull())
|
|
{
|
|
XCAFDimTolObjects_DimensionModifiersSequence aM;
|
|
for(Standard_Integer i = 1; i <= aModifiers->Array()->Length(); i++)
|
|
aM.Append((XCAFDimTolObjects_DimensionModif)aModifiers->Array()->Value(i));
|
|
anObj->SetModifiers(aM);
|
|
}
|
|
|
|
Handle(TNaming_NamedShape) aShape;
|
|
if(Label().FindChild(ChildLab_Path).FindAttribute(TNaming_NamedShape::GetID(), aShape)
|
|
&& !aShape.IsNull())
|
|
{
|
|
anObj->SetPath(TopoDS::Edge(aShape->Get()));
|
|
}
|
|
|
|
|
|
Handle(TDataStd_RealArray) aDir;
|
|
if(Label().FindChild(ChildLab_Dir).FindAttribute(TDataStd_RealArray::GetID(), aDir)
|
|
&& !aDir->Array().IsNull() && aDir->Array()->Length() > 0)
|
|
{
|
|
gp_Dir aD(aDir->Array()->Value(1), aDir->Array()->Value(2), aDir->Array()->Value(3));
|
|
anObj->SetDirection(aD);
|
|
}
|
|
|
|
Handle(TDataStd_RealArray) aPnts;
|
|
if(Label().FindChild(ChildLab_Pnts).FindAttribute(TDataStd_RealArray::GetID(), aPnts)
|
|
&& !aPnts->Array().IsNull() && aPnts->Array()->Length() > 2)
|
|
{
|
|
Handle(TColgp_HArray1OfPnt) aP = new TColgp_HArray1OfPnt(1,aPnts->Array()->Length()/3);
|
|
gp_Pnt aP1(aPnts->Array()->Value(1), aPnts->Array()->Value(2), aPnts->Array()->Value(3));
|
|
aP->SetValue(1, aP1);
|
|
if (aPnts->Array()->Length() == 6)
|
|
{
|
|
gp_Pnt aP2(aPnts->Array()->Value(4), aPnts->Array()->Value(5), aPnts->Array()->Value(6));
|
|
aP->SetValue(2, aP2);
|
|
}
|
|
anObj->SetPoints(aP);
|
|
}
|
|
|
|
Handle(TDataStd_RealArray) aLoc, aN, aR;
|
|
if(Label().FindChild(ChildLab_PlaneLoc).FindAttribute(TDataStd_RealArray::GetID(), aLoc) && aLoc->Length() == 3 &&
|
|
Label().FindChild(ChildLab_PlaneN).FindAttribute(TDataStd_RealArray::GetID(), aN) && aN->Length() == 3 &&
|
|
Label().FindChild(ChildLab_PlaneRef).FindAttribute(TDataStd_RealArray::GetID(), aR) && aR->Length() == 3 )
|
|
{
|
|
gp_Pnt aL(aLoc->Value(aLoc->Lower()), aLoc->Value(aLoc->Lower()+1), aLoc->Value(aLoc->Lower()+2));
|
|
gp_Dir aD(aN->Value(aN->Lower()), aN->Value(aN->Lower()+1), aN->Value(aN->Lower()+2));
|
|
gp_Dir aDR(aR->Value(aR->Lower()), aR->Value(aR->Lower()+1), aR->Value(aR->Lower()+2));
|
|
gp_Ax2 anAx(aL, aD, aDR);
|
|
anObj->SetPlane(anAx);
|
|
}
|
|
|
|
Handle(TDataStd_RealArray) aPntText;
|
|
if(Label().FindChild(ChildLab_PntText).FindAttribute(TDataStd_RealArray::GetID(), aPntText) && aPntText->Length() == 3 )
|
|
{
|
|
gp_Pnt aP(aPntText->Value(aPntText->Lower()), aPntText->Value(aPntText->Lower()+1), aPntText->Value(aPntText->Lower()+2));
|
|
anObj->SetPointTextAttach(aP);
|
|
}
|
|
|
|
Handle(TNaming_NamedShape) aNS;
|
|
TDF_Label aLPres = Label().FindChild( ChildLab_Presentation);
|
|
if ( aLPres.FindAttribute(TNaming_NamedShape::GetID(), aNS) )
|
|
{
|
|
|
|
TopoDS_Shape aPresentation = TNaming_Tool::GetShape(aNS);
|
|
if( !aPresentation.IsNull())
|
|
{
|
|
|
|
Handle(TDataStd_Name) aNameAtrr;
|
|
Handle(TCollection_HAsciiString) aPresentName;
|
|
if (aLPres.FindAttribute(TDataStd_Name::GetID(),aNameAtrr))
|
|
{
|
|
const TCollection_ExtendedString& aName = aNameAtrr->Get();
|
|
|
|
if( !aName.IsEmpty())
|
|
aPresentName = new TCollection_HAsciiString(aName);
|
|
}
|
|
|
|
anObj->SetPresentation(aPresentation, aPresentName);
|
|
}
|
|
}
|
|
return anObj;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ID
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const Standard_GUID& XCAFDoc_Dimension::ID() const
|
|
{
|
|
return GetID();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Restore
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void XCAFDoc_Dimension::Restore(const Handle(TDF_Attribute)& /*With*/)
|
|
{
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : NewEmpty
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TDF_Attribute) XCAFDoc_Dimension::NewEmpty() const
|
|
{
|
|
return new XCAFDoc_Dimension();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void XCAFDoc_Dimension::Paste(const Handle(TDF_Attribute)& /*Into*/,
|
|
const Handle(TDF_RelocationTable)& /*RT*/) const
|
|
{
|
|
}
|