mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-08 23:23:01 -06:00
f8c5cf389f
* Set column width to 140 * Use c++20 * Remove redundant virtual
76 lines
2.2 KiB
C++
76 lines
2.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2018- Equinor ASA
|
|
//
|
|
// 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.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
#include <map>
|
|
|
|
//==================================================================================================
|
|
//
|
|
//
|
|
//
|
|
//==================================================================================================
|
|
class VdeCachingHashedIdFactory
|
|
{
|
|
public:
|
|
enum ArrayRole
|
|
{
|
|
VertexArr,
|
|
ConnArr,
|
|
TexImage,
|
|
TexCoordsArr
|
|
};
|
|
|
|
public:
|
|
VdeCachingHashedIdFactory();
|
|
|
|
int getOrCreateIdForFloatArr( ArrayRole arrayRole, const void* floatArr, size_t elementCount );
|
|
int getOrCreateIdForUint32Arr( ArrayRole arrayRole, const unsigned int* uint32Arr, size_t elementCount );
|
|
int getOrCreateIdForUint8Arr( ArrayRole arrayRole, const unsigned char* uint8Arr, size_t elementCount );
|
|
|
|
int lastAssignedId() const;
|
|
|
|
private:
|
|
enum ElementType
|
|
{
|
|
Float32,
|
|
Uint32,
|
|
Uint8,
|
|
};
|
|
|
|
struct Key
|
|
{
|
|
std::pair<uint64_t, uint64_t> hashVal;
|
|
ArrayRole role;
|
|
ElementType elementType;
|
|
size_t elementCount;
|
|
|
|
bool operator<( const Key& other ) const;
|
|
};
|
|
|
|
private:
|
|
int getOrCreateIdForArrOfType( ArrayRole arrayRole, ElementType elementType, size_t elementSizeInBytes, const void* data, size_t elementCount );
|
|
|
|
private:
|
|
std::map<Key, int> m_keyToIdMap;
|
|
int m_lastUsedId;
|
|
};
|