mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
55 lines
No EOL
1.2 KiB
C++
55 lines
No EOL
1.2 KiB
C++
#pragma once
|
|
#include <string>
|
|
#include <cstring>
|
|
#include <fnd/IByteModel.h>
|
|
#include <nn/hac/define/cnmt.h>
|
|
|
|
namespace nn
|
|
{
|
|
namespace hac
|
|
{
|
|
class ContentMetaInfo :
|
|
public fnd::IByteModel
|
|
{
|
|
public:
|
|
ContentMetaInfo();
|
|
ContentMetaInfo(const ContentMetaInfo& other);
|
|
|
|
void operator=(const ContentMetaInfo& other);
|
|
bool operator==(const ContentMetaInfo& other) const;
|
|
bool operator!=(const ContentMetaInfo& other) const;
|
|
|
|
// IByteModel
|
|
void toBytes();
|
|
void fromBytes(const byte_t* bytes, size_t len);
|
|
const fnd::Vec<byte_t>& getBytes() const;
|
|
|
|
// variables
|
|
void clear();
|
|
|
|
uint64_t getTitleId() const;
|
|
void setTitleId(uint64_t title_id);
|
|
|
|
uint32_t getTitleVersion() const;
|
|
void setTitleVersion(uint32_t ver);
|
|
|
|
cnmt::ContentMetaType getContentMetaType() const;
|
|
void setContentMetaType(cnmt::ContentMetaType type);
|
|
|
|
byte_t getAttributes() const;
|
|
void setAttributes(byte_t attr);
|
|
|
|
private:
|
|
const std::string kModuleName = "CONTENT_META_INFO";
|
|
|
|
// byte model
|
|
fnd::Vec<byte_t> mRawBinary;
|
|
|
|
// variables
|
|
uint64_t mTitleId;
|
|
uint32_t mTitleVersion;
|
|
cnmt::ContentMetaType mType;
|
|
byte_t mAttributes;
|
|
};
|
|
}
|
|
} |