2012-05-18 02:45:23 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-03-22 10:12:00 -05:00
|
|
|
#include "RiaStdInclude.h"
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
#include "RivReservoirPipesPartMgr.h"
|
|
|
|
#include "RimReservoirView.h"
|
|
|
|
#include "RimWellCollection.h"
|
|
|
|
#include "RivWellPipesPartMgr.h"
|
2012-06-26 09:10:41 -05:00
|
|
|
#include "RivWellHeadPartMgr.h"
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RivReservoirPipesPartMgr::RivReservoirPipesPartMgr(RimReservoirView* reservoirView)
|
|
|
|
{
|
|
|
|
m_reservoirView = reservoirView;
|
|
|
|
|
|
|
|
m_scaleTransform = new cvf::Transform();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RivReservoirPipesPartMgr::~RivReservoirPipesPartMgr()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RivReservoirPipesPartMgr::appendDynamicGeometryPartsToModel(cvf::ModelBasicList* model, size_t frameIndex)
|
|
|
|
{
|
|
|
|
if (m_reservoirView->wellCollection()->wellPipeVisibility() == RimWellCollection::FORCE_ALL_OFF) return;
|
|
|
|
|
|
|
|
if (m_reservoirView->wellCollection()->wells.size() != m_wellPipesPartMgrs.size())
|
|
|
|
{
|
|
|
|
m_wellPipesPartMgrs.clear();
|
2012-06-26 09:10:41 -05:00
|
|
|
m_wellHeadPartMgrs.clear();
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
for (size_t i = 0; i < m_reservoirView->wellCollection()->wells.size(); ++i)
|
|
|
|
{
|
|
|
|
RivWellPipesPartMgr * wppmgr = new RivWellPipesPartMgr(m_reservoirView, m_reservoirView->wellCollection()->wells[i]);
|
|
|
|
m_wellPipesPartMgrs.push_back(wppmgr);
|
|
|
|
wppmgr->setScaleTransform(m_scaleTransform.p());
|
|
|
|
|
|
|
|
RivWellHeadPartMgr* wellHeadMgr = new RivWellHeadPartMgr(m_reservoirView, m_reservoirView->wellCollection()->wells[i]);
|
|
|
|
m_wellHeadPartMgrs.push_back(wellHeadMgr);
|
|
|
|
wellHeadMgr->setScaleTransform(m_scaleTransform.p());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellPipesPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
m_wellPipesPartMgrs[wIdx]->appendDynamicGeometryPartsToModel(model, frameIndex);
|
|
|
|
m_wellHeadPartMgrs[wIdx]->appendDynamicGeometryPartsToModel(model, frameIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RivReservoirPipesPartMgr::updatePipeResultColor(size_t frameIndex)
|
|
|
|
{
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellPipesPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
m_wellPipesPartMgrs[wIdx]->updatePipeResultColor( frameIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RivReservoirPipesPartMgr::setScaleTransform(cvf::Transform * scaleTransform)
|
|
|
|
{
|
|
|
|
m_scaleTransform = scaleTransform;
|
|
|
|
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellPipesPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
m_wellPipesPartMgrs[wIdx]->setScaleTransform(scaleTransform);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellHeadPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
m_wellHeadPartMgrs[wIdx]->setScaleTransform(scaleTransform);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RivReservoirPipesPartMgr::scheduleGeometryRegen()
|
|
|
|
{
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellPipesPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
m_wellPipesPartMgrs[wIdx]->scheduleGeometryRegen();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellHeadPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
//m_wellHeadPartMgrs[wIdx]->scheduleGeometryRegen(scaleTransform);
|
|
|
|
}
|
|
|
|
}
|