From 5ad539d2e09332c48e8e4c11ee5f3981188992e6 Mon Sep 17 00:00:00 2001 From: aba Date: Thu, 22 May 2014 17:29:57 +0400 Subject: [PATCH] 0006897: Impossible to change edge line type in 3D View Added command vsetedgetype; added test case bugs/vis/bug6897 to test edge type management. vunsetedgetype DRAW command was added and test case was updated. added -force option to set edge type commands to force redisplay. Otherwise primitive aspects are updated without object redisplaying. --- src/ViewerTest/ViewerTest_ObjectCommands.cxx | 197 +++++++++++++++++++ tests/bugs/vis/bug6897_1 | 30 +++ tests/bugs/vis/bug6897_2 | 24 +++ 3 files changed, 251 insertions(+) create mode 100644 tests/bugs/vis/bug6897_1 create mode 100644 tests/bugs/vis/bug6897_2 diff --git a/src/ViewerTest/ViewerTest_ObjectCommands.cxx b/src/ViewerTest/ViewerTest_ObjectCommands.cxx index 09e3b56672..dd23be35c2 100644 --- a/src/ViewerTest/ViewerTest_ObjectCommands.cxx +++ b/src/ViewerTest/ViewerTest_ObjectCommands.cxx @@ -5019,6 +5019,191 @@ static int VFont (Draw_Interpretor& theDI, return 0; } +//======================================================================= +//function : VSetEdgeType +//purpose : Edges type management +//======================================================================= + +static int VSetEdgeType (Draw_Interpretor& theDI, + Standard_Integer theArgNum, + const char** theArgs) +{ + if (theArgNum < 4 || theArgNum > 9) + { + theDI << theArgs[0] << " error: wrong number of parameters. Type 'help " + << theArgs[0] << "' for more information.\n"; + return 1; + } + + Standard_Boolean isForceRedisplay = Standard_False; + + // Get shape name + TCollection_AsciiString aName(theArgs[1]); + if (!GetMapOfAIS().IsBound2 (aName)) + { + theDI << theArgs[0] << " error: wrong object name.\n"; + return 1; + } + + Handle(AIS_InteractiveObject) anObject = + Handle(AIS_InteractiveObject)::DownCast(GetMapOfAIS().Find2(aName)); + + // Enable trianle edge mode + anObject->Attributes()->ShadingAspect()->Aspect()->SetEdgeOn(); + + // Parse parameters + for (Standard_Integer anIt = 2; anIt < theArgNum; ++anIt) + { + TCollection_AsciiString aParam ((theArgs[anIt])); + if (aParam.Value (1) == '-' && !aParam.IsRealValue()) + { + if (aParam.IsEqual ("-type")) + { + if (theArgNum <= anIt + 1) + { + theDI << theArgs[0] << " error: wrong number of values for parameter '" + << aParam.ToCString() << "'.\n"; + return 1; + } + + TCollection_AsciiString aType = theArgs[++anIt]; + aType.UpperCase(); + + if (aType.IsEqual ("SOLID")) + { + 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"; + return 1; + } + + } + else if (aParam.IsEqual ("-color")) + { + if (theArgNum <= anIt + 3) + { + theDI << theArgs[0] << " error: wrong number of values for parameter '" + << aParam.ToCString() << "'.\n"; + return 1; + } + + Quantity_Parameter aR = Draw::Atof(theArgs[++anIt]); + Quantity_Parameter aG = Draw::Atof(theArgs[++anIt]); + Quantity_Parameter aB = Draw::Atof(theArgs[++anIt]); + Quantity_Color aColor = Quantity_Color (aR > 1 ? aR / 255.0 : aR, + aG > 1 ? aG / 255.0 : aG, + aB > 1 ? aB / 255.0 : aB, + Quantity_TOC_RGB); + + anObject->Attributes()->ShadingAspect()->Aspect()->SetEdgeColor (aColor); + } + else if (aParam.IsEqual ("-force")) + { + isForceRedisplay = Standard_True; + } + else + { + theDI << theArgs[0] << " error: unknown parameter '" + << aParam.ToCString() << "'.\n"; + return 1; + } + } + } + + // Update shape presentation as aspect parameters were changed + if (isForceRedisplay) + { + ViewerTest::GetAISContext()->Redisplay (anObject); + } + else + { + anObject->SetAspect (anObject->Attributes()->ShadingAspect()); + } + + //Update view + ViewerTest::CurrentView()->Redraw(); + + return 0; +} + +//======================================================================= +//function : VUnsetEdgeType +//purpose : Unsets edges visibility in shading mode +//======================================================================= + +static int VUnsetEdgeType (Draw_Interpretor& theDI, + Standard_Integer theArgNum, + const char** theArgs) +{ + if (theArgNum != 2 && theArgNum != 3) + { + theDI << theArgs[0] << " error: wrong number of parameters. Type 'help " + << theArgs[0] << "' for more information.\n"; + return 1; + } + + Standard_Boolean isForceRedisplay = Standard_False; + + // Get shape name + TCollection_AsciiString aName (theArgs[1]); + if (!GetMapOfAIS().IsBound2 (aName)) + { + theDI << theArgs[0] << " error: wrong object name.\n"; + return 1; + } + + Handle(AIS_InteractiveObject) anObject = + Handle(AIS_InteractiveObject)::DownCast (GetMapOfAIS().Find2(aName)); + + // Enable trianle edge mode + anObject->Attributes()->ShadingAspect()->Aspect()->SetEdgeOff(); + + // Parse parameters + if (theArgNum == 3) + { + TCollection_AsciiString aParam ((theArgs[2])); + if (aParam.IsEqual ("-force")) + { + isForceRedisplay = Standard_True; + } + else + { + theDI << theArgs[0] << " error: unknown parameter '" + << aParam.ToCString() << "'.\n"; + return 1; + } + } + + // Update shape presentation as aspect parameters were changed + if (isForceRedisplay) + { + ViewerTest::GetAISContext()->Redisplay (anObject); + } + else + { + anObject->SetAspect (anObject->Attributes()->ShadingAspect()); + } + + //Update view + ViewerTest::CurrentView()->Redraw(); + + return 0; +} + //======================================================================= //function : ObjectsCommands //purpose : @@ -5176,4 +5361,16 @@ void ViewerTest::ObjectCommands(Draw_Interpretor& theCommands) "vfont [add pathToFont [fontName] [regular,bold,italic,bolditalic=undefined]]" "\n\t\t: [find fontName [regular,bold,italic,bolditalic=undefined]]", __FILE__, VFont, group); + + theCommands.Add ("vsetedgetype", + "vsetedgetype usage:\n" + "vsetedgetype ShapeName [-force] [-type {solid, dash, dot}] [-color R G B] " + "\n\t\t: Sets edges type and color for input shape", + __FILE__, VSetEdgeType, group); + + theCommands.Add ("vunsetedgetype", + "vunsetedgetype usage:\n" + "vunsetedgetype ShapeName [-force]" + "\n\t\t: Unsets edges type and color for input shape", + __FILE__, VUnsetEdgeType, group); } diff --git a/tests/bugs/vis/bug6897_1 b/tests/bugs/vis/bug6897_1 new file mode 100644 index 0000000000..981739bd2e --- /dev/null +++ b/tests/bugs/vis/bug6897_1 @@ -0,0 +1,30 @@ +puts "============" +puts "CR6987" +puts "============" +puts "" +####################################################################### +# Impossible to change edge line type in 3D View +####################################################################### + +pload VISUALIZATION + +set anImage1 $imagedir/${casename}_1.png +set anImage2 $imagedir/${casename}_2.png +set anImage3 $imagedir/${casename}_3.png + +vinit +box b 1 1 1 +vdisplay b +vfit +vsetdispmode b 1 +vsetedgetype b -type DASH -color 10 255 10 +vdump $anImage1 + +vsetinteriorstyle b EMPTY +vdump $anImage2 + +vsetinteriorstyle b SOLID +vunsetedgetype b +vdump $anImage3 + + diff --git a/tests/bugs/vis/bug6897_2 b/tests/bugs/vis/bug6897_2 new file mode 100644 index 0000000000..ae0d520343 --- /dev/null +++ b/tests/bugs/vis/bug6897_2 @@ -0,0 +1,24 @@ +puts "============" +puts "CR6987" +puts "============" +puts "" +########################################################################## +# Impossible to change edge line type in 3D View +# Tests forced redisplay of object after aspect parameter's been changed +########################################################################## + +pload VISUALIZATION + +set anImage1 $imagedir/${casename}_1.png +set anImage2 $imagedir/${casename}_2.png + +vinit +box b 1 1 1 +vdisplay b +vfit +vsetdispmode b 1 +vsetedgetype b -type DASH -color 10 255 10 -force +vdump $anImage1 + +vunsetedgetype b -force +vdump $anImage2 \ No newline at end of file