mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-25 08:50:36 +05:00
PAL7768
This commit is contained in:
parent
86973cfa9e
commit
dc8466f4ed
@ -1599,6 +1599,18 @@ module GEOM
|
|||||||
void GetShapeProcessParameters (out string_array theOperators,
|
void GetShapeProcessParameters (out string_array theOperators,
|
||||||
out string_array theParameters,
|
out string_array theParameters,
|
||||||
out string_array theValues);
|
out string_array theValues);
|
||||||
|
/*!
|
||||||
|
* Get parameters and parameters' values for the given Shape Process operation.
|
||||||
|
* In the current implementation the defaults are
|
||||||
|
* read from the file pointed by CSF_ShHealingDefaults environmental variable.
|
||||||
|
* \param theOperator Input. The operator's name.
|
||||||
|
* \param theParameters Output. Default list of names of parameters.
|
||||||
|
* \param theValues Output. List of default values of parameters, in the same order
|
||||||
|
* as parameters are listed in \a theParameters list.
|
||||||
|
*/
|
||||||
|
void GetOperatorParameters (in string theOperator,
|
||||||
|
out string_array theParameters,
|
||||||
|
out string_array theValues);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Remove faces from the given object (shape).
|
* Remove faces from the given object (shape).
|
||||||
|
@ -1672,6 +1672,9 @@ msgstr "Please, select at least one Shape Process operation to proceed."
|
|||||||
msgid "RepairGUI_ShapeProcessDlg::ERROR_NO_OBJECTS"
|
msgid "RepairGUI_ShapeProcessDlg::ERROR_NO_OBJECTS"
|
||||||
msgstr "Please, select a geometrical object for Shape Processing."
|
msgstr "Please, select a geometrical object for Shape Processing."
|
||||||
|
|
||||||
|
msgid "RepairGUI_ShapeProcessDlg::TIME_CONSUMING"
|
||||||
|
msgstr "Enabling this option may result in a very time-consuming operation for some input shapes.\nWould you like to continue?"
|
||||||
|
|
||||||
msgid "MeasureGUI_PointDlg::POINT"
|
msgid "MeasureGUI_PointDlg::POINT"
|
||||||
msgstr "Point"
|
msgstr "Point"
|
||||||
|
|
||||||
|
@ -141,29 +141,14 @@ void GEOMImpl_IHealingOperations::GetShapeProcessParameters (list<string>& theOp
|
|||||||
{
|
{
|
||||||
ShHealOper_ShapeProcess aHealer;
|
ShHealOper_ShapeProcess aHealer;
|
||||||
TColStd_SequenceOfAsciiString anOperators;
|
TColStd_SequenceOfAsciiString anOperators;
|
||||||
int nbOperatorErrors( 0 ), nbParamValueErrors( 0 );
|
int nbOperatorErrors( 0 );
|
||||||
if ( aHealer.GetOperators( anOperators ) )
|
if ( aHealer.GetOperators( anOperators ) )
|
||||||
{
|
{
|
||||||
for ( Standard_Integer i = 1; i <= anOperators.Length(); i++ )
|
for ( Standard_Integer i = 1; i <= anOperators.Length(); i++ )
|
||||||
{
|
{
|
||||||
string anOperation = anOperators.Value( i ).ToCString();
|
string anOperation = anOperators.Value( i ).ToCString();
|
||||||
theOperations.push_back( anOperation );
|
if ( GetOperatorParameters( anOperation, theParams, theValues ) )
|
||||||
list<string> aParams, aValues;
|
theOperations.push_back( anOperation );
|
||||||
if ( GetParameters( anOperation, aParams ) )
|
|
||||||
{
|
|
||||||
for ( list<string>::iterator it = aParams.begin(); it != aParams.end(); ++it )
|
|
||||||
{
|
|
||||||
TCollection_AsciiString aParam( (Standard_CString)(*it).c_str() );
|
|
||||||
TCollection_AsciiString aValue;
|
|
||||||
if ( aHealer.GetParameter( aParam, aValue ) )
|
|
||||||
{
|
|
||||||
theParams.push_back( aParam.ToCString() );
|
|
||||||
theValues.push_back( aValue.ToCString() );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
nbParamValueErrors++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
nbOperatorErrors++;
|
nbOperatorErrors++;
|
||||||
}
|
}
|
||||||
@ -173,11 +158,43 @@ void GEOMImpl_IHealingOperations::GetShapeProcessParameters (list<string>& theOp
|
|||||||
SetErrorCode("ERROR retrieving operators (GEOMImpl_IHealingOperations)");
|
SetErrorCode("ERROR retrieving operators (GEOMImpl_IHealingOperations)");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nbOperatorErrors || nbParamValueErrors) {
|
if ( nbOperatorErrors ) {
|
||||||
TCollection_AsciiString aMsg ("ERRORS retrieving ShapeProcess parameters (GEOMImpl_IHealingOperations): nbOperatorErrors = ");
|
TCollection_AsciiString aMsg ("ERRORS retrieving ShapeProcess parameters (GEOMImpl_IHealingOperations): nbOperatorErrors = ");
|
||||||
aMsg += TCollection_AsciiString(nbOperatorErrors);
|
aMsg += TCollection_AsciiString( nbOperatorErrors );
|
||||||
aMsg += " ,nbParamValueErrors = ";
|
MESSAGE(aMsg.ToCString());
|
||||||
aMsg += TCollection_AsciiString(nbParamValueErrors);
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//=============================================================================
|
||||||
|
/*!
|
||||||
|
* GetOperatorParameters
|
||||||
|
*/
|
||||||
|
//=============================================================================
|
||||||
|
bool GEOMImpl_IHealingOperations::GetOperatorParameters( const string theOperation,
|
||||||
|
list<string>& theParams,
|
||||||
|
list<string>& theValues )
|
||||||
|
{
|
||||||
|
ShHealOper_ShapeProcess aHealer;
|
||||||
|
int nbParamValueErrors( 0 );
|
||||||
|
list<string> aParams;
|
||||||
|
if ( GetParameters( theOperation, aParams ) ) {
|
||||||
|
for ( list<string>::iterator it = aParams.begin(); it != aParams.end(); ++it ) {
|
||||||
|
TCollection_AsciiString aParam( (Standard_CString)(*it).c_str() );
|
||||||
|
TCollection_AsciiString aValue;
|
||||||
|
if ( aHealer.GetParameter( aParam, aValue ) ) {
|
||||||
|
theParams.push_back( aParam.ToCString() );
|
||||||
|
theValues.push_back( aValue.ToCString() );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
nbParamValueErrors++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if ( nbParamValueErrors ) {
|
||||||
|
TCollection_AsciiString aMsg ("ERRORS retrieving ShapeProcess parameter values (GEOMImpl_IHealingOperations): nbParamValueErrors = ");
|
||||||
|
aMsg += TCollection_AsciiString( nbParamValueErrors );
|
||||||
MESSAGE(aMsg.ToCString());
|
MESSAGE(aMsg.ToCString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,10 +23,15 @@ class GEOMImpl_IHealingOperations : public GEOM_IOperations {
|
|||||||
const Handle(TColStd_HArray1OfExtendedString)& theValues );
|
const Handle(TColStd_HArray1OfExtendedString)& theValues );
|
||||||
|
|
||||||
// Retrieve default Shape Process parameters (from resource file)
|
// Retrieve default Shape Process parameters (from resource file)
|
||||||
void GetShapeProcessParameters( list<string>& theOperations,
|
void GetShapeProcessParameters( list<string>& theOperations,
|
||||||
list<string>& theParams,
|
list<string>& theParams,
|
||||||
list<string>& theValues );
|
list<string>& theValues );
|
||||||
|
|
||||||
|
// Retrieve default Shape Process parameters for given operator
|
||||||
|
bool GetOperatorParameters( const string theOperation,
|
||||||
|
list<string>& theParams,
|
||||||
|
list<string>& theValues );
|
||||||
|
|
||||||
// returns all parameters that are valid for the given operation (Shape Process operator)
|
// returns all parameters that are valid for the given operation (Shape Process operator)
|
||||||
static bool GetParameters( const string theOperation, list<string>& theParams );
|
static bool GetParameters( const string theOperation, list<string>& theParams );
|
||||||
|
|
||||||
|
@ -123,6 +123,10 @@ void GEOM_IHealingOperations_i::GetShapeProcessParameters(GEOM::string_array_out
|
|||||||
GEOM::string_array_out theParams,
|
GEOM::string_array_out theParams,
|
||||||
GEOM::string_array_out theValues)
|
GEOM::string_array_out theValues)
|
||||||
{
|
{
|
||||||
|
GEOM::string_array_var anOpArray = new GEOM::string_array();
|
||||||
|
GEOM::string_array_var aParArray = new GEOM::string_array();
|
||||||
|
GEOM::string_array_var aValArray = new GEOM::string_array();
|
||||||
|
|
||||||
// retrieve the values as stl-lists
|
// retrieve the values as stl-lists
|
||||||
list<string> operationsList, paramsList, valuesList;
|
list<string> operationsList, paramsList, valuesList;
|
||||||
GetOperations()->GetShapeProcessParameters( operationsList, paramsList, valuesList );
|
GetOperations()->GetShapeProcessParameters( operationsList, paramsList, valuesList );
|
||||||
@ -130,29 +134,23 @@ void GEOM_IHealingOperations_i::GetShapeProcessParameters(GEOM::string_array_out
|
|||||||
parSize = paramsList.size(),
|
parSize = paramsList.size(),
|
||||||
valSize = valuesList.size();
|
valSize = valuesList.size();
|
||||||
|
|
||||||
// returns in case of an error
|
if ( opSize >= 0 && parSize >= 0 && parSize == valSize ) {
|
||||||
if ( opSize < 0 || parSize < 0 || parSize != valSize )
|
// allocate the CORBA arrays, sizes == returned lists' sizes
|
||||||
return;
|
anOpArray->length(opSize);
|
||||||
|
aParArray->length(parSize);
|
||||||
|
aValArray->length(valSize);
|
||||||
|
|
||||||
// allocate the CORBA arrays, sizes == returned lists' sizes
|
// fill the local CORBA arrays with values from lists
|
||||||
GEOM::string_array_var anOpArray = new GEOM::string_array();
|
list<string>::iterator opIt, parIt, valIt;
|
||||||
GEOM::string_array_var aParArray = new GEOM::string_array();
|
int i = 0;
|
||||||
GEOM::string_array_var aValArray = new GEOM::string_array();
|
for ( opIt = operationsList.begin(); opIt != operationsList.end(); i++,++opIt )
|
||||||
anOpArray->length(opSize);
|
anOpArray[i] = CORBA::string_dup( (*opIt).c_str() );
|
||||||
aParArray->length(parSize);
|
|
||||||
aValArray->length(valSize);
|
|
||||||
|
|
||||||
// fill the local CORBA arrays with values from lists
|
for ( i = 0, parIt = paramsList.begin(), valIt = valuesList.begin();
|
||||||
list<string>::iterator opIt, parIt, valIt;
|
parIt != paramsList.end(); i++, ++parIt,++valIt ) {
|
||||||
int i = 0;
|
aParArray[i] = CORBA::string_dup( (*parIt).c_str() );
|
||||||
for ( opIt = operationsList.begin(); opIt != operationsList.end(); i++,++opIt )
|
aValArray[i] = CORBA::string_dup( (*valIt).c_str() );
|
||||||
anOpArray[i] = CORBA::string_dup( (*opIt).c_str() );
|
}
|
||||||
|
|
||||||
for ( i = 0, parIt = paramsList.begin(), valIt = valuesList.begin();
|
|
||||||
parIt != paramsList.end(); i++, ++parIt,++valIt )
|
|
||||||
{
|
|
||||||
aParArray[i] = CORBA::string_dup( (*parIt).c_str() );
|
|
||||||
aValArray[i] = CORBA::string_dup( (*valIt).c_str() );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// initialize out-parameters with local arrays
|
// initialize out-parameters with local arrays
|
||||||
@ -161,6 +159,43 @@ void GEOM_IHealingOperations_i::GetShapeProcessParameters(GEOM::string_array_out
|
|||||||
theValues = aValArray._retn();
|
theValues = aValArray._retn();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=============================================================================
|
||||||
|
/*!
|
||||||
|
* GetOperatorParameters
|
||||||
|
*/
|
||||||
|
//=============================================================================
|
||||||
|
void GEOM_IHealingOperations_i::GetOperatorParameters (const char* theOperator,
|
||||||
|
GEOM::string_array_out theParams,
|
||||||
|
GEOM::string_array_out theValues)
|
||||||
|
{
|
||||||
|
GEOM::string_array_var aParArray = new GEOM::string_array();
|
||||||
|
GEOM::string_array_var aValArray = new GEOM::string_array();
|
||||||
|
|
||||||
|
// retrieve the values as stl-lists
|
||||||
|
list<string> paramsList, valuesList;
|
||||||
|
if ( GetOperations()->GetOperatorParameters( theOperator, paramsList, valuesList ) ) {
|
||||||
|
const int parSize = paramsList.size(), valSize = valuesList.size();
|
||||||
|
|
||||||
|
if ( parSize == valSize ) {
|
||||||
|
aParArray->length(parSize);
|
||||||
|
aValArray->length(valSize);
|
||||||
|
|
||||||
|
// fill the local CORBA arrays with values from lists
|
||||||
|
list<string>::iterator parIt, valIt;
|
||||||
|
int i;
|
||||||
|
for ( i = 0, parIt = paramsList.begin(), valIt = valuesList.begin();
|
||||||
|
parIt != paramsList.end(); i++, ++parIt,++valIt ) {
|
||||||
|
aParArray[i] = CORBA::string_dup( (*parIt).c_str() );
|
||||||
|
aValArray[i] = CORBA::string_dup( (*valIt).c_str() );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// initialize out-parameters with local arrays
|
||||||
|
theParams = aParArray._retn();
|
||||||
|
theValues = aValArray._retn();
|
||||||
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
/*!
|
/*!
|
||||||
* SuppressFaces
|
* SuppressFaces
|
||||||
|
@ -26,6 +26,8 @@ class GEOM_IHealingOperations_i :
|
|||||||
|
|
||||||
void GetShapeProcessParameters(GEOM::string_array_out theOperations, GEOM::string_array_out theParams, GEOM::string_array_out theValues);
|
void GetShapeProcessParameters(GEOM::string_array_out theOperations, GEOM::string_array_out theParams, GEOM::string_array_out theValues);
|
||||||
|
|
||||||
|
void GetOperatorParameters (const char* theOperator, GEOM::string_array_out theParams, GEOM::string_array_out theValues);
|
||||||
|
|
||||||
GEOM::GEOM_Object_ptr SuppressFaces(GEOM::GEOM_Object_ptr theObject, const GEOM::short_array& theFaces);
|
GEOM::GEOM_Object_ptr SuppressFaces(GEOM::GEOM_Object_ptr theObject, const GEOM::short_array& theFaces);
|
||||||
|
|
||||||
GEOM::GEOM_Object_ptr CloseContour (GEOM::GEOM_Object_ptr theObject, const GEOM::short_array& theWires, CORBA::Boolean isCommonVertex);
|
GEOM::GEOM_Object_ptr CloseContour (GEOM::GEOM_Object_ptr theObject, const GEOM::short_array& theWires, CORBA::Boolean isCommonVertex);
|
||||||
|
Loading…
Reference in New Issue
Block a user