nstool/lib/libnx/include/nx/FacBinary.h

47 lines
1 KiB
C
Raw Normal View History

#pragma once
#include <string>
#include <fnd/List.h>
#include <nx/FacHeader.h>
2017-07-06 11:17:21 +00:00
namespace nx
{
2017-07-06 11:17:21 +00:00
class FacBinary :
public FacHeader
{
2017-07-06 11:17:21 +00:00
public:
FacBinary();
FacBinary(const FacBinary& other);
2018-06-24 08:18:54 +00:00
void operator=(const FacBinary& other);
2017-07-06 11:17:21 +00:00
bool operator==(const FacBinary& other) const;
bool operator!=(const FacBinary& other) const;
2017-07-06 11:17:21 +00:00
// export/import binary
2018-06-24 08:18:54 +00:00
void toBytes();
void fromBytes(const byte_t* bytes, size_t len);
const fnd::Vec<byte_t>& getBytes() const;
2017-07-06 11:17:21 +00:00
// variables
void clear();
2018-03-22 05:26:22 +00:00
const fnd::List<uint32_t>& getContentOwnerIdList() const;
void setContentOwnerIdList(const fnd::List<uint32_t>& list);
2018-03-22 05:26:22 +00:00
const fnd::List<uint32_t>& getSaveDataOwnerIdList() const;
void setSaveDataOwnerIdList(const fnd::List<uint32_t>& list);
2017-07-06 11:17:21 +00:00
private:
const std::string kModuleName = "FAC_BINARY";
2018-03-22 05:26:22 +00:00
static const uint32_t kFacFormatVersion = 1;
2017-07-06 11:17:21 +00:00
// raw binary
2018-06-24 08:18:54 +00:00
fnd::Vec<byte_t> mRawBinary;
2017-07-06 11:17:21 +00:00
// variables
2018-03-22 05:26:22 +00:00
fnd::List<uint32_t> mContentOwnerIdList;
fnd::List<uint32_t> mSaveDataOwnerIdList;
2017-07-06 11:17:21 +00:00
};
}