2018-06-10 06:57:00 +00:00
|
|
|
#pragma once
|
2018-06-10 15:48:04 +00:00
|
|
|
#include <nx/aset.h>
|
2018-06-10 06:57:00 +00:00
|
|
|
#include <fnd/List.h>
|
2018-06-24 04:52:06 +00:00
|
|
|
#include <fnd/ISerialisable.h>
|
2018-06-10 06:57:00 +00:00
|
|
|
|
|
|
|
namespace nx
|
|
|
|
{
|
2018-06-10 15:48:04 +00:00
|
|
|
class AssetHeader :
|
2018-06-24 04:52:06 +00:00
|
|
|
public fnd::ISerialisable
|
2018-06-10 06:57:00 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct sSection
|
|
|
|
{
|
|
|
|
uint64_t offset;
|
|
|
|
uint64_t size;
|
2018-06-24 04:57:10 +00:00
|
|
|
|
|
|
|
void operator=(const sSection& other)
|
|
|
|
{
|
|
|
|
offset = other.offset;
|
|
|
|
size = other.size;
|
|
|
|
}
|
2018-06-24 05:16:02 +00:00
|
|
|
|
|
|
|
bool operator==(const sSection& other) const
|
|
|
|
{
|
|
|
|
return (offset == other.offset) \
|
|
|
|
&& (size == other.size);
|
|
|
|
}
|
2018-06-24 05:18:18 +00:00
|
|
|
|
|
|
|
bool operator!=(const sSection& other) const
|
|
|
|
{
|
|
|
|
return !operator==(other);
|
|
|
|
}
|
2018-06-10 06:57:00 +00:00
|
|
|
};
|
|
|
|
|
2018-06-10 15:48:04 +00:00
|
|
|
AssetHeader();
|
|
|
|
AssetHeader(const AssetHeader& other);
|
2018-06-10 06:57:00 +00:00
|
|
|
|
2018-06-24 05:21:52 +00:00
|
|
|
void operator=(const AssetHeader& other);
|
2018-06-10 15:48:04 +00:00
|
|
|
bool operator==(const AssetHeader& other) const;
|
|
|
|
bool operator!=(const AssetHeader& other) const;
|
2018-06-10 06:57:00 +00:00
|
|
|
|
|
|
|
// export/import binary
|
2018-06-24 04:52:06 +00:00
|
|
|
void toBytes();
|
|
|
|
void fromBytes(const byte_t* bytes, size_t len);
|
|
|
|
const fnd::Vec<byte_t>& getBytes() const;
|
2018-06-10 06:57:00 +00:00
|
|
|
|
|
|
|
// variables
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
const sSection& getIconInfo() const;
|
|
|
|
void setIconInfo(const sSection& info);
|
|
|
|
|
|
|
|
const sSection& getNacpInfo() const;
|
|
|
|
void setNacpInfo(const sSection& info);
|
|
|
|
|
|
|
|
const sSection& getRomfsInfo() const;
|
|
|
|
void setRomfsInfo(const sSection& info);
|
|
|
|
private:
|
|
|
|
const std::string kModuleName = "NRO_ASSET_HEADER";
|
|
|
|
|
|
|
|
// binary
|
2018-06-24 04:52:06 +00:00
|
|
|
fnd::Vec<byte_t> mRawBinary;
|
2018-06-10 06:57:00 +00:00
|
|
|
|
|
|
|
// data
|
|
|
|
sSection mIconInfo;
|
|
|
|
sSection mNacpInfo;
|
|
|
|
sSection mRomfsInfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|