mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Use of Cotire tool is introduced for acceleration of CMake builds, by usage of precompiled headers. CMake option BUILD_USE_PCH is added to enable / disable use of precompiled headers When precompiled headers are used, additional compiler macros are defined globally in the build system to avoid problems due to different order of included files: - NOMINMAX is defined on Windows to prevent defining "min" and "max" as macros by windows.h - STRSAFE_NO_DEPRECATE and _SCL_SECURE_NO_WARNINGS are defined on Windows to prevent declaring functions of standard C library as deprecated by #pragma, and other warnings in system headers - GL_GLEXT_LEGACY and GLX_GLEXT_LEGACY are defined to ensure that only OCCT's own glext.h is used - __STDC_FORMAT_MACROS is defined to have standard C print format macros always defined Code is corrected to avoid conflicts with system headers and in case of compiling together as unity builds (partially): - Some locally defined variables in TKV3d, TKHLR are renamed to be unique - Duplicated definitions of macros and global functions are eliminated in TKSTEP - Useless header WNT_UInt.hxx is removed - Usage of local variables conflicting with X11 macro is avoided in Draw_Viewer.cxx - Local variables in AIS_ConcentricRelation.cxx are renamed to avoid conflict with macros defined in windows.h - HXX files containing code are renamed to PXX or merged with corresponding CXX files. IVtkTools classes are corrected to avoid compiler warnings disabled in non-PCH builds by inclusion of VTK headers. Useless pragmas disabling warnings on MSVC are removed
388 lines
12 KiB
C++
Executable File
388 lines
12 KiB
C++
Executable File
// Created by: Peter KURNEV
|
|
// 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 <Bnd_Box.hxx>
|
|
#include <BOPDS_ListOfPave.hxx>
|
|
#include <BOPDS_Pave.hxx>
|
|
#include <BOPDS_PaveBlock.hxx>
|
|
#include <BOPDS_VectorOfPave.hxx>
|
|
#include <NCollection_BaseAllocator.hxx>
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <algorithm>
|
|
IMPLEMENT_STANDARD_RTTIEXT(BOPDS_PaveBlock,MMgt_TShared)
|
|
|
|
//=======================================================================
|
|
//function :
|
|
//purpose :
|
|
//=======================================================================
|
|
BOPDS_PaveBlock::BOPDS_PaveBlock()
|
|
:
|
|
myAllocator(NCollection_BaseAllocator::CommonBaseAllocator()),
|
|
myExtPaves(myAllocator)
|
|
{
|
|
myEdge=-1;
|
|
myOriginalEdge=-1;
|
|
myTS1=-99.;
|
|
myTS2=myTS1;
|
|
myIsSplittable=Standard_False;
|
|
}
|
|
//=======================================================================
|
|
//function :
|
|
//purpose :
|
|
//=======================================================================
|
|
BOPDS_PaveBlock::BOPDS_PaveBlock(const Handle(NCollection_BaseAllocator)& theAllocator)
|
|
:
|
|
myAllocator(theAllocator),
|
|
myExtPaves(theAllocator),
|
|
myMFence(100, theAllocator)
|
|
{
|
|
myEdge=-1;
|
|
myOriginalEdge=-1;
|
|
myTS1=-99.;
|
|
myTS2=myTS1;
|
|
myIsSplittable=Standard_False;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetEdge
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::SetEdge(const Standard_Integer theEdge)
|
|
{
|
|
myEdge=theEdge;
|
|
}
|
|
//=======================================================================
|
|
//function : Edge
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Integer BOPDS_PaveBlock::Edge()const
|
|
{
|
|
return myEdge;
|
|
}
|
|
//=======================================================================
|
|
//function : HasEdge
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean BOPDS_PaveBlock::HasEdge()const
|
|
{
|
|
return (myEdge>=0);
|
|
}
|
|
//=======================================================================
|
|
//function : HasEdge
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean BOPDS_PaveBlock::HasEdge(Standard_Integer& theEdge)const
|
|
{
|
|
theEdge=myEdge;
|
|
return (myEdge>=0);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetOriginalEdge
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::SetOriginalEdge(const Standard_Integer theEdge)
|
|
{
|
|
myOriginalEdge=theEdge;
|
|
}
|
|
//=======================================================================
|
|
//function : OriginalEdge
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Integer BOPDS_PaveBlock::OriginalEdge()const
|
|
{
|
|
return myOriginalEdge;
|
|
}
|
|
//=======================================================================
|
|
//function : IsSplitEdge
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean BOPDS_PaveBlock::IsSplitEdge()const
|
|
{
|
|
return (myEdge!=myOriginalEdge);
|
|
}
|
|
//=======================================================================
|
|
//function : SetPave1
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::SetPave1(const BOPDS_Pave& thePave)
|
|
{
|
|
myPave1=thePave;
|
|
}
|
|
//=======================================================================
|
|
//function : Pave1
|
|
//purpose :
|
|
//=======================================================================
|
|
const BOPDS_Pave& BOPDS_PaveBlock::Pave1()const
|
|
{
|
|
return myPave1;
|
|
}
|
|
//=======================================================================
|
|
//function : SetPave2
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::SetPave2(const BOPDS_Pave& thePave)
|
|
{
|
|
myPave2=thePave;
|
|
}
|
|
//=======================================================================
|
|
//function : Pave2
|
|
//purpose :
|
|
//=======================================================================
|
|
const BOPDS_Pave& BOPDS_PaveBlock::Pave2()const
|
|
{
|
|
return myPave2;
|
|
}
|
|
//=======================================================================
|
|
//function : Range
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::Range(Standard_Real& theT1,
|
|
Standard_Real& theT2)const
|
|
{
|
|
theT1=myPave1.Parameter();
|
|
theT2=myPave2.Parameter();
|
|
}
|
|
//=======================================================================
|
|
//function : Indices
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::Indices(Standard_Integer& theIndex1,
|
|
Standard_Integer& theIndex2)const
|
|
{
|
|
theIndex1=myPave1.Index();
|
|
theIndex2=myPave2.Index();
|
|
}
|
|
//=======================================================================
|
|
//function : HasSameBounds
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean BOPDS_PaveBlock::HasSameBounds(const Handle(BOPDS_PaveBlock)& theOther)const
|
|
{
|
|
Standard_Boolean bFlag1, bFlag2;
|
|
Standard_Integer n11, n12, n21, n22;
|
|
//
|
|
Indices(n11, n12);
|
|
theOther->Indices(n21, n22);
|
|
//
|
|
bFlag1=(n11==n21) && (n12==n22);
|
|
bFlag2=(n11==n22) && (n12==n21);
|
|
//
|
|
return (bFlag1 || bFlag2);
|
|
}
|
|
|
|
|
|
//
|
|
// Extras
|
|
//
|
|
//=======================================================================
|
|
//function : AppendExtPave
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::AppendExtPave(const BOPDS_Pave& thePave)
|
|
{
|
|
if (myMFence.Add(thePave.Index())) {
|
|
myExtPaves.Append(thePave);
|
|
}
|
|
}
|
|
//=======================================================================
|
|
//function : AppendExtPave1
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::AppendExtPave1(const BOPDS_Pave& thePave)
|
|
{
|
|
myExtPaves.Append(thePave);
|
|
}
|
|
//=======================================================================
|
|
//function : RemoveExtPave
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::RemoveExtPave(const Standard_Integer theVertNum)
|
|
{
|
|
if (myMFence.Contains(theVertNum))
|
|
{
|
|
BOPDS_ListOfPave::Iterator itPaves(myExtPaves);
|
|
while (itPaves.More())
|
|
{
|
|
if (itPaves.Value().Index() == theVertNum)
|
|
myExtPaves.Remove(itPaves);
|
|
else
|
|
itPaves.Next();
|
|
}
|
|
myMFence.Remove(theVertNum);
|
|
}
|
|
}
|
|
//=======================================================================
|
|
//function : ExtPaves
|
|
//purpose :
|
|
//=======================================================================
|
|
const BOPDS_ListOfPave& BOPDS_PaveBlock::ExtPaves()const
|
|
{
|
|
return myExtPaves;
|
|
}
|
|
//=======================================================================
|
|
//function : ChangeExtPaves
|
|
//purpose :
|
|
//=======================================================================
|
|
BOPDS_ListOfPave& BOPDS_PaveBlock::ChangeExtPaves()
|
|
{
|
|
return myExtPaves;
|
|
}
|
|
//=======================================================================
|
|
//function : IsToUpdate
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean BOPDS_PaveBlock::IsToUpdate()const
|
|
{
|
|
return !myExtPaves.IsEmpty();
|
|
}
|
|
//=======================================================================
|
|
//function : ContainsParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean BOPDS_PaveBlock::ContainsParameter(const Standard_Real theT,
|
|
const Standard_Real theTol,
|
|
Standard_Integer& theInd) const
|
|
{
|
|
Standard_Boolean bRet;
|
|
BOPDS_ListIteratorOfListOfPave aIt;
|
|
//
|
|
bRet = Standard_False;
|
|
aIt.Initialize(myExtPaves);
|
|
for (; aIt.More(); aIt.Next()) {
|
|
const BOPDS_Pave& aPave = aIt.Value();
|
|
bRet = (Abs(aPave.Parameter() - theT) < theTol);
|
|
if (bRet) {
|
|
theInd = aPave.Index();
|
|
break;
|
|
}
|
|
}
|
|
return bRet;
|
|
}
|
|
//=======================================================================
|
|
//function : Update
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::Update(BOPDS_ListOfPaveBlock& theLPB,
|
|
const Standard_Boolean theFlag)
|
|
{
|
|
Standard_Integer i, aNb;
|
|
BOPDS_Pave aPave1, aPave2;
|
|
Handle(BOPDS_PaveBlock) aPB;
|
|
BOPDS_ListIteratorOfListOfPave aIt;
|
|
//
|
|
aNb=myExtPaves.Extent();
|
|
if (theFlag) {
|
|
aNb=aNb+2;
|
|
}
|
|
//
|
|
if (aNb <= 1) {
|
|
myExtPaves.Clear();
|
|
myMFence.Clear();
|
|
return;
|
|
}
|
|
//
|
|
BOPDS_VectorOfPave pPaves(1, aNb);
|
|
//
|
|
i=1;
|
|
if (theFlag) {
|
|
pPaves(i) = myPave1;
|
|
++i;
|
|
pPaves(i) = myPave2;
|
|
++i;
|
|
}
|
|
//
|
|
aIt.Initialize(myExtPaves);
|
|
for (; aIt.More(); aIt.Next()) {
|
|
const BOPDS_Pave& aPave=aIt.Value();
|
|
pPaves(i) = aPave;
|
|
++i;
|
|
}
|
|
myExtPaves.Clear();
|
|
myMFence.Clear();
|
|
//
|
|
std::sort(pPaves.begin(), pPaves.end());
|
|
//
|
|
for (i = 1; i <= aNb; ++i) {
|
|
const BOPDS_Pave& aPave = pPaves(i);
|
|
if (i == 1) {
|
|
aPave1 = aPave;
|
|
continue;
|
|
}
|
|
//
|
|
aPave2 = aPave;
|
|
aPB = new BOPDS_PaveBlock;
|
|
aPB->SetOriginalEdge(myOriginalEdge);
|
|
aPB->SetPave1(aPave1);
|
|
aPB->SetPave2(aPave2);
|
|
//
|
|
theLPB.Append(aPB);
|
|
//
|
|
aPave1 = aPave2;
|
|
}
|
|
}
|
|
// ShrunkData
|
|
//=======================================================================
|
|
//function : HasShrunkData
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean BOPDS_PaveBlock::HasShrunkData()const
|
|
{
|
|
return (!myShrunkBox.IsVoid());
|
|
}
|
|
//=======================================================================
|
|
//function : SetShrunkData
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::SetShrunkData(const Standard_Real theT1,
|
|
const Standard_Real theT2,
|
|
const Bnd_Box& theBox,
|
|
const Standard_Boolean theIsSplittable)
|
|
{
|
|
myTS1=theT1;
|
|
myTS2=theT2;
|
|
myShrunkBox=theBox;
|
|
myIsSplittable=theIsSplittable;
|
|
}
|
|
//=======================================================================
|
|
//function : ShrunkData
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::ShrunkData(Standard_Real& theT1,
|
|
Standard_Real& theT2,
|
|
Bnd_Box& theBox,
|
|
Standard_Boolean& theIsSplittable) const
|
|
{
|
|
theT1=myTS1;
|
|
theT2=myTS2;
|
|
theBox=myShrunkBox;
|
|
theIsSplittable=myIsSplittable;
|
|
}
|
|
//=======================================================================
|
|
//function : Dump
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPDS_PaveBlock::Dump()const
|
|
{
|
|
printf(" PB:{ E:%d orE:%d", myEdge, myOriginalEdge);
|
|
printf(" Pave1:");
|
|
myPave1.Dump();
|
|
printf(" Pave2:");
|
|
myPave2.Dump();
|
|
printf(" }");
|
|
}
|