]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_CutPlanes_i.cc
Salome HOME
DCQ : Merge with Ecole Ete a6.
[modules/visu.git] / src / VISU_I / VISU_CutPlanes_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_PrsObject_i.cxx
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #include "VISU_CutPlanesPL.hxx"
28 #include "VISU_Result_i.hh"
29 #include "VISU_CutPlanes_i.hh"
30 #include "VISU_Actor.h"
31
32 using namespace VISU;
33 using namespace std;
34
35 #ifdef _DEBUG_
36 static int MYDEBUG = 0;
37 static int MYDEBUGWITHFILES = 0;
38 #else
39 static int MYDEBUG = 0;
40 static int MYDEBUGWITHFILES = 0;
41 #endif
42
43 int VISU::CutPlanes_i::IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity, 
44                                   const char* theFieldName, int theIteration, int isMemoryCheck)
45 {
46   return VISU::ScalarMap_i::IsPossible(theResult,theMeshName,theEntity,theFieldName,theIteration,isMemoryCheck);
47 }
48
49
50 int VISU::CutPlanes_i::myNbPresent = 0;
51 QString VISU::CutPlanes_i::GenerateName() { return VISU::GenerateName("CutPlanes",myNbPresent++);}
52
53
54 const string VISU::CutPlanes_i::myComment = "CUTPLANES";
55 const char* VISU::CutPlanes_i::GetComment() const { return myComment.c_str();}
56
57
58 VISU::CutPlanes_i::CutPlanes_i(Result_i* theResult, bool theAddToStudy, SALOMEDS::SObject_ptr theSObject) :
59        PrsObject_i(theResult->GetStudyDocument()), 
60        Prs3d_i(theResult,theSObject),
61        ScalarMap_i(theResult,theAddToStudy,theSObject)
62 {
63   myCutPlanesPL = NULL;
64 }
65
66
67 void VISU::CutPlanes_i::SameAs(const CutPlanes_i* theOrigin){
68   CutPlanes_i* aCutPlanes = const_cast<CutPlanes_i*>(theOrigin);
69   VISU::ScalarMap_i::SameAs(theOrigin);
70 }
71
72
73 VISU::Storable* VISU::CutPlanes_i::Create(const char* theMeshName, VISU::Entity theEntity, 
74                                           const char* theFieldName, int theIteration)
75 {
76   return ScalarMap_i::Create(theMeshName,theEntity,theFieldName,theIteration);
77 }
78
79
80 VISU::Storable* VISU::CutPlanes_i::Restore(const Storable::TRestoringMap& theMap)
81 {
82   DoHook();
83   SetNbPlanes(VISU::Storable::FindValue(theMap,"myNbPlanes").toInt());
84   SetDisplacement(VISU::Storable::FindValue(theMap,"myDisplacement").toDouble());
85   SetOrientation(VISU::CutPlanes::Orientation(VISU::Storable::FindValue(theMap,"myBasePlane").toInt()),
86                  Storable::FindValue(theMap,"aRot[0]").toDouble(),
87                  Storable::FindValue(theMap,"aRot[1]").toDouble());
88   QStringList aPosList = QStringList::split("|",VISU::Storable::FindValue(theMap,"myPlanePosition") );
89   QStringList aCondList = QStringList::split("|",VISU::Storable::FindValue(theMap,"myPlaneCondition") );
90   for(int i = 0, iEnd = GetNbPlanes(); i < iEnd; i++)
91     if(aCondList[i].toInt() == 0)
92       SetPlanePosition(i,aPosList[i].toDouble());
93
94   return ScalarMap_i::Restore(theMap);
95 }
96
97
98 void VISU::CutPlanes_i::ToStream(std::ostringstream& theStr){
99   ScalarMap_i::ToStream(theStr);
100
101   int aNbPlanes = GetNbPlanes();
102
103   Storable::DataToStream( theStr, "myNbPlanes", int(GetNbPlanes()));
104   Storable::DataToStream( theStr, "myDisplacement", GetDisplacement());
105   Storable::DataToStream( theStr, "myBasePlane", int(GetOrientationType()));
106   Storable::DataToStream( theStr, "aRot[0]", GetRotateX());
107   Storable::DataToStream( theStr, "aRot[1]", GetRotateY());
108
109   QString aStrPos, aStrCon;
110   for(int i = 0, iEnd = GetNbPlanes(); i < iEnd; i++){
111     aStrPos.append(QString::number(GetPlanePosition(i)) + "|");
112     aStrCon.append(QString::number(IsDefault(i)) + "|");
113   }
114   Storable::DataToStream( theStr, "myPlanePosition",  aStrPos.latin1());
115   Storable::DataToStream( theStr, "myPlaneCondition", aStrCon.latin1());
116 }
117
118
119 VISU::CutPlanes_i::~CutPlanes_i(){
120   if(MYDEBUG) MESSAGE("CutPlanes_i::~CutPlanes_i()");
121 }
122
123
124 void VISU::CutPlanes_i::SetOrientation(VISU::CutPlanes::Orientation theOrient,
125                                        CORBA::Double theXAngle, CORBA::Double theYAngle)
126 {
127   myCutPlanesPL->SetOrientation(VISU_CutPlanesPL::PlaneOrientation(theOrient),
128                                 theXAngle,theYAngle);
129 }
130
131 VISU::CutPlanes::Orientation VISU::CutPlanes_i::GetOrientationType() { 
132   return VISU::CutPlanes::Orientation(myCutPlanesPL->GetPlaneOrientation());
133 }
134 CORBA::Double VISU::CutPlanes_i::GetRotateX(){
135   return myCutPlanesPL->GetRotateX();
136 }
137 CORBA::Double VISU::CutPlanes_i::GetRotateY(){
138   return myCutPlanesPL->GetRotateY();
139 }
140
141
142 void VISU::CutPlanes_i::SetDisplacement(CORBA::Double theDisp) { 
143   myCutPlanesPL->SetDisplacement(theDisp);
144 }
145 CORBA::Double VISU::CutPlanes_i::GetDisplacement() { 
146   return myCutPlanesPL->GetDisplacement();
147 }
148
149
150 void VISU::CutPlanes_i::SetPlanePosition(CORBA::Long thePlaneNumber, CORBA::Double thePlanePosition){
151   myCutPlanesPL->SetPartPosition(thePlaneNumber,thePlanePosition);
152 }
153 CORBA::Double VISU::CutPlanes_i::GetPlanePosition(CORBA::Long thePlaneNumber){ 
154   return myCutPlanesPL->GetPartPosition(thePlaneNumber);
155 }
156
157
158 void VISU::CutPlanes_i::SetDefault(CORBA::Long thePlaneNumber){
159   myCutPlanesPL->SetPartDefault(thePlaneNumber);
160 }
161 CORBA::Boolean VISU::CutPlanes_i::IsDefault(CORBA::Long thePlaneNumber){ 
162   return myCutPlanesPL->IsPartDefault(thePlaneNumber);
163 }
164
165
166 void VISU::CutPlanes_i::SetNbPlanes(CORBA::Long theNb) { 
167   myCutPlanesPL->SetNbParts(theNb);
168 }
169 CORBA::Long VISU::CutPlanes_i::GetNbPlanes() { 
170   return myCutPlanesPL->GetNbParts();
171 }
172
173
174 void VISU::CutPlanes_i::DoHook(){
175   if(!myPipeLine) myPipeLine = VISU_CutPlanesPL::New();
176   myCutPlanesPL = dynamic_cast<VISU_CutPlanesPL*>(myPipeLine);
177
178   ScalarMap_i::DoHook();
179 }