diff --git a/src/Aspect/Aspect_TypeOfLine.hxx b/src/Aspect/Aspect_TypeOfLine.hxx index 0439b6827c..ff079b08fe 100644 --- a/src/Aspect/Aspect_TypeOfLine.hxx +++ b/src/Aspect/Aspect_TypeOfLine.hxx @@ -17,19 +17,14 @@ #define _Aspect_TypeOfLine_HeaderFile //! Definition of line types -//! -//! TOL_SOLID continuous -//! TOL_DASH dashed 2.0,1.0 (MM) -//! TOL_DOT dotted 0.2,0.5 (MM) -//! TOL_DOTDASH mixed 10.0,1.0,2.0,1.0 (MM) -//! TOL_USERDEFINED defined by Users enum Aspect_TypeOfLine { -Aspect_TOL_SOLID, -Aspect_TOL_DASH, -Aspect_TOL_DOT, -Aspect_TOL_DOTDASH, -Aspect_TOL_USERDEFINED + Aspect_TOL_EMPTY = -1, //!< hidden + Aspect_TOL_SOLID = 0, //!< continuous + Aspect_TOL_DASH, //!< dashed 2.0,1.0 (MM) + Aspect_TOL_DOT, //!< dotted 0.2,0.5 (MM) + Aspect_TOL_DOTDASH, //!< mixed 10.0,1.0,2.0,1.0 (MM) + Aspect_TOL_USERDEFINED //!< defined by Users }; #endif // _Aspect_TypeOfLine_HeaderFile diff --git a/src/Aspect/Aspect_TypeOfMarker.hxx b/src/Aspect/Aspect_TypeOfMarker.hxx index 01bb14b06e..06836fb721 100644 --- a/src/Aspect/Aspect_TypeOfMarker.hxx +++ b/src/Aspect/Aspect_TypeOfMarker.hxx @@ -17,37 +17,23 @@ #define _Aspect_TypeOfMarker_HeaderFile //! Definition of types of markers -//! -//! TOM_POINT point . -//! TOM_PLUS plus + -//! TOM_STAR star * -//! TOM_X cross x -//! TOM_O circle O -//! TOM_O_POINT a point in a circle -//! TOM_O_PLUS a plus in a circle -//! TOM_O_STAR a star in a circle -//! TOM_O_X a cross in a circle -//! TOM_RING1 a large ring -//! TOM_RING2 a medium ring -//! TOM_RING3 a small ring -//! TOM_BALL a ball with 1 color and different saturations -//! TOM_USERDEFINED defined by Users enum Aspect_TypeOfMarker { -Aspect_TOM_POINT, -Aspect_TOM_PLUS, -Aspect_TOM_STAR, -Aspect_TOM_X, -Aspect_TOM_O, -Aspect_TOM_O_POINT, -Aspect_TOM_O_PLUS, -Aspect_TOM_O_STAR, -Aspect_TOM_O_X, -Aspect_TOM_RING1, -Aspect_TOM_RING2, -Aspect_TOM_RING3, -Aspect_TOM_BALL, -Aspect_TOM_USERDEFINED + Aspect_TOM_EMPTY = -1, //!< hidden + Aspect_TOM_POINT = 0, //!< point . + Aspect_TOM_PLUS, //!< plus + + Aspect_TOM_STAR, //!< star * + Aspect_TOM_X, //!< cross x + Aspect_TOM_O, //!< circle O + Aspect_TOM_O_POINT, //!< a point in a circle + Aspect_TOM_O_PLUS, //!< a plus in a circle + Aspect_TOM_O_STAR, //!< a star in a circle + Aspect_TOM_O_X, //!< a cross in a circle + Aspect_TOM_RING1, //!< a large ring + Aspect_TOM_RING2, //!< a medium ring + Aspect_TOM_RING3, //!< a small ring + Aspect_TOM_BALL, //!< a ball with 1 color and different saturations + Aspect_TOM_USERDEFINED //!< defined by Users (custom image) }; #endif // _Aspect_TypeOfMarker_HeaderFile diff --git a/src/OpenGl/OpenGl_AspectMarker.cxx b/src/OpenGl/OpenGl_AspectMarker.cxx index f90ced06bd..0d2d9c3e76 100644 --- a/src/OpenGl/OpenGl_AspectMarker.cxx +++ b/src/OpenGl/OpenGl_AspectMarker.cxx @@ -1606,6 +1606,7 @@ void OpenGl_AspectMarker::Resources::BuildSprites (const Handle(OpenGl_Context)& SpriteAKey = aNewKeyA; } if (theType == Aspect_TOM_POINT + || theType == Aspect_TOM_EMPTY || !aNewResource || (theType == Aspect_TOM_USERDEFINED && theMarkerImage.IsNull())) { @@ -1948,7 +1949,8 @@ void OpenGl_AspectMarker::Resources::SpriteKeys (const Handle(Graphic3d_MarkerIm theKeyA = theMarkerImage->GetImageAlphaId(); } } - else if (theType != Aspect_TOM_POINT) + else if (theType != Aspect_TOM_POINT + && theType != Aspect_TOM_EMPTY) { // predefined markers are defined with 0.5 step const Standard_Integer aScale = Standard_Integer(theScale * 10.0f + 0.5f); diff --git a/src/OpenGl/OpenGl_Context.cxx b/src/OpenGl/OpenGl_Context.cxx index 6b281d631b..cd271774ee 100644 --- a/src/OpenGl/OpenGl_Context.cxx +++ b/src/OpenGl/OpenGl_Context.cxx @@ -2934,6 +2934,7 @@ void OpenGl_Context::SetTypeOfLine (const Aspect_TypeOfLine theType, aPattern = 0xFF18; break; } + case Aspect_TOL_EMPTY: case Aspect_TOL_SOLID: { aPattern = 0xFFFF; @@ -2954,7 +2955,7 @@ void OpenGl_Context::SetTypeOfLine (const Aspect_TypeOfLine theType, } #if !defined(GL_ES_VERSION_2_0) - if (theType != Aspect_TOL_SOLID) + if (aPattern != 0xFFFF) { #ifdef HAVE_GL2PS if (IsFeedback()) diff --git a/src/OpenGl/OpenGl_PrimitiveArray.cxx b/src/OpenGl/OpenGl_PrimitiveArray.cxx index 8c84665682..3132f4f102 100644 --- a/src/OpenGl/OpenGl_PrimitiveArray.cxx +++ b/src/OpenGl/OpenGl_PrimitiveArray.cxx @@ -737,13 +737,25 @@ void OpenGl_PrimitiveArray::Render (const Handle(OpenGl_Workspace)& theWorkspace #endif // Temporarily disable environment mapping Handle(OpenGl_Texture) aTextureBack; - if (myDrawMode <= GL_LINE_STRIP) + bool toDrawArray = true; + if (myDrawMode > GL_LINE_STRIP) + { + toDrawArray = anAspectFace->Aspect()->InteriorStyle() != Aspect_IS_EMPTY; + } + else if (myDrawMode <= GL_LINE_STRIP) { aTextureBack = theWorkspace->DisableTexture(); + if (myDrawMode == GL_POINTS) + { + toDrawArray = anAspectMarker->Aspect()->Type() != Aspect_TOM_EMPTY; + } + else + { + toDrawArray = anAspectLine->Aspect()->Type() != Aspect_TOL_EMPTY; + } } - if ((myDrawMode > GL_LINE_STRIP && anAspectFace->Aspect()->InteriorStyle() != Aspect_IS_EMPTY) || - (myDrawMode <= GL_LINE_STRIP)) + if (toDrawArray) { const bool toHilight = theWorkspace->ToHighlight(); const Standard_Boolean hasVertColor = hasColorAttrib && !toHilight; diff --git a/src/ViewerTest/ViewerTest.cxx b/src/ViewerTest/ViewerTest.cxx index 9c6297e85d..3b83d6cd1f 100644 --- a/src/ViewerTest/ViewerTest.cxx +++ b/src/ViewerTest/ViewerTest.cxx @@ -27,6 +27,7 @@ #include #include +#include #include #include #include @@ -173,6 +174,47 @@ Standard_Boolean ViewerTest::ParseOnOff (Standard_CString theArg, return Standard_False; } +//======================================================================= +//function : ParseLineType +//purpose : +//======================================================================= +Standard_Boolean ViewerTest::ParseLineType (Standard_CString theArg, + Aspect_TypeOfLine& theType) +{ + TCollection_AsciiString aTypeStr (theArg); + aTypeStr.LowerCase(); + if (aTypeStr == "empty") + { + theType = Aspect_TOL_EMPTY; + } + else if (aTypeStr == "solid") + { + theType = Aspect_TOL_SOLID; + } + else if (aTypeStr == "dot") + { + theType = Aspect_TOL_DOT; + } + else if (aTypeStr == "dash") + { + theType = Aspect_TOL_DASH; + } + else if (aTypeStr == "dotdash") + { + theType = Aspect_TOL_DOTDASH; + } + else + { + const int aTypeInt = Draw::Atoi (theArg); + if (aTypeInt < -1 || aTypeInt >= Aspect_TOL_USERDEFINED) + { + return Standard_False; + } + theType = (Aspect_TypeOfLine )aTypeInt; + } + return Standard_True; +} + //======================================================================= //function : GetTypeNames //purpose : @@ -1893,27 +1935,7 @@ static Standard_Integer VAspects (Draw_Interpretor& /*theDI*/, std::cout << "Error: wrong syntax at " << anArg << "\n"; return 1; } - - TCollection_AsciiString aValue (theArgVec[anArgIter]); - aValue.LowerCase(); - - if (aValue.IsEqual ("solid")) - { - aChangeSet->TypeOfLine = Aspect_TOL_SOLID; - } - else if (aValue.IsEqual ("dot")) - { - aChangeSet->TypeOfLine = Aspect_TOL_DOT; - } - else if (aValue.IsEqual ("dash")) - { - aChangeSet->TypeOfLine = Aspect_TOL_DASH; - } - else if (aValue.IsEqual ("dotdash")) - { - aChangeSet->TypeOfLine = Aspect_TOL_DOTDASH; - } - else + if (!ViewerTest::ParseLineType (theArgVec[anArgIter], aChangeSet->TypeOfLine)) { std::cout << "Error: wrong syntax at " << anArg << "\n"; return 1; diff --git a/src/ViewerTest/ViewerTest.hxx b/src/ViewerTest/ViewerTest.hxx index 9c74292d6c..aefdfb789b 100644 --- a/src/ViewerTest/ViewerTest.hxx +++ b/src/ViewerTest/ViewerTest.hxx @@ -26,9 +26,11 @@ #include #include #include +#include #include #include + class TCollection_AsciiString; class V3d_View; class MMgt_TShared; @@ -187,6 +189,12 @@ public: //! Handles either flag specified by 0|1 or on|off. Standard_EXPORT static Standard_Boolean ParseOnOff (Standard_CString theArg, Standard_Boolean& theIsOn); + + //! Parses line type argument. + //! Handles either enumeration (integer) value or string constant. + Standard_EXPORT static Standard_Boolean ParseLineType (Standard_CString theArg, + Aspect_TypeOfLine& theType); + private: //! Returns a window class that implements standard behavior of diff --git a/src/ViewerTest/ViewerTest_ObjectCommands.cxx b/src/ViewerTest/ViewerTest_ObjectCommands.cxx index 686ae6c295..569a4a3c8d 100644 --- a/src/ViewerTest/ViewerTest_ObjectCommands.cxx +++ b/src/ViewerTest/ViewerTest_ObjectCommands.cxx @@ -5270,13 +5270,10 @@ static Standard_Integer VShowFaceBoundary (Draw_Interpretor& /*di*/, // select appropriate line type if (argc == 8) { - switch (Draw::Atoi (argv[7])) + if (!ViewerTest::ParseLineType (argv[7], aLineType)) { - case 1: aLineType = Aspect_TOL_DASH; break; - case 2: aLineType = Aspect_TOL_DOT; break; - case 3: aLineType = Aspect_TOL_DOTDASH; break; - default: - aLineType = Aspect_TOL_SOLID; + std::cout << "Syntax error: unknown line type '" << argv[7] << "'\n"; + return 1; } } @@ -5913,31 +5910,14 @@ static int VSetEdgeType (Draw_Interpretor& theDI, return 1; } - TCollection_AsciiString aType = theArgs[++anIt]; - aType.UpperCase(); - - if (aType.IsEqual ("SOLID")) + ++anIt; + Aspect_TypeOfLine aTypeEnum = Aspect_TOL_SOLID; + if (!ViewerTest::ParseLineType (theArgs[anIt], aTypeEnum)) { - anObject->Attributes()->ShadingAspect()->Aspect()->SetEdgeLineType(Aspect_TOL_SOLID); - } - else if (aType.IsEqual ("DASH")) - { - anObject->Attributes()->ShadingAspect()->Aspect()->SetEdgeLineType(Aspect_TOL_DASH); - } - else if (aType.IsEqual ("DOT")) - { - anObject->Attributes()->ShadingAspect()->Aspect()->SetEdgeLineType(Aspect_TOL_DOT); - } - else if (aType.IsEqual ("DOTDASH")) - { - anObject->Attributes()->ShadingAspect()->Aspect()->SetEdgeLineType(Aspect_TOL_DOTDASH); - } - else - { - theDI << theArgs[0] << " error: wrong line type: '" << aType.ToCString() << "'.\n"; + std::cout << "Syntax error: wrong line type: '" << theArgs[anIt] << "'.\n"; return 1; } - + anObject->Attributes()->ShadingAspect()->Aspect()->SetEdgeLineType (aTypeEnum); } else if (aParam.IsEqual ("-color")) { diff --git a/src/ViewerTest/ViewerTest_ViewerCommands.cxx b/src/ViewerTest/ViewerTest_ViewerCommands.cxx index 4f99edc02b..c4b213dcac 100644 --- a/src/ViewerTest/ViewerTest_ViewerCommands.cxx +++ b/src/ViewerTest/ViewerTest_ViewerCommands.cxx @@ -4886,17 +4886,21 @@ static int VLayerLine(Draw_Interpretor& di, Standard_Integer argc, const char** Standard_Real X2 = Draw::Atof(argv[3]); Standard_Real Y2 = Draw::Atof(argv[4]); - Standard_Real aWidth = 0.5; - Standard_Integer aType = 0; - Standard_Real aTransparency = 1.0; + Standard_Real aWidth = 0.5; + Standard_Real aTransparency = 1.0; // has width if (argc > 5) aWidth = Draw::Atof(argv[5]); - // has type - if (argc > 6) - aType = (Standard_Integer) Draw::Atoi(argv[6]); + // select appropriate line type + Aspect_TypeOfLine aLineType = Aspect_TOL_SOLID; + if (argc > 6 + && !ViewerTest::ParseLineType (argv[6], aLineType)) + { + std::cout << "Syntax error: unknown line type '" << argv[6] << "'\n"; + return 1; + } // has transparency if (argc > 7) @@ -4906,26 +4910,6 @@ static int VLayerLine(Draw_Interpretor& di, Standard_Integer argc, const char** aTransparency = 1.0; } - // select appropriate line type - Aspect_TypeOfLine aLineType; - switch (aType) - { - case 1: - aLineType = Aspect_TOL_DASH; - break; - - case 2: - aLineType = Aspect_TOL_DOT; - break; - - case 3: - aLineType = Aspect_TOL_DOTDASH; - break; - - default: - aLineType = Aspect_TOL_SOLID; - } - static Handle (V3d_LineItem) aLine; if (!aLine.IsNull()) { diff --git a/src/XDEDRAW/XDEDRAW.cxx b/src/XDEDRAW/XDEDRAW.cxx index 9a425cfe7d..987584c5d4 100644 --- a/src/XDEDRAW/XDEDRAW.cxx +++ b/src/XDEDRAW/XDEDRAW.cxx @@ -976,13 +976,9 @@ static Standard_Integer XShowFaceBoundary (Draw_Interpretor& di, // select appropriate line type if (argc == 9) { - switch (Draw::Atoi (argv[8])) + if (!ViewerTest::ParseLineType (argv[8], aLineType)) { - case 1: aLineType = Aspect_TOL_DASH; break; - case 2: aLineType = Aspect_TOL_DOT; break; - case 3: aLineType = Aspect_TOL_DOTDASH; break; - default: - aLineType = Aspect_TOL_SOLID; + std::cout << "Syntax error: unknown line type '" << argv[8] << "'\n"; } }