1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #include "HYDROGUI_OCCDisplayer.h"
21 #include "HYDROGUI_DataModel.h"
22 #include "HYDROGUI_Module.h"
23 #include "HYDROGUI_Tool.h"
24 #include <HYDROGUI_ShapeImage.h>
25 #include <HYDROGUI_ShapeBathymetry.h>
27 //#include <HYDROGUI_ShapeLandCoverMap.h>
28 #include "HYDROGUI_Operation.h"
29 #include "HYDROGUI_DataObject.h"
30 #include "HYDROGUI_ZLayers.h"
32 #include <HYDROData_Bathymetry.h>
33 #include <HYDROData_LandCoverMap.h>
34 #include <HYDROData_StricklerTable.h>
36 #include <AIS_InteractiveContext.hxx>
37 #include <AIS_ListIteratorOfListOfInteractive.hxx>
38 #include <AIS_ListOfInteractive.hxx>
40 #include <Aspect_ColorScale.hxx>
42 #include <TColStd_SequenceOfInteger.hxx>
44 #include <LightApp_Application.h>
45 #include <SUIT_Study.h>
47 #include <OCCViewer_ViewManager.h>
48 #include <OCCViewer_ViewModel.h>
49 #include <OCCViewer_ViewWindow.h>
50 #include <OCCViewer_ViewPort3d.h>
52 HYDROGUI_OCCDisplayer::HYDROGUI_OCCDisplayer( HYDROGUI_Module* theModule )
53 : HYDROGUI_AbstractDisplayer( theModule )
55 myToUpdateColorScale = false;
58 HYDROGUI_OCCDisplayer::~HYDROGUI_OCCDisplayer()
62 void HYDROGUI_OCCDisplayer::SetToUpdate( const HYDROData_SequenceOfObjects& theObjs,
63 const int theViewerId )
65 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
69 for ( int i = 1, n = theObjs.Length(); i <= n; i++ )
71 Handle(HYDROData_Entity) anObj = theObjs.Value( i );
75 HYDROGUI_Shape* anObjShape = module()->getObjectShape( (size_t)aViewer, anObj );
79 anObjShape->setIsToUpdate( true );
83 int HYDROGUI_OCCDisplayer::AddPreviewZLayer( OCCViewer_ViewManager* theMgr )
86 OCCViewer_Viewer* aViewer = theMgr->getOCCViewer();
90 aLayer = CreateTopZLayer( aViewer->getViewer3d() );
92 // Hilight presentation should be on top
93 Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
94 if( !aCtx.IsNull() ) {
95 int aTopLayer = CreateTopZLayer( aViewer->getViewer3d() );
96 if ( aTopLayer > 0 ) {
97 UpdateZLayersOfHilightPresentationsOfDisplayedObjects( aCtx, aTopLayer );
104 void HYDROGUI_OCCDisplayer::RemoveZLayer( OCCViewer_ViewManager* theMgr,
110 OCCViewer_Viewer* aViewer = theMgr->getOCCViewer();
114 // Get existing Z layers
115 TColStd_SequenceOfInteger anExistingZLayers;
116 aViewer->getViewer3d()->GetAllZLayers( anExistingZLayers );
117 int aNbLayers = anExistingZLayers.Length();
119 if ( theLayer < aNbLayers )
120 aViewer->getViewer3d()->RemoveZLayer( theLayer );
123 void HYDROGUI_OCCDisplayer::EraseAll( const int theViewerId )
125 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
129 module()->removeViewShapes( (size_t)aViewer );
130 UpdateColorScale( aViewer );
133 void HYDROGUI_OCCDisplayer::Erase( const HYDROData_SequenceOfObjects& theObjs,
134 const int theViewerId )
136 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
140 for ( int i = 1, n = theObjs.Length(); i <= n; i++ )
142 Handle(HYDROData_Entity) anObj = theObjs.Value( i );
146 module()->removeObjectShape( (size_t)aViewer, anObj );
149 if ( !module()->isLandCoversScalarMapModeOn( (size_t)aViewer ) ) {
150 UpdateColorScale( aViewer );
154 HYDROGUI_Shape* HYDROGUI_OCCDisplayer::createShape( const int theViewerId,
155 const Handle(AIS_InteractiveContext)& theContext,
156 const Handle(HYDROData_Entity)& theObject )
158 HYDROGUI_Shape* aResShape = NULL;
159 if ( theContext.IsNull() || theObject.IsNull() )
162 if ( !HYDROGUI_Tool::IsObjectHasPresentation( theObject, OCCViewer_Viewer::Type() ) )
165 if( theObject->IsKind( STANDARD_TYPE( HYDROData_Image ) ) )
166 aResShape = new HYDROGUI_ShapeImage( theContext, Handle_HYDROData_Image::DownCast( theObject ) );
167 else if( theObject->IsKind( STANDARD_TYPE( HYDROData_Bathymetry ) ) )
168 aResShape = new HYDROGUI_ShapeBathymetry( this, theContext, Handle_HYDROData_Bathymetry::DownCast( theObject ) );
169 else if( theObject->IsKind( STANDARD_TYPE( HYDROData_LandCoverMap ) ) ) {
170 bool isScalarMode = module()->isLandCoversScalarMapModeOn( theViewerId );
172 aResShape = new HYDROGUI_ShapeLandCover( this, theContext, Handle_HYDROData_LandCoverMap::DownCast( theObject ), -1, isScalarMode );
176 aResShape = new HYDROGUI_Shape( theContext, theObject );
178 module()->setObjectShape( theViewerId, theObject, aResShape );
183 void HYDROGUI_OCCDisplayer::Display( const HYDROData_SequenceOfObjects& theObjs,
184 const int theViewerId,
185 const bool theIsForced,
186 const bool theDoFitAll )
188 // Get OCC viewer by id
189 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
193 // Get interactive context
194 Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
199 Handle(HYDROData_Document) aDoc = HYDROData_Document::Document( module()->getStudyId() );
203 // Assign Z layer indexes to the objects
204 aDoc->Show( theObjs );
206 // Sort objects by display order ( needed for Z layers assignment only )
207 HYDROData_SequenceOfObjects anUnorderedToDisplay = theObjs;
208 HYDROData_SequenceOfObjects anOrderedToDisplay;
209 HYDROData_SequenceOfObjects anAllOrderedObjects = aDoc->GetObjectsLayerOrder();
211 HYDROData_SequenceOfObjects::Iterator anAllOrderedIter( anAllOrderedObjects );
212 for ( ; anAllOrderedIter.More(); anAllOrderedIter.Next() ) {
213 QString anOrderedEntry =
214 HYDROGUI_DataObject::dataObjectEntry( anAllOrderedIter.Value() );
216 HYDROData_SequenceOfObjects::Iterator aToDisplayIter( anUnorderedToDisplay );
217 for ( ; aToDisplayIter.More(); aToDisplayIter.Next() ) {
218 Handle(HYDROData_Entity) anObjToDisplay = aToDisplayIter.Value();
219 QString anEntry = HYDROGUI_DataObject::dataObjectEntry( anObjToDisplay );
220 if ( anEntry == anOrderedEntry ) {
221 anOrderedToDisplay.Prepend( anObjToDisplay );
222 anUnorderedToDisplay.Remove( aToDisplayIter );
229 Handle(V3d_Viewer) aViewer3d = aViewer->getViewer3d();
232 HYDROGUI_ZLayersIterator aZLayersIt( aViewer->getViewer3d() );
233 if ( !aZLayersIt.More() ) {
237 // 1. Display the ordered objects:
238 HYDROData_SequenceOfObjects::Iterator anOrderedIter( anOrderedToDisplay );
239 for ( ; anOrderedIter.More(); anOrderedIter.Next() ) {
240 Handle(HYDROData_Entity) anObj = anOrderedIter.Value();
241 if ( Display( anObj, aViewer, theIsForced ) ) {
242 // set Z layer ( one Z layer for each ordered object )
243 int aZLayerId = aZLayersIt.LayerId();
244 SetZLayer( aViewer, anObj, aZLayerId );
245 SetZLayerSettings( aViewer3d, aZLayerId, true );
250 // 2. Display the unordered objects:
251 bool isDisplayed = false;
252 int anUnorderedZLayerId = aZLayersIt.LayerId();
253 HYDROData_SequenceOfObjects::Iterator anUnorderedIter( anUnorderedToDisplay );
254 for ( ; anUnorderedIter.More(); anUnorderedIter.Next() ) {
255 Handle(HYDROData_Entity) anObj = anUnorderedIter.Value();
256 if ( Display( anObj, aViewer, theIsForced) ) {
257 // set Z layer ( one Z layer for all unordered objects )
258 SetZLayer( aViewer, anObj, anUnorderedZLayerId );
259 if ( !isDisplayed ) {
260 SetZLayerSettings( aViewer3d, anUnorderedZLayerId, false );
266 // 3. Update the top Z layer index
271 // Update Z layer of the active operation
272 int aPreviewZLayerId = aZLayersIt.LayerId();
274 HYDROGUI_Module* aModule = module();
275 SUIT_Operation* anOp = aModule->activeOperation();
276 HYDROGUI_Operation* aHOp = anOp ? dynamic_cast<HYDROGUI_Operation*>( anOp ) : 0;
277 if ( aHOp && aHOp->getPreviewZLayer() >= 0 ) {
278 aHOp->updatePreviewZLayer( aPreviewZLayerId );
282 // Update Z layer of hilight presentations
283 int aHilightLayer = aZLayersIt.TopLayer();
284 UpdateZLayersOfHilightPresentationsOfDisplayedObjects( aCtx, aHilightLayer );
286 // Fit all / update selection
288 OCCViewer_ViewManager* aViewManager
289 = ::qobject_cast<OCCViewer_ViewManager*>( aViewer->getViewManager() );
290 if ( aViewManager ) {
291 OCCViewer_ViewWindow* aViewWindow =
292 ::qobject_cast<OCCViewer_ViewWindow*>( aViewManager->getActiveView() );
294 aViewWindow->onFitAll();
298 else if ( !aCtx.IsNull() ) { // TODO: determine if this code is necessary (added as a fix for issue# 359)
299 aCtx->UpdateSelected();
302 UpdateColorScale( aViewer );
305 void HYDROGUI_OCCDisplayer::purgeObjects( const int theViewerId )
307 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
311 Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
315 AIS_ListOfInteractive aDisplayedObjects;
316 aCtx->DisplayedObjects( aDisplayedObjects );
318 AIS_ListIteratorOfListOfInteractive aListIter( aDisplayedObjects );
319 for ( ; aListIter.More(); aListIter.Next() )
321 Handle(AIS_InteractiveObject) aPrsObj = aListIter.Value();
322 if ( aPrsObj.IsNull() )
325 Handle(HYDROData_Entity) anOwnerObj =
326 Handle(HYDROData_Entity)::DownCast( aPrsObj->GetOwner() );
327 if ( !anOwnerObj.IsNull() && anOwnerObj->IsRemoved() )
328 module()->removeObjectShape( (size_t)aViewer, anOwnerObj );
332 QString HYDROGUI_OCCDisplayer::GetType() const
334 return OCCViewer_Viewer::Type();
337 bool HYDROGUI_OCCDisplayer::Display( const Handle(HYDROData_Entity)& theObject,
338 const OCCViewer_Viewer* theViewer,
339 const bool theIsForced )
343 if ( theObject.IsNull() || theObject->IsRemoved() || !theViewer ) {
347 // Get interactive context
348 Handle(AIS_InteractiveContext) aCtx = theViewer->getAISContext();
349 if( aCtx.IsNull() ) {
354 size_t aViewerId = (size_t)theViewer;
357 HYDROGUI_Shape* anObjShape = module()->getObjectShape( aViewerId, theObject );
360 anObjShape = createShape( aViewerId, aCtx, theObject );
362 anObjShape->setIsToUpdate( true );
369 if ( anObjShape->getIsToUpdate() || theIsForced ) {
370 anObjShape->update( false, false );
374 bool anIsVisible = module()->isObjectVisible( aViewerId, theObject );
375 anObjShape->setVisible( anIsVisible, false );
383 void HYDROGUI_OCCDisplayer::SetZLayer( const OCCViewer_Viewer* theViewer,
384 const Handle(HYDROData_Entity)& theObject,
385 const int theZLayerId )
387 if ( !theViewer /*|| ( theZLayerId < 0 )*/ ) {
391 // Get interactive context
392 Handle(AIS_InteractiveContext) aCtx = theViewer->getAISContext();
393 if( aCtx.IsNull() ) {
398 size_t aViewerId = (size_t)theViewer;
401 HYDROGUI_Shape* anObjShape = module()->getObjectShape( aViewerId, theObject );
405 aCtx->SetZLayer( anObjShape->getAISObject(), theZLayerId );
409 void HYDROGUI_OCCDisplayer::SetToUpdateColorScale()
411 myToUpdateColorScale = true;
414 void HYDROGUI_OCCDisplayer::UpdateColorScale( const OCCViewer_Viewer* theViewer )
416 if( !myToUpdateColorScale || !theViewer )
419 OCCViewer_ViewWindow* aWnd = dynamic_cast<OCCViewer_ViewWindow*>( theViewer->getViewManager()->getActiveView() );
420 Handle(V3d_View) aView = aWnd->getViewPort()->getView();
422 int aViewerId = (size_t)theViewer;//TODO: check if viewer id is correct
423 bool isLandCoverColoringOn = module()->isLandCoversScalarMapModeOn( aViewerId );
425 QList<HYDROGUI_Shape*> aLandCoverShapes = module()->getObjectShapes( aViewerId, KIND_LAND_COVER_MAP );
426 QList<HYDROGUI_Shape*> aBathShapes = module()->getObjectShapes( aViewerId, KIND_BATHYMETRY );
428 bool isDisplayColorScale = !aBathShapes.empty() || isLandCoverColoringOn;
429 Standard_Real anXPos = 0.05; //TODO
430 Standard_Real anYPos = 0.1; //TODO
431 Standard_Real aWidth = 0.2; //TODO
432 Standard_Real aHeight = 0.5; //TODO
433 Standard_Integer aTextHeight = 14; //TODO
434 Standard_Integer aNbIntervals = 20; //TODO
435 TCollection_ExtendedString aColorScaleTitle = "";//TODO
437 Standard_Real aColorScaleMin = 0, aColorScaleMax = 1;
440 Handle(HYDROData_StricklerTable) aTable;
441 QStringList aTableTypes;
442 if ( isLandCoverColoringOn ) {
443 aTable = module()->getLandCoverColoringTable( aViewerId );
444 if ( !aTable.IsNull() ) {
445 // TODO: non-empty title leads to buggy behaviour
446 // aColorScaleTitle = TCollection_ExtendedString( aTable->GetName().toLatin1().constData() );
447 aTable->GetCoefficientRange( aColorScaleMin, aColorScaleMax );
448 aTableTypes = aTable->GetTypes();
451 Standard_Real aMin, aMax;
453 foreach( HYDROGUI_Shape* aShape, aBathShapes )
455 HYDROGUI_ShapeBathymetry* aBathShape = dynamic_cast<HYDROGUI_ShapeBathymetry*>( aShape );
456 if( !aBathShape || !aBathShape->isVisible() )
459 aBathShape->GetRange( aMin, aMax );
461 if( isFirst || aMin < aColorScaleMin )
462 aColorScaleMin = aMin;
463 if( isFirst || aMax > aColorScaleMax )
464 aColorScaleMax = aMax;
470 Handle(Aspect_ColorScale) aColorScale;
471 if( isDisplayColorScale )
473 aColorScale = aView->ColorScale();
474 if( !aColorScale.IsNull() )
476 aColorScale->SetXPosition( anXPos );
477 aColorScale->SetYPosition( anYPos );
478 aColorScale->SetWidth( aWidth );
479 aColorScale->SetHeight( aHeight );
481 aColorScale->SetTextHeight( aTextHeight );
482 aColorScale->SetNumberOfIntervals( aNbIntervals );
484 aColorScale->SetTitle( aColorScaleTitle );
485 aColorScale->SetRange( aColorScaleMin, aColorScaleMax );
487 if ( !isLandCoverColoringOn ) {
488 foreach( HYDROGUI_Shape* aShape, aBathShapes ) {
489 HYDROGUI_ShapeBathymetry* aBathShape = dynamic_cast<HYDROGUI_ShapeBathymetry*>( aShape );
490 if( !aBathShape || !aBathShape->isVisible() )
493 aBathShape->UpdateWithColorScale( aColorScale );
497 if( !aView->ColorScaleIsDisplayed() )
498 aView->ColorScaleDisplay();
502 if( aView->ColorScaleIsDisplayed() )
503 aView->ColorScaleErase();
507 foreach( HYDROGUI_Shape* aShape, aLandCoverShapes ) {
508 HYDROGUI_ShapeLandCover* aLandCoverShape =
509 dynamic_cast<HYDROGUI_ShapeLandCover*>( aShape );
511 if ( !aLandCoverShape || !aLandCoverShape->isVisible() ) {
516 Handle(HYDROData_LandCover) aLandCover =
517 Handle(HYDROData_LandCover)::DownCast( aLandCoverShape->getObject() );
519 if ( aLandCover.IsNull() ) {
523 QColor aUndefinedColor( Qt::gray );
524 QColor aColor = isLandCoverColoringOn ? aUndefinedColor : aLandCover->GetFillingColor();
526 if ( isLandCoverColoringOn && !aTable.IsNull() ) {
527 QString aStricklerType =
528 aLandCover->GetStricklerType().toLatin1().constData();
530 if ( aTable->HasType( aStricklerType ) ) {
531 double aStricklerCoeff = aTable->Get( aStricklerType, 0 );
532 Quantity_Color aShapeColor;
533 if ( aColorScale->FindColor( aStricklerCoeff, aShapeColor ) ) {
534 aColor = QColor( aShapeColor.Red() * 255,
535 aShapeColor.Green() * 255,
536 aShapeColor.Blue() * 255 );
541 aLandCoverShape->setFillingColor( aColor, true, true );
542 aLandCoverShape->setScalarMapModeEnabled( isLandCoverColoringOn );
543 theViewer->getAISContext()->Redisplay( aLandCoverShape->getAISObject() );
547 myToUpdateColorScale = false;