]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_SWIG/VISU_Gen_s.cc
Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/visu.git] / src / VISU_SWIG / VISU_Gen_s.cc
1 //  VISU OBJECT : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //  File   : VISU_Gen_s.cc
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #include "VISU_Gen_s.hh"
28
29 #include "VISU_Convertor.hxx"
30 #include "VISU_ScalarMapPL.hxx"
31
32 #include <vtkUnstructuredGrid.h>
33 #include <vtkDataSetMapper.h>
34
35 #include <vtkRenderWindowInteractor.h>
36 #include <vtkRenderWindow.h> 
37 #include <vtkRenderer.h>
38 #include <vtkCamera.h>
39 #include <vtkActor.h>
40
41 using namespace std;
42
43 Convertor::Convertor(const char* theFileName) : myConvertor(CreateConvertor(theFileName)){}
44
45
46 ScalarMap::ScalarMap(Convertor* theConvertor, const char* theMeshName, int theEntity, 
47                      const char* theFieldName, int theIteration)
48   : myScalarMap(NULL)
49 {
50   if(VISU_Convertor* aConvertor = theConvertor->GetImpl()){
51     VISU::PIDMapper anIDMapper = 
52       aConvertor->GetTimeStampOnMesh(theMeshName,VISU::TEntity(theEntity),theFieldName,theIteration);
53     VISU::TVTKOutput* aDataSet = anIDMapper->GetVTKOutput();
54     if(aDataSet){
55       myScalarMap = VISU_ScalarMapPL::New();
56       myScalarMap->SetInput(aDataSet);
57       myScalarMap->Build();
58       myScalarMap->Init();
59       myScalarMap->SetSourceRange();
60     }
61   }
62 }
63
64
65 View3D::View3D(){
66   myRen = vtkRenderer::New();
67   myRenWin = vtkRenderWindow::New();
68   myRenWin->AddRenderer(myRen);
69   myRenWin->SetSize(300, 300);
70   myRen->Delete();
71   myRen->GetActiveCamera()->ParallelProjectionOn();
72   myIRen = vtkRenderWindowInteractor::New();
73   myIRen->SetRenderWindow(myRenWin);
74   myRenWin->Delete();
75 }
76
77 void View3D::SetPosition(int theX, int theY) {
78   myRenWin->SetPosition(theX, theY);
79 }
80
81 View3D::~View3D(){
82   myIRen->Delete();
83 }
84
85 void View3D::Display(ScalarMap* theScalarMap){
86   if(VISU_ScalarMapPL* aScalarMap = theScalarMap->GetImpl()){
87     aScalarMap->Update();
88     
89     myRen->RemoveAllProps();
90     vtkActor* anActor = vtkActor::New();
91     anActor->SetMapper(aScalarMap->GetMapper());
92     
93     VISU_ScalarBarActor * aScalarBar = VISU_ScalarBarActor::New();
94     aScalarBar->SetLookupTable(aScalarMap->GetBarTable());
95     
96     aScalarMap->Build();
97     
98     myRen->AddActor(anActor);
99     myRen->AddActor2D(aScalarBar);
100     myRen->ResetCameraClippingRange();
101     
102     myRenWin->Render();
103   }
104 }