mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
247 lines
10 KiB
C++
247 lines
10 KiB
C++
// Copyright (c) 2022 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 <RWObj_Provider.hxx>
|
|
|
|
#include <BinXCAFDrivers.hxx>
|
|
#include <BRep_Builder.hxx>
|
|
#include <RWObj_ConfigurationNode.hxx>
|
|
#include <RWObj_CafReader.hxx>
|
|
#include <RWObj_CafWriter.hxx>
|
|
#include <TDocStd_Document.hxx>
|
|
#include <XCAFDoc_ShapeTool.hxx>
|
|
#include <XCAFDoc_DocumentTool.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(RWObj_Provider, DE_Provider)
|
|
|
|
//=======================================================================
|
|
// function : RWObj_Provider
|
|
// purpose :
|
|
//=======================================================================
|
|
RWObj_Provider::RWObj_Provider()
|
|
{}
|
|
|
|
//=======================================================================
|
|
// function : RWObj_Provider
|
|
// purpose :
|
|
//=======================================================================
|
|
RWObj_Provider::RWObj_Provider(const Handle(DE_ConfigurationNode)& theNode)
|
|
:DE_Provider(theNode)
|
|
{}
|
|
|
|
//=======================================================================
|
|
// function : Read
|
|
// purpose :
|
|
//=======================================================================
|
|
bool RWObj_Provider::Read(const TCollection_AsciiString& thePath,
|
|
const Handle(TDocStd_Document)& theDocument,
|
|
Handle(XSControl_WorkSession)& theWS,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
(void)theWS;
|
|
return Read(thePath, theDocument, theProgress);
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : Write
|
|
// purpose :
|
|
//=======================================================================
|
|
bool RWObj_Provider::Write(const TCollection_AsciiString& thePath,
|
|
const Handle(TDocStd_Document)& theDocument,
|
|
Handle(XSControl_WorkSession)& theWS,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
(void)theWS;
|
|
return Write(thePath, theDocument, theProgress);
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : Read
|
|
// purpose :
|
|
//=======================================================================
|
|
bool RWObj_Provider::Read(const TCollection_AsciiString& thePath,
|
|
const Handle(TDocStd_Document)& theDocument,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
if (theDocument.IsNull())
|
|
{
|
|
Message::SendFail() << "Error in the RWObj_Provider during reading the file " <<
|
|
thePath << "\t: theDocument shouldn't be null";
|
|
return false;
|
|
}
|
|
if (GetNode().IsNull() || !GetNode()->IsKind(STANDARD_TYPE(RWObj_ConfigurationNode)))
|
|
{
|
|
Message::SendFail() << "Error in the RWObj_ConfigurationNode during reading the file " <<
|
|
thePath << "\t: Incorrect or empty Configuration Node";
|
|
return false;
|
|
}
|
|
Handle(RWObj_ConfigurationNode) aNode = Handle(RWObj_ConfigurationNode)::DownCast(GetNode());
|
|
RWObj_CafReader aReader;
|
|
aReader.SetSinglePrecision(aNode->InternalParameters.ReadSinglePrecision);
|
|
aReader.SetSystemLengthUnit(aNode->GlobalParameters.LengthUnit / 1000);
|
|
aReader.SetSystemCoordinateSystem(aNode->InternalParameters.SystemCS);
|
|
aReader.SetFileLengthUnit(aNode->InternalParameters.FileLengthUnit);
|
|
aReader.SetFileCoordinateSystem(aNode->InternalParameters.FileCS);
|
|
aReader.SetDocument(theDocument);
|
|
aReader.SetRootPrefix(aNode->InternalParameters.ReadRootPrefix);
|
|
aReader.SetMemoryLimitMiB(aNode->InternalParameters.ReadMemoryLimitMiB);
|
|
if (!aReader.Perform(thePath, theProgress))
|
|
{
|
|
Message::SendFail() << "Error in the RWObj_ConfigurationNode during reading the file " << thePath;
|
|
return false;
|
|
}
|
|
XCAFDoc_DocumentTool::SetLengthUnit(theDocument, aNode->GlobalParameters.LengthUnit, UnitsMethods_LengthUnit_Millimeter);
|
|
return true;
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : Write
|
|
// purpose :
|
|
//=======================================================================
|
|
bool RWObj_Provider::Write(const TCollection_AsciiString& thePath,
|
|
const Handle(TDocStd_Document)& theDocument,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
if (GetNode().IsNull() || !GetNode()->IsKind(STANDARD_TYPE(RWObj_ConfigurationNode)))
|
|
{
|
|
Message::SendFail() << "Error in the RWObj_ConfigurationNode during writing the file " <<
|
|
thePath << "\t: Incorrect or empty Configuration Node";
|
|
return false;
|
|
}
|
|
Handle(RWObj_ConfigurationNode) aNode = Handle(RWObj_ConfigurationNode)::DownCast(GetNode());
|
|
|
|
TColStd_IndexedDataMapOfStringString aFileInfo;
|
|
if (!aNode->InternalParameters.WriteAuthor.IsEmpty())
|
|
{
|
|
aFileInfo.Add("Author", aNode->InternalParameters.WriteAuthor);
|
|
}
|
|
if (!aNode->InternalParameters.WriteComment.IsEmpty())
|
|
{
|
|
aFileInfo.Add("Comments", aNode->InternalParameters.WriteComment);
|
|
}
|
|
|
|
RWMesh_CoordinateSystemConverter aConverter;
|
|
aConverter.SetInputLengthUnit(aNode->GlobalParameters.LengthUnit / 1000);
|
|
aConverter.SetInputCoordinateSystem(aNode->InternalParameters.SystemCS);
|
|
aConverter.SetOutputLengthUnit(aNode->InternalParameters.FileLengthUnit);
|
|
aConverter.SetOutputCoordinateSystem(aNode->InternalParameters.FileCS);
|
|
|
|
RWObj_CafWriter aWriter(thePath);
|
|
aWriter.SetCoordinateSystemConverter(aConverter);
|
|
if (!aWriter.Perform(theDocument, aFileInfo, theProgress))
|
|
{
|
|
Message::SendFail() << "Error in the RWObj_ConfigurationNode during writing the file " << thePath;
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : Read
|
|
// purpose :
|
|
//=======================================================================
|
|
bool RWObj_Provider::Read(const TCollection_AsciiString& thePath,
|
|
TopoDS_Shape& theShape,
|
|
Handle(XSControl_WorkSession)& theWS,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
(void)theWS;
|
|
return Read(thePath, theShape, theProgress);
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : Write
|
|
// purpose :
|
|
//=======================================================================
|
|
bool RWObj_Provider::Write(const TCollection_AsciiString& thePath,
|
|
const TopoDS_Shape& theShape,
|
|
Handle(XSControl_WorkSession)& theWS,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
(void)theWS;
|
|
return Write(thePath, theShape, theProgress);
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : Read
|
|
// purpose :
|
|
//=======================================================================
|
|
bool RWObj_Provider::Read(const TCollection_AsciiString& thePath,
|
|
TopoDS_Shape& theShape,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
if (GetNode().IsNull() || !GetNode()->IsKind(STANDARD_TYPE(RWObj_ConfigurationNode)))
|
|
{
|
|
Message::SendFail() << "Error in the RWObj_ConfigurationNode during writing the file " <<
|
|
thePath << "\t: Incorrect or empty Configuration Node";
|
|
return false;
|
|
}
|
|
Handle(RWObj_ConfigurationNode) aNode = Handle(RWObj_ConfigurationNode)::DownCast(GetNode());
|
|
RWMesh_CoordinateSystemConverter aConverter;
|
|
aConverter.SetOutputLengthUnit(aNode->GlobalParameters.LengthUnit / 1000);
|
|
aConverter.SetOutputCoordinateSystem(aNode->InternalParameters.SystemCS);
|
|
aConverter.SetInputLengthUnit(aNode->InternalParameters.FileLengthUnit);
|
|
aConverter.SetInputCoordinateSystem(aNode->InternalParameters.FileCS);
|
|
|
|
RWObj_TriangulationReader aSimpleReader;
|
|
aSimpleReader.SetTransformation(aConverter);
|
|
aSimpleReader.SetSinglePrecision(aNode->InternalParameters.ReadSinglePrecision);
|
|
aSimpleReader.SetCreateShapes(aNode->InternalParameters.ReadCreateShapes);
|
|
aSimpleReader.SetSinglePrecision(aNode->InternalParameters.ReadSinglePrecision);
|
|
aSimpleReader.SetMemoryLimit(aNode->InternalParameters.ReadMemoryLimitMiB);
|
|
if (!aSimpleReader.Read(thePath, theProgress))
|
|
{
|
|
Message::SendFail() << "Error in the RWObj_ConfigurationNode during reading the file " << thePath;
|
|
return false;
|
|
}
|
|
Handle(Poly_Triangulation) aTriangulation = aSimpleReader.GetTriangulation();
|
|
TopoDS_Face aFace;
|
|
BRep_Builder aBuiler;
|
|
aBuiler.MakeFace(aFace);
|
|
aBuiler.UpdateFace(aFace, aTriangulation);
|
|
theShape = aFace;
|
|
return true;
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : Write
|
|
// purpose :
|
|
//=======================================================================
|
|
bool RWObj_Provider::Write(const TCollection_AsciiString& thePath,
|
|
const TopoDS_Shape& theShape,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
Handle(TDocStd_Document) aDoc = new TDocStd_Document("BinXCAF");
|
|
Handle(XCAFDoc_ShapeTool) aShTool = XCAFDoc_DocumentTool::ShapeTool(aDoc->Main());
|
|
aShTool->AddShape(theShape);
|
|
return Write(thePath, aDoc, theProgress);
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : GetFormat
|
|
// purpose :
|
|
//=======================================================================
|
|
TCollection_AsciiString RWObj_Provider::GetFormat() const
|
|
{
|
|
return TCollection_AsciiString("OBJ");
|
|
}
|
|
|
|
//=======================================================================
|
|
// function : GetVendor
|
|
// purpose :
|
|
//=======================================================================
|
|
TCollection_AsciiString RWObj_Provider::GetVendor() const
|
|
{
|
|
return TCollection_AsciiString("OCC");
|
|
}
|