1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/TPrsStd/TPrsStd_AISPresentation.cxx

1078 lines
32 KiB
C++

// Created on: 1998-09-30
// Created by: Sergey RUIN
// Copyright (c) 1998-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <AIS_InteractiveContext.hxx>
#include <AIS_InteractiveObject.hxx>
#include <Standard_NullObject.hxx>
#include <Standard_NoMoreObject.hxx>
#include <TDF_AttributeDelta.hxx>
#include <TDF_DefaultDeltaOnModification.hxx>
#include <TDF_DefaultDeltaOnRemoval.hxx>
#include <TDF_DeltaOnAddition.hxx>
#include <TDF_Label.hxx>
#include <TDF_RelocationTable.hxx>
#include <TDF_Tool.hxx>
#include <TPrsStd_AISPresentation.hxx>
#include <TColStd_ListOfInteger.hxx>
#include <TDataXtd_Presentation.hxx>
#include <TPrsStd_AISViewer.hxx>
#include <TPrsStd_DriverTable.hxx>
IMPLEMENT_STANDARD_RTTIEXT(TPrsStd_AISPresentation,TDF_Attribute)
#define NO_MORE_OBJECT "TPrsStd_AISPresentation has no associated TDataXtd_PresentationData"
//=======================================================================
//function : TPrsStd_AISPresentation
//purpose : Constructor
//=======================================================================
TPrsStd_AISPresentation::TPrsStd_AISPresentation ()
{
}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
Handle(TPrsStd_AISPresentation) TPrsStd_AISPresentation::Set
( const TDF_Label& theLabel, const Standard_GUID& theDriver )
{
Handle(TPrsStd_AISPresentation) aPresentation;
// create associated data (unless already there)
Handle(TDataXtd_Presentation) aData = TDataXtd_Presentation::Set (theLabel, theDriver);
if(aData.IsNull())
throw Standard_NoMoreObject(NO_MORE_OBJECT);
if ( !theLabel.FindAttribute(TPrsStd_AISPresentation::GetID(), aPresentation) )
{
aPresentation = new TPrsStd_AISPresentation();
theLabel.AddAttribute(aPresentation, Standard_True);
}
return aPresentation;
}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
Handle(TPrsStd_AISPresentation) TPrsStd_AISPresentation::Set(const Handle(TDF_Attribute)& theMaster)
{
return TPrsStd_AISPresentation::Set(theMaster->Label(), theMaster->ID());
}
//=======================================================================
//function : Unset
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::Unset (const TDF_Label& theLabel)
{
Handle(TPrsStd_AISPresentation) aPresentation;
if ( theLabel.FindAttribute(TPrsStd_AISPresentation::GetID(), aPresentation) )
theLabel.ForgetAttribute(aPresentation);
// remove associated data
TDataXtd_Presentation::Unset (theLabel);
}
//=======================================================================
//function : getData
//purpose :
//=======================================================================
Handle(TDataXtd_Presentation) TPrsStd_AISPresentation::getData () const
{
Handle(TDataXtd_Presentation) aData;
if (!Label().FindAttribute(TDataXtd_Presentation::GetID(), aData))
throw Standard_NoMoreObject(NO_MORE_OBJECT);
return aData;
}
//=======================================================================
//function : GetID
//purpose :
//=======================================================================
const Standard_GUID& TPrsStd_AISPresentation::GetID()
{
static Standard_GUID TPrsStd_AISPresentationID("3680ac6c-47ae-4366-bb94-26abb6e07341");
return TPrsStd_AISPresentationID;
}
//=======================================================================
//function : Display
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::Display(const Standard_Boolean theIsUpdate)
{
if ( theIsUpdate || myAIS.IsNull() )
AISUpdate();
AISDisplay();
}
//=======================================================================
//function : Erase
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::Erase(const Standard_Boolean theIsRemove)
{
if ( IsDisplayed() || theIsRemove)
{
AISErase(theIsRemove);
}
}
//=======================================================================
//function : Update
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::Update()
{
AISUpdate();
}
//=======================================================================
//function : IsDisplayed
//purpose :
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::IsDisplayed() const
{
return getData()->IsDisplayed();
}
//=======================================================================
//function : SetDisplayed
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::SetDisplayed(const Standard_Boolean theIsDisplayed)
{
// this method can be called by AISUpdate() in the process of removal,
// while data attribute may be already removed
Backup();
getData()->SetDisplayed(theIsDisplayed);
}
//=======================================================================
//function :SetDriverGUID
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::SetDriverGUID(const Standard_GUID& theGUID)
{
Backup();
getData()->SetDriverGUID (theGUID);
}
//=======================================================================
//function :GetDriverGUID
//purpose :
//=======================================================================
Standard_GUID TPrsStd_AISPresentation::GetDriverGUID() const
{
return getData()->GetDriverGUID();
}
//=======================================================================
//function :Material
//purpose :
//=======================================================================
Graphic3d_NameOfMaterial TPrsStd_AISPresentation::Material() const
{
return (Graphic3d_NameOfMaterial)getData()->MaterialIndex();
}
//=======================================================================
//function :HasMaterial
//purpose :
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::HasOwnMaterial() const
{
return getData()->HasOwnMaterial();
}
//=======================================================================
//function : UnsetMaterial
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::UnsetMaterial()
{
if ( !getData()->HasOwnMaterial() && !myAIS.IsNull() && !myAIS->HasMaterial() )
return;
getData()->UnsetMaterial();
if ( myAIS.IsNull() )
AISUpdate();
if ( !myAIS.IsNull() && myAIS->HasMaterial() )
{
Handle(AIS_InteractiveContext) aContext = getAISContext();
if ( !aContext.IsNull() )
aContext->UnsetMaterial(myAIS, Standard_False);
else
myAIS->UnsetMaterial();
}
}
//=======================================================================
//function : SetMaterial
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::SetMaterial(const Graphic3d_NameOfMaterial theName)
{
Backup();
if ( getData()->HasOwnMode() && getData()->MaterialIndex() == theName )
if ( !myAIS.IsNull() && myAIS->HasMaterial() && myAIS->Material() == theName )
return;
getData()->SetMaterialIndex(theName);
if ( myAIS.IsNull() )
AISUpdate();
if ( !myAIS.IsNull() )
{
if ( myAIS->HasMaterial() && myAIS->Material() == theName )
return; // AIS has already had that material
Handle(AIS_InteractiveContext) aContext = getAISContext();
if ( !aContext.IsNull() )
aContext->SetMaterial(myAIS, theName, Standard_False);
else
myAIS->SetMaterial(theName);
}
}
//=======================================================================
//function :Transparency
//purpose :
//=======================================================================
Standard_Real TPrsStd_AISPresentation::Transparency() const
{
return getData()->Transparency();
}
//=======================================================================
//function :SetTransparency
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::SetTransparency(const Standard_Real theValue)
{
Backup();
if (getData()->HasOwnTransparency() && getData()->Transparency() == theValue)
if ( !myAIS.IsNull() && myAIS->Transparency() == theValue )
return;
getData()->SetTransparency(theValue);
if ( myAIS.IsNull() )
AISUpdate();
if ( !myAIS.IsNull() )
{
if ( myAIS->Transparency() == theValue )
return; // AIS has already had that transparency
Handle(AIS_InteractiveContext) aContext = getAISContext();
if ( !aContext.IsNull() )
aContext->SetTransparency(myAIS, theValue, Standard_False);
else
myAIS->SetTransparency(theValue);
}
}
//=======================================================================
//function :UnsetTransparency
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::UnsetTransparency()
{
if (!getData()->HasOwnTransparency())
return;
getData()->UnsetTransparency();
if ( myAIS.IsNull() )
AISUpdate();
if ( !myAIS.IsNull() )
{
Handle(AIS_InteractiveContext) aContext = getAISContext();
if( !aContext.IsNull() )
aContext->UnsetTransparency(myAIS, Standard_False);
else
myAIS->UnsetTransparency();
}
}
//=======================================================================
//function : HasTransparency
//purpose :
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::HasOwnTransparency() const
{
return getData()->HasOwnTransparency();
}
//=======================================================================
//function : Color
//purpose :
//=======================================================================
Quantity_NameOfColor TPrsStd_AISPresentation::Color() const
{
return getData()->Color();
}
//=======================================================================
//function : HasOwnColor
//purpose :
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::HasOwnColor() const
{
return getData()->HasOwnColor();
}
//=======================================================================
//function : UnsetColor
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::UnsetColor()
{
if (!getData()->HasOwnColor() && ! myAIS.IsNull() && !myAIS->HasColor())
return;
getData()->UnsetColor();
if ( myAIS.IsNull() )
AISUpdate();
if ( !myAIS.IsNull() && myAIS->HasColor() )
{
Handle(AIS_InteractiveContext) aContext = getAISContext();
if ( !aContext.IsNull() )
aContext->UnsetColor(myAIS, Standard_False);
else
myAIS->UnsetColor();
}
}
//=======================================================================
//function : SetColor
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::SetColor(const Quantity_NameOfColor theColor)
{
Backup();
if ( getData()->HasOwnColor() && getData()->Color() == theColor )
{
if (!myAIS.IsNull() && myAIS->HasColor())
{
Quantity_Color aColor;
myAIS->Color (aColor);
if (aColor.Name() == theColor)
{
return;
}
}
}
getData()->SetColor(theColor);
if ( myAIS.IsNull() )
AISUpdate();
if ( !myAIS.IsNull() )
{
if (myAIS->HasColor())
{
Quantity_Color aColor;
myAIS->Color (aColor);
if (aColor.Name() == theColor)
{
return; // AIS has already had that color
}
}
Handle(AIS_InteractiveContext) aContext = getAISContext();
if( !aContext.IsNull() )
aContext->SetColor(myAIS, theColor, Standard_False);
else
myAIS->SetColor(theColor);
}
}
//=======================================================================
//function :Width
//purpose :
//=======================================================================
Standard_Real TPrsStd_AISPresentation::Width() const
{
return getData()->Width();
}
//=======================================================================
//function : HasWidth
//purpose :
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::HasOwnWidth() const
{
return getData()->HasOwnWidth();
}
//=======================================================================
//function : SetWidth
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::SetWidth(const Standard_Real theWidth)
{
Backup();
if ( getData()->HasOwnWidth() && getData()->Width() == theWidth )
if ( !myAIS.IsNull() && myAIS->HasWidth() && myAIS->Width() == theWidth )
return;
getData()->SetWidth(theWidth);
if( !myAIS.IsNull() )
{
if ( myAIS->HasWidth() && myAIS->Width() == theWidth )
return; // AIS has already had that width
Handle(AIS_InteractiveContext) aContext = getAISContext();
if( !aContext.IsNull() )
aContext->SetWidth(myAIS, theWidth, Standard_False);
else
myAIS->SetWidth(theWidth);
}
}
//=======================================================================
//function : UnsetWidth
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::UnsetWidth()
{
if ( !getData()->HasOwnWidth() )
if ( !myAIS.IsNull() && !myAIS->HasWidth() )
return;
getData()->UnsetWidth();
if( myAIS.IsNull() )
AISUpdate();
if ( !myAIS.IsNull() && myAIS->HasWidth() )
{
Handle(AIS_InteractiveContext) aContext = getAISContext();
if ( !aContext.IsNull() )
aContext->UnsetWidth(myAIS, Standard_False);
else
myAIS->UnsetWidth();
}
}
//=======================================================================
//function : Mode
//purpose :
//=======================================================================
Standard_Integer TPrsStd_AISPresentation::Mode() const
{
return getData()->Mode();
}
//=======================================================================
//function : HasOwnMode
//purpose :
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::HasOwnMode() const
{
return getData()->HasOwnMode();
}
//=======================================================================
//function : SetMode
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::SetMode(const Standard_Integer theMode)
{
Backup();
if ( getData()->HasOwnMode() && getData()->Mode() == theMode )
if ( !myAIS.IsNull() && myAIS->DisplayMode() == theMode )
return;
getData()->SetMode(theMode);
if ( myAIS.IsNull() )
AISUpdate();
if ( !myAIS.IsNull() )
{
if ( myAIS->DisplayMode() == theMode )
return; // AIS has already had that mode
Handle(AIS_InteractiveContext) aContext = getAISContext();
if( !aContext.IsNull() )
aContext->SetDisplayMode(myAIS, theMode, Standard_False);
else
myAIS->SetDisplayMode(theMode);
}
}
//=======================================================================
//function : UnsetMode
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::UnsetMode()
{
if ( !getData()->HasOwnMode() )
if ( !myAIS.IsNull() && !myAIS->HasDisplayMode() )
return;
getData()->UnsetMode();
if ( myAIS.IsNull() )
AISUpdate();
if( !myAIS.IsNull() && myAIS->HasDisplayMode() )
{
Handle(AIS_InteractiveContext) aContext = getAISContext();
if ( !aContext.IsNull() )
aContext->UnsetDisplayMode(myAIS, Standard_False);
else
myAIS->UnsetDisplayMode();
}
}
//=======================================================================
//function : GetNbSelectionModes
//purpose : Returns selection mode(s) of the attribute.
// : It starts with 1 .. GetNbSelectionModes().
//=======================================================================
Standard_Integer TPrsStd_AISPresentation::GetNbSelectionModes() const
{
return getData()->GetNbSelectionModes();
}
//=======================================================================
//function : SelectionMode
//purpose :
//=======================================================================
Standard_Integer TPrsStd_AISPresentation::SelectionMode(const Standard_Integer index) const
{
return getData()->SelectionMode(index);
}
//=======================================================================
//function : HasOwnSelectionMode
//purpose :
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::HasOwnSelectionMode() const
{
return getData()->HasOwnSelectionMode();
}
//=======================================================================
//function : SetSelectionMode
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::SetSelectionMode(const Standard_Integer theSelectionMode, const Standard_Boolean theTransaction)
{
if (theTransaction)
Backup();
getData()->SetSelectionMode (theSelectionMode, theTransaction);
if ( myAIS.IsNull() )
AISUpdate();
else
ActivateSelectionMode();
}
//=======================================================================
//function : AddSelectionMode
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::AddSelectionMode(const Standard_Integer theSelectionMode, const Standard_Boolean theTransaction)
{
if (theTransaction)
Backup();
getData()->AddSelectionMode (theSelectionMode, theTransaction);
if (myAIS.IsNull())
AISUpdate();
else
ActivateSelectionMode();
}
//=======================================================================
//function : UnsetSelectionMode
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::UnsetSelectionMode()
{
getData()->UnsetSelectionMode();
AISUpdate();
}
//=======================================================================
//function : ID
//purpose :
//=======================================================================
const Standard_GUID& TPrsStd_AISPresentation::ID() const
{
return GetID();
}
//=======================================================================
//function : BackupCopy
//purpose :
//=======================================================================
Handle(TDF_Attribute) TPrsStd_AISPresentation::BackupCopy() const
{
return new TPrsStd_AISPresentation;
}
//=======================================================================
//function : NewEmpty
//purpose :
//=======================================================================
Handle(TDF_Attribute) TPrsStd_AISPresentation::NewEmpty() const
{
return new TPrsStd_AISPresentation();
}
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::Restore(const Handle(TDF_Attribute)& /*theWith*/)
{
myAIS.Nullify();
}
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::Paste (const Handle(TDF_Attribute)& theInto,
const Handle(TDF_RelocationTable)& ) const
{
Handle(TPrsStd_AISPresentation) anInto =
Handle(TPrsStd_AISPresentation)::DownCast(theInto);
anInto->Backup();
if (!anInto->myAIS.IsNull())
{
// Save displayed flag.
Standard_Boolean displayed = anInto->IsDisplayed();
// Erase the interactive object.
anInto->AISErase(Standard_True);
// Restore the displayed flag.
if (displayed)
anInto->SetDisplayed(displayed);
}
// Nullify the interactive object.
// It will be restored on the next call to AISUpdate().
anInto->myAIS.Nullify();
}
//=======================================================================
//function : AfterAddition
//purpose : erase if displayed
//=======================================================================
void TPrsStd_AISPresentation::AfterAddition()
{
AfterResume();
}
//=======================================================================
//function : BeforeRemoval
//purpose : erase if displayed
//=======================================================================
void TPrsStd_AISPresentation::BeforeRemoval()
{
BeforeForget();
}
//=======================================================================
//function : BeforeForget
//purpose : erase if displayed
//=======================================================================
void TPrsStd_AISPresentation::BeforeForget()
{
if ( !myAIS.IsNull() )
{ // Remove AISObject from context.
AISErase(Standard_True);
myAIS.Nullify();
}
}
//=======================================================================
//function : AfterResume
//purpose : display if displayed
//=======================================================================
void TPrsStd_AISPresentation::AfterResume()
{
if ( IsDisplayed() )
{
AISUpdate();
AISDisplay();
}
else
AISErase();
}
//=======================================================================
//function : BeforeUndo
//purpose : le NamedShape associe doit etre present
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::BeforeUndo (const Handle(TDF_AttributeDelta)& AD,
const Standard_Boolean )
{
Handle(TPrsStd_AISPresentation) P;
AD->Label().FindAttribute(TPrsStd_AISPresentation::GetID(), P);
if (AD->IsKind(STANDARD_TYPE(TDF_DeltaOnAddition)))
{
if ( !P.IsNull() )
P->BeforeForget();
}
else if (AD->IsKind(STANDARD_TYPE(TDF_DefaultDeltaOnRemoval))) {
}
else if (AD->IsKind(STANDARD_TYPE(TDF_DefaultDeltaOnModification)))
{
if ( !P.IsNull() )
P->BeforeForget();
}
return Standard_True;
}
//=======================================================================
//function : AfterUndo
//purpose : le NamedShape associe doit etre present
//=======================================================================
Standard_Boolean TPrsStd_AISPresentation::AfterUndo (const Handle(TDF_AttributeDelta)& AD,
const Standard_Boolean )
{
Handle(TPrsStd_AISPresentation) P;
AD->Label().FindAttribute(TPrsStd_AISPresentation::GetID(), P);
if (AD->IsKind(STANDARD_TYPE(TDF_DeltaOnAddition)))
{}
else if (AD->IsKind(STANDARD_TYPE(TDF_DefaultDeltaOnRemoval)))
{
if ( !P.IsNull() )
P->AfterAddition();
}
else if (AD->IsKind(STANDARD_TYPE(TDF_DefaultDeltaOnModification)))
{
if ( !P.IsNull() )
P->AfterResume();
}
return Standard_True;
}
//=======================================================================
//function : AISUpdate
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::AISUpdate()
{
Backup();
getData()->Backup();
Handle(AIS_InteractiveContext) aContext;
if ( !Label().IsNull() )
{
aContext = getAISContext();
Handle(TPrsStd_Driver) aDriver;
if ( TPrsStd_DriverTable::Get()->FindDriver(GetDriverGUID(), aDriver) )
{
// Build a new AIS.
if ( myAIS.IsNull() )
{
Handle(AIS_InteractiveObject) aNewObj;
if ( aDriver->Update(Label(), aNewObj) )
{
myAIS = aNewObj;
aNewObj->SetOwner(this);
}
}
else
{
Handle(AIS_InteractiveObject) anObj = myAIS;
if ( aDriver->Update(Label(), anObj) )
if ( !(anObj == myAIS) )
{
if ( !aContext.IsNull() )
aContext->Remove (myAIS, Standard_False);
// Driver has built new AIS.
myAIS = anObj;
anObj->SetOwner(this);
}
}
}
}
else return;
// Apply the visualization settings.
if ( !myAIS.IsNull() )
{
if ( HasOwnColor() )
{
Quantity_NameOfColor aColor = Color();
Quantity_Color aPrsColor;
myAIS->Color (aPrsColor);
if ( !(myAIS->HasColor()) || (myAIS->HasColor() && aPrsColor.Name() != aColor) )
{
if ( !aContext.IsNull() )
aContext->SetColor(myAIS, aColor, Standard_False);
else
myAIS->SetColor(aColor);
}
}
if ( HasOwnMaterial() )
{
Graphic3d_NameOfMaterial aMaterial = Material();
if ( !(myAIS->HasMaterial()) || (myAIS->HasMaterial() && myAIS->Material() != aMaterial) )
{
if ( !aContext.IsNull() )
aContext->SetMaterial(myAIS, aMaterial, Standard_False );
else
myAIS->SetMaterial(aMaterial);
}
}
if ( HasOwnTransparency() )
{
const Standard_Real aTransparency = Transparency();
if ( myAIS->Transparency() != aTransparency )
{
if( !aContext.IsNull() )
aContext->SetTransparency(myAIS, aTransparency, Standard_False);
else
myAIS->SetTransparency(aTransparency);
}
}
if ( HasOwnWidth() )
{
const Standard_Real aWidth = Width();
if ( !(myAIS->HasWidth()) || (myAIS->HasWidth() && myAIS->Width() != aWidth) )
{
if ( !aContext.IsNull() )
aContext->SetWidth(myAIS, aWidth, Standard_False);
else
myAIS->SetWidth(aWidth);
}
}
if ( HasOwnMode() )
{
const Standard_Integer aMode = Mode();
if ( myAIS->DisplayMode() != aMode )
myAIS->SetDisplayMode(aMode);
}
ActivateSelectionMode();
}
if (IsDisplayed() && !aContext.IsNull())
aContext->Redisplay(myAIS, Standard_False);
}
//=======================================================================
//function : AISDisplay
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::AISDisplay()
{
if ( !Label().IsNull() )
{
Handle(AIS_InteractiveContext) aContext = getAISContext();
if ( aContext.IsNull() )
return;
if ( !myAIS.IsNull() )
{
if ( !(myAIS->GetContext()).IsNull() && (myAIS->GetContext()) != aContext )
myAIS->GetContext()->Remove (myAIS, Standard_False);
if ( IsDisplayed() && aContext->IsDisplayed(myAIS) )
return;
aContext->Display(myAIS, Standard_False);
if ( aContext->IsDisplayed(myAIS) )
SetDisplayed(Standard_True);
}
}
}
//=======================================================================
//function : AISErase
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::AISErase(const Standard_Boolean theIsRemove)
{
Handle(AIS_InteractiveContext) aContext, anOwnContext;
if ( !myAIS.IsNull() )
{
Backup();
if ( !Label().IsNull() )
{
if (IsAttribute(TDataXtd_Presentation::GetID()))
SetDisplayed(Standard_False);
Handle(TPrsStd_AISViewer) viewer;
if( !TPrsStd_AISViewer::Find(Label(), viewer) )
return;
anOwnContext = myAIS->GetContext();
aContext = viewer->GetInteractiveContext();
if ( theIsRemove )
{
if ( !aContext.IsNull() )
aContext->Remove(myAIS, Standard_False);
if ( !anOwnContext.IsNull() && anOwnContext != aContext )
anOwnContext->Remove(myAIS, Standard_False);
myAIS.Nullify();
}
else
{
if ( !aContext.IsNull() )
aContext->Erase(myAIS, Standard_False);
if ( !anOwnContext.IsNull() && anOwnContext != aContext )
anOwnContext->Erase(myAIS, Standard_False);
}
}
else
{
if ( theIsRemove )
{
if ( !anOwnContext.IsNull() )
{
anOwnContext->Remove(myAIS, Standard_False);
myAIS.Nullify();
}
}
else
if( !anOwnContext.IsNull() )
anOwnContext->Erase(myAIS, Standard_False);
}
}
}
//=======================================================================
//function :GetAIS
//purpose :
//=======================================================================
Handle(AIS_InteractiveObject) TPrsStd_AISPresentation::GetAIS() const
{
return myAIS;
}
//=======================================================================
//function : getAISContext
//purpose :
//=======================================================================
Handle(AIS_InteractiveContext) TPrsStd_AISPresentation::getAISContext() const
{
Handle(TPrsStd_AISViewer) aViewer;
if ( TPrsStd_AISViewer::Find(Label(), aViewer) )
return aViewer->GetInteractiveContext();
return Handle_AIS_InteractiveContext();
}
//=======================================================================
//function : ActivateSelectionMode
//purpose : Activates selection mode of the interactive object.
// It is called internally on change of selection mode and AISUpdate().
//=======================================================================
void TPrsStd_AISPresentation::ActivateSelectionMode()
{
if (!myAIS.IsNull() && HasOwnSelectionMode())
{
Handle(AIS_InteractiveContext) aContext = getAISContext();
if (!aContext.IsNull())
{
TColStd_ListOfInteger anActivatedModes;
aContext->ActivatedModes (myAIS, anActivatedModes);
Standard_Integer nbSelModes = GetNbSelectionModes();
if (nbSelModes == 1)
{
Standard_Boolean isActivated = Standard_False;
Standard_Integer aSelectionMode = SelectionMode();
if (aSelectionMode == -1)
{
aContext->Deactivate(myAIS);
}
else
{
for (TColStd_ListIteratorOfListOfInteger aModeIter(anActivatedModes); aModeIter.More(); aModeIter.Next())
{
if (aModeIter.Value() == aSelectionMode)
{
isActivated = Standard_True;
break;
}
}
if (!isActivated)
aContext->SetSelectionModeActive(myAIS, aSelectionMode, Standard_True, AIS_SelectionModesConcurrency_Multiple);
}
}
else
{
for (Standard_Integer iSelMode = 1; iSelMode <= nbSelModes; iSelMode++)
{
const Standard_Integer aSelectionMode = SelectionMode (iSelMode);
aContext->SetSelectionModeActive (myAIS, aSelectionMode, Standard_True/*activate*/,
iSelMode == 1 ? AIS_SelectionModesConcurrency_Single : AIS_SelectionModesConcurrency_Multiple);
}
}
}
}
}
//=======================================================================
//function : DumpJson
//purpose :
//=======================================================================
void TPrsStd_AISPresentation::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
{
OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
OCCT_DUMP_BASE_CLASS (theOStream, theDepth, TDF_Attribute)
OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myAIS.get())
}