mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#4683 clang-format on all files in ApplicationCode
This commit is contained in:
@@ -2,17 +2,17 @@
|
||||
//
|
||||
// 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 <http://www.gnu.org/licenses/gpl.html>
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
@@ -21,32 +21,30 @@
|
||||
|
||||
#include <cmath>
|
||||
|
||||
#include "RigCell.h"
|
||||
#include "RigMainGrid.h"
|
||||
#include "RigNNCData.h"
|
||||
#include "cvfDrawableGeo.h"
|
||||
#include "cvfPrimitiveSetIndexedUInt.h"
|
||||
#include "cvfScalarMapper.h"
|
||||
#include "RigNNCData.h"
|
||||
#include "RigCell.h"
|
||||
#include "RigMainGrid.h"
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RivNNCGeometryGenerator::RivNNCGeometryGenerator(const RigNNCData* nncData, const cvf::Vec3d& offset, const cvf::Array<size_t>* nncIndexes )
|
||||
: m_nncData(nncData),
|
||||
m_nncIndexes(nncIndexes),
|
||||
m_offset(offset)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RivNNCGeometryGenerator::~RivNNCGeometryGenerator()
|
||||
RivNNCGeometryGenerator::RivNNCGeometryGenerator( const RigNNCData* nncData,
|
||||
const cvf::Vec3d& offset,
|
||||
const cvf::Array<size_t>* nncIndexes )
|
||||
: m_nncData( nncData )
|
||||
, m_nncIndexes( nncIndexes )
|
||||
, m_offset( offset )
|
||||
{
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RivNNCGeometryGenerator::~RivNNCGeometryGenerator() {}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
/// Generate surface drawable geo from the specified region
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -54,81 +52,81 @@ cvf::ref<cvf::DrawableGeo> RivNNCGeometryGenerator::generateSurface()
|
||||
{
|
||||
computeArrays();
|
||||
|
||||
CVF_ASSERT(m_vertices.notNull());
|
||||
CVF_ASSERT( m_vertices.notNull() );
|
||||
|
||||
if (m_vertices->size() == 0) return nullptr;
|
||||
if ( m_vertices->size() == 0 ) return nullptr;
|
||||
|
||||
cvf::ref<cvf::DrawableGeo> geo = new cvf::DrawableGeo;
|
||||
geo->setFromTriangleVertexArray(m_vertices.p());
|
||||
geo->setFromTriangleVertexArray( m_vertices.p() );
|
||||
|
||||
return geo;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RivNNCGeometryGenerator::computeArrays()
|
||||
{
|
||||
std::vector<cvf::Vec3f> vertices;
|
||||
std::vector<size_t> triangleToNNC;
|
||||
std::vector<size_t> triangleToNNC;
|
||||
|
||||
const cvf::Vec3d offset = m_offset;
|
||||
long long numConnections = static_cast<long long>(m_nncIndexes.isNull()? m_nncData->connections().size(): m_nncIndexes->size());
|
||||
const cvf::Vec3d offset = m_offset;
|
||||
long long numConnections = static_cast<long long>( m_nncIndexes.isNull() ? m_nncData->connections().size()
|
||||
: m_nncIndexes->size() );
|
||||
|
||||
bool isVisibilityCalcActive = m_cellVisibility.notNull() && m_grid.notNull();
|
||||
std::vector<RigCell>* allCells = nullptr;
|
||||
if (isVisibilityCalcActive)
|
||||
bool isVisibilityCalcActive = m_cellVisibility.notNull() && m_grid.notNull();
|
||||
std::vector<RigCell>* allCells = nullptr;
|
||||
if ( isVisibilityCalcActive )
|
||||
{
|
||||
allCells = &(m_grid->mainGrid()->globalCellArray());
|
||||
allCells = &( m_grid->mainGrid()->globalCellArray() );
|
||||
}
|
||||
|
||||
#pragma omp parallel for ordered
|
||||
for (long long nIdx = 0; nIdx < numConnections; ++nIdx)
|
||||
for ( long long nIdx = 0; nIdx < numConnections; ++nIdx )
|
||||
{
|
||||
size_t conIdx = m_nncIndexes.isNull()? nIdx: (*m_nncIndexes)[nIdx];
|
||||
size_t conIdx = m_nncIndexes.isNull() ? nIdx : ( *m_nncIndexes )[nIdx];
|
||||
|
||||
const RigConnection& conn = m_nncData->connections()[conIdx];
|
||||
|
||||
if (conn.m_polygon.size())
|
||||
if ( conn.m_polygon.size() )
|
||||
{
|
||||
bool isVisible = true;
|
||||
if (isVisibilityCalcActive)
|
||||
if ( isVisibilityCalcActive )
|
||||
{
|
||||
bool cell1Visible = false;
|
||||
bool cell2Visible = false;
|
||||
|
||||
if ((*allCells)[conn.m_c1GlobIdx].hostGrid() == m_grid.p())
|
||||
if ( ( *allCells )[conn.m_c1GlobIdx].hostGrid() == m_grid.p() )
|
||||
{
|
||||
size_t cell1GridLocalIdx = (*allCells)[conn.m_c1GlobIdx].gridLocalCellIndex();
|
||||
cell1Visible = (*m_cellVisibility)[cell1GridLocalIdx];
|
||||
size_t cell1GridLocalIdx = ( *allCells )[conn.m_c1GlobIdx].gridLocalCellIndex();
|
||||
cell1Visible = ( *m_cellVisibility )[cell1GridLocalIdx];
|
||||
}
|
||||
|
||||
if ((*allCells)[conn.m_c2GlobIdx].hostGrid() == m_grid.p())
|
||||
if ( ( *allCells )[conn.m_c2GlobIdx].hostGrid() == m_grid.p() )
|
||||
{
|
||||
size_t cell2GridLocalIdx = (*allCells)[conn.m_c2GlobIdx].gridLocalCellIndex();
|
||||
cell2Visible = (*m_cellVisibility)[cell2GridLocalIdx];
|
||||
size_t cell2GridLocalIdx = ( *allCells )[conn.m_c2GlobIdx].gridLocalCellIndex();
|
||||
cell2Visible = ( *m_cellVisibility )[cell2GridLocalIdx];
|
||||
}
|
||||
|
||||
isVisible = cell1Visible || cell2Visible;
|
||||
|
||||
}
|
||||
|
||||
if (isVisible)
|
||||
if ( isVisible )
|
||||
{
|
||||
cvf::Vec3f vx1 = cvf::Vec3f(conn.m_polygon[0] - offset);
|
||||
cvf::Vec3f vx1 = cvf::Vec3f( conn.m_polygon[0] - offset );
|
||||
cvf::Vec3f vx2;
|
||||
cvf::Vec3f vx3 = cvf::Vec3f(conn.m_polygon[1] - offset);
|
||||
cvf::Vec3f vx3 = cvf::Vec3f( conn.m_polygon[1] - offset );
|
||||
|
||||
for (size_t vxIdx = 2; vxIdx < conn.m_polygon.size() ; ++vxIdx)
|
||||
for ( size_t vxIdx = 2; vxIdx < conn.m_polygon.size(); ++vxIdx )
|
||||
{
|
||||
vx2 = vx3;
|
||||
vx3 = cvf::Vec3f( conn.m_polygon[vxIdx] - offset);
|
||||
#pragma omp critical(critical_section_RivNNCGeometryGenerator_computeArrays)
|
||||
vx3 = cvf::Vec3f( conn.m_polygon[vxIdx] - offset );
|
||||
#pragma omp critical( critical_section_RivNNCGeometryGenerator_computeArrays )
|
||||
{
|
||||
vertices.push_back(vx1);
|
||||
vertices.push_back(vx2);
|
||||
vertices.push_back(vx3);
|
||||
triangleToNNC.push_back(conIdx);
|
||||
vertices.push_back( vx1 );
|
||||
vertices.push_back( vx2 );
|
||||
vertices.push_back( vx3 );
|
||||
triangleToNNC.push_back( conIdx );
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -136,77 +134,76 @@ void RivNNCGeometryGenerator::computeArrays()
|
||||
}
|
||||
|
||||
m_vertices = new cvf::Vec3fArray;
|
||||
m_vertices->assign(vertices);
|
||||
m_vertices->assign( vertices );
|
||||
m_triangleIndexToNNCIndex = new cvf::Array<size_t>;
|
||||
m_triangleIndexToNNCIndex->assign(triangleToNNC);
|
||||
m_triangleIndexToNNCIndex->assign( triangleToNNC );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
/// Calculates the texture coordinates in a "nearly" one dimensional texture.
|
||||
/// Calculates the texture coordinates in a "nearly" one dimensional texture.
|
||||
/// Undefined values are coded with a y-texture coordinate value of 1.0 instead of the normal 0.5
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RivNNCGeometryGenerator::textureCoordinates(cvf::Vec2fArray* textureCoords,
|
||||
const cvf::ScalarMapper* mapper,
|
||||
RiaDefines::ResultCatType resultType,
|
||||
const RigEclipseResultAddress& resVarAddr,
|
||||
size_t nativeTimeStepIndex) const
|
||||
void RivNNCGeometryGenerator::textureCoordinates( cvf::Vec2fArray* textureCoords,
|
||||
const cvf::ScalarMapper* mapper,
|
||||
RiaDefines::ResultCatType resultType,
|
||||
const RigEclipseResultAddress& resVarAddr,
|
||||
size_t nativeTimeStepIndex ) const
|
||||
{
|
||||
size_t numVertices = m_vertices->size();
|
||||
|
||||
textureCoords->resize(numVertices);
|
||||
cvf::Vec2f* rawPtr = textureCoords->ptr();
|
||||
textureCoords->resize( numVertices );
|
||||
cvf::Vec2f* rawPtr = textureCoords->ptr();
|
||||
const std::vector<double>* nncResultVals = nullptr;
|
||||
if (resultType == RiaDefines::STATIC_NATIVE)
|
||||
if ( resultType == RiaDefines::STATIC_NATIVE )
|
||||
{
|
||||
nncResultVals = m_nncData->staticConnectionScalarResult(resVarAddr);
|
||||
nncResultVals = m_nncData->staticConnectionScalarResult( resVarAddr );
|
||||
}
|
||||
else if (resultType == RiaDefines::DYNAMIC_NATIVE)
|
||||
else if ( resultType == RiaDefines::DYNAMIC_NATIVE )
|
||||
{
|
||||
nncResultVals = m_nncData->dynamicConnectionScalarResult(resVarAddr, nativeTimeStepIndex);
|
||||
nncResultVals = m_nncData->dynamicConnectionScalarResult( resVarAddr, nativeTimeStepIndex );
|
||||
}
|
||||
else if (resultType == RiaDefines::GENERATED)
|
||||
else if ( resultType == RiaDefines::GENERATED )
|
||||
{
|
||||
nncResultVals = m_nncData->generatedConnectionScalarResult(resVarAddr, nativeTimeStepIndex);
|
||||
nncResultVals = m_nncData->generatedConnectionScalarResult( resVarAddr, nativeTimeStepIndex );
|
||||
}
|
||||
|
||||
if (!nncResultVals || nncResultVals->size() == 0)
|
||||
if ( !nncResultVals || nncResultVals->size() == 0 )
|
||||
{
|
||||
textureCoords->setAll(cvf::Vec2f(0.0f, 1.0f));
|
||||
textureCoords->setAll( cvf::Vec2f( 0.0f, 1.0f ) );
|
||||
return;
|
||||
}
|
||||
|
||||
#pragma omp parallel for
|
||||
for (int tIdx = 0; tIdx < static_cast<int>(m_triangleIndexToNNCIndex->size()); tIdx++)
|
||||
for ( int tIdx = 0; tIdx < static_cast<int>( m_triangleIndexToNNCIndex->size() ); tIdx++ )
|
||||
{
|
||||
double cellScalarValue = (*nncResultVals)[(*m_triangleIndexToNNCIndex)[tIdx]];
|
||||
cvf::Vec2f texCoord = mapper->mapToTextureCoord(cellScalarValue);
|
||||
if (cellScalarValue == HUGE_VAL || cellScalarValue != cellScalarValue) // a != a is true for NAN's
|
||||
double cellScalarValue = ( *nncResultVals )[( *m_triangleIndexToNNCIndex )[tIdx]];
|
||||
cvf::Vec2f texCoord = mapper->mapToTextureCoord( cellScalarValue );
|
||||
if ( cellScalarValue == HUGE_VAL || cellScalarValue != cellScalarValue ) // a != a is true for NAN's
|
||||
{
|
||||
texCoord[1] = 1.0f;
|
||||
}
|
||||
|
||||
size_t j;
|
||||
for (j = 0; j < 3; j++)
|
||||
{
|
||||
rawPtr[tIdx*3 + j] = texCoord;
|
||||
for ( j = 0; j < 3; j++ )
|
||||
{
|
||||
rawPtr[tIdx * 3 + j] = texCoord;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RivNNCGeometryGenerator::setCellVisibility(const cvf::UByteArray* cellVisibility, const RigGridBase * grid)
|
||||
void RivNNCGeometryGenerator::setCellVisibility( const cvf::UByteArray* cellVisibility, const RigGridBase* grid )
|
||||
{
|
||||
m_cellVisibility = cellVisibility;
|
||||
m_grid = grid;
|
||||
m_grid = grid;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
cvf::ref<cvf::Array<size_t> > RivNNCGeometryGenerator::triangleToNNCIndex() const
|
||||
cvf::ref<cvf::Array<size_t>> RivNNCGeometryGenerator::triangleToNNCIndex() const
|
||||
{
|
||||
return m_triangleIndexToNNCIndex;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user