mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-21 05:53:25 -06:00
79 lines
2.3 KiB
C++
79 lines
2.3 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 <stdint.h>
|
|
|
|
#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;
|
|
};
|