14 std::string displayName;
15 std::string subassetIdentifier;
17 AssetType assetType = AssetType::Undefined;
22 std::string_view subassetIdentifier,
23 std::string_view displayName,
24 std::string_view address,
27 ) : subassetIdentifier(subassetIdentifier),
28 displayName(displayName),
38 void Load(
AssetRegistry& assetRegistry,
const std::filesystem::path&);
40 bool TryGetDefaultSubasset(
Subasset& subasset)
const;
41 Uuid GetOrCreateDefaultSubassetUuid(std::string& subassetName, AssetType assetType);
42 Uuid GetOrCreateSubassetUuid(std::string& subassetName, AssetType assetType);
43 size_t GetSubassetCount()
const;
44 bool TryGetDefaultSubassetUuid(
Uuid& outUuid)
const;
45 bool TryGetSubassetUuid(std::string& subassetName,
Uuid& outUuid)
const;
47 bool IsOutdatedVersion()
const;
49 using Iterator = std::vector<Subasset>::iterator;
50 using ConstIterator = std::vector<Subasset>::const_iterator;
52 Iterator begin() noexcept;
53 ConstIterator begin() const noexcept;
55 Iterator end() noexcept;
56 ConstIterator end() const noexcept;
58 std::
string MakeDefaultAddress(std::string_view subassetName) const;
65 std::filesystem::path metaFilePath;
66 std::filesystem::path baseAssetPath;
67 std::filesystem::path mountedAssetPath;