Salome HOME
MPV: Merge V1_2d
[modules/visu.git] / src / VISU_I / VISU_Prs3d_i.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //  File   : VISU_Prs3d_i.cc
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #include "VISU_PipeLine.hxx"
28 #include "VISU_Result_i.hh"
29 #include "VISU_Prs3d_i.hh"
30 #include "VISU_Actor.h"
31
32 #include <vtkGeometryFilter.h>
33
34 using namespace VISU;
35 using namespace std;
36
37 #ifdef _DEBUG_
38 static int MYDEBUG = 0;
39 static int MYDEBUGWITHFILES = 0;
40 #else
41 static int MYDEBUG = 0;
42 static int MYDEBUGWITHFILES = 0;
43 #endif
44
45 VISU::Prs3d_i::Prs3d_i(Result_i* theResult, SALOMEDS::SObject_ptr theSObject) : 
46   PrsObject_i(theResult->GetStudyDocument()), 
47   myResult(theResult) 
48 {
49   myResult->Register();
50   mySObject = SALOMEDS::SObject::_duplicate(theSObject);
51   myAddToStudy = true;
52   myPipeLine = NULL;
53   CORBA::String_var aName = myStudy->Name();
54   INFOS("Prs3d_i - this = "<<this<<"; StudyId = "<<myStudy->StudyId()<<"; Name = '"<<aName.in()<<"'");
55 }
56
57 void VISU::Prs3d_i::SameAs(const Prs3d_i* theOrigin)
58 {
59   Prs3d_i* aOrigin = const_cast<Prs3d_i*>(theOrigin);
60   myPipeLine->ShallowCopy(aOrigin->GetPL());
61 }
62
63 VISU::Prs3d_i::~Prs3d_i() {
64   INFOS("~Prs3d_i() - this = "<<this<<"; GetReferenceCount() = "<<myPipeLine->GetReferenceCount());
65   myPipeLine->Delete();
66   myResult->Destroy();
67 }
68
69 void VISU::Prs3d_i::CreateActor(VISU_Actor* theActor, const Handle(SALOME_InteractiveObject)& theIO)
70   throw (std::runtime_error&)
71 {
72   try{
73     Update();
74     if(myAddToStudy){
75       Handle(SALOME_InteractiveObject) anIO = theIO;
76       if(anIO.IsNull()){
77         CORBA::String_var anEntry = mySObject->GetID();
78         anIO = new SALOME_InteractiveObject(strdup(anEntry.in()),"VISU",strdup(GetName()));
79       }
80       theActor->setIO(anIO); 
81     }
82     theActor->SetPipeLine(GetPipeLine());
83     theActor->SetPrs3d(this);
84   }catch(std::runtime_error& ex){
85     throw ex;
86   }catch(...){
87     throw std::runtime_error("CreateActor >> unexpected exception was caught!!!");
88   }
89 }
90
91 void VISU::Prs3d_i::UpdateActor(VISU_Actor* theActor) throw (std::runtime_error&){
92   try{
93     vtkGeometryFilter* aGeometryFilter = vtkGeometryFilter::New();
94     vtkDataSet *aDataSet = theActor->GetMapper()->GetInput();
95     aGeometryFilter->SetInput(aDataSet);
96     vtkPolyData* aPolyData = aGeometryFilter->GetOutput();
97     aPolyData->Update();
98     static int INCMEMORY = 7;
99     float aSize = INCMEMORY*aPolyData->GetActualMemorySize()*1024.0;
100     int isPoss = VISU_PipeLine::CheckAvailableMemory(aSize);
101     INFOS("UpdateActor - aSize = "<<aSize<<"; isPoss = "<<isPoss);
102     aPolyData->Delete();
103     if (aSize <= 0)
104       throw std::runtime_error("Prs3d_i::UpdateActor >> Actor is empty !!!");
105     if(!isPoss) 
106       throw std::runtime_error("Prs3d_i::UpdateActor >> There is no enough memory !!!");
107
108     theActor->GetMapper()->ShallowCopy(myPipeLine->GetMapper());
109     theActor->Modified();
110   }catch(std::runtime_error& ex){
111     throw ex;
112   }catch(...){
113     throw std::runtime_error("Prs3d_i::UpdateActor >> unexpected exception was caught!!!");
114   }
115 }
116
117 VISU::Storable* VISU::Prs3d_i::Restore(const Storable::TRestoringMap& theMap)
118      throw(std::logic_error&)
119 {
120   myName = VISU::Storable::FindValue(theMap,"myName").latin1();
121   return this;
122 }
123
124 void VISU::Prs3d_i::ToStream(std::ostringstream& theStr){
125   Storable::DataToStream( theStr, "myName",   myName.c_str() );
126 }
127
128 void VISU::Prs3d_i::Update() throw (std::runtime_error&){
129   try{
130     myPipeLine->Update();
131   }catch(...){
132     throw std::runtime_error("Prs3d_i::Update >> unexpected exception was caught!!!");
133   }
134 }
135
136 VISU_PipeLine* VISU::Prs3d_i::GetPipeLine(){
137   return GetPL();
138 }
139
140 VISU_PipeLine* VISU::Prs3d_i::GetPL(){
141   return myPipeLine;
142 }
143
144
145 SALOMEDS::SObject_var VISU::Prs3d_i::GetSObject(){
146   return mySObject;
147 }
148
149 void VISU::Prs3d_i::GetBounds(float aBounds[6]){
150   myPipeLine->GetMapper()->GetBounds(aBounds);
151 }
152
153 VISU::Result_i* VISU::GetResult(SALOMEDS::SObject_ptr theSObject){
154   VISU::Result_var aResult = FindResult(theSObject);
155   if(!aResult->_is_nil())
156     return dynamic_cast<VISU::Result_i*>(VISU::GetServant(aResult.in()).in());
157   return NULL;
158 }