mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
191 lines
7.9 KiB
C++
191 lines
7.9 KiB
C++
// Created on: 1993-07-23
|
|
// Created by: Martine LANGLOIS
|
|
// Copyright (c) 1993-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 <BRepClass3d.hxx>
|
|
#include <Message_ProgressScope.hxx>
|
|
#include <MoniTool_DataMapOfShapeTransient.hxx>
|
|
#include <StdFail_NotDone.hxx>
|
|
#include <StepData_Factors.hxx>
|
|
#include <StepData_StepModel.hxx>
|
|
#include <StepShape_ClosedShell.hxx>
|
|
#include <StepShape_FacetedBrepAndBrepWithVoids.hxx>
|
|
#include <StepShape_HArray1OfOrientedClosedShell.hxx>
|
|
#include <StepShape_OrientedClosedShell.hxx>
|
|
#include <StepShape_TopologicalRepresentationItem.hxx>
|
|
#include <StepVisual_HArray1OfTessellatedStructuredItem.hxx>
|
|
#include <StepVisual_TessellatedShell.hxx>
|
|
#include <StepVisual_TessellatedSolid.hxx>
|
|
#include <TCollection_HAsciiString.hxx>
|
|
#include <TColStd_SequenceOfTransient.hxx>
|
|
#include <TopoDS.hxx>
|
|
#include <TopoDS_Iterator.hxx>
|
|
#include <TopoDS_Shell.hxx>
|
|
#include <TopoDS_Solid.hxx>
|
|
#include <TopoDSToStep.hxx>
|
|
#include <TopoDSToStep_Builder.hxx>
|
|
#include <TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.hxx>
|
|
#include <TopoDSToStep_Tool.hxx>
|
|
#include <Transfer_FinderProcess.hxx>
|
|
#include <TransferBRep_ShapeMapper.hxx>
|
|
|
|
//=============================================================================
|
|
// Create a FacetedBrepAndBrepWithVoids of StepShape from a Solid of TopoDS
|
|
// containing more than one closed shell
|
|
//=============================================================================
|
|
TopoDSToStep_MakeFacetedBrepAndBrepWithVoids::
|
|
TopoDSToStep_MakeFacetedBrepAndBrepWithVoids(const TopoDS_Solid& aSolid,
|
|
const Handle(Transfer_FinderProcess)& FP,
|
|
const StepData_Factors& theLocalFactors,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
done = Standard_False;
|
|
TopoDS_Iterator It;
|
|
MoniTool_DataMapOfShapeTransient aMap;
|
|
TColStd_SequenceOfTransient S;
|
|
TopoDS_Shell aOutShell;
|
|
|
|
Handle(StepShape_TopologicalRepresentationItem) aItem;
|
|
Handle(StepShape_ClosedShell) aOuter, aCShell;
|
|
Handle(StepShape_OrientedClosedShell) aOCShell;
|
|
Handle(StepShape_HArray1OfOrientedClosedShell) aVoids;
|
|
TColStd_SequenceOfTransient aTessShells;
|
|
|
|
aOutShell = BRepClass3d::OuterShell(aSolid);
|
|
|
|
Handle(StepData_StepModel) aStepModel = Handle(StepData_StepModel)::DownCast(FP->Model());
|
|
TopoDSToStep_Builder StepB;
|
|
TopoDSToStep_Tool aTool(aStepModel);
|
|
|
|
if (!aOutShell.IsNull()) {
|
|
Standard_Integer nbshapes = 0;
|
|
for (It.Initialize(aSolid); It.More(); It.Next())
|
|
if (It.Value().ShapeType() == TopAbs_SHELL)
|
|
nbshapes++;
|
|
Message_ProgressScope aPS(theProgress, NULL, nbshapes);
|
|
for (It.Initialize(aSolid); It.More() && aPS.More(); It.Next())
|
|
{
|
|
if (It.Value().ShapeType() == TopAbs_SHELL) {
|
|
Message_ProgressRange aRange = aPS.Next();
|
|
TopoDS_Shell CurrentShell = TopoDS::Shell(It.Value());
|
|
if (It.Value().Closed()) {
|
|
|
|
aTool.Init(aMap, Standard_False, aStepModel->InternalParameters.WriteSurfaceCurMode);
|
|
StepB.Init(CurrentShell, aTool, FP, Standard_False, theLocalFactors, aRange);
|
|
TopoDSToStep::AddResult(FP, aTool);
|
|
|
|
if (StepB.IsDone()) {
|
|
aCShell = Handle(StepShape_ClosedShell)::DownCast(StepB.Value());
|
|
if (aOutShell.IsEqual(It.Value()))
|
|
aOuter = aCShell;
|
|
else
|
|
S.Append(aCShell);
|
|
Handle(StepVisual_TessellatedItem) aTessShell = StepB.TessellatedValue();
|
|
if (!aTessShell.IsNull())
|
|
{
|
|
aTessShells.Append(aTessShell);
|
|
}
|
|
}
|
|
else {
|
|
Handle(TransferBRep_ShapeMapper) errShape =
|
|
new TransferBRep_ShapeMapper(CurrentShell);
|
|
FP->AddWarning(errShape, " Shell from Solid not mapped to FacetedBrepAndBrepWithVoids");
|
|
}
|
|
}
|
|
else {
|
|
done = Standard_False;
|
|
Handle(TransferBRep_ShapeMapper) errShape =
|
|
new TransferBRep_ShapeMapper(CurrentShell);
|
|
FP->AddWarning(errShape, " Shell from Solid not closed; not mapped to FacetedBrepAndBrepWithVoids");
|
|
}
|
|
}
|
|
}
|
|
if (!aPS.More())
|
|
return;
|
|
}
|
|
Standard_Integer N = S.Length();
|
|
if ( N>=1 ) {
|
|
aVoids = new StepShape_HArray1OfOrientedClosedShell(1,N);
|
|
Handle(TCollection_HAsciiString) aName =
|
|
new TCollection_HAsciiString("");
|
|
for ( Standard_Integer i=1; i<=N; i++ ) {
|
|
aOCShell = new StepShape_OrientedClosedShell();
|
|
aOCShell->Init(aName, Handle(StepShape_ClosedShell)::DownCast(S.Value(i)),
|
|
Standard_True);
|
|
aVoids->SetValue(i, aOCShell);
|
|
}
|
|
theFacetedBrepAndBrepWithVoids =
|
|
new StepShape_FacetedBrepAndBrepWithVoids();
|
|
theFacetedBrepAndBrepWithVoids->Init(aName, aOuter, aVoids);
|
|
|
|
if (!aTessShells.IsEmpty())
|
|
{
|
|
Handle(StepVisual_TessellatedSolid) aTessSolid = new StepVisual_TessellatedSolid();
|
|
Handle(TCollection_HAsciiString) aTessName = new TCollection_HAsciiString("");
|
|
Standard_Integer aNbItems = 0;
|
|
for (TColStd_SequenceOfTransient::Iterator anIt(aTessShells); anIt.More(); anIt.Next())
|
|
{
|
|
Handle(StepVisual_TessellatedShell) aTessShell = Handle(StepVisual_TessellatedShell)::DownCast(anIt.Value());
|
|
aNbItems += aTessShell->NbItems();
|
|
}
|
|
Handle(StepVisual_HArray1OfTessellatedStructuredItem) anItems
|
|
= new StepVisual_HArray1OfTessellatedStructuredItem(1, aNbItems);
|
|
for (TColStd_SequenceOfTransient::Iterator anIt(aTessShells); anIt.More(); anIt.Next())
|
|
{
|
|
Handle(StepVisual_TessellatedShell) aTessShell = Handle(StepVisual_TessellatedShell)::DownCast(anIt.Value());
|
|
for (Standard_Integer i = 1; i <= aTessShell->NbItems(); ++i)
|
|
{
|
|
anItems->SetValue(i, aTessShell->ItemsValue(i));
|
|
}
|
|
}
|
|
Standard_Boolean aHasGeomLink = !theFacetedBrepAndBrepWithVoids.IsNull();
|
|
aTessSolid->Init(aTessName, anItems, aHasGeomLink, theFacetedBrepAndBrepWithVoids);
|
|
theTessellatedItem = aTessSolid;
|
|
}
|
|
|
|
done = Standard_True;
|
|
}
|
|
else {
|
|
done = Standard_False;
|
|
Handle(TransferBRep_ShapeMapper) errShape =
|
|
new TransferBRep_ShapeMapper(aSolid);
|
|
FP->AddWarning(errShape," Solid contains no Shell to be mapped to FacetedBrepAndBrepWithVoids");
|
|
}
|
|
}
|
|
|
|
//=============================================================================
|
|
// renvoi des valeurs
|
|
//=============================================================================
|
|
|
|
const Handle(StepShape_FacetedBrepAndBrepWithVoids) &
|
|
TopoDSToStep_MakeFacetedBrepAndBrepWithVoids::Value() const
|
|
{
|
|
StdFail_NotDone_Raise_if (!done, "TopoDSToStep_MakeFacetedBrepAndBrepWithVoids::Value() - no result");
|
|
return theFacetedBrepAndBrepWithVoids;
|
|
}
|
|
|
|
// ============================================================================
|
|
// Method : TopoDSToStep_MakeFacetedBrepAndBrepWithVoids::TessellatedValue
|
|
// Purpose : Returns TessellatedItem as the optional result
|
|
// ============================================================================
|
|
|
|
const Handle(StepVisual_TessellatedItem)&
|
|
TopoDSToStep_MakeFacetedBrepAndBrepWithVoids::TessellatedValue() const
|
|
{
|
|
StdFail_NotDone_Raise_if(!done, "TopoDSToStep_MakeFacetedBrepAndBrepWithVoids::TessellatedValue() - no result");
|
|
return theTessellatedItem;
|
|
}
|