mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-05 21:53:27 -06:00
1da509166a
Add default implementation of isEnabled() and add const
200 lines
8.3 KiB
C++
200 lines
8.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017- Statoil ASA
|
|
//
|
|
// 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 <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RicSaveEclipseInputVisibleCellsFeature.h"
|
|
|
|
#include "RiaApplication.h"
|
|
#include "RiaLogging.h"
|
|
|
|
#include "RicEclipseCellResultToFileImpl.h"
|
|
#include "RicExportFeatureImpl.h"
|
|
#include "RicSaveEclipseInputVisibleCellsUi.h"
|
|
|
|
#include "Rim3dView.h"
|
|
#include "RimEclipseCase.h"
|
|
#include "RimEclipseCellColors.h"
|
|
#include "RimEclipseView.h"
|
|
#include "RiuViewer.h"
|
|
|
|
#include "RigActiveCellInfo.h"
|
|
#include "RigEclipseCaseData.h"
|
|
|
|
#include "Riu3DMainWindowTools.h"
|
|
|
|
#include "cafCmdFeatureManager.h"
|
|
#include "cafPdmUiPropertyViewDialog.h"
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include <QAction>
|
|
#include <QFileInfo>
|
|
|
|
CAF_CMD_SOURCE_INIT( RicSaveEclipseInputVisibleCellsFeature, "RicSaveEclipseInputVisibleCellsFeature" );
|
|
CAF_CMD_SOURCE_INIT( RicSaveEclipseInputActiveVisibleCellsFeature, "RicSaveEclipseInputActiveVisibleCellsFeature" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicSaveEclipseInputVisibleCellsFeature::openDialogAndExecuteCommand( RimEclipseView* view )
|
|
{
|
|
if ( !view ) return;
|
|
|
|
RicSaveEclipseInputVisibleCellsUi exportSettings;
|
|
caf::PdmUiPropertyViewDialog propertyDialog( Riu3DMainWindowTools::mainWindowWidget(), &exportSettings, "Export FLUXNUM/MULTNUM/ACTNUM", "" );
|
|
RicExportFeatureImpl::configureForExport( propertyDialog.dialogButtonBox() );
|
|
|
|
if ( propertyDialog.exec() == QDialog::Accepted )
|
|
{
|
|
executeCommand( view, exportSettings, "saveEclipseInputVisibleCells" );
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicSaveEclipseInputVisibleCellsFeature::executeCommand( RimEclipseView* view,
|
|
const RicSaveEclipseInputVisibleCellsUi& exportSettings,
|
|
const QString& logPrefix )
|
|
{
|
|
std::vector<double> values;
|
|
cvf::UByteArray visibleCells;
|
|
view->calculateCurrentTotalCellVisibility( &visibleCells, view->currentTimeStep() );
|
|
RigActiveCellInfo* activeCellInfo = view->eclipseCase()->eclipseCaseData()->activeCellInfo( RiaDefines::PorosityModelType::MATRIX_MODEL );
|
|
values.resize( visibleCells.size() );
|
|
for ( size_t i = 0; i < visibleCells.size(); ++i )
|
|
{
|
|
if ( activeCellInfo->isActive( i ) )
|
|
{
|
|
if ( visibleCells[i] )
|
|
{
|
|
values[i] = static_cast<double>( exportSettings.visibleActiveCellsValue );
|
|
}
|
|
else
|
|
{
|
|
values[i] = static_cast<double>( exportSettings.hiddenActiveCellsValue );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
values[i] = static_cast<double>( exportSettings.inactiveCellsValue );
|
|
}
|
|
}
|
|
QFile exportFile( exportSettings.exportFilename );
|
|
if ( !exportFile.open( QIODevice::WriteOnly | QIODevice::Text ) )
|
|
{
|
|
RiaLogging::error( QString( "%1: Unable to open file '%2' for writing." ).arg( logPrefix ).arg( exportSettings.exportFilename ) );
|
|
return;
|
|
}
|
|
|
|
RicEclipseCellResultToFileImpl::writeDataToTextFile( &exportFile,
|
|
exportSettings.writeEchoInGrdeclFiles,
|
|
exportSettings.exportKeyword().text(),
|
|
values );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicSaveEclipseInputVisibleCellsFeature::isCommandEnabled() const
|
|
{
|
|
return selectedView() != nullptr;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicSaveEclipseInputVisibleCellsFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
RimEclipseView* view = RicSaveEclipseInputVisibleCellsFeature::selectedView();
|
|
openDialogAndExecuteCommand( view );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicSaveEclipseInputVisibleCellsFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
actionToSetup->setText( "Export Visible Cells as FLUXNUM/MULTNUM/ACTNUM" );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimEclipseView* RicSaveEclipseInputVisibleCellsFeature::selectedView() const
|
|
{
|
|
auto contextViewer = dynamic_cast<RiuViewer*>( caf::CmdFeatureManager::instance()->currentContextMenuTargetWidget() );
|
|
|
|
if ( contextViewer != nullptr )
|
|
{
|
|
// Command is triggered from viewer
|
|
Rim3dView* activeView = RiaApplication::instance()->activeMainOrComparisonGridView();
|
|
return dynamic_cast<RimEclipseView*>( activeView );
|
|
}
|
|
else
|
|
{
|
|
// Command triggered from project tree or file menu
|
|
RimEclipseView* view = caf::SelectionManager::instance()->selectedItemAncestorOfType<RimEclipseView>();
|
|
return view;
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicSaveEclipseInputActiveVisibleCellsFeature::isCommandEnabled() const
|
|
{
|
|
return selectedView() != nullptr;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicSaveEclipseInputActiveVisibleCellsFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
RimEclipseView* view = RicSaveEclipseInputActiveVisibleCellsFeature::selectedView();
|
|
RicSaveEclipseInputVisibleCellsFeature::openDialogAndExecuteCommand( view );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicSaveEclipseInputActiveVisibleCellsFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
actionToSetup->setText( "Export Visible Cells as FLUXNUM/MULTNUM/ACTNUM" );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimEclipseView* RicSaveEclipseInputActiveVisibleCellsFeature::selectedView()
|
|
{
|
|
auto contextViewer = dynamic_cast<RiuViewer*>( caf::CmdFeatureManager::instance()->currentContextMenuTargetWidget() );
|
|
|
|
if ( contextViewer != nullptr )
|
|
{
|
|
// Command is triggered from viewer
|
|
Rim3dView* activeView = RiaApplication::instance()->activeMainOrComparisonGridView();
|
|
return dynamic_cast<RimEclipseView*>( activeView );
|
|
}
|
|
else
|
|
{
|
|
// Command triggered from project tree or file menu
|
|
RimEclipseView* view = caf::SelectionManager::instance()->selectedItemAncestorOfType<RimEclipseView>();
|
|
return view;
|
|
}
|
|
}
|