18 std::string displayName;
19 std::string subassetIdentifier;
21 std::filesystem::path path;
28 void Initialize(
const std::filesystem::path& projectPath);
29 virtual void Cleanup();
30 virtual void UpdateEntry(
31 const std::filesystem::path& path,
32 const std::string_view subassetIdentifier,
33 const std::string_view displayName,
34 const std::string_view address,
38 virtual void WriteFile();
39 virtual void ReadFile();
40 virtual Uuid Import(
const std::filesystem::path& path);
42 [[nodiscard]]
virtual const std::filesystem::path& GetCompiledAssetsPath()
const;
44 virtual bool HasAsset(
Uuid uuid)
const;
45 virtual bool TryGetPathWithMountPoint(
const std::filesystem::path& path, std::filesystem::path& outMountedPath)
const;
46 virtual bool TryGetAssetData(
const std::filesystem::path& path,
AssetRegistry::Entry& outEntry)
const;
50 virtual void FindAllFilesOfType(AssetType assetType, std::vector<Entry>& outEntries)
const;
52 std::map<Uuid, Entry> assets;
53 std::filesystem::path assetsPath;
54 std::filesystem::path compiledAssetsPath;
55 std::filesystem::path assetRegistryPath;
Definition AssetRegistry.hpp:16