mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
[nstool] Corrected formatting of title version strings.
This commit is contained in:
parent
79c24153bb
commit
bd25c8c364
3 changed files with 17 additions and 17 deletions
|
@ -16,7 +16,7 @@ const std::string kContentTypeStr[7] =
|
||||||
const std::string kContentMetaTypeStr[2][0x80] =
|
const std::string kContentMetaTypeStr[2][0x80] =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
""
|
"",
|
||||||
"SystemProgram",
|
"SystemProgram",
|
||||||
"SystemData",
|
"SystemData",
|
||||||
"SystemUpdate",
|
"SystemUpdate",
|
||||||
|
@ -56,33 +56,31 @@ inline const char* getBoolStr(bool isTrue)
|
||||||
|
|
||||||
void CnmtProcess::displayCmnt()
|
void CnmtProcess::displayCmnt()
|
||||||
{
|
{
|
||||||
#define _SPLIT_VER(ver) ( (ver>>24) & 0xff), ( (ver>>16) & 0xff), ( (ver>>8) & 0xff), (ver & 0xff)
|
#define _SPLIT_VER(ver) ( (ver>>26) & 0x3f), ( (ver>>20) & 0x3f), ( (ver>>16) & 0xf), (ver & 0xffff)
|
||||||
|
|
||||||
printf("[ContentMeta]\n");
|
printf("[ContentMeta]\n");
|
||||||
printf(" TitleId: 0x%" PRIx64 "\n", mCnmt.getTitleId());
|
printf(" TitleId: 0x%016" PRIx64 "\n", mCnmt.getTitleId());
|
||||||
uint32_t ver = mCnmt.getTitleVersion();
|
printf(" Version: v%" PRId32 " (%d.%d.%d.%d)\n", mCnmt.getTitleVersion(), _SPLIT_VER(mCnmt.getTitleVersion()));
|
||||||
printf(" Version: v%d.%d.%d-%d (v%" PRId32 ")\n", _SPLIT_VER(ver), ver);
|
printf(" Type: %s (%d)\n", getContentMetaTypeStr(mCnmt.getType()).c_str(), mCnmt.getType());
|
||||||
printf(" Type: %s\n", getContentMetaTypeStr(mCnmt.getType()).c_str());
|
|
||||||
printf(" Attributes: %x\n", mCnmt.getAttributes());
|
printf(" Attributes: %x\n", mCnmt.getAttributes());
|
||||||
printf(" IncludesExFatDriver: %s\n", getBoolStr(_HAS_BIT(mCnmt.getAttributes(), nx::cnmt::ATTRIBUTE_INCLUDES_EX_FAT_DRIVER)));
|
printf(" IncludesExFatDriver: %s\n", getBoolStr(_HAS_BIT(mCnmt.getAttributes(), nx::cnmt::ATTRIBUTE_INCLUDES_EX_FAT_DRIVER)));
|
||||||
printf(" Rebootless: %s\n", getBoolStr(_HAS_BIT(mCnmt.getAttributes(), nx::cnmt::ATTRIBUTE_REBOOTLESS)));
|
printf(" Rebootless: %s\n", getBoolStr(_HAS_BIT(mCnmt.getAttributes(), nx::cnmt::ATTRIBUTE_REBOOTLESS)));
|
||||||
ver = mCnmt.getRequiredDownloadSystemVersion();
|
printf(" RequiredDownloadSystemVersion: v%" PRId32 " (%d.%d.%d.%d)\n", mCnmt.getRequiredDownloadSystemVersion(), _SPLIT_VER(mCnmt.getRequiredDownloadSystemVersion()));
|
||||||
printf(" RequiredDownloadSystemVersion: v%d.%d.%d-%d (v%" PRId32 ")\n", _SPLIT_VER(ver), ver);
|
|
||||||
switch(mCnmt.getType())
|
switch(mCnmt.getType())
|
||||||
{
|
{
|
||||||
case (nx::cnmt::METATYPE_APPLICATION):
|
case (nx::cnmt::METATYPE_APPLICATION):
|
||||||
printf(" ApplicationExtendedHeader:\n");
|
printf(" ApplicationExtendedHeader:\n");
|
||||||
printf(" RequiredSystemVersion: %" PRId32 "\n", mCnmt.getApplicationMetaExtendedHeader().required_system_version);
|
printf(" RequiredSystemVersion: v%" PRId32 " (%d.%d.%d.%d)\n", mCnmt.getApplicationMetaExtendedHeader().required_system_version, _SPLIT_VER(mCnmt.getApplicationMetaExtendedHeader().required_system_version));
|
||||||
printf(" PatchId: 0x%016" PRIx64 "\n", mCnmt.getApplicationMetaExtendedHeader().patch_id);
|
printf(" PatchId: 0x%016" PRIx64 "\n", mCnmt.getApplicationMetaExtendedHeader().patch_id);
|
||||||
break;
|
break;
|
||||||
case (nx::cnmt::METATYPE_PATCH):
|
case (nx::cnmt::METATYPE_PATCH):
|
||||||
printf(" PatchMetaExtendedHeader:\n");
|
printf(" PatchMetaExtendedHeader:\n");
|
||||||
printf(" RequiredSystemVersion: %" PRId32 "\n", mCnmt.getPatchMetaExtendedHeader().required_system_version);
|
printf(" RequiredSystemVersion: v%" PRId32 " (%d.%d.%d.%d))\n", mCnmt.getPatchMetaExtendedHeader().required_system_version, _SPLIT_VER(mCnmt.getPatchMetaExtendedHeader().required_system_version));
|
||||||
printf(" ApplicationId: 0x%016" PRIx64 "\n", mCnmt.getPatchMetaExtendedHeader().application_id);
|
printf(" ApplicationId: 0x%016" PRIx64 "\n", mCnmt.getPatchMetaExtendedHeader().application_id);
|
||||||
break;
|
break;
|
||||||
case (nx::cnmt::METATYPE_ADD_ON_CONTENT):
|
case (nx::cnmt::METATYPE_ADD_ON_CONTENT):
|
||||||
printf(" AddOnContentMetaExtendedHeader:\n");
|
printf(" AddOnContentMetaExtendedHeader:\n");
|
||||||
printf(" RequiredSystemVersion: %" PRId32 "\n", mCnmt.getAddOnContentMetaExtendedHeader().required_system_version);
|
printf(" RequiredSystemVersion: v%" PRId32 " (%d.%d.%d.%d)\n", mCnmt.getAddOnContentMetaExtendedHeader().required_system_version, _SPLIT_VER(mCnmt.getAddOnContentMetaExtendedHeader().required_system_version));
|
||||||
printf(" ApplicationId: 0x%016" PRIx64 "\n", mCnmt.getAddOnContentMetaExtendedHeader().application_id);
|
printf(" ApplicationId: 0x%016" PRIx64 "\n", mCnmt.getAddOnContentMetaExtendedHeader().application_id);
|
||||||
break;
|
break;
|
||||||
case (nx::cnmt::METATYPE_DELTA):
|
case (nx::cnmt::METATYPE_DELTA):
|
||||||
|
@ -114,9 +112,8 @@ void CnmtProcess::displayCmnt()
|
||||||
{
|
{
|
||||||
const nx::ContentMetaBinary::ContentMetaInfo& info = mCnmt.getContentMetaInfo()[i];
|
const nx::ContentMetaBinary::ContentMetaInfo& info = mCnmt.getContentMetaInfo()[i];
|
||||||
printf(" %d\n", i);
|
printf(" %d\n", i);
|
||||||
printf(" Id: 0x%" PRIx64 "\n", info.id);
|
printf(" Id: 0x%016" PRIx64 "\n", info.id);
|
||||||
ver = info.version;
|
printf(" Version: v%" PRId32 " (%d.%d.%d.%d)\n", info.version, _SPLIT_VER(info.version));
|
||||||
printf(" Version: v%d.%d.%d-%d (v%" PRId32 ")\n", _SPLIT_VER(ver), ver);
|
|
||||||
printf(" Type: %s\n", getContentMetaTypeStr(info.type).c_str());
|
printf(" Type: %s\n", getContentMetaTypeStr(info.type).c_str());
|
||||||
printf(" Attributes: %x\n", mCnmt.getAttributes());
|
printf(" Attributes: %x\n", mCnmt.getAttributes());
|
||||||
printf(" IncludesExFatDriver: %s\n", getBoolStr(_HAS_BIT(mCnmt.getAttributes(), nx::cnmt::ATTRIBUTE_INCLUDES_EX_FAT_DRIVER)));
|
printf(" IncludesExFatDriver: %s\n", getBoolStr(_HAS_BIT(mCnmt.getAttributes(), nx::cnmt::ATTRIBUTE_INCLUDES_EX_FAT_DRIVER)));
|
||||||
|
|
|
@ -308,8 +308,9 @@ void NcaProcess::displayHeader()
|
||||||
printf(" Size: 0x%" PRIx64 "\n", mHdr.getContentSize());
|
printf(" Size: 0x%" PRIx64 "\n", mHdr.getContentSize());
|
||||||
printf(" ProgID: 0x%016" PRIx64 "\n", mHdr.getProgramId());
|
printf(" ProgID: 0x%016" PRIx64 "\n", mHdr.getProgramId());
|
||||||
printf(" Content Index: %" PRIu32 "\n", mHdr.getContentIndex());
|
printf(" Content Index: %" PRIu32 "\n", mHdr.getContentIndex());
|
||||||
uint32_t ver = mHdr.getSdkAddonVersion();
|
#define _SPLIT_VER(ver) ( (ver>>24) & 0xff), ( (ver>>16) & 0xff), ( (ver>>8) & 0xff)
|
||||||
printf(" SdkAddon Ver.: v%d.%d.%d (v%" PRIu32 ")\n", (ver>>24 & 0xff),(ver>>16 & 0xff),(ver>>8 & 0xff), ver);
|
printf(" SdkAddon Ver.: v%" PRIu32 " (%d.%d.%d)\n", mHdr.getSdkAddonVersion(), _SPLIT_VER(mHdr.getSdkAddonVersion()));
|
||||||
|
#undef _SPLIT_VER
|
||||||
printf(" RightsId: ");
|
printf(" RightsId: ");
|
||||||
fnd::SimpleTextOutput::hexDump(mHdr.getRightsId(), nx::nca::kRightsIdLen);
|
fnd::SimpleTextOutput::hexDump(mHdr.getRightsId(), nx::nca::kRightsIdLen);
|
||||||
printf(" Key Area Keys: (Encrypted)\n");
|
printf(" Key Area Keys: (Encrypted)\n");
|
||||||
|
|
|
@ -104,7 +104,9 @@ void XciProcess::displayHeader()
|
||||||
printf(" Wait1TimeWrite: 0x%x\n", mHdr.getWait1TimeWrite());
|
printf(" Wait1TimeWrite: 0x%x\n", mHdr.getWait1TimeWrite());
|
||||||
printf(" Wait2TimeWrite: 0x%x\n", mHdr.getWait2TimeWrite());
|
printf(" Wait2TimeWrite: 0x%x\n", mHdr.getWait2TimeWrite());
|
||||||
printf(" FwMode: 0x%x\n", mHdr.getFwMode());
|
printf(" FwMode: 0x%x\n", mHdr.getFwMode());
|
||||||
printf(" UppVersion: %d\n", mHdr.getUppVersion());
|
#define _SPLIT_VER(ver) ( (ver>>26) & 0x3f), ( (ver>>20) & 0x3f), ( (ver>>16) & 0xf), (ver & 0xffff)
|
||||||
|
printf(" UppVersion: v%" PRId32 " (%d.%d.%d.%d)\n", mHdr.getUppVersion(), _SPLIT_VER(mHdr.getUppVersion()));
|
||||||
|
#undef _SPLIT_VER
|
||||||
printf(" UppHash: ");
|
printf(" UppHash: ");
|
||||||
fnd::SimpleTextOutput::hexDump(mHdr.getUppHash(), 8);
|
fnd::SimpleTextOutput::hexDump(mHdr.getUppHash(), 8);
|
||||||
printf(" UppId: %016" PRIx64 "\n", mHdr.getUppId());
|
printf(" UppId: %016" PRIx64 "\n", mHdr.getUppId());
|
||||||
|
|
Loading…
Reference in a new issue