2013-04-01 19:05:47 +06:00
|
|
|
// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// 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.
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// 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.
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// 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
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "SMESH_ActorUtils.h"
|
2012-08-09 16:03:55 +06:00
|
|
|
#include "SMESH_Actor.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-06-27 17:29:58 +06:00
|
|
|
#include "SUIT_Tools.h"
|
2005-06-08 16:45:19 +06:00
|
|
|
#include "SUIT_Session.h"
|
2005-06-27 17:29:58 +06:00
|
|
|
#include "SUIT_ResourceMgr.h"
|
2012-08-09 16:03:55 +06:00
|
|
|
#include <SALOMEconfig.h> // To fix some redefinition
|
|
|
|
#include "SalomeApp_Application.h"
|
|
|
|
|
|
|
|
#ifndef DISABLE_PLOT2DVIEWER
|
|
|
|
#include <SPlot2d_ViewModel.h>
|
|
|
|
#include <SPlot2d_Histogram.h>
|
|
|
|
#include <Plot2d_ViewManager.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <Qtx.h>
|
|
|
|
|
2005-06-08 16:45:19 +06:00
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
#include "utilities.h"
|
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
#include <vtkUnstructuredGrid.h>
|
2012-08-09 16:03:55 +06:00
|
|
|
#include <vtkCellType.h>
|
|
|
|
#include <vtkXMLUnstructuredGridWriter.h>
|
2005-01-20 11:25:54 +05:00
|
|
|
#include <vtkUnstructuredGridWriter.h>
|
2012-08-09 16:03:55 +06:00
|
|
|
#include <vtkUnsignedCharArray.h>
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
//#ifdef _DEBUG_
|
|
|
|
//static int MYDEBUG = 1;
|
|
|
|
//#else
|
|
|
|
//static int MYDEBUG = 0;
|
|
|
|
//#endif
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
namespace SMESH
|
|
|
|
{
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2013-03-01 19:13:25 +06:00
|
|
|
double
|
2006-05-06 14:51:48 +06:00
|
|
|
GetFloat( const QString& theValue,
|
2013-03-01 19:13:25 +06:00
|
|
|
double theDefault )
|
2005-06-08 16:45:19 +06:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
int pos = theValue.indexOf( ":" );
|
2013-03-01 19:13:25 +06:00
|
|
|
double val = theDefault;
|
2005-06-08 16:45:19 +06:00
|
|
|
if( pos>=0 )
|
|
|
|
{
|
2005-06-27 17:29:58 +06:00
|
|
|
QString name = theValue.right( theValue.length()-pos-1 ),
|
2005-06-08 16:45:19 +06:00
|
|
|
sect = theValue.left( pos );
|
2005-06-27 17:29:58 +06:00
|
|
|
if( !name.isEmpty() && !sect.isEmpty() )
|
2012-08-09 16:03:55 +06:00
|
|
|
val = GetFloat( name, sect, theDefault );
|
2005-06-08 16:45:19 +06:00
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2013-03-01 19:13:25 +06:00
|
|
|
double
|
2006-05-06 14:51:48 +06:00
|
|
|
GetFloat( const QString& theValue,
|
2012-08-09 16:03:55 +06:00
|
|
|
const QString& theSection,
|
2013-03-01 19:13:25 +06:00
|
|
|
double theDefault )
|
2005-06-08 16:45:19 +06:00
|
|
|
{
|
2013-03-01 19:13:25 +06:00
|
|
|
double val = theDefault;
|
2005-06-08 16:45:19 +06:00
|
|
|
SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
|
|
|
|
if( mgr )
|
2013-03-01 19:13:25 +06:00
|
|
|
val = (double) mgr->doubleValue( theSection, theValue, theDefault );
|
2005-06-08 16:45:19 +06:00
|
|
|
|
|
|
|
return val;
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
2005-01-20 11:25:54 +05:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
void
|
|
|
|
WriteUnstructuredGrid(vtkUnstructuredGrid* theGrid,
|
2012-08-09 16:03:55 +06:00
|
|
|
const char* theFileName)
|
2006-05-06 14:51:48 +06:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
vtkXMLUnstructuredGridWriter* aWriter = vtkXMLUnstructuredGridWriter::New();
|
2005-01-20 11:25:54 +05:00
|
|
|
aWriter->SetFileName(theFileName);
|
2013-03-01 19:13:25 +06:00
|
|
|
aWriter->SetInputData(theGrid);
|
2012-08-09 16:03:55 +06:00
|
|
|
aWriter->SetDataModeToAscii();
|
2005-01-20 11:25:54 +05:00
|
|
|
if(theGrid->GetNumberOfCells()){
|
|
|
|
aWriter->Write();
|
|
|
|
}
|
|
|
|
aWriter->Delete();
|
|
|
|
}
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
QColor
|
|
|
|
GetColor( const QString& theSect,
|
2012-08-09 16:03:55 +06:00
|
|
|
const QString& theName,
|
|
|
|
const QColor& def )
|
2005-06-27 17:29:58 +06:00
|
|
|
{
|
|
|
|
QColor c = def;
|
|
|
|
SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
|
|
|
|
if ( mgr )
|
|
|
|
c = mgr->colorValue( theSect, theName, def );
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
void
|
|
|
|
GetColor( const QString& theSect,
|
2012-08-09 16:03:55 +06:00
|
|
|
const QString& theName,
|
|
|
|
int& r,
|
|
|
|
int& g,
|
|
|
|
int& b,
|
|
|
|
const QColor& def )
|
2005-06-27 17:29:58 +06:00
|
|
|
{
|
|
|
|
QColor c = def;
|
|
|
|
SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
|
|
|
|
if ( mgr )
|
|
|
|
c = mgr->colorValue( theSect, theName, def );
|
|
|
|
|
|
|
|
SUIT_Tools::rgbSet( SUIT_Tools::rgbSet( c ), r, g, b );
|
|
|
|
}
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
void
|
|
|
|
GetColor( const QString& theSect,
|
2012-08-09 16:03:55 +06:00
|
|
|
const QString& theName,
|
2013-03-01 19:13:25 +06:00
|
|
|
double& r,
|
|
|
|
double& g,
|
|
|
|
double& b,
|
2012-08-09 16:03:55 +06:00
|
|
|
const QColor& def )
|
2005-06-27 17:29:58 +06:00
|
|
|
{
|
|
|
|
int ir( 0 ), ig( 0 ), ib( 0 );
|
|
|
|
GetColor( theSect, theName, ir, ig, ib, def );
|
|
|
|
r = ir / 255.;
|
|
|
|
g = ig / 255.;
|
|
|
|
b = ib / 255.;
|
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
GetColor( const QString& theSect,
|
2013-02-12 20:37:44 +06:00
|
|
|
const QString& theName,
|
|
|
|
QColor& color,
|
|
|
|
int& delta,
|
|
|
|
QString def)
|
2012-08-09 16:03:55 +06:00
|
|
|
{
|
|
|
|
|
|
|
|
SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
|
|
|
|
if ( mgr ) {
|
|
|
|
QString str = mgr->stringValue( theSect, theName, def );
|
|
|
|
Qtx::stringToBiColor(str,color,delta);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<SMDSAbs_ElementType,int> GetEntitiesFromObject(SMESH_VisualObj *theObject) {
|
|
|
|
std::map<SMDSAbs_ElementType,int> entities;
|
|
|
|
entities.insert(std::pair<SMDSAbs_ElementType,int>(SMDSAbs_0DElement,
|
2013-02-12 20:37:44 +06:00
|
|
|
theObject ? theObject->GetNbEntities(SMDSAbs_0DElement) : 0));
|
2012-08-09 16:03:55 +06:00
|
|
|
entities.insert(std::pair<SMDSAbs_ElementType,int>(SMDSAbs_Ball,
|
2013-02-12 20:37:44 +06:00
|
|
|
theObject ? theObject->GetNbEntities(SMDSAbs_Ball) : 0));
|
2012-08-09 16:03:55 +06:00
|
|
|
entities.insert(std::pair<SMDSAbs_ElementType,int>(SMDSAbs_Edge,
|
2013-02-12 20:37:44 +06:00
|
|
|
theObject ? theObject->GetNbEntities(SMDSAbs_Edge) : 0));
|
2012-08-09 16:03:55 +06:00
|
|
|
entities.insert(std::pair<SMDSAbs_ElementType,int>(SMDSAbs_Face,
|
2013-02-12 20:37:44 +06:00
|
|
|
theObject ? theObject->GetNbEntities(SMDSAbs_Face) : 0));
|
2012-08-09 16:03:55 +06:00
|
|
|
entities.insert(std::pair<SMDSAbs_ElementType,int>(SMDSAbs_Volume,
|
2013-02-12 20:37:44 +06:00
|
|
|
theObject ? theObject->GetNbEntities(SMDSAbs_Volume) : 0));
|
2012-08-09 16:03:55 +06:00
|
|
|
return entities;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_PLOT2DVIEWER
|
|
|
|
//=======================================================================
|
|
|
|
/**
|
|
|
|
Get histogram from the input actor
|
|
|
|
Repaint/Remove the histogram in/from each opened Plot2D Viewer
|
|
|
|
*/
|
|
|
|
//=======================================================================
|
|
|
|
void ProcessIn2DViewers( SMESH_Actor *theActor, Viewer2dActionType aType ) {
|
|
|
|
SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>(SUIT_Session::session()->activeApplication());
|
|
|
|
|
|
|
|
if(!anApp || !theActor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SPlot2d_Histogram* aHistogram = 0;
|
|
|
|
|
|
|
|
if(theActor->GetPlot2Histogram())
|
|
|
|
if(aType == UpdateIn2dViewer)
|
|
|
|
aHistogram = theActor->UpdatePlot2Histogram();
|
|
|
|
else
|
|
|
|
aHistogram = theActor->GetPlot2Histogram();
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
ViewManagerList aViewManagerList;
|
|
|
|
anApp->viewManagers(SPlot2d_Viewer::Type(), aViewManagerList);
|
|
|
|
|
|
|
|
aType = aHistogram->getPointList().empty() ? RemoveFrom2dViewer : aType;
|
|
|
|
|
|
|
|
SUIT_ViewManager* aViewManager;
|
|
|
|
foreach( aViewManager, aViewManagerList ) {
|
|
|
|
if (Plot2d_ViewManager* aManager = dynamic_cast<Plot2d_ViewManager*>(aViewManager)) {
|
|
|
|
if (SPlot2d_Viewer* aViewer = dynamic_cast<SPlot2d_Viewer*>(aManager->getViewModel())) {
|
|
|
|
if (Plot2d_ViewFrame* aViewFrame = aViewer->getActiveViewFrame()) {
|
|
|
|
if(aType == UpdateIn2dViewer )
|
|
|
|
aViewFrame->displayObject(aHistogram, true);
|
|
|
|
else if (aType == RemoveFrom2dViewer)
|
|
|
|
aViewFrame->eraseObject(aHistogram, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DISABLE_PLOT2DVIEWER
|
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|