1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-07 18:30:55 +03:00
occt/src/BRepTools/BRepTools_Substitution.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

173 lines
5.5 KiB
C++

// Created on: 1995-03-28
// Created by: Yves FRICAUD
// Copyright (c) 1995-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 <BRep_Builder.hxx>
#include <BRep_Tool.hxx>
#include <BRepTools_Substitution.hxx>
#include <Standard_ConstructionError.hxx>
#include <Standard_NoSuchObject.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Iterator.hxx>
#include <TopoDS_Shape.hxx>
#include <TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx>
//=======================================================================
//function : BRepTools_Substitution
//purpose :
//=======================================================================
BRepTools_Substitution::BRepTools_Substitution()
{}
//=======================================================================
//function : Clear
//purpose :
//=======================================================================
void BRepTools_Substitution::Clear()
{
myMap.Clear();
}
//=======================================================================
//function : Substitute
//purpose :
//=======================================================================
void BRepTools_Substitution::Substitute(const TopoDS_Shape& OS,
const TopTools_ListOfShape& NS)
{
Standard_ConstructionError_Raise_if
(IsCopied(OS),"BRepTools_CutClue::Substitute");
myMap.Bind(OS,NS);
}
//=======================================================================
//function : Build
//purpose :
//=======================================================================
void BRepTools_Substitution::Build(const TopoDS_Shape& S)
{
if (IsCopied(S)) return;
BRep_Builder B;
TopoDS_Iterator iteS (S.Oriented(TopAbs_FORWARD));
Standard_Boolean IsModified = Standard_False;
Standard_Boolean HasSubShape = Standard_False;
//------------------------------------------
// look S is modified and build subshapes.
//------------------------------------------
for (; iteS.More(); iteS.Next()) {
const TopoDS_Shape& SS = iteS.Value();
Build (SS);
if (IsCopied(SS)) {
IsModified = Standard_True;
}
}
TopoDS_Shape NewS = S.Oriented(TopAbs_FORWARD);
if (IsModified) {
//----------------------------------------
// Rebuild S.
//------------------------------------------
NewS.EmptyCopy();
if (NewS.ShapeType() == TopAbs_EDGE) {
Standard_Real f,l;
BRep_Tool::Range(TopoDS::Edge(S),f,l);
B.Range(TopoDS::Edge(NewS),f,l);
}
iteS.Initialize(S.Oriented(TopAbs_FORWARD));
//------------------------------------------
// Add the copy of subshapes of S to NewS.
//------------------------------------------
for ( ;iteS.More(); iteS.Next()) {
TopAbs_Orientation OS = iteS.Value().Orientation();
TopTools_ListOfShape L;
L = myMap(iteS.Value());
TopTools_ListIteratorOfListOfShape iteL(L);
for ( ; iteL.More(); iteL.Next()){
const TopoDS_Shape NSS = iteL.Value();
//------------------------------------------
// Rebuild NSS and add its copy to NewS.
//------------------------------------------
Build(NSS);
const TopTools_ListOfShape& NL = myMap(NSS);
TopAbs_Orientation NewOr = TopAbs::Compose(OS,NSS.Orientation());
TopTools_ListIteratorOfListOfShape iteNL(NL);
for ( ; iteNL.More(); iteNL.Next()){
B.Add (NewS,iteNL.Value().Oriented(NewOr));
HasSubShape = Standard_True;
}
}
}
if (!HasSubShape) {
if (NewS.ShapeType() == TopAbs_WIRE || NewS.ShapeType() == TopAbs_SHELL ||
NewS.ShapeType() == TopAbs_SOLID || NewS.ShapeType() == TopAbs_COMPOUND)
//----------------------------------------------------------------
// Wire,Solid,Shell,Compound mut have subshape else they disapear
//---------------------------------------------------------------
NewS.Nullify();
}
}
TopTools_ListOfShape L;
//-------------------------------------------------------
// NewS has the same orientation than S in its ancestors
// so NewS is bound with orientation FORWARD.
//-------------------------------------------------------
if (!NewS.IsNull()) L.Append(NewS.Oriented(TopAbs_FORWARD));
Substitute(S, L);
}
//=======================================================================
//function : IsCopied
//purpose :
//=======================================================================
Standard_Boolean BRepTools_Substitution::IsCopied(const TopoDS_Shape& S) const
{
if (myMap.IsBound(S)) {
if (myMap (S).IsEmpty()) return Standard_True;
else
return !S.IsSame(myMap(S).First());
}
else
return Standard_False;
}
//=======================================================================
//function : Copy
//purpose :
//=======================================================================
const TopTools_ListOfShape& BRepTools_Substitution::Copy (const TopoDS_Shape& S)
const
{
Standard_NoSuchObject_Raise_if(!IsCopied(S),"BRepTools_Substitution::Copy");
return myMap(S);
}