mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
0022108: EDF 2547 SMESH: Duplicate elements only
1) + void _pyGen::addFilterUser( Handle(_pyCommand)& theCmd, const Handle(_pyObject)& user ); 2) + * \brief Replaces "mesh.GetIDSource([id1,id2])" argument of a given command by + * a list "[id1,id2]" if the list is an accesible type of argument. + */ + void GetIDSourceToList( Handle( _pyCommand)& theCommand ) 3) + * \brief Replaces "SMESH.PointStruct(x,y,z)" and "SMESH.DirStruct( SMESH.PointStruct(x,y,z))" + * arguments of a given command by a list "[x,y,z]" if the list is accesible + * type of argument. + */ + void StructToList( Handle( _pyCommand)& theCommand )
This commit is contained in:
parent
eb58d6d004
commit
2de5e478f7
@ -342,6 +342,90 @@ namespace {
|
|||||||
BinaryOp = TCollection_AsciiString( iBinaryOp );
|
BinaryOp = TCollection_AsciiString( iBinaryOp );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Replaces "SMESH.PointStruct(x,y,z)" and "SMESH.DirStruct( SMESH.PointStruct(x,y,z))"
|
||||||
|
* arguments of a given command by a list "[x,y,z]" if the list is accesible
|
||||||
|
* type of argument.
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
void StructToList( Handle( _pyCommand)& theCommand )
|
||||||
|
{
|
||||||
|
static TStringSet methodsAcceptingList;
|
||||||
|
if ( methodsAcceptingList.empty() ) {
|
||||||
|
const char * methodNames[] = {
|
||||||
|
"GetCriterion","Reorient2D","ExtrusionSweep","ExtrusionSweepMakeGroups0D",
|
||||||
|
"ExtrusionSweepMakeGroups","ExtrusionSweep0D",
|
||||||
|
"AdvancedExtrusion","AdvancedExtrusionMakeGroups",
|
||||||
|
"ExtrusionSweepObject","ExtrusionSweepObject0DMakeGroups",
|
||||||
|
"ExtrusionSweepObjectMakeGroups","ExtrusionSweepObject0D",
|
||||||
|
"ExtrusionSweepObject1D","ExtrusionSweepObject1DMakeGroups",
|
||||||
|
"ExtrusionSweepObject2D","ExtrusionSweepObject2DMakeGroups",
|
||||||
|
"Translate","TranslateMakeGroups","TranslateMakeMesh",
|
||||||
|
"TranslateObject","TranslateObjectMakeGroups", "TranslateObjectMakeMesh"
|
||||||
|
,"" }; // <- mark of the end
|
||||||
|
methodsAcceptingList.Insert( methodNames );
|
||||||
|
}
|
||||||
|
if ( methodsAcceptingList.Contains( theCommand->GetMethod() ))
|
||||||
|
{
|
||||||
|
for ( int i = theCommand->GetNbArgs(); i > 0; --i )
|
||||||
|
{
|
||||||
|
const _AString & arg = theCommand->GetArg( i );
|
||||||
|
if ( arg.Search( "SMESH.PointStruct" ) == 1 ||
|
||||||
|
arg.Search( "SMESH.DirStruct" ) == 1 )
|
||||||
|
{
|
||||||
|
_pyCommand workCmd( arg );
|
||||||
|
if ( workCmd.GetNbArgs() == 1 ) // SMESH.DirStruct( SMESH.PointStruct(x,y,z))
|
||||||
|
{
|
||||||
|
workCmd = _pyCommand( workCmd.GetArg( 1 ));
|
||||||
|
}
|
||||||
|
if ( workCmd.GetNbArgs() == 3 ) // SMESH.PointStruct(x,y,z)
|
||||||
|
{
|
||||||
|
_AString newArg = "[ ";
|
||||||
|
newArg += ( workCmd.GetArg( 1 ) + ", " +
|
||||||
|
workCmd.GetArg( 2 ) + ", " +
|
||||||
|
workCmd.GetArg( 3 ) + " ]");
|
||||||
|
theCommand->SetArg( i, newArg );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Replaces "mesh.GetIDSource([id1,id2])" argument of a given command by
|
||||||
|
* a list "[id1,id2]" if the list is an accesible type of argument.
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
void GetIDSourceToList( Handle( _pyCommand)& theCommand )
|
||||||
|
{
|
||||||
|
static TStringSet methodsAcceptingList;
|
||||||
|
if ( methodsAcceptingList.empty() ) {
|
||||||
|
const char * methodNames[] = {
|
||||||
|
"ExportPartToMED","ExportPartToDAT","ExportPartToUNV","ExportPartToSTL",
|
||||||
|
"ExportCGNS","ExportGMF",
|
||||||
|
"Create0DElementsOnAllNodes","Reorient2D","QuadTo4Tri",
|
||||||
|
"ScaleMakeGroups","Scale","ScaleMakeMesh",
|
||||||
|
"FindCoincidentNodesOnPartBut","DoubleElements"
|
||||||
|
,"" }; // <- mark of the end
|
||||||
|
methodsAcceptingList.Insert( methodNames );
|
||||||
|
}
|
||||||
|
if ( methodsAcceptingList.Contains( theCommand->GetMethod() ))
|
||||||
|
{
|
||||||
|
for ( int i = theCommand->GetNbArgs(); i > 0; --i )
|
||||||
|
{
|
||||||
|
_pyCommand argCmd( theCommand->GetArg( i ));
|
||||||
|
if ( argCmd.GetMethod() == "GetIDSource" &&
|
||||||
|
argCmd.GetNbArgs() == 2 )
|
||||||
|
{
|
||||||
|
theCommand->SetArg( i, argCmd.GetArg( 1 ));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//================================================================================
|
//================================================================================
|
||||||
@ -537,12 +621,16 @@ Handle(_pyCommand) _pyGen::AddCommand( const TCollection_AsciiString& theCommand
|
|||||||
PlaceSubmeshAfterItsCreation( aCommand );
|
PlaceSubmeshAfterItsCreation( aCommand );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Method( SMESH.PointStruct(x,y,z) -> Method( [x,y,z]
|
||||||
|
StructToList( aCommand );
|
||||||
|
|
||||||
// Find an object to process theCommand
|
// Find an object to process theCommand
|
||||||
|
|
||||||
// SMESH_Gen method?
|
// SMESH_Gen method?
|
||||||
if ( objID == this->GetID() || objID == SMESH_2smeshpy::GenName())
|
if ( objID == this->GetID() || objID == SMESH_2smeshpy::GenName())
|
||||||
{
|
{
|
||||||
this->Process( aCommand );
|
this->Process( aCommand );
|
||||||
|
addFilterUser( aCommand, theGen ); // protect filters from clearing
|
||||||
return aCommand;
|
return aCommand;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -566,6 +654,11 @@ Handle(_pyCommand) _pyGen::AddCommand( const TCollection_AsciiString& theCommand
|
|||||||
myObjects.insert( make_pair( subMeshID, subMesh ));
|
myObjects.insert( make_pair( subMeshID, subMesh ));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Method( mesh.GetIDSource([id1,id2]) -> Method( [id1,id2]
|
||||||
|
GetIDSourceToList( aCommand );
|
||||||
|
|
||||||
|
addFilterUser( aCommand, theGen ); // protect filters from clearing
|
||||||
|
|
||||||
id_mesh->second->Process( aCommand );
|
id_mesh->second->Process( aCommand );
|
||||||
id_mesh->second->AddProcessedCmd( aCommand );
|
id_mesh->second->AddProcessedCmd( aCommand );
|
||||||
return aCommand;
|
return aCommand;
|
||||||
@ -575,6 +668,11 @@ Handle(_pyCommand) _pyGen::AddCommand( const TCollection_AsciiString& theCommand
|
|||||||
map< _pyID, Handle(_pyMeshEditor) >::iterator id_editor = myMeshEditors.find( objID );
|
map< _pyID, Handle(_pyMeshEditor) >::iterator id_editor = myMeshEditors.find( objID );
|
||||||
if ( id_editor != myMeshEditors.end() )
|
if ( id_editor != myMeshEditors.end() )
|
||||||
{
|
{
|
||||||
|
// Method( mesh.GetIDSource([id1,id2]) -> Method( [id1,id2]
|
||||||
|
GetIDSourceToList( aCommand );
|
||||||
|
|
||||||
|
addFilterUser( aCommand, theGen ); // protect filters from clearing
|
||||||
|
|
||||||
const TCollection_AsciiString& method = aCommand->GetMethod();
|
const TCollection_AsciiString& method = aCommand->GetMethod();
|
||||||
|
|
||||||
// some commands of SMESH_MeshEditor create meshes and groups
|
// some commands of SMESH_MeshEditor create meshes and groups
|
||||||
@ -719,6 +817,9 @@ Handle(_pyCommand) _pyGen::AddCommand( const TCollection_AsciiString& theCommand
|
|||||||
UnaryOp = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( UnaryOp.IntegerValue() ));
|
UnaryOp = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( UnaryOp.IntegerValue() ));
|
||||||
BinaryOp = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( BinaryOp.IntegerValue() ));
|
BinaryOp = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( BinaryOp.IntegerValue() ));
|
||||||
|
|
||||||
|
if ( Compare == "SMESH.FT_EqualTo" )
|
||||||
|
Compare = "'='";
|
||||||
|
|
||||||
aCommand->RemoveArgs();
|
aCommand->RemoveArgs();
|
||||||
aCommand->SetObject( SMESH_2smeshpy::GenName() );
|
aCommand->SetObject( SMESH_2smeshpy::GenName() );
|
||||||
aCommand->SetMethod( "GetCriterion" );
|
aCommand->SetMethod( "GetCriterion" );
|
||||||
@ -1250,6 +1351,35 @@ void _pyGen::setNeighbourCommand( Handle(_pyCommand)& theCmd,
|
|||||||
(*pos)->SetOrderNb( i++ );
|
(*pos)->SetOrderNb( i++ );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Call _pyFilter.AddUser() if a filter is used as a command arg
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
void _pyGen::addFilterUser( Handle(_pyCommand)& theCommand, const Handle(_pyObject)& user )
|
||||||
|
{
|
||||||
|
const char filterPrefix[] = "aFilter0x";
|
||||||
|
if ( theCommand->GetString().Search( filterPrefix ) < 1 )
|
||||||
|
return;
|
||||||
|
|
||||||
|
for ( int i = theCommand->GetNbArgs(); i > 0; --i )
|
||||||
|
{
|
||||||
|
const _AString & arg = theCommand->GetArg( i );
|
||||||
|
// NOT TREATED CASE: arg == "[something, aFilter0x36a2f60]"
|
||||||
|
if ( arg.Search( filterPrefix ) != 1 )
|
||||||
|
continue;
|
||||||
|
|
||||||
|
Handle(_pyFilter) filter = Handle(_pyFilter)::DownCast( FindObject( arg ));
|
||||||
|
if ( !filter.IsNull() )
|
||||||
|
{
|
||||||
|
filter->AddUser( user );
|
||||||
|
if ( !filter->GetNewID().IsEmpty() )
|
||||||
|
theCommand->SetArg( i, filter->GetNewID() );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//================================================================================
|
//================================================================================
|
||||||
/*!
|
/*!
|
||||||
* \brief Set command be last in list of commands
|
* \brief Set command be last in list of commands
|
||||||
@ -2090,29 +2220,36 @@ _pyMeshEditor::_pyMeshEditor(const Handle(_pyCommand)& theCreationCmd):
|
|||||||
|
|
||||||
void _pyMeshEditor::Process( const Handle(_pyCommand)& theCommand)
|
void _pyMeshEditor::Process( const Handle(_pyCommand)& theCommand)
|
||||||
{
|
{
|
||||||
// names of SMESH_MeshEditor methods fully equal to methods of the python class Mesh, so
|
// Names of SMESH_MeshEditor methods fully equal to methods of the python class Mesh, so
|
||||||
// commands calling this methods are converted to calls of Mesh methods
|
// commands calling these methods are converted to calls of Mesh methods without
|
||||||
|
// additional modifs, only object is changed from MeshEditor to Mesh.
|
||||||
static TStringSet sameMethods;
|
static TStringSet sameMethods;
|
||||||
if ( sameMethods.empty() ) {
|
if ( sameMethods.empty() ) {
|
||||||
const char * names[] = {
|
const char * names[] = {
|
||||||
"RemoveElements","RemoveNodes","RemoveOrphanNodes","AddNode","Add0DElement","AddEdge","AddFace","AddPolygonalFace","AddBall",
|
"RemoveElements","RemoveNodes","RemoveOrphanNodes",
|
||||||
"AddVolume","AddPolyhedralVolume","AddPolyhedralVolumeByFaces","MoveNode", "MoveClosestNodeToPoint",
|
"AddNode","Add0DElement","AddEdge","AddFace","AddPolygonalFace","AddBall",
|
||||||
|
"AddVolume","AddPolyhedralVolume","AddPolyhedralVolumeByFaces",
|
||||||
|
"MoveNode", "MoveClosestNodeToPoint",
|
||||||
"InverseDiag","DeleteDiag","Reorient","ReorientObject",
|
"InverseDiag","DeleteDiag","Reorient","ReorientObject",
|
||||||
"TriToQuad","TriToQuadObject", "QuadTo4Tri", "SplitQuad","SplitQuadObject",
|
"TriToQuad","TriToQuadObject", "QuadTo4Tri", "SplitQuad","SplitQuadObject",
|
||||||
"BestSplit","Smooth","SmoothObject","SmoothParametric","SmoothParametricObject",
|
"BestSplit","Smooth","SmoothObject","SmoothParametric","SmoothParametricObject",
|
||||||
"ConvertToQuadratic","ConvertFromQuadratic","RenumberNodes","RenumberElements",
|
"ConvertToQuadratic","ConvertFromQuadratic","RenumberNodes","RenumberElements",
|
||||||
"RotationSweep","RotationSweepObject","RotationSweepObject1D","RotationSweepObject2D",
|
"RotationSweep","RotationSweepObject","RotationSweepObject1D","RotationSweepObject2D",
|
||||||
"ExtrusionSweep","AdvancedExtrusion","ExtrusionSweepObject","ExtrusionSweepObject1D","ExtrusionSweepObject2D",
|
"ExtrusionSweep","AdvancedExtrusion","ExtrusionSweepObject","ExtrusionSweepObject1D",
|
||||||
"ExtrusionAlongPath","ExtrusionAlongPathObject","ExtrusionAlongPathX",
|
"ExtrusionSweepObject2D","ExtrusionAlongPath","ExtrusionAlongPathObject",
|
||||||
"ExtrusionAlongPathObject1D","ExtrusionAlongPathObject2D",
|
"ExtrusionAlongPathX","ExtrusionAlongPathObject1D","ExtrusionAlongPathObject2D",
|
||||||
"Mirror","MirrorObject","Translate","TranslateObject","Rotate","RotateObject",
|
"Mirror","MirrorObject","Translate","TranslateObject","Rotate","RotateObject",
|
||||||
"FindCoincidentNodes",/*"FindCoincidentNodesOnPart",*/"MergeNodes","FindEqualElements",
|
"FindCoincidentNodes","MergeNodes","FindEqualElements",
|
||||||
"MergeElements","MergeEqualElements","SewFreeBorders","SewConformFreeBorders",
|
"MergeElements","MergeEqualElements","SewFreeBorders","SewConformFreeBorders",
|
||||||
"SewBorderToSide","SewSideElements","ChangeElemNodes","GetLastCreatedNodes",
|
"SewBorderToSide","SewSideElements","ChangeElemNodes","GetLastCreatedNodes",
|
||||||
"GetLastCreatedElems",
|
"GetLastCreatedElems",
|
||||||
"MirrorMakeMesh","MirrorObjectMakeMesh","TranslateMakeMesh","TranslateObjectMakeMesh",
|
"MirrorMakeMesh","MirrorObjectMakeMesh","TranslateMakeMesh","TranslateObjectMakeMesh",
|
||||||
"Scale","ScaleMakeMesh","RotateMakeMesh","RotateObjectMakeMesh","MakeBoundaryMesh",
|
"Scale","ScaleMakeMesh","RotateMakeMesh","RotateObjectMakeMesh","MakeBoundaryMesh",
|
||||||
"MakeBoundaryElements", "SplitVolumesIntoTetra"
|
"MakeBoundaryElements", "SplitVolumesIntoTetra",
|
||||||
|
"DoubleElements","DoubleNodes","DoubleNode","DoubleNodeGroup","DoubleNodeGroups",
|
||||||
|
"DoubleNodeElem","DoubleNodeElemInRegion","DoubleNodeElemGroup",
|
||||||
|
"DoubleNodeElemGroupInRegion","DoubleNodeElemGroups","DoubleNodeElemGroupsInRegion",
|
||||||
|
"DoubleNodesOnGroupBoundaries","CreateFlatElementsOnFacesGroups","CreateHoleSkin"
|
||||||
,"" }; // <- mark of the end
|
,"" }; // <- mark of the end
|
||||||
sameMethods.Insert( names );
|
sameMethods.Insert( names );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user