2017-08-05 13:09:50 +00:00
|
|
|
#include <nx/MiscParamsEntry.h>
|
2017-07-07 07:09:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nx::MiscParamsEntry::MiscParamsEntry() :
|
|
|
|
mCap(kCapId),
|
|
|
|
mProgramType(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
nx::MiscParamsEntry::MiscParamsEntry(const KernelCapability & kernel_cap) :
|
|
|
|
mCap(kCapId),
|
|
|
|
mProgramType(0)
|
|
|
|
{
|
|
|
|
setKernelCapability(kernel_cap);
|
|
|
|
}
|
|
|
|
|
2018-03-22 05:26:22 +00:00
|
|
|
nx::MiscParamsEntry::MiscParamsEntry(uint8_t program_type) :
|
2017-07-07 07:09:03 +00:00
|
|
|
mCap(kCapId),
|
|
|
|
mProgramType(0)
|
|
|
|
{
|
|
|
|
setProgramType(program_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
const nx::KernelCapability & nx::MiscParamsEntry::getKernelCapability() const
|
|
|
|
{
|
|
|
|
return mCap;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nx::MiscParamsEntry::setKernelCapability(const KernelCapability & kernel_cap)
|
|
|
|
{
|
|
|
|
if (kernel_cap.getType() != kCapId)
|
|
|
|
{
|
|
|
|
throw fnd::Exception(kModuleName, "KernelCapability is not type 'ThreadInfo'");
|
|
|
|
}
|
|
|
|
|
|
|
|
mCap = kernel_cap;
|
|
|
|
processCapField();
|
|
|
|
}
|
|
|
|
|
2018-03-22 05:26:22 +00:00
|
|
|
uint8_t nx::MiscParamsEntry::getProgramType() const
|
2017-07-07 07:09:03 +00:00
|
|
|
{
|
|
|
|
return mProgramType;
|
|
|
|
}
|
|
|
|
|
2018-03-22 05:26:22 +00:00
|
|
|
void nx::MiscParamsEntry::setProgramType(uint8_t type)
|
2017-07-07 07:09:03 +00:00
|
|
|
{
|
|
|
|
if (type > kMaxProgramType)
|
|
|
|
{
|
|
|
|
throw fnd::Exception(kModuleName, "Illegal ProgramType. (range: 0-7 inclusive)");
|
|
|
|
}
|
|
|
|
|
|
|
|
mProgramType = type;
|
|
|
|
updateCapField();
|
|
|
|
}
|