From e607bd3e6b8ec33bb0cf13422322cd740d203996 Mon Sep 17 00:00:00 2001 From: kgv Date: Fri, 15 Feb 2019 11:27:15 +0300 Subject: [PATCH] 0028488: VIS - fix compilation with VTK 8.2 Occurrences of removed method vtkDataArray::InsertNextTupleValue() have been replaced by InsertNextTypedTuple(). Fixed misprint in vtkTypeMacro usage for class IVtkTools_ShapeObject. Patch #0030452 (SelectMgr_ViewerSelector::Deactivate() raises exception when called twice) has been propagated to IVtkOCC_ViewerSelector. --- src/IVtkOCC/IVtkOCC_ViewerSelector.cxx | 20 ++++++++++++-------- src/IVtkTools/IVtkTools_ShapeObject.hxx | 2 +- src/IVtkVTK/IVtkVTK_ShapeData.cxx | 21 ++++----------------- src/IVtkVTK/IVtkVTK_ShapeData.hxx | 18 ++++++++++++++++++ 4 files changed, 35 insertions(+), 26 deletions(-) diff --git a/src/IVtkOCC/IVtkOCC_ViewerSelector.cxx b/src/IVtkOCC/IVtkOCC_ViewerSelector.cxx index 94804ac517..56d7cc0943 100644 --- a/src/IVtkOCC/IVtkOCC_ViewerSelector.cxx +++ b/src/IVtkOCC/IVtkOCC_ViewerSelector.cxx @@ -193,10 +193,12 @@ void IVtkOCC_ViewerSelector::Activate (const Handle(SelectMgr_Selection)& theSel aSelEntIter.Value()->SetActiveForSelection(); } - theSelection->SetSelectionState (SelectMgr_SOS_Activated); - - myTolerances.Add (theSelection->Sensitivity()); - myToUpdateTolerance = Standard_True; + if (theSelection->GetSelectionState() != SelectMgr_SOS_Activated) + { + theSelection->SetSelectionState (SelectMgr_SOS_Activated); + myTolerances.Add (theSelection->Sensitivity()); + myToUpdateTolerance = Standard_True; + } } //============================================================================ @@ -210,8 +212,10 @@ void IVtkOCC_ViewerSelector::Deactivate (const Handle(SelectMgr_Selection)& theS aSelEntIter.Value()->ResetSelectionActiveStatus(); } - theSelection->SetSelectionState (SelectMgr_SOS_Deactivated); - - myTolerances.Decrement (theSelection->Sensitivity()); - myToUpdateTolerance = Standard_True; + if (theSelection->GetSelectionState() == SelectMgr_SOS_Activated) + { + theSelection->SetSelectionState (SelectMgr_SOS_Deactivated); + myTolerances.Decrement (theSelection->Sensitivity()); + myToUpdateTolerance = Standard_True; + } } diff --git a/src/IVtkTools/IVtkTools_ShapeObject.hxx b/src/IVtkTools/IVtkTools_ShapeObject.hxx index 34753a1614..4624f84f97 100644 --- a/src/IVtkTools/IVtkTools_ShapeObject.hxx +++ b/src/IVtkTools/IVtkTools_ShapeObject.hxx @@ -50,7 +50,7 @@ class IVtkTools_ShapeDataSource; class Standard_EXPORT IVtkTools_ShapeObject : public vtkDataObject { public: - vtkTypeMacro (IVtkTools_ShapeObject, vtkObject) + vtkTypeMacro (IVtkTools_ShapeObject, vtkDataObject) static IVtkTools_ShapeObject* New(); diff --git a/src/IVtkVTK/IVtkVTK_ShapeData.cxx b/src/IVtkVTK/IVtkVTK_ShapeData.cxx index bf2d63e2bd..97b10daa2b 100644 --- a/src/IVtkVTK/IVtkVTK_ShapeData.cxx +++ b/src/IVtkVTK/IVtkVTK_ShapeData.cxx @@ -22,7 +22,6 @@ #include #include #include -#include #include #include #ifdef _MSC_VER @@ -80,10 +79,7 @@ void IVtkVTK_ShapeData::InsertVertex (const IVtk_IdType theShapeID, { vtkIdType aPointIdVTK = thePointId; myPolyData->InsertNextCell (VTK_VERTEX, 1, &aPointIdVTK); - const vtkIdType aShapeIDVTK = theShapeID; - mySubShapeIDs->InsertNextTupleValue (&aShapeIDVTK); - const vtkIdType aType = theMeshType; - myMeshTypes->InsertNextTupleValue (&aType); + insertNextSubShapeId (theShapeID, theMeshType); } //================================================================ @@ -97,10 +93,7 @@ void IVtkVTK_ShapeData::InsertLine (const IVtk_IdType theShapeID, { vtkIdType aPoints[2] = { thePointId1, thePointId2 }; myPolyData->InsertNextCell (VTK_LINE, 2, aPoints); - const vtkIdType aShapeIDVTK = theShapeID; - mySubShapeIDs->InsertNextTupleValue (&aShapeIDVTK); - const vtkIdType aType = theMeshType; - myMeshTypes->InsertNextTupleValue (&aType); + insertNextSubShapeId (theShapeID, theMeshType); } //================================================================ @@ -124,10 +117,7 @@ void IVtkVTK_ShapeData::InsertLine (const IVtk_IdType theShapeID, } myPolyData->InsertNextCell (VTK_POLY_LINE, anIdList); - const vtkIdType aShapeIDVTK = theShapeID; - mySubShapeIDs->InsertNextTupleValue (&aShapeIDVTK); - const vtkIdType aType = theMeshType; - myMeshTypes->InsertNextTupleValue (&aType); + insertNextSubShapeId (theShapeID, theMeshType); } } @@ -143,8 +133,5 @@ void IVtkVTK_ShapeData::InsertTriangle (const IVtk_IdType theShapeID, { vtkIdType aPoints[3] = { thePointId1, thePointId2, thePointId3 }; myPolyData->InsertNextCell (VTK_TRIANGLE, 3, aPoints); - const vtkIdType aShapeIDVTK = theShapeID; - mySubShapeIDs->InsertNextTupleValue (&aShapeIDVTK); - const vtkIdType aType = theMeshType; - myMeshTypes->InsertNextTupleValue (&aType); + insertNextSubShapeId (theShapeID, theMeshType); } diff --git a/src/IVtkVTK/IVtkVTK_ShapeData.hxx b/src/IVtkVTK/IVtkVTK_ShapeData.hxx index cb9fa37f8b..04ceac3371 100644 --- a/src/IVtkVTK/IVtkVTK_ShapeData.hxx +++ b/src/IVtkVTK/IVtkVTK_ShapeData.hxx @@ -24,6 +24,7 @@ #endif #include #include +#include #ifdef _MSC_VER #pragma warning(pop) #endif @@ -105,6 +106,23 @@ public: //! @name Specific methods vtkPolyData* getVtkPolyData() const { return myPolyData; } +private: + + //! Wrapper over vtkGenericDataArray::InsertNextTypedTuple(). + void insertNextSubShapeId (IVtk_IdType theShapeID, + IVtk_MeshType theMeshType) + { + const vtkIdType aShapeIDVTK = theShapeID; + const vtkIdType aType = theMeshType; + #if (VTK_MAJOR_VERSION > 7) || (VTK_MAJOR_VERSION == 7 && VTK_MINOR_VERSION >= 1) + mySubShapeIDs->InsertNextTypedTuple (&aShapeIDVTK); + myMeshTypes->InsertNextTypedTuple (&aType); + #else + mySubShapeIDs->InsertNextTupleValue (&aShapeIDVTK); + myMeshTypes->InsertNextTupleValue (&aType); + #endif + } + private: vtkSmartPointer< vtkPolyData > myPolyData; //!< Shape geometry as vtkPolyData vtkSmartPointer< vtkIdTypeArray > mySubShapeIDs; //!< Array of sub-shapes ids