mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
212 lines
8.0 KiB
C++
212 lines
8.0 KiB
C++
|
/////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron 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 "RIStdInclude.h"
|
||
|
|
||
|
#include "RimCellRangeFilterCollection.h"
|
||
|
|
||
|
#include "RimReservoirView.h"
|
||
|
#include "RigReservoir.h"
|
||
|
|
||
|
|
||
|
|
||
|
CAF_PDM_SOURCE_INIT(RimCellRangeFilterCollection, "CellRangeFilterCollection");
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
RimCellRangeFilterCollection::RimCellRangeFilterCollection()
|
||
|
{
|
||
|
CAF_PDM_InitObject("Cell Range Filters", ":/CellFilter_Range.png", "", "");
|
||
|
|
||
|
CAF_PDM_InitFieldNoDefault(&rangeFilters, "RangeFilters", "Range Filters", "", "", "");
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
RimCellRangeFilterCollection::~RimCellRangeFilterCollection()
|
||
|
{
|
||
|
std::list< caf::PdmPointer< RimCellRangeFilter > >::const_iterator it;
|
||
|
for (it = rangeFilters.v().begin(); it != rangeFilters.v().end(); ++it)
|
||
|
{
|
||
|
delete it->p();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RimCellRangeFilterCollection::setReservoirView(RimReservoirView* reservoirView)
|
||
|
{
|
||
|
m_reservoirView = reservoirView;
|
||
|
}
|
||
|
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
/// RimCellRangeFilter is using Eclipse 1-based indexing, adjust filter values before
|
||
|
// populating cvf::CellRangeFilter (which is 0-based)
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RimCellRangeFilterCollection::compoundCellRangeFilter(cvf::CellRangeFilter* cellRangeFilter) const
|
||
|
{
|
||
|
CVF_ASSERT(cellRangeFilter);
|
||
|
|
||
|
std::list< caf::PdmPointer<RimCellRangeFilter> >::const_iterator it;
|
||
|
for (it = rangeFilters.v().begin(); it != rangeFilters.v().end(); it++)
|
||
|
{
|
||
|
RimCellRangeFilter* rangeFilter = *it;
|
||
|
|
||
|
if (rangeFilter && rangeFilter->active)
|
||
|
{
|
||
|
if (rangeFilter->filterMode == RimCellFilter::INCLUDE)
|
||
|
{
|
||
|
cellRangeFilter->addCellIncludeRange(
|
||
|
rangeFilter->startIndexI - 1,
|
||
|
rangeFilter->startIndexJ - 1,
|
||
|
rangeFilter->startIndexK - 1,
|
||
|
rangeFilter->startIndexI - 1 + rangeFilter->cellCountI,
|
||
|
rangeFilter->startIndexJ - 1 + rangeFilter->cellCountJ,
|
||
|
rangeFilter->startIndexK - 1 + rangeFilter->cellCountK);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
cellRangeFilter->addCellExcludeRange(
|
||
|
rangeFilter->startIndexI - 1,
|
||
|
rangeFilter->startIndexJ - 1,
|
||
|
rangeFilter->startIndexK - 1,
|
||
|
rangeFilter->startIndexI - 1 + rangeFilter->cellCountI,
|
||
|
rangeFilter->startIndexJ - 1 + rangeFilter->cellCountJ,
|
||
|
rangeFilter->startIndexK - 1 + rangeFilter->cellCountK);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
bool RimCellRangeFilterCollection::hasIncludeFilter() const
|
||
|
{
|
||
|
std::list< caf::PdmPointer<RimCellRangeFilter> >::const_iterator it;
|
||
|
for (it = rangeFilters.v().begin(); it != rangeFilters.v().end(); it++)
|
||
|
{
|
||
|
RimCellRangeFilter* rangeFilter = *it;
|
||
|
if (rangeFilter->active && rangeFilter->filterMode() == RimCellFilter::INCLUDE)
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
RigMainGrid* RimCellRangeFilterCollection::mainGrid() const
|
||
|
{
|
||
|
if (m_reservoirView &&
|
||
|
m_reservoirView->eclipseCase() &&
|
||
|
m_reservoirView->eclipseCase()->reservoirData() &&
|
||
|
m_reservoirView->eclipseCase()->reservoirData()->mainGrid())
|
||
|
{
|
||
|
|
||
|
RigMainGrid* mainGrid = m_reservoirView->eclipseCase()->reservoirData()->mainGrid();
|
||
|
|
||
|
return mainGrid;
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RimCellRangeFilterCollection::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue)
|
||
|
{
|
||
|
// cvf::Trace::show("RimCellRangeFilterCollection::fieldChangedByUi");
|
||
|
|
||
|
m_reservoirView->scheduleGeometryRegen(RivReservoirViewPartMgr::RANGE_FILTERED);
|
||
|
m_reservoirView->scheduleGeometryRegen(RivReservoirViewPartMgr::RANGE_FILTERED_INACTIVE);
|
||
|
|
||
|
if (m_reservoirView) m_reservoirView->createDisplayModelAndRedraw();
|
||
|
}
|
||
|
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
RimCellRangeFilter* RimCellRangeFilterCollection::createAndAppendRangeFilter()
|
||
|
{
|
||
|
RimCellRangeFilter* rangeFilter = new RimCellRangeFilter();
|
||
|
rangeFilter->setParentContainer(this);
|
||
|
rangeFilter->setDefaultValues();
|
||
|
|
||
|
rangeFilters.v().push_back(rangeFilter);
|
||
|
|
||
|
rangeFilter->name = QString("New Filter (%1)").arg(rangeFilters().size());
|
||
|
|
||
|
return rangeFilter;
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
RimReservoirView* RimCellRangeFilterCollection::reservoirView()
|
||
|
{
|
||
|
return m_reservoirView;
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RimCellRangeFilterCollection::initAfterRead()
|
||
|
{
|
||
|
std::list< caf::PdmPointer<RimCellRangeFilter> >::iterator it;
|
||
|
for (it = rangeFilters.v().begin(); it != rangeFilters.v().end(); it++)
|
||
|
{
|
||
|
RimCellRangeFilter* rangeFilter = *it;
|
||
|
rangeFilter->setParentContainer(this);
|
||
|
rangeFilter->updateIconState();
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RimCellRangeFilterCollection::remove(RimCellRangeFilter* rangeFilter)
|
||
|
{
|
||
|
rangeFilters.v().remove(rangeFilter);
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
bool RimCellRangeFilterCollection::hasActiveFilters() const
|
||
|
{
|
||
|
std::list< caf::PdmPointer< RimCellRangeFilter > >::const_iterator it;
|
||
|
for (it = rangeFilters.v().begin(); it != rangeFilters.v().end(); ++it)
|
||
|
{
|
||
|
if ((*it)->active()) return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|