blob: fc540a6e740ccb43cc756c2d74bde8bc76b8019c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#pragma once
#include "compat/int-hash.hpp"
#include "atlas-loader-fwd.hpp"
#include <vector>
#include <cr/StringView.h>
#include <cr/Optional.h>
#include <tsl/robin_map.h>
namespace floormat::loader_detail {
template<typename ATLAS, typename TRAITS>
struct atlas_storage
{
struct string_equals { bool operator()(StringView a, StringView b) const { return a == b; } };
static_assert(std::is_same_v<typename TRAITS::Atlas, ATLAS>);
using Traits = TRAITS;
using Atlas = typename Traits::Atlas;
using Cell = typename Traits::Cell;
tsl::robin_map<String, size_t, hash_string_view, string_equals> name_map;
std::vector<Cell> cell_array;
std::vector<String> missing_atlas_names;
Optional<Cell> invalid_atlas;
~atlas_storage() noexcept = default;
};
} // namespace floormat::loader_detail
|