mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0030821: Data Exchange, RWGltf_CafReader - fallback to Mesh name in case of Node name is empty
Added option to use Mesh name as fallback, enabled by default.
This commit is contained in:
parent
b6c113d0eb
commit
803bdcdf2b
@ -103,7 +103,9 @@ private:
|
|||||||
// Purpose :
|
// Purpose :
|
||||||
//================================================================
|
//================================================================
|
||||||
RWGltf_CafReader::RWGltf_CafReader()
|
RWGltf_CafReader::RWGltf_CafReader()
|
||||||
: myToParallel (false)
|
: myToParallel (false),
|
||||||
|
myToSkipEmptyNodes (true),
|
||||||
|
myUseMeshNameAsFallback (true)
|
||||||
{
|
{
|
||||||
myCoordSysConverter.SetInputLengthUnit (1.0); // glTF defines model in meters
|
myCoordSysConverter.SetInputLengthUnit (1.0); // glTF defines model in meters
|
||||||
myCoordSysConverter.SetInputCoordinateSystem (RWMesh_CoordinateSystem_glTF);
|
myCoordSysConverter.SetInputCoordinateSystem (RWMesh_CoordinateSystem_glTF);
|
||||||
@ -218,6 +220,8 @@ Standard_Boolean RWGltf_CafReader::performMesh (const TCollection_AsciiString& t
|
|||||||
aDoc.SetMetadata (myMetadata);
|
aDoc.SetMetadata (myMetadata);
|
||||||
aDoc.SetErrorPrefix (anErrPrefix);
|
aDoc.SetErrorPrefix (anErrPrefix);
|
||||||
aDoc.SetCoordinateSystemConverter (myCoordSysConverter);
|
aDoc.SetCoordinateSystemConverter (myCoordSysConverter);
|
||||||
|
aDoc.SetSkipEmptyNodes (myToSkipEmptyNodes);
|
||||||
|
aDoc.SetMeshNameAsFallback (myUseMeshNameAsFallback);
|
||||||
if (!theToProbe)
|
if (!theToProbe)
|
||||||
{
|
{
|
||||||
aDoc.SetAttributeMap (myAttribMap);
|
aDoc.SetAttributeMap (myAttribMap);
|
||||||
|
@ -36,6 +36,18 @@ public:
|
|||||||
//! Setup multithreaded execution.
|
//! Setup multithreaded execution.
|
||||||
void SetParallel (bool theToParallel) { myToParallel = theToParallel; }
|
void SetParallel (bool theToParallel) { myToParallel = theToParallel; }
|
||||||
|
|
||||||
|
//! Return TRUE if Nodes without Geometry should be ignored, TRUE by default.
|
||||||
|
bool ToSkipEmptyNodes() { return myToSkipEmptyNodes; }
|
||||||
|
|
||||||
|
//! Set flag to ignore nodes without Geometry.
|
||||||
|
void SetSkipEmptyNodes (bool theToSkip) { myToSkipEmptyNodes = theToSkip; }
|
||||||
|
|
||||||
|
//! Set flag to use Mesh name in case if Node name is empty, TRUE by default.
|
||||||
|
bool ToUseMeshNameAsFallback() { return myUseMeshNameAsFallback; }
|
||||||
|
|
||||||
|
//! Set flag to use Mesh name in case if Node name is empty.
|
||||||
|
void SetMeshNameAsFallback (bool theToFallback) { myUseMeshNameAsFallback = theToFallback; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
//! Read the mesh from specified file.
|
//! Read the mesh from specified file.
|
||||||
@ -58,7 +70,9 @@ protected:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
Standard_Boolean myToParallel; //!< flag to use multithreading; FALSE by default
|
Standard_Boolean myToParallel; //!< flag to use multithreading; FALSE by default
|
||||||
|
Standard_Boolean myToSkipEmptyNodes; //!< ignore nodes without Geometry; TRUE by default
|
||||||
|
Standard_Boolean myUseMeshNameAsFallback; //!< flag to use Mesh name in case if Node name is empty, TRUE by default
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -171,6 +171,7 @@ RWGltf_GltfJsonParser::RWGltf_GltfJsonParser (TopTools_SequenceOfShape& theRootS
|
|||||||
myIsBinary (false),
|
myIsBinary (false),
|
||||||
myIsGltf1 (false),
|
myIsGltf1 (false),
|
||||||
myToSkipEmptyNodes (true),
|
myToSkipEmptyNodes (true),
|
||||||
|
myUseMeshNameAsFallback (true),
|
||||||
myToProbeHeader (false)
|
myToProbeHeader (false)
|
||||||
{
|
{
|
||||||
myCSTrsf.SetInputLengthUnit (1.0); // meters
|
myCSTrsf.SetInputLengthUnit (1.0); // meters
|
||||||
@ -1587,6 +1588,43 @@ void RWGltf_GltfJsonParser::bindNamedShape (TopoDS_Shape& theShape,
|
|||||||
{
|
{
|
||||||
aShapeAttribs.Style.SetColorSurf (aLateData->BaseColor());
|
aShapeAttribs.Style.SetColorSurf (aLateData->BaseColor());
|
||||||
}
|
}
|
||||||
|
if (aShapeAttribs.Name.IsEmpty()
|
||||||
|
&& myUseMeshNameAsFallback)
|
||||||
|
{
|
||||||
|
// fallback using Mesh name
|
||||||
|
aShapeAttribs.Name = aLateData->Name();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (aShapeAttribs.Name.IsEmpty()
|
||||||
|
&& myUseMeshNameAsFallback)
|
||||||
|
{
|
||||||
|
// fallback using Mesh name
|
||||||
|
TopLoc_Location aDummy;
|
||||||
|
TCollection_AsciiString aMeshName;
|
||||||
|
for (TopExp_Explorer aFaceIter (theShape, TopAbs_FACE); aFaceIter.More(); aFaceIter.Next())
|
||||||
|
{
|
||||||
|
if (Handle(RWGltf_GltfLatePrimitiveArray) aLateData = Handle(RWGltf_GltfLatePrimitiveArray)::DownCast (BRep_Tool::Triangulation (TopoDS::Face (aFaceIter.Value()), aDummy)))
|
||||||
|
{
|
||||||
|
if (aLateData->Name().IsEmpty())
|
||||||
|
{
|
||||||
|
aMeshName.Clear();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if (aMeshName.IsEmpty())
|
||||||
|
{
|
||||||
|
aMeshName = aLateData->Name();
|
||||||
|
}
|
||||||
|
else if (!aMeshName.IsEqual (aLateData->Name()))
|
||||||
|
{
|
||||||
|
aMeshName.Clear();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!aMeshName.IsEmpty())
|
||||||
|
{
|
||||||
|
aShapeAttribs.Name = aMeshName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
myAttribMap->Bind (theShape, aShapeAttribs);
|
myAttribMap->Bind (theShape, aShapeAttribs);
|
||||||
|
@ -105,6 +105,12 @@ public:
|
|||||||
myBinBodyLen = theBinBodyLen;
|
myBinBodyLen = theBinBodyLen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//! Set flag to ignore nodes without Geometry, TRUE by default.
|
||||||
|
void SetSkipEmptyNodes (bool theToSkip) { myToSkipEmptyNodes = theToSkip; }
|
||||||
|
|
||||||
|
//! Set flag to use Mesh name in case if Node name is empty, TRUE by default.
|
||||||
|
void SetMeshNameAsFallback (bool theToFallback) { myUseMeshNameAsFallback = theToFallback; }
|
||||||
|
|
||||||
//! Parse glTF document.
|
//! Parse glTF document.
|
||||||
Standard_EXPORT bool Parse (const Handle(Message_ProgressIndicator)& theProgress);
|
Standard_EXPORT bool Parse (const Handle(Message_ProgressIndicator)& theProgress);
|
||||||
|
|
||||||
@ -405,6 +411,7 @@ protected:
|
|||||||
bool myIsBinary; //!< binary document
|
bool myIsBinary; //!< binary document
|
||||||
bool myIsGltf1; //!< obsolete glTF 1.0 version format
|
bool myIsGltf1; //!< obsolete glTF 1.0 version format
|
||||||
bool myToSkipEmptyNodes; //!< ignore nodes without Geometry
|
bool myToSkipEmptyNodes; //!< ignore nodes without Geometry
|
||||||
|
bool myUseMeshNameAsFallback; //!< flag to use Mesh name in case if Node name is empty, TRUE by default
|
||||||
bool myToProbeHeader; //!< flag to probe header without full reading, FALSE by default
|
bool myToProbeHeader; //!< flag to probe header without full reading, FALSE by default
|
||||||
|
|
||||||
#ifdef HAVE_RAPIDJSON
|
#ifdef HAVE_RAPIDJSON
|
||||||
|
@ -186,14 +186,11 @@ Standard_Boolean RWMesh_CafReader::addShapeIntoDoc (const TopoDS_Shape& theShape
|
|||||||
|
|
||||||
Handle(XCAFDoc_ShapeTool) aShapeTool = XCAFDoc_DocumentTool::ShapeTool (myXdeDoc->Main());
|
Handle(XCAFDoc_ShapeTool) aShapeTool = XCAFDoc_DocumentTool::ShapeTool (myXdeDoc->Main());
|
||||||
|
|
||||||
TopLoc_Location aDummyLoc;
|
|
||||||
|
|
||||||
const TopAbs_ShapeEnum aShapeType = theShape.ShapeType();
|
const TopAbs_ShapeEnum aShapeType = theShape.ShapeType();
|
||||||
TopoDS_Shape aShapeToAdd = theShape;
|
TopoDS_Shape aShapeToAdd = theShape;
|
||||||
Standard_Boolean toMakeAssembly = Standard_False;
|
Standard_Boolean toMakeAssembly = Standard_False;
|
||||||
if (theShape.ShapeType() == TopAbs_COMPOUND)
|
if (theShape.ShapeType() == TopAbs_COMPOUND)
|
||||||
{
|
{
|
||||||
TCollection_AsciiString aFirstName;
|
|
||||||
RWMesh_NodeAttributes aSubFaceAttribs;
|
RWMesh_NodeAttributes aSubFaceAttribs;
|
||||||
for (TopoDS_Iterator aSubShapeIter (theShape, Standard_True, Standard_False); !toMakeAssembly && aSubShapeIter.More(); aSubShapeIter.Next())
|
for (TopoDS_Iterator aSubShapeIter (theShape, Standard_True, Standard_False); !toMakeAssembly && aSubShapeIter.More(); aSubShapeIter.Next())
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user