1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0028188: Improving layer color storage mechanism for DXF Import/Export

Attribute ColorByLayer was added for shapes that should be colored by the color of their layer or, if it's absent, by the parent component's layer color.

Fixing inconsistency of iterating through the map of Styles

Improving ColorByLayer mechanism

Fix for Map/IndexedMad differences.

Renaming according to convention of naming collection typedefs
This commit is contained in:
anv 2016-12-29 11:48:16 +03:00 committed by kgv
parent 7fbc3bc5a4
commit 08b183fe0b
14 changed files with 182 additions and 55 deletions

View File

@ -236,7 +236,7 @@ Standard_Boolean IGESCAFControl_Writer::WriteAttributes (const TDF_LabelSequence
TDF_Label L = labels.Value(i); TDF_Label L = labels.Value(i);
// collect color settings // collect color settings
XCAFPrs_DataMapOfShapeStyle settings; XCAFPrs_IndexedDataMapOfShapeStyle settings;
TopLoc_Location loc; TopLoc_Location loc;
XCAFPrs::CollectStyleSettings ( L, loc, settings ); XCAFPrs::CollectStyleSettings ( L, loc, settings );
if ( settings.Extent() <=0 ) continue; if ( settings.Extent() <=0 ) continue;
@ -262,7 +262,7 @@ Standard_Boolean IGESCAFControl_Writer::WriteAttributes (const TDF_LabelSequence
//======================================================================= //=======================================================================
void IGESCAFControl_Writer::MakeColors (const TopoDS_Shape &S, void IGESCAFControl_Writer::MakeColors (const TopoDS_Shape &S,
const XCAFPrs_DataMapOfShapeStyle &settings, const XCAFPrs_IndexedDataMapOfShapeStyle &settings,
XCAFPrs_DataMapOfStyleTransient &colors, XCAFPrs_DataMapOfStyleTransient &colors,
TopTools_MapOfShape &Map, TopTools_MapOfShape &Map,
const XCAFPrs_Style &inherit) const XCAFPrs_Style &inherit)
@ -272,8 +272,8 @@ void IGESCAFControl_Writer::MakeColors (const TopoDS_Shape &S,
// check if shape has its own style (or inherits from ancestor) // check if shape has its own style (or inherits from ancestor)
XCAFPrs_Style style = inherit; XCAFPrs_Style style = inherit;
if ( settings.IsBound(S) ) { if ( settings.Contains(S) ) {
XCAFPrs_Style own = settings.Find(S); XCAFPrs_Style own = settings.FindFromKey(S);
if ( own.IsSetColorCurv() ) style.SetColorCurv ( own.GetColorCurv() ); if ( own.IsSetColorCurv() ) style.SetColorCurv ( own.GetColorCurv() );
if ( own.IsSetColorSurf() ) style.SetColorSurf ( own.GetColorSurf() ); if ( own.IsSetColorSurf() ) style.SetColorSurf ( own.GetColorSurf() );
} }

View File

@ -24,7 +24,7 @@
#include <IGESControl_Writer.hxx> #include <IGESControl_Writer.hxx>
#include <Standard_CString.hxx> #include <Standard_CString.hxx>
#include <TDF_LabelSequence.hxx> #include <TDF_LabelSequence.hxx>
#include <XCAFPrs_DataMapOfShapeStyle.hxx> #include <XCAFPrs_IndexedDataMapOfShapeStyle.hxx>
#include <XCAFPrs_DataMapOfStyleTransient.hxx> #include <XCAFPrs_DataMapOfStyleTransient.hxx>
#include <TopTools_MapOfShape.hxx> #include <TopTools_MapOfShape.hxx>
class XSControl_WorkSession; class XSControl_WorkSession;
@ -125,7 +125,7 @@ private:
//! Recursively iterates on subshapes and assigns colors //! Recursively iterates on subshapes and assigns colors
//! to faces and edges (if set) //! to faces and edges (if set)
Standard_EXPORT void MakeColors (const TopoDS_Shape& S, const XCAFPrs_DataMapOfShapeStyle& settings, XCAFPrs_DataMapOfStyleTransient& colors, TopTools_MapOfShape& Map, const XCAFPrs_Style& inherit); Standard_EXPORT void MakeColors (const TopoDS_Shape& S, const XCAFPrs_IndexedDataMapOfShapeStyle& settings, XCAFPrs_DataMapOfStyleTransient& colors, TopTools_MapOfShape& Map, const XCAFPrs_Style& inherit);
Standard_Boolean myColorMode; Standard_Boolean myColorMode;

View File

@ -233,7 +233,7 @@
#include <XCAFDoc_Volume.hxx> #include <XCAFDoc_Volume.hxx>
#include <XCAFPrs.hxx> #include <XCAFPrs.hxx>
#include <XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx> #include <XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx>
#include <XCAFPrs_DataMapOfShapeStyle.hxx> #include <XCAFPrs_IndexedDataMapOfShapeStyle.hxx>
#include <XCAFPrs_DataMapOfStyleShape.hxx> #include <XCAFPrs_DataMapOfStyleShape.hxx>
#include <XCAFPrs_Style.hxx> #include <XCAFPrs_Style.hxx>
#include <XSControl_TransferWriter.hxx> #include <XSControl_TransferWriter.hxx>
@ -1031,7 +1031,7 @@ static Standard_Boolean setDefaultInstanceColor (const Handle(StepVisual_StyledI
//======================================================================= //=======================================================================
static void MakeSTEPStyles (STEPConstruct_Styles &Styles, static void MakeSTEPStyles (STEPConstruct_Styles &Styles,
const TopoDS_Shape &S, const TopoDS_Shape &S,
const XCAFPrs_DataMapOfShapeStyle &settings, const XCAFPrs_IndexedDataMapOfShapeStyle &settings,
Handle(StepVisual_StyledItem) &override, Handle(StepVisual_StyledItem) &override,
TopTools_MapOfShape &Map, TopTools_MapOfShape &Map,
const MoniTool_DataMapOfShapeTransient& myMapCompMDGPR, const MoniTool_DataMapOfShapeTransient& myMapCompMDGPR,
@ -1047,8 +1047,8 @@ static void MakeSTEPStyles (STEPConstruct_Styles &Styles,
// check if shape has its own style (r inherits from ancestor) // check if shape has its own style (r inherits from ancestor)
XCAFPrs_Style style; XCAFPrs_Style style;
if ( inherit ) style = *inherit; if ( inherit ) style = *inherit;
if ( settings.IsBound(S) ) { if ( settings.Contains(S) ) {
XCAFPrs_Style own = settings.Find(S); XCAFPrs_Style own = settings.FindFromKey(S);
if ( !own.IsVisible() ) style.SetVisibility ( Standard_False ); if ( !own.IsVisible() ) style.SetVisibility ( Standard_False );
if ( own.IsSetColorCurv() ) style.SetColorCurv ( own.GetColorCurv() ); if ( own.IsSetColorCurv() ) style.SetColorCurv ( own.GetColorCurv() );
if ( own.IsSetColorSurf() ) style.SetColorSurf ( own.GetColorSurf() ); if ( own.IsSetColorSurf() ) style.SetColorSurf ( own.GetColorSurf() );
@ -1199,7 +1199,7 @@ Standard_Boolean STEPCAFControl_Writer::WriteColors (const Handle(XSControl_Work
continue; continue;
// collect settings set on that label // collect settings set on that label
XCAFPrs_DataMapOfShapeStyle settings; XCAFPrs_IndexedDataMapOfShapeStyle settings;
TDF_LabelSequence seq; TDF_LabelSequence seq;
seq.Append ( L ); seq.Append ( L );
XCAFDoc_ShapeTool::GetSubShapes ( L, seq ); XCAFDoc_ShapeTool::GetSubShapes ( L, seq );
@ -1232,7 +1232,11 @@ Standard_Boolean STEPCAFControl_Writer::WriteColors (const Handle(XSControl_Work
if ( ! style.IsSetColorCurv() && ! style.IsSetColorSurf() && isVisible ) continue; if ( ! style.IsSetColorCurv() && ! style.IsSetColorSurf() && isVisible ) continue;
TopoDS_Shape sub = XCAFDoc_ShapeTool::GetShape ( lab ); TopoDS_Shape sub = XCAFDoc_ShapeTool::GetShape ( lab );
settings.Bind ( sub, style ); XCAFPrs_Style* aMapStyle = settings.ChangeSeek (sub);
if (aMapStyle == NULL)
settings.Add ( sub, style );
else
*aMapStyle = style;
} }
if ( settings.Extent() <=0 ) continue; if ( settings.Extent() <=0 ) continue;

View File

@ -195,6 +195,18 @@ Standard_GUID XCAFDoc::InvisibleGUID ()
} }
//=======================================================================
//function : ColorByLayerGUID
//purpose :
//=======================================================================
Standard_GUID XCAFDoc::ColorByLayerGUID ()
{
static Standard_GUID ID ("279e8c1e-70af-4130-b626-9cc52a537db8");
return ID;
}
//======================================================================= //=======================================================================
//function : SHUORefGUID //function : SHUORefGUID
//purpose : //purpose :

View File

@ -102,6 +102,8 @@ public:
Standard_EXPORT static Standard_GUID NoteRefGUID(); Standard_EXPORT static Standard_GUID NoteRefGUID();
Standard_EXPORT static Standard_GUID InvisibleGUID(); Standard_EXPORT static Standard_GUID InvisibleGUID();
Standard_EXPORT static Standard_GUID ColorByLayerGUID();
//! Returns GUID for UAttribute identifying external reference on no-step file //! Returns GUID for UAttribute identifying external reference on no-step file
Standard_EXPORT static Standard_GUID ExternRefGUID(); Standard_EXPORT static Standard_GUID ExternRefGUID();

View File

@ -558,6 +558,35 @@ void XCAFDoc_ColorTool::SetVisibility (const TDF_Label& L,
else L.ForgetAttribute( XCAFDoc::InvisibleGUID() ); else L.ForgetAttribute( XCAFDoc::InvisibleGUID() );
} }
//=======================================================================
//function : IsColorByLayer
//purpose :
//=======================================================================
Standard_Boolean XCAFDoc_ColorTool::IsColorByLayer (const TDF_Label& L) const
{
Handle(TDataStd_UAttribute) aUAttr;
return L.FindAttribute(XCAFDoc::ColorByLayerGUID(), aUAttr);
}
//=======================================================================
//function : SetColorByLayer
//purpose :
//=======================================================================
void XCAFDoc_ColorTool::SetColorByLayer (const TDF_Label& L,
const Standard_Boolean isColorByLayer)
{
Handle(TDataStd_UAttribute) aUAttr;
if ( isColorByLayer ) {
Handle(XCAFDoc_GraphNode) aSHUO;
if (ShapeTool()->IsShape(L) || ShapeTool()->GetSHUO( L, aSHUO ) )
if (!L.FindAttribute(XCAFDoc::ColorByLayerGUID(), aUAttr))
aUAttr->Set( L, XCAFDoc::ColorByLayerGUID() );
}
else L.ForgetAttribute( XCAFDoc::ColorByLayerGUID() );
}
//======================================================================= //=======================================================================
//function : SetInstanceColor //function : SetInstanceColor
//purpose : //purpose :

View File

@ -198,7 +198,14 @@ public:
//! Set the visibility of object on label. Do nothing if there no any object. //! Set the visibility of object on label. Do nothing if there no any object.
//! Set UAttribute with corresponding GUID. //! Set UAttribute with corresponding GUID.
Standard_EXPORT void SetVisibility (const TDF_Label& shapeLabel, const Standard_Boolean isvisible = Standard_True); Standard_EXPORT void SetVisibility (const TDF_Label& shapeLabel, const Standard_Boolean isvisible = Standard_True);
//! Return TRUE if object color defined by its Layer, FALSE if not.
Standard_EXPORT Standard_Boolean IsColorByLayer (const TDF_Label& L) const;
//! Set the Color defined by Layer flag on label. Do nothing if there no any object.
//! Set UAttribute with corresponding GUID.
Standard_EXPORT void SetColorByLayer (const TDF_Label& shapeLabel, const Standard_Boolean isColorByLayer = Standard_False);
//! Sets the color of component that styled with SHUO structure //! Sets the color of component that styled with SHUO structure
//! Returns FALSE if no sush component found //! Returns FALSE if no sush component found
//! NOTE: create SHUO structeure if it is necessary and if <isCreateSHUO> //! NOTE: create SHUO structeure if it is necessary and if <isCreateSHUO>

View File

@ -2,10 +2,10 @@ XCAFPrs.cxx
XCAFPrs.hxx XCAFPrs.hxx
XCAFPrs_AISObject.cxx XCAFPrs_AISObject.cxx
XCAFPrs_AISObject.hxx XCAFPrs_AISObject.hxx
XCAFPrs_DataMapIteratorOfDataMapOfShapeStyle.hxx XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx
XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx
XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx
XCAFPrs_DataMapOfShapeStyle.hxx XCAFPrs_IndexedDataMapOfShapeStyle.hxx
XCAFPrs_DataMapOfStyleShape.hxx XCAFPrs_DataMapOfStyleShape.hxx
XCAFPrs_DataMapOfStyleTransient.hxx XCAFPrs_DataMapOfStyleTransient.hxx
XCAFPrs_Driver.cxx XCAFPrs_Driver.cxx

View File

@ -86,16 +86,29 @@ static Standard_Boolean getShapesOfSHUO (TopLoc_IndexedMapOfLocation& theaPrevLo
//======================================================================= //=======================================================================
void XCAFPrs::CollectStyleSettings (const TDF_Label& theLabel, void XCAFPrs::CollectStyleSettings (const TDF_Label& theLabel,
const TopLoc_Location& theLoc, const TopLoc_Location& theLoc,
XCAFPrs_DataMapOfShapeStyle& theSettings) XCAFPrs_IndexedDataMapOfShapeStyle& theSettings,
const Quantity_ColorRGBA& theLayerColor)
{ {
// for references, first collect colors of referred shape // for references, first collect colors of referred shape
{ {
TDF_Label aLabelRef; TDF_Label aLabelRef;
if (XCAFDoc_ShapeTool::GetReferredShape (theLabel, aLabelRef)) if (XCAFDoc_ShapeTool::GetReferredShape (theLabel, aLabelRef))
{ {
Quantity_ColorRGBA aLayerColor = theLayerColor;
Handle(XCAFDoc_LayerTool) aLayerTool = XCAFDoc_DocumentTool::LayerTool (theLabel);
Handle(TColStd_HSequenceOfExtendedString) aLayerNames = new TColStd_HSequenceOfExtendedString();
aLayerTool->GetLayers (theLabel, aLayerNames);
if (aLayerNames->Length() == 1)
{
TDF_Label aLayer = aLayerTool->FindLayer (aLayerNames->First());
Handle(XCAFDoc_ColorTool) aColorTool = XCAFDoc_DocumentTool::ColorTool(theLabel);
Quantity_ColorRGBA aColor;
if (aColorTool->GetColor (aLayer, XCAFDoc_ColorGen, aColor))
aLayerColor = aColor;
}
TopLoc_Location aLocSub = theLoc.Multiplied (XCAFDoc_ShapeTool::GetLocation (theLabel)); TopLoc_Location aLocSub = theLoc.Multiplied (XCAFDoc_ShapeTool::GetLocation (theLabel));
CollectStyleSettings (aLabelRef, aLocSub, theSettings); CollectStyleSettings (aLabelRef, aLocSub, theSettings, aLayerColor);
} }
} }
@ -108,7 +121,7 @@ void XCAFPrs::CollectStyleSettings (const TDF_Label& theLabel,
for (TDF_LabelSequence::Iterator aComponentIter (aComponentLabSeq); aComponentIter.More(); aComponentIter.Next()) for (TDF_LabelSequence::Iterator aComponentIter (aComponentLabSeq); aComponentIter.More(); aComponentIter.Next())
{ {
const TDF_Label& aComponentLab = aComponentIter.Value(); const TDF_Label& aComponentLab = aComponentIter.Value();
CollectStyleSettings (aComponentLab, theLoc, theSettings); CollectStyleSettings (aComponentLab, theLoc, theSettings, theLayerColor);
} }
} }
} }
@ -149,19 +162,39 @@ void XCAFPrs::CollectStyleSettings (const TDF_Label& theLabel,
} }
else else
{ {
Quantity_ColorRGBA aColor; if (aColorTool->IsColorByLayer(aLabel))
if (aColorTool->GetColor (aLabel, XCAFDoc_ColorGen, aColor))
{ {
aStyle.SetColorCurv (aColor.GetRGB()); Quantity_ColorRGBA aLayerColor = theLayerColor;
aStyle.SetColorSurf (aColor); Handle(XCAFDoc_LayerTool) aLayerTool = XCAFDoc_DocumentTool::LayerTool (aLabel);
Handle(TColStd_HSequenceOfExtendedString) aLayerNames = new TColStd_HSequenceOfExtendedString();
aLayerTool->GetLayers (aLabel, aLayerNames);
if (aLayerNames->Length() == 1)
{
TDF_Label aLayer = aLayerTool->FindLayer (aLayerNames->First());
Quantity_ColorRGBA aColor;
if (aColorTool->GetColor (aLayer, XCAFDoc_ColorGen, aColor))
aLayerColor = aColor;
}
aStyle.SetColorCurv (aLayerColor.GetRGB());
aStyle.SetColorSurf (aLayerColor);
} }
if (aColorTool->GetColor (aLabel, XCAFDoc_ColorSurf, aColor)) else
{ {
aStyle.SetColorSurf (aColor); Quantity_ColorRGBA aColor;
} if (aColorTool->GetColor (aLabel, XCAFDoc_ColorGen, aColor))
if (aColorTool->GetColor (aLabel, XCAFDoc_ColorCurv, aColor)) {
{ aStyle.SetColorCurv (aColor.GetRGB());
aStyle.SetColorCurv (aColor.GetRGB()); aStyle.SetColorSurf (aColor);
}
if (aColorTool->GetColor (aLabel, XCAFDoc_ColorSurf, aColor))
{
aStyle.SetColorSurf (aColor);
}
if (aColorTool->GetColor (aLabel, XCAFDoc_ColorCurv, aColor))
{
aStyle.SetColorCurv (aColor.GetRGB());
}
} }
} }
@ -250,7 +283,11 @@ void XCAFPrs::CollectStyleSettings (const TDF_Label& theLabel,
for (TopTools_SequenceOfShape::Iterator aShuoShapeIter (aShuoShapeSeq); aShuoShapeIter.More(); aShuoShapeIter.Next()) for (TopTools_SequenceOfShape::Iterator aShuoShapeIter (aShuoShapeSeq); aShuoShapeIter.More(); aShuoShapeIter.Next())
{ {
const TopoDS_Shape& aShuoShape = aShuoShapeIter.Value(); const TopoDS_Shape& aShuoShape = aShuoShapeIter.Value();
theSettings.Bind (aShuoShape, aShuoStyle); XCAFPrs_Style* aMapStyle = theSettings.ChangeSeek (aShuoShape);
if (aMapStyle == NULL)
theSettings.Add (aShuoShape, aShuoStyle);
else
*aMapStyle = aShuoStyle;
} }
continue; continue;
} }
@ -273,7 +310,11 @@ void XCAFPrs::CollectStyleSettings (const TDF_Label& theLabel,
} }
} }
aSubshape.Move (theLoc); aSubshape.Move (theLoc);
theSettings.Bind (aSubshape, aStyle); XCAFPrs_Style* aMapStyle = theSettings.ChangeSeek (aSubshape);
if (aMapStyle == NULL)
theSettings.Add (aSubshape, aStyle);
else
*aMapStyle = aStyle;
} }
} }

View File

@ -20,7 +20,7 @@
#include <Standard_DefineAlloc.hxx> #include <Standard_DefineAlloc.hxx>
#include <Standard_Handle.hxx> #include <Standard_Handle.hxx>
#include <XCAFPrs_DataMapOfShapeStyle.hxx> #include <XCAFPrs_IndexedDataMapOfShapeStyle.hxx>
#include <Standard_Boolean.hxx> #include <Standard_Boolean.hxx>
class TDF_Label; class TDF_Label;
class TopLoc_Location; class TopLoc_Location;
@ -42,7 +42,7 @@ public:
//! shape - style correspondence //! shape - style correspondence
//! The location <loc> is for internal use, it //! The location <loc> is for internal use, it
//! should be Null location for external call //! should be Null location for external call
Standard_EXPORT static void CollectStyleSettings (const TDF_Label& L, const TopLoc_Location& loc, XCAFPrs_DataMapOfShapeStyle& settings); Standard_EXPORT static void CollectStyleSettings (const TDF_Label& L, const TopLoc_Location& loc, XCAFPrs_IndexedDataMapOfShapeStyle& settings, const Quantity_ColorRGBA& theLayerColor = Quantity_ColorRGBA(Quantity_NOC_WHITE));
//! Set ViewNameMode for indicate display names or not. //! Set ViewNameMode for indicate display names or not.
Standard_EXPORT static void SetViewNameMode (const Standard_Boolean viewNameMode); Standard_EXPORT static void SetViewNameMode (const Standard_Boolean viewNameMode);

View File

@ -33,8 +33,8 @@
#include <TopoDS_Iterator.hxx> #include <TopoDS_Iterator.hxx>
#include <XCAFDoc_ShapeTool.hxx> #include <XCAFDoc_ShapeTool.hxx>
#include <XCAFPrs.hxx> #include <XCAFPrs.hxx>
#include <XCAFPrs_DataMapOfShapeStyle.hxx> #include <XCAFPrs_IndexedDataMapOfShapeStyle.hxx>
#include <XCAFPrs_DataMapIteratorOfDataMapOfShapeStyle.hxx> #include <XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx>
#include <XCAFPrs_Style.hxx> #include <XCAFPrs_Style.hxx>
@ -133,7 +133,7 @@ void XCAFPrs_AISObject::DispatchStyles (const Standard_Boolean theToSyncStyles)
// Collecting information on colored subshapes // Collecting information on colored subshapes
TopLoc_Location aLoc; TopLoc_Location aLoc;
XCAFPrs_DataMapOfShapeStyle aSettings; XCAFPrs_IndexedDataMapOfShapeStyle aSettings;
XCAFPrs::CollectStyleSettings (myLabel, aLoc, aSettings); XCAFPrs::CollectStyleSettings (myLabel, aLoc, aSettings);
// Getting default colors // Getting default colors
@ -146,12 +146,12 @@ void XCAFPrs_AISObject::DispatchStyles (const Standard_Boolean theToSyncStyles)
// collect sub-shapes with the same style into compounds // collect sub-shapes with the same style into compounds
BRep_Builder aBuilder; BRep_Builder aBuilder;
NCollection_DataMap<XCAFPrs_Style, TopoDS_Compound, XCAFPrs_Style> aStyleGroups; NCollection_IndexedDataMap<XCAFPrs_Style, TopoDS_Compound, XCAFPrs_Style> aStyleGroups;
for (XCAFPrs_DataMapIteratorOfDataMapOfShapeStyle aStyledShapeIter (aSettings); for (XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle aStyledShapeIter (aSettings);
aStyledShapeIter.More(); aStyledShapeIter.Next()) aStyledShapeIter.More(); aStyledShapeIter.Next())
{ {
TopoDS_Compound aComp; TopoDS_Compound aComp;
if (aStyleGroups.Find (aStyledShapeIter.Value(), aComp)) if (aStyleGroups.FindFromKey (aStyledShapeIter.Value(), aComp))
{ {
aBuilder.Add (aComp, aStyledShapeIter.Key()); aBuilder.Add (aComp, aStyledShapeIter.Key());
continue; continue;
@ -159,12 +159,16 @@ void XCAFPrs_AISObject::DispatchStyles (const Standard_Boolean theToSyncStyles)
aBuilder.MakeCompound (aComp); aBuilder.MakeCompound (aComp);
aBuilder.Add (aComp, aStyledShapeIter.Key()); aBuilder.Add (aComp, aStyledShapeIter.Key());
aStyleGroups.Bind (aStyledShapeIter.Value(), aComp); TopoDS_Compound* aMapShape = aStyleGroups.ChangeSeek (aStyledShapeIter.Value());
if (aMapShape == NULL)
aStyleGroups.Add (aStyledShapeIter.Value(), aComp);
else
*aMapShape = aComp;
} }
aSettings.Clear(); aSettings.Clear();
// assign custom aspects // assign custom aspects
for (NCollection_DataMap<XCAFPrs_Style, TopoDS_Compound, XCAFPrs_Style>::Iterator aStyleGroupIter (aStyleGroups); for (NCollection_IndexedDataMap<XCAFPrs_Style, TopoDS_Compound, XCAFPrs_Style>::Iterator aStyleGroupIter (aStyleGroups);
aStyleGroupIter.More(); aStyleGroupIter.Next()) aStyleGroupIter.More(); aStyleGroupIter.Next())
{ {
const TopoDS_Compound& aComp = aStyleGroupIter.Value(); const TopoDS_Compound& aComp = aStyleGroupIter.Value();

View File

@ -12,9 +12,9 @@
// commercial license or contractual agreement. // commercial license or contractual agreement.
#ifndef XCAFPrs_DataMapIteratorOfDataMapOfShapeStyle_HeaderFile #ifndef XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle_HeaderFile
#define XCAFPrs_DataMapIteratorOfDataMapOfShapeStyle_HeaderFile #define XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle_HeaderFile
#include <XCAFPrs_DataMapOfShapeStyle.hxx> #include <XCAFPrs_IndexedDataMapOfShapeStyle.hxx>
#endif #endif

View File

@ -13,16 +13,16 @@
// Alternatively, this file may be used under the terms of Open CASCADE // Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement. // commercial license or contractual agreement.
#ifndef XCAFPrs_DataMapOfShapeStyle_HeaderFile #ifndef XCAFPrs_IndexedDataMapOfShapeStyle_HeaderFile
#define XCAFPrs_DataMapOfShapeStyle_HeaderFile #define XCAFPrs_IndexedDataMapOfShapeStyle_HeaderFile
#include <TopoDS_Shape.hxx> #include <TopoDS_Shape.hxx>
#include <XCAFPrs_Style.hxx> #include <XCAFPrs_Style.hxx>
#include <TopTools_ShapeMapHasher.hxx> #include <TopTools_ShapeMapHasher.hxx>
#include <NCollection_DataMap.hxx> #include <NCollection_IndexedDataMap.hxx>
typedef NCollection_DataMap<TopoDS_Shape,XCAFPrs_Style,TopTools_ShapeMapHasher> XCAFPrs_DataMapOfShapeStyle; typedef NCollection_IndexedDataMap<TopoDS_Shape,XCAFPrs_Style,TopTools_ShapeMapHasher> XCAFPrs_IndexedDataMapOfShapeStyle;
typedef NCollection_DataMap<TopoDS_Shape,XCAFPrs_Style,TopTools_ShapeMapHasher>::Iterator XCAFPrs_DataMapIteratorOfDataMapOfShapeStyle; typedef NCollection_IndexedDataMap<TopoDS_Shape,XCAFPrs_Style,TopTools_ShapeMapHasher>::Iterator XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle;
#endif #endif

View File

@ -304,21 +304,49 @@ static void StatAssembly(const TDF_Label L,
NbAreaProp++; NbAreaProp++;
} }
Handle(XCAFDoc_ColorTool) CTool = XCAFDoc_DocumentTool::ColorTool(aDoc->Main()); Handle(XCAFDoc_ColorTool) CTool = XCAFDoc_DocumentTool::ColorTool(aDoc->Main());
Handle(XCAFDoc_LayerTool) LTool = XCAFDoc_DocumentTool::LayerTool(aDoc->Main());
Quantity_ColorRGBA col; Quantity_ColorRGBA col;
Standard_Boolean IsColor = Standard_False; Standard_Boolean IsColor = Standard_False;
Standard_Boolean IsByLayer = Standard_False;
if(CTool->GetColor(L,XCAFDoc_ColorGen,col)) if(CTool->GetColor(L,XCAFDoc_ColorGen,col))
IsColor = Standard_True; IsColor = Standard_True;
else if(CTool->GetColor(L,XCAFDoc_ColorSurf,col)) else if(CTool->GetColor(L,XCAFDoc_ColorSurf,col))
IsColor = Standard_True; IsColor = Standard_True;
else if(CTool->GetColor(L,XCAFDoc_ColorCurv,col)) else if(CTool->GetColor(L,XCAFDoc_ColorCurv,col))
IsColor = Standard_True; IsColor = Standard_True;
if(IsColor) { else if(CTool->IsColorByLayer(L))
TCollection_AsciiString Entry1; IsByLayer = Standard_True;
Entry1 = col.GetRGB().StringName(col.GetRGB().Name()); if(IsColor || IsByLayer) {
if(PrintStructMode) di<<"Color("<<Entry1.ToCString()<<" "<<col.Alpha()<<") "; if(IsByLayer)
NbShapesWithColor++; {
Handle(TColStd_HSequenceOfExtendedString) aLayerS;
LTool->GetLayers(L, aLayerS);
// Currently for DXF pnly, thus
// only 1 Layer should be.
if(aLayerS->Length() == 1)
{
TDF_Label aLayer = LTool->FindLayer (aLayerS->First());
Quantity_ColorRGBA aColor;
if (CTool->GetColor (aLayer, XCAFDoc_ColorGen, aColor))
{
TCollection_AsciiString aColorName = aColor.GetRGB().StringName(aColor.GetRGB().Name());
di<<"Color(" << aColorName.ToCString() << ") ";
}
else
{
di<<"Color(ByLayer) ";
}
}
NbShapesWithColor++;
}
else
{
TCollection_AsciiString Entry1;
Entry1 = col.GetRGB().StringName(col.GetRGB().Name());
if(PrintStructMode) di<<"Color("<<Entry1.ToCString()<<" "<<col.Alpha()<<") ";
NbShapesWithColor++;
}
} }
Handle(XCAFDoc_LayerTool) LTool = XCAFDoc_DocumentTool::LayerTool(aDoc->Main());
Handle(TColStd_HSequenceOfExtendedString) aLayerS; Handle(TColStd_HSequenceOfExtendedString) aLayerS;
LTool->GetLayers(L, aLayerS); LTool->GetLayers(L, aLayerS);
if(!aLayerS.IsNull() && aLayerS->Length()>0) { if(!aLayerS.IsNull() && aLayerS->Length()>0) {