Salome HOME
05aa47c5938ead514f8aa70b367ee3a8d72c099b
[modules/smesh.git] / src / OBJECT / SMESH_ActorUtils.cxx
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19
20
21 #include "SMESH_ActorUtils.h"
22
23 #include "SUIT_ResourceMgr.h"
24 #include "SUIT_Session.h"
25
26 #include "utilities.h"
27
28 #include <vtkUnstructuredGrid.h>
29 #include <vtkUnstructuredGridWriter.h>
30
31 #ifdef _DEBUG_
32 static int MYDEBUG = 1;
33 #else
34 static int MYDEBUG = 0;
35 #endif
36
37 namespace SMESH{
38
39   float GetFloat( const QString& theValue, float theDefault )
40   {
41     int pos = theValue.find( ":" );
42     float val = theDefault;
43     if( pos>=0 ) 
44     {
45       QString val = theValue.right( theValue.length()-pos-1 ),
46               sect = theValue.left( pos );
47       if( !val.isEmpty() && !sect.isEmpty() )
48         val = GetFloat( val, sect, theDefault );
49     }
50     return val;
51   }
52
53   float GetFloat( const QString& theValue, const QString& theSection, float theDefault )
54   {
55     float val = theDefault;
56     SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
57     if( mgr )
58       val = (float) mgr->doubleValue( theValue, theSection, theDefault );
59
60     return val;
61   }
62
63   void WriteUnstructuredGrid(vtkUnstructuredGrid* theGrid, const char* theFileName){
64     vtkUnstructuredGridWriter* aWriter = vtkUnstructuredGridWriter::New();
65     aWriter->SetFileName(theFileName);
66     aWriter->SetInput(theGrid);
67     if(theGrid->GetNumberOfCells()){
68       aWriter->Write();
69     }
70     aWriter->Delete();
71   }
72
73 }