]> SALOME platform Git repositories - modules/shaper_study.git/blob - src/StudyData/StudyData_Object.cpp
Salome HOME
Implementation of Groups support by the SHAPER-STUDY module
[modules/shaper_study.git] / src / StudyData / StudyData_Object.cpp
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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 #include "StudyData_Object.h"
24
25 #include <TopExp.hxx>
26 #include <BRep_Builder.hxx>
27 #include <BRepTools.hxx>
28 #include <BRepBuilderAPI_Copy.hxx>
29
30 StudyData_Object::StudyData_Object(const std::string theFile)
31 {
32   std::istringstream streamBrep(theFile.c_str());
33   BRep_Builder aBuilder;
34   BRepTools::Read(myShape, streamBrep, aBuilder);
35   myTick = 1;
36   myStream = theFile;
37 }
38
39 StudyData_Object::StudyData_Object()
40 {
41   myTick = 0; // when shape is defined, it will be increased to 1
42 }
43
44 int StudyData_Object::type() const
45 {
46   if (myShape.IsNull())
47     return 8; // GEOM.SHAPE
48   return (int) myShape.ShapeType();
49 }
50
51 std::string StudyData_Object::shapeStream() const
52 {
53   return myStream;
54 }
55
56 std::string StudyData_Object::oldShapeStream() const
57 {
58   return myOldStream.empty() ? myStream : myOldStream;
59 }
60
61 long long StudyData_Object::shape() const
62 {
63   return ((long long)(&myShape));
64 }
65
66 void StudyData_Object::updateShape(const std::string theFile)
67 {
68   if (myStream == theFile) { // absolutely identical shapes, no need to store
69     return;
70   }
71   // update the current shape
72   std::istringstream streamBrep(theFile.c_str());
73   BRep_Builder aBuilder;
74   myOldShape = myShape;
75   BRepTools::Read(myShape, streamBrep, aBuilder);
76   myTick++;
77   myOldStream = myStream;
78   myStream = theFile;
79 }
80
81 int StudyData_Object::getTick() const
82 {
83   return myTick;
84 }
85
86 void StudyData_Object::setTick(const int theValue)
87 {
88   myTick = theValue;
89 }
90
91 void StudyData_Object::SetShapeByPointer(const long long theShape)
92 {
93   myOldShape = myShape;
94   myShape = *((TopoDS_Shape*)theShape);
95   std::ostringstream aStreamBrep;
96   if (!myShape.IsNull()) {
97     BRepTools::Write(myShape, aStreamBrep);
98   }
99   myOldStream = myStream;
100   myStream = aStreamBrep.str();
101   myTick++;
102 }
103
104 long long StudyData_Object::groupShape(long long theMainShape, const std::list<long> theSelection)
105 {
106   if (myShape.IsNull()) { // compute the cashed shape
107     TopoDS_Shape* aShape = (TopoDS_Shape*)theMainShape;
108     TopTools_IndexedMapOfShape anIndices;
109     TopExp::MapShapes(*aShape, anIndices);
110
111     TopoDS_Compound aResult;
112     BRep_Builder aBuilder;
113     aBuilder.MakeCompound(aResult);
114
115     std::list<long>::const_iterator aSelIter = theSelection.cbegin();
116     for(; aSelIter != theSelection.cend(); aSelIter++) {
117       TopoDS_Shape aSel = anIndices.FindKey(*aSelIter);
118       aBuilder.Add(aResult, aSel);
119     }
120     myShape = aResult;
121   }
122   return (long long)(&myShape);
123 }