NcEngine
NcaHeader.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "AssetType.h"
8
9#include <cstdint>
10#include <iosfwd>
11#include <string_view>
12
13namespace nc::asset
14{
15constexpr auto version4 = 4ull;
16constexpr auto currentVersion = version4;
17
20{
21 static constexpr auto audioClip = std::string_view{"CLIP"};
22 static constexpr auto cubeMap = std::string_view{"CUBE"};
23 static constexpr auto convexHull = std::string_view{"HULL"};
24 static constexpr auto mesh = std::string_view{"MESH"};
25 static constexpr auto meshCollider = std::string_view{"CONC"};
26 static constexpr auto shader = std::string_view{"SHAD"};
27 static constexpr auto skeletalAnimation = std::string_view{"SKEL"};
28 static constexpr auto texture = std::string_view{"TEXT"};
29};
30
33{
38 static constexpr auto binarySize = size_t{24};
39
41 char magicNumber[5] = "NONE";
42
44 char compressionAlgorithm[5] = "NONE";
45
47 uint64_t version = currentVersion;
48
53 uint64_t size = 0;
54};
55
57auto GetAssetType(const NcaHeader& header) -> AssetType;
58
60auto IsVersionSupported(uint64_t version) noexcept -> bool;
61
63void Serialize(std::ostream& stream, const NcaHeader& header);
64
66void Deserialize(std::istream& stream, NcaHeader& header);
67} // namespace nc::asset
AssetType
Indicates type of an asset.
Definition: AssetType.h:13
auto IsVersionSupported(uint64_t version) noexcept -> bool
Check if deserialization is supported for an Nca version.
auto GetAssetType(const NcaHeader &header) -> AssetType
Get the AssetType for an NcaHeader.
Identifiers for asset blobs in .nca files.
Definition: NcaHeader.h:20
Common file header for all asset types.
Definition: NcaHeader.h:33
char compressionAlgorithm[5]
Compression type for the asset blob.
Definition: NcaHeader.h:44
static constexpr auto binarySize
Size of a serialized NcaHeader.
Definition: NcaHeader.h:38
uint64_t size
Size in bytes of the asset blob following this header.
Definition: NcaHeader.h:53
char magicNumber[5]
Asset type identifier.
Definition: NcaHeader.h:41
uint64_t version
The Fnv1a hash of the asset's friendly name.
Definition: NcaHeader.h:47