Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Grindstone::Assets::AssetManager Class Reference

Public Member Functions

 AssetManager (AssetLoader *assetLoader)
 
void ReloadQueuedAssets ()
 
virtual AssetImporterGetManager (AssetType assetType)
 
template<typename AssetImporterClass >
AssetImporterClass * GetManager ()
 
virtual void QueueReloadAsset (AssetType assetType, Uuid uuid)
 
virtual void * GetAsset (AssetType assetType, std::string_view address)
 
virtual void * GetAsset (AssetType assetType, Uuid uuid)
 
virtual void * IncrementAssetUse (AssetType assetType, Uuid uuid)
 
virtual void DecrementAssetUse (AssetType assetType, Uuid uuid)
 
virtual AssetLoadBinaryResult LoadBinaryByPath (AssetType assetType, const std::filesystem::path &path)
 
virtual AssetLoadBinaryResult LoadBinaryByAddress (AssetType assetType, std::string_view address)
 
virtual AssetLoadBinaryResult LoadBinaryByUuid (AssetType assetType, Uuid uuid)
 
virtual AssetLoadTextResult LoadTextByPath (AssetType assetType, const std::filesystem::path &path)
 
virtual AssetLoadTextResult LoadTextByAddress (AssetType assetType, std::string_view address)
 
virtual AssetLoadTextResult LoadTextByUuid (AssetType assetType, Uuid uuid)
 
virtual bool LoadShaderSetByUuid (Uuid uuid, uint8_t shaderStagesBitMask, size_t numShaderStages, std::vector< GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData > &shaderStageCreateInfos, std::vector< std::vector< char > > &fileData)
 
virtual bool LoadShaderStageByUuid (Uuid uuid, GraphicsAPI::ShaderStage shaderStage, GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData &stageCreateInfo, std::vector< char > &fileData)
 
virtual bool LoadShaderSetByAddress (std::string_view address, uint8_t shaderStagesBitMask, size_t numShaderStages, std::vector< GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData > &shaderStageCreateInfos, std::vector< std::vector< char > > &fileData)
 
virtual bool LoadShaderStageByAddress (std::string_view address, GraphicsAPI::ShaderStage shaderStage, GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData &stageCreateInfo, std::vector< char > &fileData)
 
virtual bool LoadShaderSetByPath (const std::filesystem::path &path, uint8_t shaderStagesBitMask, size_t numShaderStages, std::vector< GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData > &shaderStageCreateInfos, std::vector< std::vector< char > > &fileData)
 
virtual bool LoadShaderStageByPath (const std::filesystem::path &path, GraphicsAPI::ShaderStage shaderStage, GraphicsAPI::GraphicsPipeline::CreateInfo::ShaderStageData &stageCreateInfo, std::vector< char > &fileData)
 
virtual std::string & GetTypeName (AssetType assetType)
 
template<typename T >
T * GetAsset (Uuid uuid)
 
template<typename T >
T * GetAsset (std::string_view address)
 
template<typename T >
T * GetAsset (Grindstone::AssetReference< T > assetReference)
 
template<typename T >
T * IncrementAssetUse (Uuid uuid)
 
virtual void RegisterAssetType (AssetType assetType, const char *typeName, AssetImporter *importer)
 
virtual void UnregisterAssetType (AssetType assetType)
 

The documentation for this class was generated from the following files: