1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/MeshVS/MeshVS_MeshOwner.cxx
omy d3f26155b5 0024058: Eliminate compiler warning C4702 in MSVC++ with warning level 4
Got rid of most of warnings of C4702 type: unreachable code.
Returned some #ifdef DEB
Fixed tabs formatting
Fixed some mistakes in code
2013-07-12 12:54:01 +04:00

219 lines
7.4 KiB
C++
Executable File

// Created on: 2007-01-25
// Created by: Sergey KOCHETKOV
// Copyright (c) 2007-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#include <MeshVS_MeshOwner.ixx>
#include <SelectBasics_EntityOwner.hxx>
#include <SelectMgr_SelectableObject.hxx>
#include <PrsMgr_PresentationManager3d.hxx>
#include <MeshVS_Mesh.hxx>
#include <TColStd_MapIteratorOfPackedMapOfInteger.hxx>
#ifndef MeshVS_PRSBUILDERHXX
#include <MeshVS_PrsBuilder.hxx>
#endif
//================================================================
// Function : Constructor MeshVS_MeshOwner
// Purpose :
//================================================================
MeshVS_MeshOwner::MeshVS_MeshOwner (const SelectMgr_SOPtr& theSelObj,
const Handle(MeshVS_DataSource)& theDS,
const Standard_Integer thePriority)
: SelectMgr_EntityOwner ( theSelObj, thePriority )
{
myLastID = -1;
if( !theDS.IsNull() )
myDataSource = theDS;
SelectBasics_EntityOwner::Set ( thePriority );
}
//================================================================
// Function : GetDataSource
// Purpose :
//================================================================
const Handle(MeshVS_DataSource)& MeshVS_MeshOwner::GetDataSource () const
{
return myDataSource;
}
//================================================================
// Function : GetSelectedNodes
// Purpose :
//================================================================
const Handle(TColStd_HPackedMapOfInteger)& MeshVS_MeshOwner::GetSelectedNodes () const
{
return mySelectedNodes;
}
//================================================================
// Function : GetSelectedElements
// Purpose :
//================================================================
const Handle(TColStd_HPackedMapOfInteger)& MeshVS_MeshOwner::GetSelectedElements () const
{
return mySelectedElems;
}
//================================================================
// Function : AddSelectedEntities
// Purpose :
//================================================================
void MeshVS_MeshOwner::AddSelectedEntities (const Handle(TColStd_HPackedMapOfInteger)& Nodes,
const Handle(TColStd_HPackedMapOfInteger)& Elems)
{
if( mySelectedNodes.IsNull() )
mySelectedNodes = Nodes;
else if( !Nodes.IsNull() )
mySelectedNodes->ChangeMap().Unite( Nodes->Map() );
if( mySelectedElems.IsNull() )
mySelectedElems = Elems;
else if( !Elems.IsNull() )
mySelectedElems->ChangeMap().Unite( Elems->Map() );
}
//================================================================
// Function : ClearSelectedEntities
// Purpose :
//================================================================
void MeshVS_MeshOwner::ClearSelectedEntities ()
{
mySelectedNodes.Nullify();
mySelectedElems.Nullify();
}
//================================================================
// Function : GetDetectedNodes
// Purpose :
//================================================================
const Handle(TColStd_HPackedMapOfInteger)& MeshVS_MeshOwner::GetDetectedNodes () const
{
return myDetectedNodes;
}
//================================================================
// Function : GetDetectedElements
// Purpose :
//================================================================
const Handle(TColStd_HPackedMapOfInteger)& MeshVS_MeshOwner::GetDetectedElements () const
{
return myDetectedElems;
}
//================================================================
// Function : SetDetectedEntities
// Purpose :
//================================================================
void MeshVS_MeshOwner::SetDetectedEntities (const Handle(TColStd_HPackedMapOfInteger)& Nodes,
const Handle(TColStd_HPackedMapOfInteger)& Elems)
{
myDetectedNodes = Nodes;
myDetectedElems = Elems;
if( State() ) State( 0 );
}
//================================================================
// Function : HilightWithColor
// Purpose :
//================================================================
void MeshVS_MeshOwner::HilightWithColor (const Handle(PrsMgr_PresentationManager3d)& thePM,
const Quantity_NameOfColor theColor,
const Standard_Integer /*theMode*/)
{
Handle( SelectMgr_SelectableObject ) aSelObj;
if ( HasSelectable() )
aSelObj = Selectable();
if ( thePM->IsImmediateModeOn() && aSelObj->IsKind( STANDARD_TYPE( MeshVS_Mesh ) ) )
{
// Update last detected entity ID
Handle(TColStd_HPackedMapOfInteger) aNodes = GetDetectedNodes();
Handle(TColStd_HPackedMapOfInteger) aElems = GetDetectedElements();
if( !aNodes.IsNull() && aNodes->Map().Extent() == 1 )
{
TColStd_MapIteratorOfPackedMapOfInteger anIt( aNodes->Map() );
if( myLastID != anIt.Key() )
{
myLastID = anIt.Key();
}
}
else if( !aElems.IsNull() && aElems->Map().Extent() == 1 )
{
TColStd_MapIteratorOfPackedMapOfInteger anIt( aElems->Map() );
if( myLastID != anIt.Key() )
{
myLastID = anIt.Key();
}
}
// hilight detected entities
Handle( MeshVS_Mesh ) aMesh = Handle( MeshVS_Mesh )::DownCast ( aSelObj );
aMesh->HilightOwnerWithColor ( thePM, theColor, this );
}
}
void MeshVS_MeshOwner::Unhilight(const Handle(PrsMgr_PresentationManager)& thePM,
const Standard_Integer theMode)
{
SelectMgr_EntityOwner::Unhilight( thePM, theMode );
Handle(TColStd_HPackedMapOfInteger) aNodes = GetDetectedNodes();
Handle(TColStd_HPackedMapOfInteger) aElems = GetDetectedElements();
if( ( !aNodes.IsNull() && !aNodes->Map().Contains( myLastID ) ) ||
( !aElems.IsNull() && !aElems->Map().Contains( myLastID ) ) )
return;
// Reset last detected ID
myLastID = -1;
}
Standard_Boolean MeshVS_MeshOwner::IsForcedHilight () const
{
Standard_Boolean aHilight = Standard_True;
Standard_Integer aKey = -1;
if( myLastID > 0 )
{
// Check the detected entity and
// allow to hilight it if it differs from the last detected entity <myLastID>
Handle(TColStd_HPackedMapOfInteger) aNodes = GetDetectedNodes();
if( !aNodes.IsNull() && aNodes->Map().Extent() == 1 )
{
TColStd_MapIteratorOfPackedMapOfInteger anIt( aNodes->Map() );
aKey = anIt.Key();
if( myLastID == aKey )
{
aHilight = Standard_False;
}
}
Handle(TColStd_HPackedMapOfInteger) aElems = GetDetectedElements();
if( !aElems.IsNull() && aElems->Map().Extent() == 1 )
{
TColStd_MapIteratorOfPackedMapOfInteger anIt( aElems->Map() );
aKey = anIt.Key();
if( myLastID == aKey )
{
aHilight = Standard_False;
}
}
}
return aHilight;
}