Salome HOME
#2205 Ability to customize the arrows and texts of dimensions: Default value is set...
[modules/shaper.git] / src / Model / Model_ResultCompSolid.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <Model_ResultCompSolid.h>
22
23 #include <Model_Document.h>
24 #include <Model_Objects.h>
25 #include <Model_BodyBuilder.h>
26 #include <Model_Document.h>
27 #include <ModelAPI_Object.h>
28 #include <ModelAPI_Events.h>
29 #include <Events_Loop.h>
30
31 #include <TopoDS_Shape.hxx>
32 #include <TopExp_Explorer.hxx>
33
34
35 Model_ResultCompSolid::Model_ResultCompSolid()
36 {
37   myBuilder = new Model_BodyBuilder(this);
38   myLastConcealed = false;
39   updateSubs(shape()); // in case of open, etc.
40 }
41
42 Model_ResultCompSolid::~Model_ResultCompSolid()
43 {
44   updateSubs(std::shared_ptr<GeomAPI_Shape>()); // erase sub-results
45 }
46
47 void Model_ResultCompSolid::store(const std::shared_ptr<GeomAPI_Shape>& theShape,
48                                   const bool theIsStoreSameShapes)
49 {
50   ModelAPI_ResultCompSolid::store(theShape, theIsStoreSameShapes);
51   updateSubs(theShape);
52 }
53
54 void Model_ResultCompSolid::storeGenerated(const std::shared_ptr<GeomAPI_Shape>& theFromShape,
55     const std::shared_ptr<GeomAPI_Shape>& theToShape)
56 {
57   ModelAPI_ResultCompSolid::storeGenerated(theFromShape, theToShape);
58   updateSubs(theToShape);
59 }
60
61 void Model_ResultCompSolid::storeModified(const std::shared_ptr<GeomAPI_Shape>& theOldShape,
62     const std::shared_ptr<GeomAPI_Shape>& theNewShape, const int theDecomposeSolidsTag)
63 {
64   ModelAPI_ResultCompSolid::storeModified(theOldShape, theNewShape, theDecomposeSolidsTag);
65   updateSubs(theNewShape);
66 }
67
68 void Model_ResultCompSolid::loadAndOrientModifiedShapes(GeomAlgoAPI_MakeShape* theMS,
69     std::shared_ptr<GeomAPI_Shape>  theShapeIn, const int  theKindOfShape, const int  theTag,
70     const std::string& theName, GeomAPI_DataMapOfShapeShape& theSubShapes,
71     const bool theIsStoreSeparate,
72     const bool theIsStoreAsGenerated,
73     const bool theSplitInSubs)
74 {
75   if (theSplitInSubs && mySubs.size()) { // consists of subs
76     std::vector<std::shared_ptr<ModelAPI_ResultBody> >::const_iterator aSubIter = mySubs.cbegin();
77     for(; aSubIter != mySubs.cend(); aSubIter++) {
78       (*aSubIter)->loadAndOrientModifiedShapes(
79         theMS, theShapeIn, theKindOfShape, theTag, theName, theSubShapes, theIsStoreSeparate,
80         theIsStoreAsGenerated);
81     }
82   } else { // do for this directly
83     ModelAPI_ResultCompSolid::loadAndOrientModifiedShapes(
84     theMS, theShapeIn, theKindOfShape, theTag, theName, theSubShapes, theIsStoreSeparate,
85     theIsStoreAsGenerated);
86   }
87 }
88
89
90 int Model_ResultCompSolid::numberOfSubs(bool forTree) const
91 {
92   return int(mySubs.size());
93 }
94
95 std::shared_ptr<ModelAPI_ResultBody> Model_ResultCompSolid::subResult(const int theIndex,
96                                                                       bool forTree) const
97 {
98   return mySubs.at(theIndex);
99 }
100
101 bool Model_ResultCompSolid::isSub(ObjectPtr theObject) const
102 {
103   std::vector<std::shared_ptr<ModelAPI_ResultBody> >::const_iterator aSubIter = mySubs.cbegin();
104   for(; aSubIter != mySubs.cend(); aSubIter++)
105     if (*aSubIter == theObject)
106       return true;
107   return false;
108 }
109
110 void Model_ResultCompSolid::colorConfigInfo(std::string& theSection, std::string& theName,
111   std::string& theDefault)
112 {
113   theSection = "Visualization";
114   theName = "result_body_color";
115   theDefault = DEFAULT_COLOR();
116 }
117
118 bool Model_ResultCompSolid::setDisabled(std::shared_ptr<ModelAPI_Result> theThis,
119                                         const bool theFlag)
120 {
121   bool aChanged = ModelAPI_ResultBody::setDisabled(theThis, theFlag);
122   if (aChanged) { // state is changed, so modifications are needed
123     myBuilder->evolutionToSelection(theFlag);
124     updateSubs(shape()); // to set disabled/enabled
125   }
126   return aChanged;
127 }
128
129 bool Model_ResultCompSolid::isConcealed()
130 {
131   bool aResult = false;;
132   if (ModelAPI_ResultCompSolid::isConcealed()) {
133     aResult = true;
134   } else {
135     std::vector<std::shared_ptr<ModelAPI_ResultBody> >::const_iterator aSubIter = mySubs.cbegin();
136     for(; aSubIter != mySubs.cend(); aSubIter++) {
137       if ((*aSubIter)->ModelAPI_ResultBody::isConcealed()) {
138         aResult = true;
139         break;
140       }
141     }
142   }
143   if (myLastConcealed != aResult) {
144     myLastConcealed = aResult;
145     //setIsConcealed(aResult); // set for all subs the same result
146     std::vector<std::shared_ptr<ModelAPI_ResultBody> >::const_iterator aSubIter = mySubs.cbegin();
147     for(; aSubIter != mySubs.cend(); aSubIter++) { // update the visualization status of each sub
148       if ((*aSubIter)->ModelAPI_ResultBody::isConcealed() != aResult) {
149         if (aResult) { // hidden unit must be redisplayed (hidden)
150           ModelAPI_EventCreator::get()->sendDeleted(document(), (*aSubIter)->groupName());
151           // redisplay for the viewer (it must be disappeared also)
152           static Events_ID EVENT_DISP =
153             Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
154           ModelAPI_EventCreator::get()->sendUpdated(*aSubIter, EVENT_DISP);
155         } else { // was not concealed become concealed => delete event
156           static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
157           ModelAPI_EventCreator::get()->sendUpdated(*aSubIter, anEvent);
158         }
159       }
160     }
161     // update the display state of the subs: explicitly call Model_ResultBody::isConcealed
162     for(aSubIter = mySubs.cbegin(); aSubIter != mySubs.cend(); aSubIter++) {
163       (*aSubIter)->isConcealed();
164     }
165   }
166   return aResult;
167 }
168
169 void Model_ResultCompSolid::setIsConcealed(const bool theValue)
170 {
171   if (theValue != ModelAPI_ResultCompSolid::isConcealed()) {
172     std::vector<std::shared_ptr<ModelAPI_ResultBody> >::const_iterator aSubIter = mySubs.cbegin();
173     for(; aSubIter != mySubs.cend(); aSubIter++) {
174       if ((*aSubIter)->ModelAPI_ResultBody::isConcealed() != theValue) {
175         if (theValue) { // hidden unit must be redisplayed (hidden)
176           ModelAPI_EventCreator::get()->sendDeleted(document(), (*aSubIter)->groupName());
177           // redisplay for the viewer (it must be disappeared also)
178           static Events_ID EVENT_DISP =
179             Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
180           ModelAPI_EventCreator::get()->sendUpdated(*aSubIter, EVENT_DISP);
181         } else { // was not concealed become concealed => delete event
182           static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
183           ModelAPI_EventCreator::get()->sendUpdated(*aSubIter, anEvent);
184         }
185       }
186     }
187     ModelAPI_ResultCompSolid::setIsConcealed(theValue);
188     // to set correct myLastConcealed
189     isConcealed();
190   }
191   //myLastConcealed = theValue;
192 }
193
194 void Model_ResultCompSolid::updateSubs(const std::shared_ptr<GeomAPI_Shape>& theThisShape)
195 {
196   static Events_Loop* aLoop = Events_Loop::loop();
197   static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
198   static Events_ID EVENT_UPD = aLoop->eventByName(EVENT_OBJECT_UPDATED);
199   static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
200   // iterate all sub-solids of compsolid to make sub-results synchronized with them
201   TopoDS_Shape aThisShape;
202   if (theThisShape.get()) aThisShape = theThisShape->impl<TopoDS_Shape>();
203   if (!aThisShape.IsNull() && (aThisShape.ShapeType() == TopAbs_COMPSOLID ||
204        aThisShape.ShapeType() == TopAbs_COMPOUND)) {
205     bool aWasEmpty = mySubs.empty();
206     Model_Objects* anObjects = std::dynamic_pointer_cast<Model_Document>(document())->objects();
207     unsigned int aSubIndex = 0;
208     TopoDS_Iterator aShapesIter(aThisShape);
209     for(; aShapesIter.More(); aShapesIter.Next(), aSubIndex++) {
210       std::shared_ptr<GeomAPI_Shape> aShape(new GeomAPI_Shape);
211       aShape->setImpl(new TopoDS_Shape(aShapesIter.Value()));
212       ResultBodyPtr aSub;
213       if (mySubs.size() <= aSubIndex) { // it is needed to create a new sub-result
214         aSub = anObjects->createBody(this->data(), aSubIndex);
215         mySubs.push_back(aSub);
216       } else { // just update shape of this result
217         aSub = mySubs[aSubIndex];
218       }
219       if (!aShape->isEqual(aSub->shape())) {
220         aSub->store(aShape, false);
221         aECreator->sendUpdated(aSub, EVENT_DISP);
222         aECreator->sendUpdated(aSub, EVENT_UPD);
223       }
224       aSub->setDisabled(aSub, isDisabled());
225       aSub->setIsConcealed(myLastConcealed);
226     }
227     // erase left, unused results
228     while(mySubs.size() > aSubIndex) {
229       ResultBodyPtr anErased = *(mySubs.rbegin());
230       anErased->setDisabled(anErased, true);
231       mySubs.pop_back();
232     }
233     if (aWasEmpty) { // erase all subs
234       // redisplay this because result with and without subs are displayed differently
235       aECreator->sendUpdated(data()->owner(), EVENT_DISP);
236     }
237   } else if (!mySubs.empty()) { // erase all subs
238     while(!mySubs.empty()) {
239       ResultBodyPtr anErased = *(mySubs.rbegin());
240       if (anErased->data()->isValid())
241         anErased->setDisabled(anErased, true);
242       mySubs.pop_back();
243     }
244     // redisplay this because result with and without subs are displayed differently
245     aECreator->sendUpdated(data()->owner(), EVENT_DISP);
246   }
247 }
248
249 bool Model_ResultCompSolid::isLatestEqual(const std::shared_ptr<GeomAPI_Shape>& theShape)
250 {
251   if (myBuilder->isLatestEqual(theShape))
252     return true;
253   // also check that it is asked for sub-elements
254   std::vector<std::shared_ptr<ModelAPI_ResultBody> >::const_iterator aSubIter = mySubs.cbegin();
255   for(; aSubIter != mySubs.cend(); aSubIter++) {
256     if (aSubIter->get() && (*aSubIter)->isLatestEqual(theShape)) {
257       return true;
258     }
259   }
260   return false;
261 }