#pragma once #include #include #include #include "./texture_cache.hpp" #include #include #include #include struct ObjectContactSub final { ObjectHandle o; Contact4 c{entt::null}; }; template<> struct std::hash { std::size_t operator()(ObjectContactSub const& ocs) const noexcept { const std::size_t h1 = reinterpret_cast(ocs.o.registry()); const std::size_t h2 = entt::to_integral(ocs.o.entity()); const std::size_t h3 = entt::to_integral(ocs.c); return (h1 << 3) ^ (h3 << 7) ^ (h2 * 11400714819323198485llu); } }; class BitsetImageLoader { BitSet _tmp_bitset; std::optional haveToTexture(TextureUploaderI& tu, BitSet& have, ObjectHandle o); public: BitsetImageLoader(void); TextureLoaderResult load(TextureUploaderI& tu, ObjectHandle o); std::optional load(TextureUploaderI& tu, ObjectContactSub ocs); };