Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
AssetManager.hpp
1#pragma once
2
3#include <vector>
4#include <string>
5#include <mutex>
6
7#include <Common/Graphics/GraphicsPipeline.hpp>
8#include <Common/Buffer.hpp>
9#include <EngineCore/Assets/Loaders/AssetLoader.hpp>
10
11#include "Asset.hpp"
12#include "AssetImporter.hpp"
13
14namespace Grindstone::Assets {
16 public:
17 AssetManager(AssetLoader* assetLoader);
19
20 void ReloadQueuedAssets();
21 virtual AssetImporter* GetManager(AssetType assetType);
22
23 template<typename AssetImporterClass>
24 AssetImporterClass* GetManager() {
25 return static_cast<AssetImporterClass*>(GetManager(AssetImporterClass::GetStaticAssetType()));
26 }
27
28 virtual void QueueReloadAsset(AssetType assetType, Uuid uuid);
29 virtual void* GetAsset(AssetType assetType, std::string_view address);
30 virtual void* GetAsset(AssetType assetType, Uuid uuid);
31 virtual void* IncrementAssetUse(AssetType assetType, Uuid uuid);
32 virtual void DecrementAssetUse(AssetType assetType, Uuid uuid);
33 virtual AssetLoadBinaryResult LoadBinaryByPath(AssetType assetType, const std::filesystem::path& path);
34 virtual AssetLoadBinaryResult LoadBinaryByAddress(AssetType assetType, std::string_view address);
35 virtual AssetLoadBinaryResult LoadBinaryByUuid(AssetType assetType, Uuid uuid);
36 virtual AssetLoadTextResult LoadTextByPath(AssetType assetType, const std::filesystem::path& path);
37 virtual AssetLoadTextResult LoadTextByAddress(AssetType assetType, std::string_view address);
38 virtual AssetLoadTextResult LoadTextByUuid(AssetType assetType, Uuid uuid);
39 virtual bool LoadShaderSetByUuid(
40 Uuid uuid,
41 uint8_t shaderStagesBitMask,
42 size_t numShaderStages,
43 std::vector<GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData>& shaderStageCreateInfos,
44 std::vector<std::vector<char>>& fileData
45 );
46 virtual bool LoadShaderStageByUuid(
47 Uuid uuid,
48 GraphicsAPI::ShaderStage shaderStage,
50 std::vector<char>& fileData
51 );
52 virtual bool LoadShaderSetByAddress(
53 std::string_view address,
54 uint8_t shaderStagesBitMask,
55 size_t numShaderStages,
56 std::vector<GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData>& shaderStageCreateInfos,
57 std::vector<std::vector<char>>& fileData
58 );
59 virtual bool LoadShaderStageByAddress(
60 std::string_view address,
61 GraphicsAPI::ShaderStage shaderStage,
63 std::vector<char>& fileData
64 );
65 virtual bool LoadShaderSetByPath(
66 const std::filesystem::path& path,
67 uint8_t shaderStagesBitMask,
68 size_t numShaderStages,
69 std::vector<GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData>& shaderStageCreateInfos,
70 std::vector<std::vector<char>>& fileData
71 );
72 virtual bool LoadShaderStageByPath(
73 const std::filesystem::path& path,
74 GraphicsAPI::ShaderStage shaderStage,
76 std::vector<char>& fileData
77 );
78 virtual std::string& GetTypeName(AssetType assetType);
79
80 template<typename T>
81 T* GetAsset(Uuid uuid) {
82 void* assetPtr = GetAsset(T::GetStaticType(), uuid);
83 return static_cast<T*>(assetPtr);
84 };
85
86 template<typename T>
87 T* GetAsset(std::string_view address) {
88 void* assetPtr = GetAsset(T::GetStaticType(), address);
89 return static_cast<T*>(assetPtr);
90 };
91
92 template<typename T>
93 T* GetAsset(Grindstone::AssetReference<T> assetReference) {
94 void* assetPtr = GetAsset(T::GetStaticType(), assetReference.uuid);
95 return static_cast<T*>(assetPtr);
96 };
97
98 template<typename T>
99 T* IncrementAssetUse(Uuid uuid) {
100 void* assetPtr = IncrementAssetUse(T::GetStaticType(), uuid);
101 return static_cast<T*>(assetPtr);
102 };
103
104 // TODO: Register these into a file, so we can refer to types by number, and
105 // if there is a new type, we can change all assetTypes in meta files.
106 virtual void RegisterAssetType(AssetType assetType, const char* typeName, AssetImporter* importer);
107 virtual void UnregisterAssetType(AssetType assetType);
108 private:
109
110 bool ownsAssetLoader = false;
111 Grindstone::Assets::AssetLoader* assetLoader = nullptr;
112 std::vector<std::string> assetTypeNames;
113 std::vector<AssetImporter*> assetTypeImporters;
114 std::vector<std::pair<AssetType, Uuid>> queuedAssetReloads;
115 std::mutex reloadMutex;
116 };
117}
Definition AssetImporter.hpp:10
Definition AssetLoader.hpp:32
Definition AssetManager.hpp:15
Definition Uuid.hpp:6
Definition Asset.hpp:44
Definition AssetLoader.hpp:20
Definition AssetLoader.hpp:26