nstool/lib/libnx/source/FacBinary.cpp

121 lines
3.1 KiB
C++
Raw Normal View History

#include <nx/FacBinary.h>
nx::FacBinary::FacBinary()
{
2018-06-24 08:18:54 +00:00
clear();
}
2018-06-24 08:18:54 +00:00
nx::FacBinary::FacBinary(const FacBinary & other)
{
2018-06-24 08:18:54 +00:00
*this = other;
}
void nx::FacBinary::operator=(const FacBinary & other)
{
2018-06-24 08:18:54 +00:00
if (other.getBytes().size())
{
fromBytes(other.getBytes().data(), other.getBytes().size());
}
else
{
clear();
FacHeader::operator=(other);
mContentOwnerIdList = other.mContentOwnerIdList;
mSaveDataOwnerIdList = other.mSaveDataOwnerIdList;
}
}
2018-06-24 08:18:54 +00:00
bool nx::FacBinary::operator==(const FacBinary & other) const
{
2018-06-24 08:18:54 +00:00
return (FacHeader::operator==(other)) \
&& (mContentOwnerIdList == other.mContentOwnerIdList) \
&& (mSaveDataOwnerIdList == other.mSaveDataOwnerIdList);
}
2018-06-24 08:18:54 +00:00
bool nx::FacBinary::operator!=(const FacBinary & other) const
{
2018-06-24 08:18:54 +00:00
return !(*this == other);
}
2018-06-24 08:18:54 +00:00
void nx::FacBinary::toBytes()
{
2018-06-24 08:18:54 +00:00
FacHeader::setContentOwnerIdSize(mContentOwnerIdList.size() * sizeof(uint32_t));
FacHeader::setSaveDataOwnerIdSize(mSaveDataOwnerIdList.size() * sizeof(uint32_t));
FacHeader::toBytes();
2018-06-24 08:18:54 +00:00
mRawBinary.alloc(getFacSize());
memcpy(mRawBinary.data(), FacHeader::getBytes().data(), FacHeader::getBytes().size());
2018-06-24 08:18:54 +00:00
uint32_t* rawContentOwnerIds = (uint32_t*)(mRawBinary.data() + FacHeader::getContentOwnerIdPos().offset);
for (size_t i = 0; i < mContentOwnerIdList.size(); i++)
{
rawContentOwnerIds[i] = le_word(mContentOwnerIdList[i]);
}
2018-06-24 08:18:54 +00:00
uint32_t* rawSaveDataOwnerIds = (uint32_t*)(mRawBinary.data() + FacHeader::getSaveDataOwnerIdPos().offset);
for (size_t i = 0; i < mSaveDataOwnerIdList.size(); i++)
{
rawSaveDataOwnerIds[i] = le_word(mSaveDataOwnerIdList[i]);
}
}
2018-06-24 08:18:54 +00:00
void nx::FacBinary::fromBytes(const byte_t* data, size_t len)
{
clear();
2018-06-24 08:18:54 +00:00
FacHeader::fromBytes(data, len);
if (FacHeader::getFacSize() > len)
{
throw fnd::Exception(kModuleName, "FAC binary too small");
}
2018-06-24 08:18:54 +00:00
mRawBinary.alloc(FacHeader::getFacSize());
memcpy(mRawBinary.data(), data, mRawBinary.size());
2018-06-24 08:18:54 +00:00
uint32_t* rawContentOwnerIds = (uint32_t*)(mRawBinary.data() + FacHeader::getContentOwnerIdPos().offset);
size_t rawContentOwnerIdNum = FacHeader::getContentOwnerIdPos().size / sizeof(uint32_t);
for (size_t i = 0; i < rawContentOwnerIdNum; i++)
{
mContentOwnerIdList.addElement(le_word(rawContentOwnerIds[i]));
}
2018-06-24 08:18:54 +00:00
uint32_t* rawSaveDataOwnerIds = (uint32_t*)(mRawBinary.data() + FacHeader::getSaveDataOwnerIdPos().offset);
size_t rawSaveDataOwnerIdNum = FacHeader::getSaveDataOwnerIdPos().size / sizeof(uint32_t);
for (size_t i = 0; i < rawSaveDataOwnerIdNum; i++)
{
mSaveDataOwnerIdList.addElement(le_word(rawSaveDataOwnerIds[i]));
}
}
2018-06-24 08:18:54 +00:00
const fnd::Vec<byte_t>& nx::FacBinary::getBytes() const
{
2018-06-24 08:18:54 +00:00
return mRawBinary;
}
void nx::FacBinary::clear()
{
FacHeader::clear();
2018-06-24 08:18:54 +00:00
mRawBinary.clear();
mContentOwnerIdList.clear();
mSaveDataOwnerIdList.clear();
}
2018-03-22 05:26:22 +00:00
const fnd::List<uint32_t>& nx::FacBinary::getContentOwnerIdList() const
{
return mContentOwnerIdList;
}
2018-03-22 05:26:22 +00:00
void nx::FacBinary::setContentOwnerIdList(const fnd::List<uint32_t>& list)
{
mContentOwnerIdList = list;
}
2018-03-22 05:26:22 +00:00
const fnd::List<uint32_t>& nx::FacBinary::getSaveDataOwnerIdList() const
{
return mSaveDataOwnerIdList;
}
2018-03-22 05:26:22 +00:00
void nx::FacBinary::setSaveDataOwnerIdList(const fnd::List<uint32_t>& list)
{
mSaveDataOwnerIdList = list;
}