NcEngine
NcAsset.h
Go to the documentation of this file.
1
5#pragma once
6
9
10#include "ncasset/AssetType.h"
11
12namespace nc
13{
14namespace config
15{
16struct AssetSettings;
17struct MemorySettings;
18} // namespace config
19
20namespace asset
21{
22struct BoneUpdateEventData;
23struct ConvexHullUpdateEventData;
24struct CubeMapUpdateEventData;
25struct MeshColliderUpdateEventData;
26struct MeshUpdateEventData;
27struct SkeletalAnimationUpdateEventData;
28struct TextureUpdateEventData;
29
31using AssetMap = std::unordered_map<asset::AssetType, std::vector<std::string>>;
32
34class NcAsset : public Module
35{
36 public:
38 virtual auto OnBoneUpdate() noexcept -> Signal<const BoneUpdateEventData&>& = 0;
39
41 virtual auto OnCubeMapUpdate() noexcept -> Signal<const CubeMapUpdateEventData&>& = 0;
42
44 virtual auto OnMeshUpdate() noexcept -> Signal<const MeshUpdateEventData&>& = 0;
45
47 virtual auto OnSkeletalAnimationUpdate() noexcept -> Signal<const SkeletalAnimationUpdateEventData&>& = 0;
48
50 virtual auto OnTextureUpdate() noexcept -> Signal<const TextureUpdateEventData&>& = 0;
51
53 virtual auto OnConvexHullUpdate() noexcept -> Signal<const ConvexHullUpdateEventData&>& = 0;
54
56 virtual auto OnMeshColliderUpdate() noexcept -> Signal<const MeshColliderUpdateEventData&>& = 0;
57
59 virtual auto OnFontUpdate() noexcept -> Signal<>& = 0;
60
62 virtual void LoadAssets(const AssetMap& assets) = 0;
63
65 virtual auto GetLoadedAssets() const noexcept -> AssetMap = 0;
66
68 virtual auto GetAssetPath(AssetType type, size_t id) const -> std::string_view = 0;
69};
70
78auto BuildAssetModule(const config::AssetSettings& assetSettings,
79 const config::MemorySettings& memorySettings,
80 AssetMap defaults) -> std::unique_ptr<NcAsset>;
81} // namespace asset
82} // namespace nc
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