Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
AssetRegistry.hpp
1#pragma once
2
3#include <filesystem>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <Common/ResourcePipeline/AssetType.hpp>
9#include <Common/ResourcePipeline/Uuid.hpp>
10
11namespace Grindstone::Editor {
12 class MetaFile;
13
15 public:
16 struct Entry {
17 Uuid uuid;
18 std::string displayName;
19 std::string subassetIdentifier;
20 std::string address;
21 std::filesystem::path path;
22 AssetType assetType;
23 };
24
25 public:
26 virtual ~AssetRegistry();
27
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,
35 Uuid& uuid,
36 AssetType assetType
37 );
38 virtual void WriteFile();
39 virtual void ReadFile();
40 virtual Uuid Import(const std::filesystem::path& path);
41 [[nodiscard]] virtual Grindstone::Editor::MetaFile* GetMetaFileByPath(const std::filesystem::path& path);
42 [[nodiscard]] virtual const std::filesystem::path& GetCompiledAssetsPath() const;
43
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;
47 virtual bool TryGetAssetData(const std::string& address, AssetRegistry::Entry& outEntry) const;
48 virtual bool TryGetAssetData(Uuid uuid, AssetRegistry::Entry& outEntry) const;
49
50 virtual void FindAllFilesOfType(AssetType assetType, std::vector<Entry>& outEntries) const;
51 private:
52 std::map<Uuid, Entry> assets;
53 std::filesystem::path assetsPath;
54 std::filesystem::path compiledAssetsPath;
55 std::filesystem::path assetRegistryPath;
56 };
57}
Definition AssetRegistry.hpp:14
Definition MetaFile.hpp:11
Definition Uuid.hpp:6
Definition AssetRegistry.hpp:16