2006-05-06 14:51:48 +06:00
|
|
|
// Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
2006-06-01 17:39:17 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2006-05-06 14:51:48 +06:00
|
|
|
//
|
2005-12-28 14:17:39 +05:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
using namespace std;
|
|
|
|
|
2005-12-28 14:17:39 +05:00
|
|
|
#include "StdMeshersGUI_DistrPreview.h"
|
2006-03-13 20:29:49 +05:00
|
|
|
|
2005-12-28 14:17:39 +05:00
|
|
|
#include <Expr_NamedUnknown.hxx>
|
|
|
|
#include <Expr_GeneralExpression.hxx>
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
#define NO_CAS_CATCH
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <Standard_Failure.hxx>
|
|
|
|
|
|
|
|
#ifdef NO_CAS_CATCH
|
|
|
|
#include <Standard_ErrorHandler.hxx>
|
|
|
|
#endif
|
|
|
|
|
2005-12-28 14:17:39 +05:00
|
|
|
StdMeshersGUI_DistrPreview::StdMeshersGUI_DistrPreview( QWidget* p, StdMeshers::StdMeshers_NumberOfSegments_ptr h )
|
|
|
|
: QwtPlot( p ),
|
|
|
|
myPoints( 50 ),
|
|
|
|
myIsTable( false ),
|
|
|
|
myVars( 1, 1 ),
|
|
|
|
myValues( 1, 1 ),
|
|
|
|
myConv( CUT_NEGATIVE ),
|
|
|
|
myIsDone( true ),
|
|
|
|
myNbSeg( 1 )
|
|
|
|
{
|
|
|
|
myHypo = StdMeshers::StdMeshers_NumberOfSegments::_duplicate( h );
|
|
|
|
myVars.ChangeValue( 1 ) = new Expr_NamedUnknown( "t" );
|
2006-02-07 20:01:11 +05:00
|
|
|
myDensity = insertCurve( QString() );
|
|
|
|
myDistr = insertCurve( QString() );
|
2005-12-28 14:17:39 +05:00
|
|
|
myMsg = insertMarker( new QwtPlotMarker( this ) );
|
|
|
|
setMarkerPos( myMsg, 0.5, 0.5 );
|
|
|
|
setMarkerLabelPen( myMsg, QPen( Qt::red, 1 ) );
|
|
|
|
QFont f = markerFont( myMsg );
|
|
|
|
f.setPointSize( 14 );
|
|
|
|
f.setBold( true );
|
|
|
|
setMarkerFont( myMsg, f );
|
2006-02-07 20:01:11 +05:00
|
|
|
setCurvePen( myDensity, QPen( Qt::red, 1 ) );
|
2005-12-28 14:17:39 +05:00
|
|
|
|
|
|
|
QColor dc = Qt::blue;
|
2006-02-07 20:01:11 +05:00
|
|
|
setCurvePen( myDistr, QPen( dc, 1 ) );
|
|
|
|
setCurveSymbol( myDistr, QwtSymbol( QwtSymbol::XCross, QBrush( dc ), QPen( dc ), QSize( 5, 5 ) ) );
|
|
|
|
setAutoLegend( true );
|
|
|
|
enableLegend( true );
|
|
|
|
setLegendPos( Qwt::Bottom );
|
|
|
|
setCurveTitle( myDensity, tr( "SMESH_DENSITY_FUNC" ) );
|
|
|
|
setCurveTitle( myDistr, tr( "SMESH_DISTR" ) );
|
2005-12-28 14:17:39 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
StdMeshersGUI_DistrPreview::~StdMeshersGUI_DistrPreview()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StdMeshersGUI_DistrPreview::isTableFunc() const
|
|
|
|
{
|
|
|
|
return myIsTable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void StdMeshersGUI_DistrPreview::tableFunc( SMESH::double_array& f ) const
|
|
|
|
{
|
|
|
|
f = myTableFunc;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString StdMeshersGUI_DistrPreview::function() const
|
|
|
|
{
|
|
|
|
return myFunction;
|
|
|
|
}
|
|
|
|
|
|
|
|
int StdMeshersGUI_DistrPreview::nbSeg() const
|
|
|
|
{
|
|
|
|
return myNbSeg;
|
|
|
|
}
|
|
|
|
|
|
|
|
int StdMeshersGUI_DistrPreview::pointsCount() const
|
|
|
|
{
|
|
|
|
return myPoints;
|
|
|
|
}
|
|
|
|
|
|
|
|
void StdMeshersGUI_DistrPreview::setConversion( Conversion conv, const bool upd )
|
|
|
|
{
|
|
|
|
myConv = conv;
|
|
|
|
if( upd )
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StdMeshersGUI_DistrPreview::setParams( const QString& func, const int nbSeg, const int points, const bool upd )
|
|
|
|
{
|
|
|
|
myIsTable = false;
|
|
|
|
myTableFunc = SMESH::double_array();
|
|
|
|
myFunction = func.isEmpty() ? "0" : func;
|
|
|
|
myPoints = points>0 ? points : 2;
|
|
|
|
myNbSeg = nbSeg>0 ? nbSeg : 1;
|
|
|
|
bool res = init( func );
|
|
|
|
if( upd )
|
|
|
|
update();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StdMeshersGUI_DistrPreview::setParams( const SMESH::double_array& f, const int nbSeg, const bool upd )
|
|
|
|
{
|
|
|
|
myIsTable = true;
|
|
|
|
myTableFunc = f;
|
|
|
|
if( myTableFunc.length()%2==1 )
|
|
|
|
myTableFunc.length( myTableFunc.length()-1 );
|
|
|
|
|
|
|
|
myFunction = "0";
|
|
|
|
myPoints = myTableFunc.length()/2;
|
|
|
|
myNbSeg = nbSeg>0 ? nbSeg : 1;
|
|
|
|
|
|
|
|
if( upd )
|
|
|
|
update();
|
|
|
|
|
|
|
|
return myTableFunc.length()>0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StdMeshersGUI_DistrPreview::createTable( SMESH::double_array& func )
|
|
|
|
{
|
|
|
|
if( myExpr.IsNull() )
|
|
|
|
{
|
|
|
|
func.length( 0 );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const double xmin = 0.0, xmax = 1.0;
|
|
|
|
|
|
|
|
double d = (xmax-xmin)/double(myPoints-1);
|
|
|
|
func.length( 2*myPoints );
|
|
|
|
int err = 0;
|
|
|
|
for( int i=0, j=0; i<myPoints; j++ )
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
double t = xmin + d*j, f = funcValue( t, ok );
|
|
|
|
if( ok )
|
|
|
|
{
|
|
|
|
func[2*i] = t;
|
|
|
|
func[2*i+1] = f;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
err++;
|
|
|
|
}
|
|
|
|
func.length( func.length()-2*err );
|
|
|
|
return err==0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void StdMeshersGUI_DistrPreview::update()
|
|
|
|
{
|
|
|
|
SMESH::double_array graph, distr;
|
|
|
|
if( isTableFunc() )
|
|
|
|
{
|
|
|
|
myIsDone = true;
|
|
|
|
graph = myTableFunc;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
myIsDone = createTable( graph );
|
|
|
|
|
|
|
|
if( graph.length()>=2 )
|
|
|
|
{
|
|
|
|
StdMeshers::StdMeshers_NumberOfSegments_var h =
|
|
|
|
StdMeshers::StdMeshers_NumberOfSegments::_narrow( myHypo );
|
|
|
|
|
|
|
|
if( !CORBA::is_nil( h.in() ) )
|
|
|
|
{
|
|
|
|
SMESH::double_array* arr = 0;
|
|
|
|
if( isTableFunc() )
|
|
|
|
arr = h->BuildDistributionTab( myTableFunc, myNbSeg, ( int )myConv );
|
|
|
|
else
|
|
|
|
arr = h->BuildDistributionExpr( myFunction.latin1(), myNbSeg, ( int )myConv );
|
|
|
|
if( arr )
|
|
|
|
{
|
|
|
|
distr = *arr;
|
|
|
|
delete arr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool correct = graph.length()>=2 && distr.length()>=2;
|
|
|
|
if( !correct )
|
|
|
|
{
|
|
|
|
showError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
setMarkerLabel( myMsg, QString() );
|
|
|
|
|
|
|
|
int size = graph.length()/2;
|
|
|
|
double* x = new double[size], *y = new double[size];
|
|
|
|
double min_x, max_x, min_y, max_y;
|
|
|
|
for( int i=0; i<size; i++ )
|
|
|
|
{
|
|
|
|
x[i] = graph[2*i];
|
|
|
|
y[i] = graph[2*i+1];
|
|
|
|
if( !convert( y[i] ) )
|
|
|
|
{
|
|
|
|
min_x = 0.0; max_x = 1.0; min_y = 0.0; max_y = 1.0;
|
|
|
|
delete[] x; delete[] y;
|
|
|
|
x = y = 0;
|
|
|
|
showError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if( i==0 || y[i]<min_y )
|
|
|
|
min_y = y[i];
|
|
|
|
if( i==0 || y[i]>max_y )
|
|
|
|
max_y = y[i];
|
|
|
|
if( i==0 || x[i]<min_x )
|
|
|
|
min_x = x[i];
|
|
|
|
if( i==0 || x[i]>max_x )
|
|
|
|
max_x = x[i];
|
|
|
|
}
|
|
|
|
|
2006-02-07 20:01:11 +05:00
|
|
|
setAxisScale( curveXAxis( myDensity ), min_x, max_x );
|
|
|
|
setAxisScale( curveYAxis( myDensity ), min( 0.0, min_y ), max( 0.0, max_y ) );
|
|
|
|
setCurveData( myDensity, x, y, size );
|
2005-12-28 14:17:39 +05:00
|
|
|
if( x )
|
|
|
|
delete[] x;
|
|
|
|
if( y )
|
|
|
|
delete[] y;
|
|
|
|
x = y = 0;
|
|
|
|
|
|
|
|
size = distr.length();
|
|
|
|
x = new double[size];
|
|
|
|
y = new double[size];
|
|
|
|
for( int i=0; i<size; i++ )
|
|
|
|
{
|
|
|
|
x[i] = distr[i];
|
|
|
|
y[i] = 0;
|
|
|
|
}
|
2006-02-07 20:01:11 +05:00
|
|
|
setCurveData( myDistr, x, y, size );
|
2005-12-28 14:17:39 +05:00
|
|
|
delete[] x;
|
|
|
|
delete[] y;
|
|
|
|
x = y = 0;
|
2006-02-07 20:01:11 +05:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
try {
|
|
|
|
#ifdef NO_CAS_CATCH
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
2006-02-07 20:01:11 +05:00
|
|
|
replot();
|
2008-03-07 12:47:05 +05:00
|
|
|
} catch(Standard_Failure) {
|
2006-03-13 20:29:49 +05:00
|
|
|
Handle(Standard_Failure) aFail = Standard_Failure::Caught();
|
2006-02-07 20:01:11 +05:00
|
|
|
}
|
2005-12-28 14:17:39 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
void StdMeshersGUI_DistrPreview::showError()
|
|
|
|
{
|
2006-02-07 20:01:11 +05:00
|
|
|
setAxisScale( curveXAxis( myDensity ), 0.0, 1.0 );
|
|
|
|
setAxisScale( curveYAxis( myDensity ), 0.0, 1.0 );
|
|
|
|
setCurveData( myDensity, 0, 0, 0 );
|
|
|
|
setCurveData( myDistr, 0, 0, 0 );
|
2005-12-28 14:17:39 +05:00
|
|
|
setMarkerLabel( myMsg, tr( "SMESH_INVALID_FUNCTION" ) );
|
|
|
|
replot();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isCorrectArg( const Handle( Expr_GeneralExpression )& expr )
|
|
|
|
{
|
|
|
|
Handle( Expr_NamedUnknown ) sub = Handle( Expr_NamedUnknown )::DownCast( expr );
|
|
|
|
if( !sub.IsNull() )
|
|
|
|
return sub->GetName()=="t";
|
|
|
|
|
|
|
|
bool res = true;
|
|
|
|
for( int i=1, n=expr->NbSubExpressions(); i<=n && res; i++ )
|
|
|
|
{
|
|
|
|
Handle( Expr_GeneralExpression ) sub = expr->SubExpression( i );
|
|
|
|
Handle( Expr_NamedUnknown ) name = Handle( Expr_NamedUnknown )::DownCast( sub );
|
|
|
|
if( !name.IsNull() )
|
|
|
|
{
|
|
|
|
if( name->GetName()!="t" )
|
|
|
|
res = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
res = isCorrectArg( sub );
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StdMeshersGUI_DistrPreview::init( const QString& str )
|
|
|
|
{
|
|
|
|
bool parsed_ok = true;
|
2008-03-07 12:47:05 +05:00
|
|
|
try {
|
|
|
|
#ifdef NO_CAS_CATCH
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
2005-12-28 14:17:39 +05:00
|
|
|
myExpr = ExprIntrp_GenExp::Create();
|
|
|
|
myExpr->Process( ( Standard_CString ) str.latin1() );
|
2008-03-07 12:47:05 +05:00
|
|
|
} catch(Standard_Failure) {
|
2006-03-13 20:29:49 +05:00
|
|
|
Handle(Standard_Failure) aFail = Standard_Failure::Caught();
|
2005-12-28 14:17:39 +05:00
|
|
|
parsed_ok = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool syntax = false, args = false;
|
|
|
|
if( parsed_ok && myExpr->IsDone() )
|
|
|
|
{
|
|
|
|
syntax = true;
|
|
|
|
args = isCorrectArg( myExpr->Expression() );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool res = parsed_ok && syntax && args;
|
|
|
|
if( !res )
|
|
|
|
myExpr.Nullify();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
double StdMeshersGUI_DistrPreview::funcValue( const double t, bool& ok )
|
|
|
|
{
|
|
|
|
if( myExpr.IsNull() )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
myValues.ChangeValue( 1 ) = t;
|
|
|
|
|
|
|
|
ok = true;
|
|
|
|
double res = calc( ok );
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
double StdMeshersGUI_DistrPreview::calc( bool& ok )
|
|
|
|
{
|
|
|
|
double res = 0.0;
|
|
|
|
|
|
|
|
ok = true;
|
2008-03-07 12:47:05 +05:00
|
|
|
try {
|
|
|
|
#ifdef NO_CAS_CATCH
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
2005-12-28 14:17:39 +05:00
|
|
|
res = myExpr->Expression()->Evaluate( myVars, myValues );
|
2008-03-07 12:47:05 +05:00
|
|
|
} catch(Standard_Failure) {
|
2006-03-13 20:29:49 +05:00
|
|
|
Handle(Standard_Failure) aFail = Standard_Failure::Caught();
|
2005-12-28 14:17:39 +05:00
|
|
|
ok = false;
|
|
|
|
res = 0.0;
|
|
|
|
}
|
2006-03-13 20:29:49 +05:00
|
|
|
|
2005-12-28 14:17:39 +05:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StdMeshersGUI_DistrPreview::isDone() const
|
|
|
|
{
|
|
|
|
return myIsDone;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StdMeshersGUI_DistrPreview::convert( double& v ) const
|
|
|
|
{
|
|
|
|
bool ok = true;
|
|
|
|
switch( myConv )
|
|
|
|
{
|
|
|
|
case EXPONENT:
|
|
|
|
{
|
2008-03-07 12:47:05 +05:00
|
|
|
try {
|
|
|
|
#ifdef NO_CAS_CATCH
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
2006-03-13 20:29:49 +05:00
|
|
|
// in StdMeshers_NumberOfSegments.cc
|
|
|
|
// const double PRECISION = 1e-7;
|
|
|
|
//
|
|
|
|
if(v < -7) v = -7.0;
|
2005-12-28 14:17:39 +05:00
|
|
|
v = pow( 10.0, v );
|
2008-03-07 12:47:05 +05:00
|
|
|
} catch(Standard_Failure) {
|
2006-03-13 20:29:49 +05:00
|
|
|
Handle(Standard_Failure) aFail = Standard_Failure::Caught();
|
2005-12-28 14:17:39 +05:00
|
|
|
v = 0.0;
|
|
|
|
ok = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CUT_NEGATIVE:
|
|
|
|
if( v<0 )
|
|
|
|
v = 0;
|
|
|
|
break;
|
|
|
|
}
|
2006-03-13 20:29:49 +05:00
|
|
|
|
2005-12-28 14:17:39 +05:00
|
|
|
return ok;
|
|
|
|
}
|