20 void ReloadQueuedAssets();
23 template<
typename AssetImporterClass>
24 AssetImporterClass* GetManager() {
25 return static_cast<AssetImporterClass*
>(GetManager(AssetImporterClass::GetStaticAssetType()));
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);
36 virtual AssetLoadTextResult LoadTextByPath(AssetType assetType,
const std::filesystem::path& path);
37 virtual AssetLoadTextResult LoadTextByAddress(AssetType assetType, std::string_view address);
39 virtual bool LoadShaderSetByUuid(
41 uint8_t shaderStagesBitMask,
42 size_t numShaderStages,
43 std::vector<GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData>& shaderStageCreateInfos,
44 std::vector<std::vector<char>>& fileData
46 virtual bool LoadShaderStageByUuid(
48 GraphicsAPI::ShaderStage shaderStage,
50 std::vector<char>& fileData
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
59 virtual bool LoadShaderStageByAddress(
60 std::string_view address,
61 GraphicsAPI::ShaderStage shaderStage,
63 std::vector<char>& fileData
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
72 virtual bool LoadShaderStageByPath(
73 const std::filesystem::path& path,
74 GraphicsAPI::ShaderStage shaderStage,
76 std::vector<char>& fileData
78 virtual std::string& GetTypeName(AssetType assetType);
81 T* GetAsset(
Uuid uuid) {
82 void* assetPtr = GetAsset(T::GetStaticType(), uuid);
83 return static_cast<T*
>(assetPtr);
87 T* GetAsset(std::string_view address) {
88 void* assetPtr = GetAsset(T::GetStaticType(), address);
89 return static_cast<T*
>(assetPtr);
94 void* assetPtr = GetAsset(T::GetStaticType(), assetReference.uuid);
95 return static_cast<T*
>(assetPtr);
99 T* IncrementAssetUse(
Uuid uuid) {
100 void* assetPtr = IncrementAssetUse(T::GetStaticType(), uuid);
101 return static_cast<T*
>(assetPtr);
106 virtual void RegisterAssetType(AssetType assetType,
const char* typeName,
AssetImporter* importer);
107 virtual void UnregisterAssetType(AssetType assetType);
110 bool ownsAssetLoader =
false;
112 std::vector<std::string> assetTypeNames;
113 std::vector<AssetImporter*> assetTypeImporters;
114 std::vector<std::pair<AssetType, Uuid>> queuedAssetReloads;
115 std::mutex reloadMutex;
Definition AssetLoader.hpp:26