///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include #include #include //================================================================================================== // // // //================================================================================================== 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 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 m_keyToIdMap; int m_lastUsedId; };