///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) Statoil ASA // Copyright (C) Ceetron Solutions AS // // ResInsight is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. // // See the GNU General Public License at // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RimFaultInViewCollection.h" #include "RiaColorTables.h" #include "RiaDefines.h" #include "RiaPreferences.h" #include "RiaResultNames.h" #include "RigMainGrid.h" #include "RimEclipseCase.h" #include "RimEclipseFaultColors.h" #include "RimEclipseInputCase.h" #include "RimEclipseView.h" #include "RimFaultInView.h" #include "RimFaultRASettings.h" #include "RimIntersectionCollection.h" #include "RiuMainWindow.h" #include "cafAppEnum.h" #include "cafPdmFieldCvfColor.h" #include "cafPdmFieldCvfMat4d.h" #include "cafPdmUiCheckBoxEditor.h" #include "cafPdmUiTreeOrdering.h" namespace caf { template <> void AppEnum::setUp() { addItem( RimFaultInViewCollection::FAULT_BACK_FACE_CULLING, "FAULT_BACK_FACE_CULLING", "Cell behind fault" ); addItem( RimFaultInViewCollection::FAULT_FRONT_FACE_CULLING, "FAULT_FRONT_FACE_CULLING", "Cell in front of fault" ); addItem( RimFaultInViewCollection::FAULT_NO_FACE_CULLING, "FAULT_NO_FACE_CULLING", "Show both" ); setDefault( RimFaultInViewCollection::FAULT_NO_FACE_CULLING ); } } // namespace caf CAF_PDM_SOURCE_INIT( RimFaultInViewCollection, "Faults" ); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimFaultInViewCollection::RimFaultInViewCollection() { CAF_PDM_InitObject( "Faults", ":/draw_style_faults_24x24.png" ); CAF_PDM_InitField( &showFaultCollection, "Active", true, "Active" ); showFaultCollection.uiCapability()->setUiHidden( true ); CAF_PDM_InitField( &showFaultFaces, "ShowFaultFaces", true, "Show Defined faces" ); caf::PdmUiNativeCheckBoxEditor::configureFieldForEditor( &showFaultFaces ); CAF_PDM_InitField( &showOppositeFaultFaces, "ShowOppositeFaultFaces", true, "Show Opposite Faces" ); caf::PdmUiNativeCheckBoxEditor::configureFieldForEditor( &showOppositeFaultFaces ); CAF_PDM_InitField( &m_showFaultsOutsideFilters, "ShowFaultsOutsideFilters", true, "Show Faults Outside Filters" ); caf::PdmUiNativeCheckBoxEditor::configureFieldForEditor( &m_showFaultsOutsideFilters ); CAF_PDM_InitField( &m_onlyShowWithNeighbor, "OnlyShowWithDefNeighbor", false, "Only Show Faces With Defined Cell Neighbor" ); caf::PdmUiNativeCheckBoxEditor::configureFieldForEditor( &m_onlyShowWithNeighbor ); CAF_PDM_InitField( &faultResult, "FaultFaceCulling", caf::AppEnum( RimFaultInViewCollection::FAULT_BACK_FACE_CULLING ), "Dynamic Face Selection" ); CAF_PDM_InitField( &showFaultLabel, "ShowFaultLabel", false, "Show Labels" ); caf::PdmUiNativeCheckBoxEditor::configureFieldForEditor( &showFaultLabel ); cvf::Color3f defWellLabelColor = RiaPreferences::current()->defaultWellLabelColor(); CAF_PDM_InitField( &faultLabelColor, "FaultLabelColor", defWellLabelColor, "Label Color" ); CAF_PDM_InitField( &showNNCs, "ShowNNCs", true, "Show NNCs" ); caf::PdmUiNativeCheckBoxEditor::configureFieldForEditor( &showNNCs ); CAF_PDM_InitField( &hideNncsWhenNoResultIsAvailable, "HideNncsWhenNoResultIsAvailable", true, "Hide NNC Geometry if No NNC Result is Available" ); caf::PdmUiNativeCheckBoxEditor::configureFieldForEditor( &hideNncsWhenNoResultIsAvailable ); CAF_PDM_InitFieldNoDefault( &faults, "Faults", "Faults" ); faults.uiCapability()->setUiTreeHidden( true ); CAF_PDM_InitField( &m_enableFaultRA, "EnableFaultRA", false, "Enable Fault RA" ); m_enableFaultRA.uiCapability()->setUiReadOnly( true ); m_enableFaultRA.uiCapability()->setUiHidden( true ); CAF_PDM_InitFieldNoDefault( &m_faultRASettings, "FaultRASettings", "Reactivation Assessment Settings" ); m_faultRASettings = new RimFaultRASettings(); m_faultRASettings.uiCapability()->setUiHidden( true ); m_faultRASettings.uiCapability()->setUiTreeHidden( true ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimFaultInViewCollection::~RimFaultInViewCollection() { faults.deleteAllChildObjects(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFaultInViewCollection::fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) { this->updateUiIconFromToggleField(); if ( &faultLabelColor == changedField ) { parentView()->scheduleReservoirGridGeometryRegen(); parentView()->intersectionCollection()->scheduleCreateDisplayModelAndRedraw2dIntersectionViews(); } if ( changedField == &m_onlyShowWithNeighbor ) { parentView()->scheduleReservoirGridGeometryRegen(); } if ( &showFaultFaces == changedField || &showOppositeFaultFaces == changedField || &showFaultCollection == changedField || &showFaultLabel == changedField || &m_showFaultsOutsideFilters == changedField || &faultLabelColor == changedField || &m_onlyShowWithNeighbor == changedField || &faultResult == changedField || &showNNCs == changedField || &hideNncsWhenNoResultIsAvailable == changedField ) { parentView()->scheduleCreateDisplayModelAndRedraw(); parentView()->intersectionCollection()->scheduleCreateDisplayModelAndRedraw2dIntersectionViews(); } if ( &showFaultLabel == changedField ) { RiuMainWindow::instance()->refreshDrawStyleActions(); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::PdmFieldHandle* RimFaultInViewCollection::objectToggleField() { return &showFaultCollection; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimFaultInView* RimFaultInViewCollection::findFaultByName( QString name ) { for ( size_t i = 0; i < this->faults().size(); ++i ) { if ( this->faults()[i]->name() == name ) { return this->faults()[i]; } } return nullptr; } //-------------------------------------------------------------------------------------------------- /// A comparing function used to sort Faults in the RimFaultCollection::syncronizeFaults() method //-------------------------------------------------------------------------------------------------- bool faultComparator( const cvf::ref& a, const cvf::ref& b ) { CVF_TIGHT_ASSERT( a.notNull() && b.notNull() ); int compareValue = a->name().compare( b->name(), Qt::CaseInsensitive ); return ( compareValue < 0 ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFaultInViewCollection::syncronizeFaults() { if ( !( parentView() && parentView()->mainGrid() ) ) return; const caf::ColorTable& colorTable = RiaColorTables::faultsPaletteColors(); const cvf::Collection constRigFaults = parentView()->mainGrid()->faults(); cvf::Collection rigFaults; { cvf::Collection sortedFaults( constRigFaults ); std::sort( sortedFaults.begin(), sortedFaults.end(), faultComparator ); cvf::ref undefinedFaults; cvf::ref undefinedFaultsWInactive; for ( size_t i = 0; i < sortedFaults.size(); i++ ) { QString faultName = sortedFaults[i]->name(); if ( faultName.compare( RiaResultNames::undefinedGridFaultName(), Qt::CaseInsensitive ) == 0 ) { undefinedFaults = sortedFaults[i]; } if ( faultName.startsWith( RiaResultNames::undefinedGridFaultName(), Qt::CaseInsensitive ) && faultName.contains( "Inactive" ) ) { undefinedFaultsWInactive = sortedFaults[i]; } } if ( undefinedFaults.notNull() ) { sortedFaults.erase( undefinedFaults.p() ); rigFaults.push_back( undefinedFaults.p() ); } if ( undefinedFaultsWInactive.notNull() ) { sortedFaults.erase( undefinedFaultsWInactive.p() ); rigFaults.push_back( undefinedFaultsWInactive.p() ); } for ( size_t i = 0; i < sortedFaults.size(); i++ ) { rigFaults.push_back( sortedFaults[i].p() ); } } std::vector> newFaults; // Find corresponding fault from data model, or create a new for ( size_t fIdx = 0; fIdx < rigFaults.size(); ++fIdx ) { RimFaultInView* rimFault = this->findFaultByName( rigFaults[fIdx]->name() ); if ( !rimFault ) { rimFault = new RimFaultInView(); rimFault->faultColor = colorTable.cycledColor3f( fIdx ); QString faultName = rigFaults[fIdx]->name(); if ( faultName.startsWith( RiaResultNames::undefinedGridFaultName(), Qt::CaseInsensitive ) && faultName.contains( "Inactive" ) ) { rimFault->showFault = false; // Turn fault against inactive cells off by default } } rimFault->setFaultGeometry( rigFaults[fIdx].p() ); newFaults.push_back( rimFault ); } this->faults().clear(); this->faults().insert( 0, newFaults ); QString toolTip = QString( "Fault count (%1)" ).arg( newFaults.size() ); setUiToolTip( toolTip ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RimFaultInViewCollection::isGridVisualizationMode() const { return parentView()->isGridVisualizationMode(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFaultInViewCollection::uiOrderingFaults( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) { bool isGridVizMode = isGridVisualizationMode(); faultResult.uiCapability()->setUiReadOnly( isGridVizMode ); showFaultFaces.uiCapability()->setUiReadOnly( isGridVizMode ); showOppositeFaultFaces.uiCapability()->setUiReadOnly( isGridVizMode ); caf::PdmUiGroup* ffviz = uiOrdering.addNewGroup( "Fault Face Visibility" ); ffviz->setCollapsedByDefault( true ); ffviz->add( &showFaultFaces ); ffviz->add( &showOppositeFaultFaces ); ffviz->add( &faultResult ); ffviz->add( &m_onlyShowWithNeighbor ); caf::PdmUiGroup* nncViz = uiOrdering.addNewGroup( "NNC Visibility" ); nncViz->setCollapsedByDefault( true ); nncViz->add( &showNNCs ); nncViz->add( &hideNncsWhenNoResultIsAvailable ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFaultInViewCollection::defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) { caf::PdmUiGroup* labs = uiOrdering.addNewGroup( "Fault Labels" ); labs->add( &showFaultLabel ); labs->add( &faultLabelColor ); caf::PdmUiGroup* adv = uiOrdering.addNewGroup( "Fault Options" ); adv->add( &m_showFaultsOutsideFilters ); uiOrderingFaults( uiConfigName, uiOrdering ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFaultInViewCollection::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName ) { RimEclipseInputCase* inputCase = nullptr; this->firstAncestorOrThisOfType( inputCase ); if ( ( inputCase != nullptr ) && m_enableFaultRA() ) { uiTreeOrdering.add( &m_faultRASettings ); } RimEclipseView* eclipseView = nullptr; this->firstAncestorOfType( eclipseView ); if ( eclipseView ) { auto uiTree = eclipseView->faultResultSettings()->uiTreeOrdering(); uiTreeOrdering.appendChild( uiTree ); } for ( const auto& fault : faults ) { uiTreeOrdering.add( fault ); } uiTreeOrdering.skipRemainingChildren( true ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimEclipseView* RimFaultInViewCollection::parentView() const { RimEclipseView* view = nullptr; this->firstAncestorOrThisOfTypeAsserted( view ); return view; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RimFaultInViewCollection::isShowingFaultsAndFaultsOutsideFilters() const { if ( !showFaultCollection ) return false; return m_showFaultsOutsideFilters; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFaultInViewCollection::setShowFaultsOutsideFilter( bool show ) { m_showFaultsOutsideFilters = show; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RimFaultInViewCollection::onlyShowFacesWithDefinedNeighbor() const { return m_onlyShowWithNeighbor; } //------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimFaultRASettings* RimFaultInViewCollection::faultRASettings() const { return m_faultRASettings(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RimFaultInViewCollection::faultRAEnabled() const { return m_enableFaultRA(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RimFaultInViewCollection::faultRAAdvancedEnabled() const { return m_enableFaultRA() && ( m_faultRASettings->geomechCase() != nullptr ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFaultInViewCollection::enableFaultRA( bool enable ) { m_enableFaultRA = enable; }