NcEngine
Import.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "Assets.h"
8#include "NcaHeader.h"
9
10#include <filesystem>
11#include <iosfwd>
12
13namespace nc::asset
14{
16auto ImportAudioClip(const std::filesystem::path& ncaPath) -> AudioClip;
17
19auto ImportAudioClip(std::istream& data) -> AudioClip;
20
22auto ImportMeshCollider(const std::filesystem::path& ncaPath) -> MeshCollider;
23
25auto ImportMeshCollider(std::istream& data) -> MeshCollider;
26
28auto ImportCubeMap(const std::filesystem::path& ncaPath) -> CubeMap;
29
31auto ImportCubeMap(std::istream& data) -> CubeMap;
32
34auto ImportConvexHull(const std::filesystem::path& ncaPath) -> ConvexHull;
35
37auto ImportConvexHull(std::istream& data) -> ConvexHull;
38
40auto ImportMesh(const std::filesystem::path& ncaPath) -> Mesh;
41
43auto ImportMesh(std::istream& data) -> Mesh;
44
46auto ImportSkeletalAnimation(const std::filesystem::path& ncaPath) -> SkeletalAnimation;
47
49auto ImportSkeletalAnimation(std::istream& data) -> SkeletalAnimation;
50
52auto ImportTexture(const std::filesystem::path& ncaPath) -> Texture;
53
55auto ImportTexture(std::istream& data) -> Texture;
56
58auto ImportNcaHeader(const std::filesystem::path& ncaPath) -> NcaHeader;
59
61auto ImportNcaHeader(std::istream& data) -> NcaHeader;
62} // namespace nc::asset
auto ImportSkeletalAnimation(const std::filesystem::path &ncaPath) -> SkeletalAnimation
Read a SkeletalAnimation asset from an .nca file.
auto ImportTexture(const std::filesystem::path &ncaPath) -> Texture
Read a Texture asset from an .nca file.
auto ImportAudioClip(const std::filesystem::path &ncaPath) -> AudioClip
Read an AudioClip asset from an .nca file.
auto ImportCubeMap(const std::filesystem::path &ncaPath) -> CubeMap
Read a CubeMap asset from an .nca file.
auto ImportNcaHeader(const std::filesystem::path &ncaPath) -> NcaHeader
Read the header from an .nca file.
auto ImportMesh(const std::filesystem::path &ncaPath) -> Mesh
Read a Mesh asset from an .nca file.
auto ImportMeshCollider(const std::filesystem::path &ncaPath) -> MeshCollider
Read a MeshCollider asset from an .nca file.
auto ImportConvexHull(const std::filesystem::path &ncaPath) -> ConvexHull
Read a ConvexHull asset from an .nca file.
Definition: Assets.h:21
Definition: Assets.h:49
Definition: Assets.h:146
Definition: Assets.h:56
Definition: Assets.h:74
Common file header for all asset types.
Definition: NcaHeader.h:33
Definition: Assets.h:120
Definition: Assets.h:135