mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Pdm fields can contain a forward declared Pdm object without the include file VizFwk: Added VertexColoring shader to be able to use per vertex color used from drawableGeo::setColorArray()
155 lines
5.8 KiB
C++
155 lines
5.8 KiB
C++
//##################################################################################################
|
|
//
|
|
// Custom Visualization Core library
|
|
// Copyright (C) Ceetron Solutions AS
|
|
//
|
|
// This library may be used under the terms of either the GNU General Public License or
|
|
// the GNU Lesser General Public License as follows:
|
|
//
|
|
// GNU General Public License Usage
|
|
// This library 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.
|
|
//
|
|
// This library 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.
|
|
//
|
|
// GNU Lesser General Public License Usage
|
|
// This library is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library 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 Lesser General Public License at <<http://www.gnu.org/licenses/lgpl-2.1.html>>
|
|
// for more details.
|
|
//
|
|
//##################################################################################################
|
|
|
|
#pragma once
|
|
|
|
namespace cvf {
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
/// \class cvf::ArrayWrapperConst
|
|
/// \ingroup Core
|
|
///
|
|
/// A wrapper class for const access to make it possible to use different array types with
|
|
/// different element types in the same algorithms.
|
|
///
|
|
/// The implementation has a specialization for bare pointer arrays.
|
|
/// The reason for the bare pointer specialization is the [] access implementation
|
|
/// which is different. (*array)[] vs array[]
|
|
///
|
|
/// The convenience functions wrapArrayConst() are available to simplify wrapping of your data making it
|
|
/// possible to do:
|
|
/// myFunction (wrapArrayConst(myNodeArray), wrapArrayConst(myIndexArray), ...);
|
|
/// when calling a template function using ArrayWrapperConst's as input.
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
template < typename ArrayType, typename ElmType >
|
|
class ArrayWrapperConst
|
|
{
|
|
public:
|
|
ArrayWrapperConst(const ArrayType* array, size_t size) : m_array(array), m_size(size) { }
|
|
|
|
inline size_t size() const { return m_size; }
|
|
inline const ElmType& operator[] (const size_t index) const { return (*m_array)[index]; }
|
|
|
|
private:
|
|
const ArrayType * m_array;
|
|
size_t m_size;
|
|
};
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Const bare-pointer array wrapper specialization
|
|
//--------------------------------------------------------------------------------------------------
|
|
template < typename ElmType >
|
|
class ArrayWrapperConst <const ElmType*, ElmType>
|
|
{
|
|
public:
|
|
ArrayWrapperConst(const ElmType* array, size_t size) : m_array(array), m_size(size) { }
|
|
|
|
inline size_t size() const { return m_size; }
|
|
|
|
inline const ElmType& operator[](const size_t index) const { return m_array[index]; }
|
|
|
|
private:
|
|
const ElmType * m_array;
|
|
size_t m_size;
|
|
};
|
|
|
|
|
|
|
|
#include "cvfArray.h"
|
|
#include <vector>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// const cvf::Array specialization
|
|
//--------------------------------------------------------------------------------------------------
|
|
template <typename ElmType>
|
|
inline const ArrayWrapperConst< const cvf::Array<ElmType>, ElmType > wrapArrayConst(const cvf::Array<ElmType>* array )
|
|
{
|
|
const ArrayWrapperConst<const cvf::Array<ElmType>, ElmType> warr(array, array->size());
|
|
return warr;
|
|
}
|
|
|
|
template <typename ElmType>
|
|
inline const ArrayWrapperConst< const cvf::Array<ElmType>, ElmType > wrapArrayConst( cvf::Array<ElmType>* array )
|
|
{
|
|
const ArrayWrapperConst<const cvf::Array<ElmType>, ElmType> warr(array, array->size());
|
|
return warr;
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// const std::vector specialization
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
template <typename ElmType>
|
|
inline const ArrayWrapperConst< const std::vector<ElmType>, ElmType > wrapArrayConst( const std::vector<ElmType>* array )
|
|
{
|
|
const ArrayWrapperConst< const std::vector<ElmType>, ElmType> warr(array, array->size());
|
|
return warr;
|
|
}
|
|
|
|
|
|
template <typename ElmType>
|
|
inline const ArrayWrapperConst< const std::vector<ElmType>, ElmType > wrapArrayConst( std::vector<ElmType>* array )
|
|
{
|
|
const ArrayWrapperConst< const std::vector<ElmType>, ElmType> warr(array, array->size());
|
|
return warr;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// const Bare-pointer specialization
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
template <typename ElmType>
|
|
inline const ArrayWrapperConst< const ElmType*, ElmType > wrapArrayConst( const ElmType* array, size_t size )
|
|
{
|
|
const ArrayWrapperConst<const ElmType*, ElmType> warr(array, size);
|
|
return warr;
|
|
}
|
|
|
|
|
|
template <typename ElmType>
|
|
inline const ArrayWrapperConst< const ElmType*, ElmType > wrapArrayConst( ElmType* array, size_t size )
|
|
{
|
|
const ArrayWrapperConst<const ElmType*, ElmType> warr(array, size);
|
|
return warr;
|
|
}
|
|
|
|
}
|
|
|