1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/DNaming/DNaming_SphereDriver.cxx

196 lines
6.5 KiB
C++

// Created on: 2009-06-18
// Created by: Sergey ZARITCHNY
// Copyright (c) 2009-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 <BRepAlgo.hxx>
#include <BRepPrimAPI_MakeSphere.hxx>
#include <DNaming.hxx>
#include <DNaming_SphereDriver.hxx>
#include <gp_Ax2.hxx>
#include <gp_Dir.hxx>
#include <gp_Pnt.hxx>
#include <ModelDefinitions.hxx>
#include <Standard_Type.hxx>
#include <TColStd_ListOfInteger.hxx>
#include <TDataStd_Integer.hxx>
#include <TDataStd_Real.hxx>
#include <TDataStd_UAttribute.hxx>
#include <TDF_Label.hxx>
#include <TFunction_Function.hxx>
#include <TFunction_Logbook.hxx>
#include <TNaming.hxx>
#include <TNaming_Builder.hxx>
#include <TNaming_NamedShape.hxx>
#include <TopExp.hxx>
#include <TopLoc_Location.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Iterator.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Solid.hxx>
#include <TopTools_IndexedMapOfShape.hxx>
IMPLEMENT_STANDARD_RTTIEXT(DNaming_SphereDriver,TFunction_Driver)
//=======================================================================
//function : DNaming_SphereDriver
//purpose : Constructor
//=======================================================================
DNaming_SphereDriver::DNaming_SphereDriver()
{}
//=======================================================================
//function : Validate
//purpose : Validates labels of a function in <theLog>
//=======================================================================
void DNaming_SphereDriver::Validate(Handle(TFunction_Logbook)&) const
{}
//=======================================================================
//function : MustExecute
//purpose : Analyses in <theLog> if the loaded function must be executed
//=======================================================================
Standard_Boolean DNaming_SphereDriver::MustExecute(const Handle(TFunction_Logbook)&) const {
return Standard_True;
}
//=======================================================================
//function : Execute
//purpose : Executes the function
//=======================================================================
Standard_Integer DNaming_SphereDriver::Execute(Handle(TFunction_Logbook)& theLog) const {
Handle(TFunction_Function) aFunction;
Label().FindAttribute(TFunction_Function::GetID(),aFunction);
if(aFunction.IsNull()) return -1;
Standard_Real aRadius = DNaming::GetReal(aFunction,SPHERE_RADIUS)->Get();
Handle(TDataStd_UAttribute) anObject = DNaming::GetObjectArg(aFunction,SPHERE_CENTER);
Handle(TNaming_NamedShape) aNSCnt = DNaming::GetObjectValue(anObject);
if (aNSCnt.IsNull() || aNSCnt->IsEmpty()) {
#ifdef OCCT_DEBUG
std::cout<<"SphereDriver:: Center point is null or empty"<<std::endl;
#endif
aFunction->SetFailure(WRONG_ARGUMENT);
return -1;
}
Handle(TNaming_NamedShape) aPrevSphere = DNaming::GetFunctionResult(aFunction);
// Save location
TopLoc_Location aLocation;
if (!aPrevSphere.IsNull() && !aPrevSphere->IsEmpty()) {
aLocation = aPrevSphere->Get().Location();
}
TopoDS_Shape aCntShape = aNSCnt->Get();
if(aCntShape.IsNull()) {
#ifdef OCCT_DEBUG
std::cout<<"SphereDriver:: Center point is null"<<std::endl;
#endif
aFunction->SetFailure(WRONG_ARGUMENT);
return -1;
}
gp_Pnt aCenter = gp_Pnt(0.,0.,0.);
if(aCntShape.ShapeType() == TopAbs_VERTEX) {
aCenter = BRep_Tool::Pnt(TopoDS::Vertex(aCntShape));
}
gp_Ax2 anAxis = gp_Ax2(aCenter, gp_Dir(0,0,1), gp_Dir(1,0,0));
BRepPrimAPI_MakeSphere aMakeSphere(anAxis, aRadius);
aMakeSphere.Build();
if (!aMakeSphere.IsDone()) {
aFunction->SetFailure(ALGO_FAILED);
return -1;
}
TopoDS_Shape aResult = aMakeSphere.Solid();
if (!BRepAlgo::IsValid(aResult)) {
aFunction->SetFailure(RESULT_NOT_VALID);
return -1;
}
// Naming
LoadNamingDS(RESPOSITION(aFunction), aMakeSphere);
// restore location
if(!aLocation.IsIdentity())
TNaming::Displace(RESPOSITION(aFunction), aLocation, Standard_True);
theLog->SetValid(RESPOSITION(aFunction), Standard_True);
aFunction->SetFailure(DONE);
return 0;
}
//=======================================================================
//function : LoadAndName
//purpose :
//=======================================================================
void DNaming_SphereDriver::LoadNamingDS (const TDF_Label& theResultLabel,
BRepPrimAPI_MakeSphere& MS) const
{
Handle(TDF_TagSource) Tagger = TDF_TagSource::Set(theResultLabel);
if (Tagger.IsNull()) return;
Tagger->Set(0);
TNaming_Builder Builder (theResultLabel);
Builder.Generated (MS.Solid());
BRepPrim_Sphere& S = MS.Sphere();
//Load faces of the Sph :
if (S.HasBottom()) {
TopoDS_Face BottomFace = S.BottomFace ();
TNaming_Builder BOF (theResultLabel.NewChild());
BOF.Generated (BottomFace);
}
if (S.HasTop()) {
TopoDS_Face TopFace = S.TopFace ();
TNaming_Builder TOF (theResultLabel.NewChild());
TOF.Generated (TopFace);
}
TopoDS_Face LateralFace = S.LateralFace();
TNaming_Builder LOF (theResultLabel.NewChild());
LOF.Generated(LateralFace);
if (S.HasSides()) {
TopoDS_Face StartFace = S.StartFace();
TNaming_Builder SF(theResultLabel.NewChild());
SF.Generated(StartFace);
TopoDS_Face EndFace = S.EndFace();
TNaming_Builder EF(theResultLabel.NewChild());
EF.Generated(EndFace);
}
TopTools_IndexedMapOfShape LateralEdges;
TopExp::MapShapes(LateralFace, TopAbs_EDGE, LateralEdges);
Standard_Integer i = 1;
TColStd_ListOfInteger goodEdges;
for (; i <= LateralEdges.Extent(); i++)
if (!BRep_Tool::Degenerated(TopoDS::Edge(LateralEdges.FindKey(i)))) goodEdges.Append(i);
if (goodEdges.Extent() == 1) {
const TopoDS_Edge& aLateralEdge = TopoDS::Edge(LateralEdges.FindKey(goodEdges.First()));
TNaming_Builder MeridianBuilder(theResultLabel.NewChild());
MeridianBuilder.Generated(aLateralEdge);
TopoDS_Iterator it(aLateralEdge);
for(;it.More();it.Next()) {
//const TopoDS_Shape& aV = it.Value();
TNaming_Builder aVBuilder(theResultLabel.NewChild());
aVBuilder.Generated(it.Value());
}
}
}