22struct BoneUpdateEventData;
23struct ConvexHullUpdateEventData;
24struct CubeMapUpdateEventData;
25struct MeshColliderUpdateEventData;
26struct MeshUpdateEventData;
27struct SkeletalAnimationUpdateEventData;
28struct TextureUpdateEventData;
31using AssetMap = std::unordered_map<asset::AssetType, std::vector<std::string>>;
78auto BuildAssetModule(const config::AssetSettings& assetSettings,
79 const config::MemorySettings& memorySettings,
AssetType
Indicates type of an asset.
Definition: AssetType.h:13
std::unordered_map< asset::AssetType, std::vector< std::string > > AssetMap
A map of AssetType to a list of asset paths of that type.
Definition: NcAsset.h:31
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
An event source supporting multiple Connections.
Definition: Signal.h:65
Asset module interface.
Definition: NcAsset.h:35
virtual auto OnTextureUpdate() noexcept -> Signal< const TextureUpdateEventData & > &=0
Get the signal for Texture load and unload events.
virtual auto OnMeshUpdate() noexcept -> Signal< const MeshUpdateEventData & > &=0
Get the signal for Mesh load and unload events.
virtual auto OnBoneUpdate() noexcept -> Signal< const BoneUpdateEventData & > &=0
Get the signal for BonesData load and unload events.
virtual auto OnMeshColliderUpdate() noexcept -> Signal< const MeshColliderUpdateEventData & > &=0
Get the signal for MeshCollider load and unload events.
virtual auto GetAssetPath(AssetType type, size_t id) const -> std::string_view=0
Get the path to a loaded asset given its id.
virtual void LoadAssets(const AssetMap &assets)=0
Load assets from an AssetMap.
virtual auto OnFontUpdate() noexcept -> Signal<> &=0
Get the signal for Font load and unload events.
virtual auto OnSkeletalAnimationUpdate() noexcept -> Signal< const SkeletalAnimationUpdateEventData & > &=0
Get the signal for SkeletalAnimation load and unload events.
virtual auto GetLoadedAssets() const noexcept -> AssetMap=0
Get the names of all loaded assets as an AssetMap.
virtual auto OnCubeMapUpdate() noexcept -> Signal< const CubeMapUpdateEventData & > &=0
Get the signal for CubeMap load and unload events.
virtual auto OnConvexHullUpdate() noexcept -> Signal< const ConvexHullUpdateEventData & > &=0
Get the signal for ConvexHull load and unload events.
Event data for mesh bones/rig load and unload operations.
Definition: AssetData.h:26
Event data for ConvexHull load and unload operations.
Definition: AssetData.h:83
Event data for cubemap load and unload operations.
Definition: AssetData.h:41
Event data for MeshCollider load and unload operations.
Definition: AssetData.h:91
Event data for mesh load and unload operations.
Definition: AssetData.h:51
Event data for skeletal animation load and unload operations.
Definition: AssetData.h:58
Event data for texture load and unload operations.
Definition: AssetData.h:73