ResInsight/ApplicationLibCode/Commands/ExportCommands/RicExportFaultsFeature.cpp
rubenthoms bc81437435
Moved UnitSystem from RiaEclipseUnitTools to RiaDefines. (#7225)
* Moved UnitSystem from RiaEclipseUnitTools to RiaDefines.
- Renamed UnitSystem to EclipseUnitSystem
- Replaced header includes and removed obsolete includes of RiaEclipseUnitTools.h
* Moved  result name functions into separate file.
* Minor cleanup

Co-authored-by: rubenthoms <rubenthoms@users.noreply.github.com>
Co-authored-by: Magne Sjaastad <magne.sjaastad@ceetronsolutions.com>
Co-authored-by: magnesj <magnesj@users.noreply.github.com>
2021-01-21 12:58:46 +01:00

116 lines
4.1 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2015- Statoil ASA
// Copyright (C) 2015- 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 <http://www.gnu.org/licenses/gpl.html>
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#include "RicExportFaultsFeature.h"
#include "RiaApplication.h"
#include "RiaLogging.h"
#include "RiaResultNames.h"
#include "RigEclipseCaseData.h"
#include "RigFault.h"
#include "RigMainGrid.h"
#include "RifEclipseInputFileTools.h"
#include "RimEclipseCase.h"
#include "RimFaultInView.h"
#include "RiuFileDialogTools.h"
#include "cafSelectionManager.h"
#include "cafUtils.h"
#include <QAction>
CAF_CMD_SOURCE_INIT( RicExportFaultsFeature, "RicExportFaultsFeature" );
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
bool RicExportFaultsFeature::isCommandEnabled()
{
std::vector<RimFaultInView*> selectedFaults;
caf::SelectionManager::instance()->objectsByType( &selectedFaults );
return ( selectedFaults.size() > 0 );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicExportFaultsFeature::onActionTriggered( bool isChecked )
{
this->disableModelChangeContribution();
std::vector<RimFaultInView*> selectedFaults;
caf::SelectionManager::instance()->objectsByType( &selectedFaults );
if ( selectedFaults.size() == 0 ) return;
QString defaultDir = RiaApplication::instance()->lastUsedDialogDirectoryWithFallbackToProjectFolder( "FAULTS" );
QString selectedDir = RiuFileDialogTools::getExistingDirectory( nullptr, tr( "Select Directory" ), defaultDir );
if ( selectedDir.isNull() )
{
// Stop if folder selection was cancelled.
return;
}
for ( RimFaultInView* rimFault : selectedFaults )
{
RimEclipseCase* eclCase = nullptr;
rimFault->firstAncestorOrThisOfType( eclCase );
if ( eclCase )
{
QString caseName = eclCase->caseUserDescription();
QString faultName = rimFault->name();
if ( faultName == RiaResultNames::undefinedGridFaultName() ) faultName = "UNDEF";
if ( faultName == RiaResultNames::undefinedGridFaultWithInactiveName() ) faultName = "UNDEF_IA";
QString baseFilename = "Fault_" + faultName + "_" + caseName;
baseFilename = caf::Utils::makeValidFileBasename( baseFilename );
QString completeFilename = selectedDir + "/" + baseFilename + ".grdecl";
RifEclipseInputFileTools::saveFault( completeFilename,
eclCase->eclipseCaseData()->mainGrid(),
rimFault->faultGeometry()->faultFaces(),
faultName );
}
}
// Remember the path to next time
RiaApplication::instance()->setLastUsedDialogDirectory( "FAULTS", selectedDir );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicExportFaultsFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Export Faults ..." );
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
}