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

0031713: Draw Harness, IVtkDraw - add commands ivtksetcolor, ivtkaxo, ivtkclose, ivtksettransparency

Added missing NULL checks before accessing GetInteractor().
Errors are now reported using Message::SendFail().
Not found actor names are now reported as syntax error instead of silently skipping them.

ivtkinit now accepts aguments -srgb and -msaa for overriding defaults.
Default MSAA settings have been changed from 8 to 0 to match vinit behavior.
Added command ivtkclose closing a Vtk view.

Added commands ivtkaxo, ivtkfront, ivtkback, ivtkleft, ivtkright,
ivtktop and ivtkbottom assigning view projection similar to sonamed commands in ViewerTest.

Added commands ivtksetcolor and ivtksettransparency assigning
color properties to shaded presentation.
This commit is contained in:
kgv 2020-08-13 15:50:31 +03:00 committed by bugmaster
parent dae2a92241
commit 12e6d49993
11 changed files with 716 additions and 447 deletions

File diff suppressed because it is too large Load Diff

View File

@ -26,19 +26,39 @@ class WNT_WClass;
class IVtkDraw class IVtkDraw
{ {
public: public:
DEFINE_STANDARD_ALLOC DEFINE_STANDARD_ALLOC
Standard_EXPORT static void ViewerInit (Standard_Integer thePxLeft, //! VTK window creation parameters.
Standard_Integer thePxTop, struct IVtkWinParams
Standard_Integer thePxWidth, {
Standard_Integer thePxHeight); Graphic3d_Vec2i TopLeft;
Graphic3d_Vec2i Size;
Standard_Integer NbMsaaSample;
Standard_Boolean UseSRGBColorSpace;
Standard_EXPORT static void Factory (Draw_Interpretor& theDI); IVtkWinParams() : NbMsaaSample (0), UseSRGBColorSpace (false) {}
Standard_EXPORT static void Commands (Draw_Interpretor& theCommands); };
public:
Standard_EXPORT static void ViewerInit (const IVtkWinParams& theParams);
static void ViewerInit (Standard_Integer thePxLeft,
Standard_Integer thePxTop,
Standard_Integer thePxWidth,
Standard_Integer thePxHeight)
{
IVtkWinParams aParams;
aParams.TopLeft.SetValues (thePxLeft, thePxTop);
aParams.Size.SetValues (thePxWidth, thePxHeight);
ViewerInit (aParams);
}
Standard_EXPORT static void Factory (Draw_Interpretor& theDI);
Standard_EXPORT static void Commands (Draw_Interpretor& theCommands);
private: private:
Standard_EXPORT static const Handle(WNT_WClass)& WClass(); Standard_EXPORT static const Handle(WNT_WClass)& WClass();
}; };
#endif #endif

View File

@ -626,7 +626,7 @@ LRESULT CALLBACK WndProc (HWND theHWnd,UINT theUMsg,
LRESULT aRes = 0; LRESULT aRes = 0;
IVtkDraw_Interactor *anInteractor = 0; IVtkDraw_Interactor *anInteractor = 0;
anInteractor = (IVtkDraw_Interactor *)GetWindowLongPtr (theHWnd, GWLP_USERDATA); anInteractor = (IVtkDraw_Interactor *)GetWindowLongPtrW (theHWnd, GWLP_USERDATA);
if (anInteractor && anInteractor->GetReferenceCount() > 0) if (anInteractor && anInteractor->GetReferenceCount() > 0)
{ {
@ -715,7 +715,7 @@ LRESULT CALLBACK ViewerWindowProc (HWND theHWnd,
theInteractor->OnTimer (theHWnd, (UINT)theWParam); theInteractor->OnTimer (theHWnd, (UINT)theWParam);
break; break;
} }
return DefWindowProc(theHWnd, theMsg, theWParam, theLParam); return DefWindowProcW (theHWnd, theMsg, theWParam, theLParam);
} }
#else #else

View File

@ -1,18 +1,11 @@
puts "============" puts "============"
puts "bgcolor" puts "bgcolor: Tests changing of background color in the IVtk view"
puts "============" puts "============"
puts "" puts ""
#######################################################
# Tests changing of background color in the IVtk view
#######################################################
set anImage1 $imagedir/${casename}_1.png
set anImage2 $imagedir/${casename}_2.png
ivtkinit ivtkinit
ivtkbgcolor 200 220 250 ivtkbgcolor 200 220 250
ivtkdump $anImage1 ivtkdump $imagedir/${casename}_1.png
ivtkbgcolor 10 30 80 255 255 255 ivtkbgcolor 10 30 80 255 255 255
ivtkdump $anImage2 ivtkdump $imagedir/${casename}_2.png

View File

@ -1,20 +1,14 @@
puts "=============" puts "============="
puts "boundary_draw" puts "boundary_draw: Tests boundary draw changing in the IVtk view"
puts "=============" puts "============="
puts "" puts ""
#######################################################
# Tests boundary draw changing in the IVtk view
#######################################################
set anImage1 $imagedir/${casename}_1.png
set anImage2 $imagedir/${casename}_2.png
ivtkinit
box b 1 1 1 box b 1 1 1
ivtkinit
ivtkdisplay b ivtkdisplay b
ivtksetdispmode 1 ivtksetdispmode 1
ivtksetboundingdraw 1 ivtksetboundingdraw 1
ivtkdump $anImage1 ivtkdump $imagedir/${casename}_1.png
ivtksetboundingdraw 0 ivtksetboundingdraw 0
ivtkdump $anImage2 ivtkdump $imagedir/${casename}_2.png

View File

@ -1,15 +1,11 @@
puts "============" puts "============"
puts "detect" puts "detect: Tests detection of shapes in the IVtk view"
puts "============" puts "============"
puts "" puts ""
#######################################################
# Tests detection of shapes in the IVtk view
#######################################################
set anImage $imagedir/${casename}.png
ivtkinit
box b 1 1 1 box b 1 1 1
ivtkinit
ivtkdisplay b ivtkdisplay b
ivtkmoveto 100 100 ivtkmoveto 100 100
ivtkdump $anImage ivtkdump $imagedir/${casename}.png

View File

@ -1,19 +1,13 @@
puts "============" puts "============"
puts "display_mode" puts "display_mode: Tests display modes changing in the IVtk view"
puts "============" puts "============"
puts "" puts ""
#######################################################
# Tests display modes changing in the IVtk view
#######################################################
set anImage1 $imagedir/${casename}_1.png
set anImage2 $imagedir/${casename}_2.png
ivtkinit
box b 1 1 1 box b 1 1 1
ivtkinit
ivtkdisplay b ivtkdisplay b
ivtksetdispmode 1 ivtksetdispmode 1
ivtkdump $anImage1 ivtkdump $imagedir/${casename}_1.png
ivtksetdispmode 0 ivtksetdispmode 0
ivtkdump $anImage2 ivtkdump $imagedir/${casename}_2.png

View File

@ -1,24 +1,17 @@
puts "============" puts "============"
puts "erase" puts "erase: Tests erasing of shapes in the IVtk view"
puts "============" puts "============"
puts "" puts ""
#######################################################
# Tests erasing of shapes in the IVtk view
#######################################################
set anImage1 $imagedir/${casename}_before.png
set anImage2 $imagedir/${casename}_oneErased.png
set anImage3 $imagedir/${casename}_allErased.png
ivtkinit
box b1 1 1 1 box b1 1 1 1
box b2 3 3 3 1 1 1 box b2 3 3 3 1 1 1
ivtkinit
ivtkdisplay b1 b2 ivtkdisplay b1 b2
ivtkdump $anImage1 ivtkdump $imagedir/${casename}_before.png
ivtkerase b1 ivtkerase b1
ivtkdump $anImage2 ivtkdump $imagedir/${casename}_oneErased.png
ivtkdisplay b1 ivtkdisplay b1
ivtkerase ivtkerase
ivtkdump $anImage3 ivtkdump $imagedir/${casename}_allErased.png

View File

@ -1,17 +1,12 @@
puts "==========" puts "=========="
puts "seam_edges" puts "seam_edges: Tests boundary edges draw without seam edges in the IVtk view"
puts "==========" puts "=========="
puts "" puts ""
#################################################################
# Tests boundary edges draw without seam edges in the IVtk view
#################################################################
set anImage $imagedir/${casename}.png
ivtkinit
psphere s 10 15 80 psphere s 10 15 80
ivtkinit
ivtkdisplay s ivtkdisplay s
ivtksetdispmode 1 ivtksetdispmode 1
ivtksetboundingdraw 1 ivtksetboundingdraw 1
ivtkdump $anImage ivtkdump $imagedir/${casename}.png

View File

@ -1,15 +1,11 @@
puts "============" puts "============"
puts "select" puts "select: Tests selection of shapes in the IVtk view"
puts "============" puts "============"
puts "" puts ""
#######################################################
# Tests selection of shapes in the IVtk view
#######################################################
set anImage $imagedir/${casename}.png
ivtkinit
box b 1 1 1 box b 1 1 1
ivtkinit
ivtkdisplay b ivtkdisplay b
ivtkselect 100 100 ivtkselect 100 100
ivtkdump $anImage ivtkdump $imagedir/${casename}.png

View File

@ -1,16 +1,12 @@
puts "============" puts "============"
puts "selection_mode" puts "selection_mode: Tests selection modes changing in the IVtk view"
puts "============" puts "============"
puts "" puts ""
#######################################################
# Tests selection modes changing in the IVtk view
#######################################################
set anImage $imagedir/${casename}.png
ivtkinit
box b 1 1 1 box b 1 1 1
ivtkinit
ivtkdisplay b ivtkdisplay b
ivtksetselmode 2 1 ivtksetselmode 2 1
ivtkselect 86 117 ivtkselect 86 117
ivtkdump $anImage ivtkdump $imagedir/${casename}.png