Salome HOME
Fix a bug that NbShapes() and ShapeInfo() return 2 solids for a box
[modules/geom.git] / src / GEOMGUI / GEOMGUI_OCCSelector.cxx
1 // Copyright (C) 2007-2013  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.
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   : GEOMGUI_OCCSelector.cxx
24 // Author : Alexander SOLOVYOV, Open CASCADE S.A.S. (alexander.solovyov@opencascade.com)
25 //
26 #include "GEOMGUI_OCCSelector.h"
27
28 #include <LightApp_DataSubOwner.h>
29
30 #include <OCCViewer_ViewModel.h>
31
32 #include <SUIT_Session.h>
33 #include <SalomeApp_Study.h>
34 #include <SALOME_InteractiveObject.hxx>
35
36 #include <StdSelect_BRepOwner.hxx>
37 #include <SelectMgr_Selection.hxx>
38 #include <SelectMgr_EntityOwner.hxx>
39 #include <SelectMgr_IndexedMapOfOwner.hxx>
40 #include <SelectBasics_SensitiveEntity.hxx>
41
42 #include <AIS_Shape.hxx>
43 #include <AIS_ListOfInteractive.hxx>
44 #include <AIS_ListIteratorOfListOfInteractive.hxx>
45 #include <TopExp.hxx>
46 #include <TopTools_IndexedMapOfShape.hxx>
47 #include <TColStd_ListIteratorOfListOfInteger.hxx>
48 #include <TColStd_IndexedMapOfInteger.hxx>
49 #include <NCollection_DataMap.hxx>
50
51
52 //================================================================
53 // Function : GEOMGUI_OCCSelector
54 // Purpose  :
55 //================================================================
56 GEOMGUI_OCCSelector::GEOMGUI_OCCSelector( OCCViewer_Viewer* viewer, SUIT_SelectionMgr* mgr )
57 : LightApp_OCCSelector( viewer, mgr )
58 {
59 }
60
61 //================================================================
62 // Function : ~GEOMGUI_OCCSelector
63 // Purpose  :
64 //================================================================
65 GEOMGUI_OCCSelector::~GEOMGUI_OCCSelector()
66 {
67 }
68
69 //================================================================
70 // Function : getSelection
71 // Purpose  :
72 //================================================================
73 void GEOMGUI_OCCSelector::getSelection( SUIT_DataOwnerPtrList& aList ) const
74 {
75   OCCViewer_Viewer* vw = viewer();
76   if (!vw)
77     return;
78
79   Handle(AIS_InteractiveContext) ic = vw->getAISContext();
80
81   if (ic->HasOpenedContext())
82   {
83     TopoDS_Shape curBigShape;
84     TopTools_IndexedMapOfShape subShapes;
85
86     for (ic->InitSelected(); ic->MoreSelected(); ic->NextSelected())
87     {
88       Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast(ic->SelectedOwner());
89       if (anOwner.IsNull())
90         continue;
91
92       Handle(AIS_InteractiveObject) io = Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
93
94       QString entryStr = entry(io);
95       int index = -1;
96
97       if (anOwner->ComesFromDecomposition()) // == Local Selection
98       {
99         TopoDS_Shape subShape = anOwner->Shape();
100         Handle(AIS_Shape) aisShape = Handle(AIS_Shape)::DownCast(io);
101         if (!aisShape.IsNull())
102         {
103           TopoDS_Shape bigShape = aisShape->Shape();
104
105           if (!bigShape.IsEqual(curBigShape))
106           {
107             curBigShape = bigShape;
108             subShapes.Clear();
109             TopExp::MapShapes(bigShape, subShapes);
110           }
111           index = subShapes.FindIndex(subShape);
112         }
113       }
114
115       if (!entryStr.isEmpty())
116       {
117         Handle(SALOME_InteractiveObject) anIO = Handle(SALOME_InteractiveObject)::DownCast(io->GetOwner()); 
118         LightApp_DataOwner* owner;
119         if (index > -1) // Local Selection
120           owner = new LightApp_DataSubOwner (entryStr, index);
121         else if ( !anIO.IsNull() ) // Global Selection
122           owner = new LightApp_DataOwner( anIO );
123
124         aList.append(SUIT_DataOwnerPtr(owner));
125       }
126     }
127   }
128   else
129   {
130     for (ic->InitCurrent(); ic->MoreCurrent(); ic->NextCurrent())
131     {
132       Handle(AIS_InteractiveObject) io = ic->Current();
133
134       QString entryStr = entry( io );
135
136       if ( !entryStr.isEmpty() )
137       {
138         Handle(SALOME_InteractiveObject) anIO = Handle(SALOME_InteractiveObject)::DownCast(io->GetOwner()); 
139         if ( !anIO.IsNull() ) {
140           LightApp_DataOwner* owner = new LightApp_DataOwner( anIO );
141           aList.append( SUIT_DataOwnerPtr( owner ) );
142         }
143       }
144     }
145   }
146
147   // add externally selected objects
148   SUIT_DataOwnerPtrList::const_iterator anExtIter;
149   for (anExtIter = mySelectedExternals.begin(); anExtIter != mySelectedExternals.end(); anExtIter++)
150   {
151     aList.append(*anExtIter);
152   }
153 }
154
155 //================================================================
156 // Function : getEntityOwners
157 // Purpose  :
158 //================================================================
159 static void getEntityOwners( const Handle(AIS_InteractiveObject)& theObj,
160                              const Handle(AIS_InteractiveContext)& theIC,
161                              SelectMgr_IndexedMapOfOwner& theMap )
162 {
163   if ( theObj.IsNull() || theIC.IsNull() )
164     return;
165
166   TColStd_ListOfInteger modes;
167   theIC->ActivatedModes( theObj, modes );
168
169   TColStd_ListIteratorOfListOfInteger itr( modes );
170   for (; itr.More(); itr.Next() ) {
171     int m = itr.Value();
172     if ( !theObj->HasSelection( m ) )
173       continue;
174
175     Handle(SelectMgr_Selection) sel = theObj->Selection( m );
176
177     for ( sel->Init(); sel->More(); sel->Next() ) {
178       Handle(SelectBasics_SensitiveEntity) entity = sel->Sensitive();
179       if ( entity.IsNull() )
180         continue;
181
182       Handle(SelectMgr_EntityOwner) owner =
183         Handle(SelectMgr_EntityOwner)::DownCast(entity->OwnerId());
184       if ( !owner.IsNull() )
185         theMap.Add( owner );
186     }
187   }
188 }
189
190 //================================================================
191 // Function : setSelection
192 // Purpose  :
193 //================================================================
194 void GEOMGUI_OCCSelector::setSelection( const SUIT_DataOwnerPtrList& aList )
195 {
196   OCCViewer_Viewer* vw = viewer();
197   if ( !vw )
198     return;
199
200   Handle(AIS_InteractiveContext) ic = vw->getAISContext();
201
202   // "entry - list_of_int" map for LOCAL selection
203   NCollection_DataMap<TCollection_AsciiString, TColStd_IndexedMapOfInteger> indexesMap;
204
205   QMap<QString,int> globalSelMap; // only Key=entry from this map is used.  value(int) is NOT used at all.
206   SelectMgr_IndexedMapOfOwner ownersmap; // map of owners to be selected
207
208   AIS_ListOfInteractive aDispList;
209   ic->DisplayedObjects( aDispList );
210
211   // build a map of data owner indexes to be selected.
212   // "entry - to - list_of_ids" map
213   for ( SUIT_DataOwnerPtrList::const_iterator itr = aList.begin(); itr != aList.end(); ++itr )
214   {
215     const LightApp_DataSubOwner* subOwner = dynamic_cast<const LightApp_DataSubOwner*>( (*itr).operator->() );
216     if ( subOwner )
217     {
218       QString entry = subOwner->entry();
219       if ( indexesMap.IsBound( TCollection_AsciiString(entry.toLatin1().data())))
220       {
221         TColStd_IndexedMapOfInteger& subIndexes = indexesMap.ChangeFind(entry.toLatin1().data());
222         subIndexes.Add( subOwner->index() );
223         //indexesMap.replace( entry, subIndexes );
224       }
225       else
226       {
227         TColStd_IndexedMapOfInteger subIndexes;
228         subIndexes.Add( subOwner->index() );
229         indexesMap.Bind(entry.toLatin1().data(), subIndexes);
230       }
231     }
232     else // the owner is NOT a sub owner, maybe it is a DataOwner == GLOBAL selection
233     {
234       const LightApp_DataOwner* owner = dynamic_cast<const LightApp_DataOwner*>( (*itr).operator->() );
235       if ( owner )
236       {
237         SalomeApp_Study* appStudy =
238           dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
239         QString anEntry = appStudy->referencedToEntry( owner->entry() );
240
241         globalSelMap[anEntry] = 1;
242       }
243     }
244   }
245
246   // get all owners.  Fill "entry - list_of_owners" map.
247   for ( AIS_ListIteratorOfListOfInteractive it( aDispList ); it.More(); it.Next() )
248   {
249     Handle(AIS_InteractiveObject) io = it.Value();
250     QString entryStr = entry( io );
251     if ( !entryStr.isEmpty() )
252     {
253       //EntryToListOfOwnerMap entryOwnersMap; // "entry - list_of_owners" map.  temporary use.
254       SelectMgr_IndexedMapOfOwner owners;
255       getEntityOwners( io, ic, owners ); // get all owners
256
257       int i, n = owners.Extent();
258
259       // 1. Prepare map of shapes for local selection
260       TopTools_IndexedMapOfShape aMapOfShapes;
261       bool isLocal = false;
262
263       Handle(StdSelect_BRepOwner) anOwner;
264       for (i = 1; i <= n && !isLocal; i++)
265       {
266         anOwner = Handle(StdSelect_BRepOwner)::DownCast(owners( i ));
267         if (!anOwner.IsNull() && anOwner->HasShape())
268         {
269           if (anOwner->ComesFromDecomposition() || !globalSelMap.contains(entryStr))
270           {
271             // has a local selection
272             Handle(AIS_Shape) aisShape = Handle(AIS_Shape)::DownCast( io );
273             if (!aisShape.IsNull() && indexesMap.IsBound(entryStr.toLatin1().data()))
274             {
275               isLocal = true;
276               TopoDS_Shape shape = aisShape->Shape();
277               aMapOfShapes.Clear();
278               TopExp::MapShapes(shape, aMapOfShapes);
279             }
280           }
281         }
282       }
283
284       // 2. Process all owners
285       for (i = 1; i <= n; i++)
286       {
287         anOwner = Handle(StdSelect_BRepOwner)::DownCast(owners( i ));
288
289         if ( anOwner.IsNull() || !anOwner->HasShape() )
290           continue;
291
292         // GLOBAL selection
293         if ( !anOwner->ComesFromDecomposition() && globalSelMap.contains( entryStr ) )
294         {
295           ownersmap.Add( anOwner );
296           globalSelMap[entryStr]++;
297         }
298         // LOCAL selection
299         else
300         {
301           if (isLocal)
302           {
303             const TColStd_IndexedMapOfInteger& subIndexes =
304               indexesMap.ChangeFind(entryStr.toLatin1().data());
305
306             const TopoDS_Shape& aSubShape = anOwner->Shape();
307             int aSubShapeId = aMapOfShapes.FindIndex( aSubShape );
308
309             // check if the "sub_shape_index" is found in the "map of indexes for this entry",
310             // which was passes in the parameter
311             if ( subIndexes.Contains( aSubShapeId ) )
312             {
313               ownersmap.Add( anOwner );
314             }
315           }
316         } // end of LOCAL selection
317       } // end of for(owners)
318     } // end of if(entry)
319   } // end of for(AIS_all_ios)
320
321   vw->unHighlightAll( false );
322
323   // DO the selection
324   int i = 1, n = ownersmap.Extent();
325   bool isAutoHilight = ic->AutomaticHilight();
326   ic->SetAutomaticHilight(Standard_False); //Bug 17269: for better performance
327   for  (; i <= n; i++)
328   {
329     Handle(SelectMgr_EntityOwner) owner = ownersmap( i );
330     if ( owner->State() )
331       continue;
332
333     if ( ic->HasOpenedContext() )
334       ic->AddOrRemoveSelected( owner, false );
335     else
336       ic->AddOrRemoveSelected( Handle(AIS_InteractiveObject)::DownCast(owner->Selectable()), false );
337   }
338   ic->SetAutomaticHilight(isAutoHilight); //Bug 17269: restore mode
339   if (n < 3000)
340     ic->HilightSelected(/*updateviewer*/Standard_True);
341   else
342     vw->update();
343
344   // fill extra selected
345   mySelectedExternals.clear();
346   for ( SUIT_DataOwnerPtrList::const_iterator itr2 = aList.begin(); itr2 != aList.end(); ++itr2 )
347   {
348     const LightApp_DataSubOwner* subOwner =
349       dynamic_cast<const LightApp_DataSubOwner*>( (*itr2).operator->() );
350     if ( !subOwner )
351     {
352       const LightApp_DataOwner* owner = dynamic_cast<const LightApp_DataOwner*>( (*itr2).operator->() );
353       if ( owner )
354       {
355         SalomeApp_Study* appStudy =
356           dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
357         QString anEntry = appStudy->referencedToEntry( owner->entry() );
358         if (globalSelMap[anEntry] == 1) mySelectedExternals.append(*itr2);
359       }
360     }
361   }
362 }