Fix Break Link called from TUI

This commit is contained in:
eap 2020-02-14 14:16:51 +03:00
parent 77a0ffa4a1
commit 788e2d8114
3 changed files with 58 additions and 33 deletions

View File

@ -731,6 +731,25 @@ void SMESH_Gen_i::UpdateStudy()
} }
} }
//================================================================================
/*!
* \brief Return true if mesh has ICON_SMESH_TREE_GEOM_MODIF icon
*/
//================================================================================
bool SMESH_Gen_i::isGeomModifIcon( SMESH::SMESH_Mesh_ptr mesh )
{
SALOMEDS::SObject_wrap so = ObjectToSObject( mesh );
SALOMEDS::GenericAttribute_wrap attr;
if ( ! so->_is_nil() && so->FindAttribute( attr.inout(), "AttributePixMap" ))
{
SALOMEDS::AttributePixMap_wrap pm = attr;
CORBA::String_var ico = pm->GetPixMap();
return ( strcmp( ico.in(), "ICON_SMESH_TREE_GEOM_MODIF" ) == 0 );
}
return false;
}
//================================================================================= //=================================================================================
// function : hasObjectInfo() // function : hasObjectInfo()
// purpose : shows if module provides information for its objects // purpose : shows if module provides information for its objects
@ -756,19 +775,10 @@ char* SMESH_Gen_i::getObjectInfo( const char* entry )
SALOMEDS::SObject_wrap so = getStudyServant()->FindObjectID( entry ); SALOMEDS::SObject_wrap so = getStudyServant()->FindObjectID( entry );
CORBA::Object_var obj = SObjectToObject( so ); CORBA::Object_var obj = SObjectToObject( so );
SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj ); SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
if ( !mesh->_is_nil() ) if ( isGeomModifIcon( mesh ))
{
SALOMEDS::GenericAttribute_wrap attr;
if ( so->FindAttribute( attr.inout(), "AttributePixMap" ))
{
SALOMEDS::AttributePixMap_wrap pm = attr;
CORBA::String_var ico = pm->GetPixMap();
if ( strcmp( ico.in(), "ICON_SMESH_TREE_GEOM_MODIF" ) == 0 )
{ {
txt << "The geometry was changed and the mesh needs to be recomputed"; txt << "The geometry was changed and the mesh needs to be recomputed";
} }
}
}
if ( txt.empty() ) if ( txt.empty() )
{ {
@ -2019,10 +2029,11 @@ CORBA::Boolean SMESH_Gen_i::Compute( SMESH::SMESH_Mesh_ptr theMesh,
SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh ); SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh );
ASSERT( meshServant ); ASSERT( meshServant );
if ( meshServant ) { if ( meshServant ) {
if ( isGeomModifIcon( theMesh ))
meshServant->Clear();
else
meshServant->Load(); meshServant->Load();
// NPAL16168: "geometrical group edition from a submesh don't modify mesh computation" // NPAL16168: "geometrical group edition from a submesh don't modify mesh computation"
// Clear meshy because it was not cleared in CheckGeomModif of previous call
meshServant->Clear();
meshServant->CheckGeomModif(); meshServant->CheckGeomModif();
// get local TopoDS_Shape // get local TopoDS_Shape
TopoDS_Shape myLocShape; TopoDS_Shape myLocShape;

View File

@ -634,6 +634,9 @@ private:
SMESH::SMESH_Mesh_ptr createMesh() SMESH::SMESH_Mesh_ptr createMesh()
throw ( SALOME::SALOME_Exception ); throw ( SALOME::SALOME_Exception );
// Check mesh icon
bool isGeomModifIcon( SMESH::SMESH_Mesh_ptr mesh );
// Create a sub-mesh on a geometry that is not a sub-shape of the main shape // Create a sub-mesh on a geometry that is not a sub-shape of the main shape
// for the case where a valid sub-shape not found by CopyMeshWithGeom() // for the case where a valid sub-shape not found by CopyMeshWithGeom()
SMESH::SMESH_subMesh_ptr createInvalidSubMesh( SMESH::SMESH_Mesh_ptr mesh, SMESH::SMESH_subMesh_ptr createInvalidSubMesh( SMESH::SMESH_Mesh_ptr mesh,

View File

@ -270,25 +270,30 @@ void SMESH_Mesh_i::ReplaceShape(GEOM::GEOM_Object_ptr theNewGeom)
geomClient->RemoveShapeFromBuffer(aIOR); geomClient->RemoveShapeFromBuffer(aIOR);
} }
// update the reference to theNewGeom (needed for correct execution of a dumped python script)
SMESH::SMESH_Mesh_var me = _this();
SALOMEDS::SObject_wrap aSO = _gen_i->ObjectToSObject( me );
CORBA::String_var entry = theNewGeom->GetStudyEntry();
if ( !aSO->_is_nil() )
{
SALOMEDS::SObject_wrap aShapeRefSO;
if ( aSO->FindSubObject( _gen_i->GetRefOnShapeTag(), aShapeRefSO.inout() ))
{
SALOMEDS::SObject_wrap aShapeSO = _gen_i->getStudyServant()->FindObjectID( entry );
SALOMEDS::StudyBuilder_var builder = _gen_i->getStudyServant()->NewBuilder();
builder->Addreference( aShapeRefSO, aShapeSO );
}
}
// re-assign global hypotheses to the new shape // re-assign global hypotheses to the new shape
_mainShapeTick = -1; _mainShapeTick = -1;
CheckGeomModif( true ); CheckGeomModif( true );
// update the reference to theNewGeom (needed for correct execution of a dumped python script)
SALOMEDS::SObject_var aSO = _gen_i->ObjectToSObject(_this());
if (!aSO->_is_nil()) {
SALOMEDS::SObject_var aShapeRefSO;
if (aSO->FindSubObject(1, aShapeRefSO)) {
_gen_i->getStudyServant()->NewBuilder()->Addreference(
aShapeRefSO, _gen_i->getStudyServant()->FindObjectID(theNewGeom->GetStudyEntry()));
}
}
TPythonDump() << SMESH::SMESH_Mesh_var(_this()) << ".ReplaceShape( "
<< theNewGeom->GetStudyEntry() << " )";
TPythonDump() << "SHAPERSTUDY.breakLinkForSubElements(salome.ObjectToSObject(" TPythonDump() << "SHAPERSTUDY.breakLinkForSubElements(salome.ObjectToSObject("
<< SMESH::SMESH_Mesh_var(_this()) <<".GetMesh()), " << theNewGeom->GetStudyEntry() << ")"; << me <<".GetMesh()), " << entry.in() << ")";
TPythonDump() << me << ".ReplaceShape( " << entry.in() << " )";
} }
//================================================================================ //================================================================================
@ -2077,6 +2082,8 @@ TopoDS_Shape SMESH_Mesh_i::newGroupShape( TGeomGroupData & groupData, int how )
CORBA::Object_var geomObj = _gen_i->SObjectToObject( geomSO ); CORBA::Object_var geomObj = _gen_i->SObjectToObject( geomSO );
GEOM::GEOM_Object_var geom = GEOM::GEOM_Object::_narrow( geomObj ); GEOM::GEOM_Object_var geom = GEOM::GEOM_Object::_narrow( geomObj );
newShape = _gen_i->GeomObjectToShape( geom ); newShape = _gen_i->GeomObjectToShape( geom );
CORBA::String_var entry = geom->GetStudyEntry();
groupData._groupEntry = entry.in();
} }
} }
else else
@ -2472,12 +2479,16 @@ void SMESH_Mesh_i::CheckGeomModif( bool isBreakLink )
int newID = o2n->second, oldID = o2n->first; int newID = o2n->second, oldID = o2n->first;
if ( !_mapSubMesh.count( oldID )) if ( !_mapSubMesh.count( oldID ))
continue; continue;
if ( newID > 0 )
{
_mapSubMesh [ newID ] = _impl->GetSubMeshContaining( newID ); _mapSubMesh [ newID ] = _impl->GetSubMeshContaining( newID );
_mapSubMesh_i [ newID ] = _mapSubMesh_i [ oldID ]; _mapSubMesh_i [ newID ] = _mapSubMesh_i [ oldID ];
_mapSubMeshIor[ newID ] = _mapSubMeshIor[ oldID ]; _mapSubMeshIor[ newID ] = _mapSubMeshIor[ oldID ];
}
_mapSubMesh. erase(oldID); _mapSubMesh. erase(oldID);
_mapSubMesh_i. erase(oldID); _mapSubMesh_i. erase(oldID);
_mapSubMeshIor.erase(oldID); _mapSubMeshIor.erase(oldID);
if ( newID > 0 )
_mapSubMesh_i [ newID ]->changeLocalId( newID ); _mapSubMesh_i [ newID ]->changeLocalId( newID );
} }
@ -2487,7 +2498,7 @@ void SMESH_Mesh_i::CheckGeomModif( bool isBreakLink )
i_sm->second = _impl->GetSubMesh( meshDS->IndexToShape( i_sm->first )); i_sm->second = _impl->GetSubMesh( meshDS->IndexToShape( i_sm->first ));
} }
_gen_i->UpdateIcons( SMESH::SMESH_Mesh_var( _this() )); _gen_i->UpdateIcons( me );
if ( !isBreakLink ) if ( !isBreakLink )
{ {