mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-22 18:26:39 +00:00
Some more changes.
* nacp: updated u32 and u64 field functions to let the user choose if the provided value should be printed using decimal or hexadecimal base, fixed codestyle. * utils: properly implement ALIGN_DOWN() macro.
This commit is contained in:
parent
69d9c2d732
commit
9bac8f3bdc
4 changed files with 47 additions and 43 deletions
|
@ -192,8 +192,8 @@ static bool nacpAddStringFieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_si
|
||||||
static bool nacpAddEnumFieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u8 value, NacpStringFunction str_func);
|
static bool nacpAddEnumFieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u8 value, NacpStringFunction str_func);
|
||||||
static bool nacpAddBitflagFieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, const void *flag, u8 flag_width, u8 max_flag_idx, NacpStringFunction str_func);
|
static bool nacpAddBitflagFieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, const void *flag, u8 flag_width, u8 max_flag_idx, NacpStringFunction str_func);
|
||||||
static bool nacpAddU16FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u16 value, bool hex);
|
static bool nacpAddU16FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u16 value, bool hex);
|
||||||
static bool nacpAddU32FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u32 value);
|
static bool nacpAddU32FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u32 value, bool hex);
|
||||||
static bool nacpAddU64FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u64 value);
|
static bool nacpAddU64FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u64 value, bool hex);
|
||||||
|
|
||||||
bool nacpInitializeContext(NacpContext *out, NcaContext *nca_ctx)
|
bool nacpInitializeContext(NacpContext *out, NcaContext *nca_ctx)
|
||||||
{
|
{
|
||||||
|
@ -444,8 +444,8 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
" <Name>%s</Name>\n" \
|
" <Name>%s</Name>\n" \
|
||||||
" <Publisher>%s</Publisher>\n" \
|
" <Publisher>%s</Publisher>\n" \
|
||||||
" </Title>\n", \
|
" </Title>\n", \
|
||||||
nacpGetLanguageString(i),
|
nacpGetLanguageString(i), \
|
||||||
title->name,
|
title->name, \
|
||||||
title->publisher)) goto end;
|
title->publisher)) goto end;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
@ -484,7 +484,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "VideoCapture", nacp->video_capture, &nacpGetVideoCaptureString)) goto end;
|
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "VideoCapture", nacp->video_capture, &nacpGetVideoCaptureString)) goto end;
|
||||||
|
|
||||||
/* PresenceGroupId. */
|
/* PresenceGroupId. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "PresenceGroupId", nacp->presence_group_id)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "PresenceGroupId", nacp->presence_group_id, true)) goto end;
|
||||||
|
|
||||||
/* DisplayVersion. */
|
/* DisplayVersion. */
|
||||||
if (!nacpAddStringFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DisplayVersion", nacp->display_version)) goto end;
|
if (!nacpAddStringFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DisplayVersion", nacp->display_version)) goto end;
|
||||||
|
@ -500,7 +500,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
" <Organization>%s</Organization>\n" \
|
" <Organization>%s</Organization>\n" \
|
||||||
" <Age>%d</Age>\n" \
|
" <Age>%d</Age>\n" \
|
||||||
" </Rating>\n", \
|
" </Rating>\n", \
|
||||||
nacpGetRatingAgeOrganizationString(i),
|
nacpGetRatingAgeOrganizationString(i), \
|
||||||
age)) goto end;
|
age)) goto end;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
@ -515,31 +515,31 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "PlayLogPolicy", nacp->play_log_policy, &nacpGetPlayLogPolicyString)) goto end;
|
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "PlayLogPolicy", nacp->play_log_policy, &nacpGetPlayLogPolicyString)) goto end;
|
||||||
|
|
||||||
/* SaveDataOwnerId. */
|
/* SaveDataOwnerId. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "SaveDataOwnerId", nacp->save_data_owner_id)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "SaveDataOwnerId", nacp->save_data_owner_id, true)) goto end;
|
||||||
|
|
||||||
/* UserAccountSaveDataSize. */
|
/* UserAccountSaveDataSize. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "UserAccountSaveDataSize", (u64)nacp->user_account_save_data_size)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "UserAccountSaveDataSize", (u64)nacp->user_account_save_data_size, true)) goto end;
|
||||||
|
|
||||||
/* UserAccountSaveDataJournalSize. */
|
/* UserAccountSaveDataJournalSize. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "UserAccountSaveDataJournalSize", (u64)nacp->user_account_save_data_journal_size)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "UserAccountSaveDataJournalSize", (u64)nacp->user_account_save_data_journal_size, true)) goto end;
|
||||||
|
|
||||||
/* DeviceSaveDataSize. */
|
/* DeviceSaveDataSize. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DeviceSaveDataSize", (u64)nacp->device_save_data_size)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DeviceSaveDataSize", (u64)nacp->device_save_data_size, true)) goto end;
|
||||||
|
|
||||||
/* DeviceSaveDataJournalSize. */
|
/* DeviceSaveDataJournalSize. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DeviceSaveDataJournalSize", (u64)nacp->device_save_data_journal_size)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DeviceSaveDataJournalSize", (u64)nacp->device_save_data_journal_size, true)) goto end;
|
||||||
|
|
||||||
/* BcatDeliveryCacheStorageSize. */
|
/* BcatDeliveryCacheStorageSize. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "BcatDeliveryCacheStorageSize", (u64)nacp->bcat_delivery_cache_storage_size)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "BcatDeliveryCacheStorageSize", (u64)nacp->bcat_delivery_cache_storage_size, true)) goto end;
|
||||||
|
|
||||||
/* ApplicationErrorCodeCategory. */
|
/* ApplicationErrorCodeCategory. */
|
||||||
if (!nacpAddStringFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "ApplicationErrorCodeCategory", nacp->application_error_code_category)) goto end;
|
if (!nacpAddStringFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "ApplicationErrorCodeCategory", nacp->application_error_code_category)) goto end;
|
||||||
|
|
||||||
/* AddOnContentBaseId. */
|
/* AddOnContentBaseId. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "AddOnContentBaseId", nacp->add_on_content_base_id)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "AddOnContentBaseId", nacp->add_on_content_base_id, true)) goto end;
|
||||||
|
|
||||||
/* Version. */
|
/* Version. */
|
||||||
if (!nacpAddU32FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "Version", version)) goto end;
|
if (!nacpAddU32FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "Version", version, false)) goto end;
|
||||||
|
|
||||||
/* ReleaseVersion and PrivateVersion. Unused but kept anyway. */
|
/* ReleaseVersion and PrivateVersion. Unused but kept anyway. */
|
||||||
if (!utilsAppendFormattedStringToBuffer(&xml_buf, &xml_buf_size, \
|
if (!utilsAppendFormattedStringToBuffer(&xml_buf, &xml_buf_size, \
|
||||||
|
@ -550,13 +550,13 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "LogoType", nacp->logo_type, &nacpGetLogoTypeString)) goto end;
|
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "LogoType", nacp->logo_type, &nacpGetLogoTypeString)) goto end;
|
||||||
|
|
||||||
/* RequiredSystemVersion. */
|
/* RequiredSystemVersion. */
|
||||||
if (!nacpAddU32FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "RequiredSystemVersion", required_system_version)) goto end;
|
if (!nacpAddU32FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "RequiredSystemVersion", required_system_version, false)) goto end;
|
||||||
|
|
||||||
/* LocalCommunicationId. */
|
/* LocalCommunicationId. */
|
||||||
for(i = 0, count = 0; i < 0x8; i++)
|
for(i = 0, count = 0; i < 0x8; i++)
|
||||||
{
|
{
|
||||||
if (!nacp->local_communication_id[i]) continue;
|
if (!nacp->local_communication_id[i]) continue;
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "LocalCommunicationId", nacp->local_communication_id[i])) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "LocalCommunicationId", nacp->local_communication_id[i], true)) goto end;
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -600,7 +600,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
" <AccessibleUrlsFilePath />\n")) goto end;
|
" <AccessibleUrlsFilePath />\n")) goto end;
|
||||||
|
|
||||||
/* SeedForPseudoDeviceId. */
|
/* SeedForPseudoDeviceId. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "SeedForPseudoDeviceId", nacp->seed_for_pseudo_device_id)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "SeedForPseudoDeviceId", nacp->seed_for_pseudo_device_id, true)) goto end;
|
||||||
|
|
||||||
/* BcatPassphrase. */
|
/* BcatPassphrase. */
|
||||||
if (!nacpAddStringFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "BcatPassphrase", nacp->bcat_passphrase)) goto end;
|
if (!nacpAddStringFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "BcatPassphrase", nacp->bcat_passphrase)) goto end;
|
||||||
|
@ -609,28 +609,28 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "AddOnContentRegistrationType", nacp->add_on_content_registration_type, &nacpGetAddOnContentRegistrationTypeString)) goto end;
|
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "AddOnContentRegistrationType", nacp->add_on_content_registration_type, &nacpGetAddOnContentRegistrationTypeString)) goto end;
|
||||||
|
|
||||||
/* UserAccountSaveDataSizeMax. */
|
/* UserAccountSaveDataSizeMax. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "UserAccountSaveDataSizeMax", (u64)nacp->user_account_save_data_size_max)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "UserAccountSaveDataSizeMax", (u64)nacp->user_account_save_data_size_max, true)) goto end;
|
||||||
|
|
||||||
/* UserAccountSaveDataJournalSizeMax. */
|
/* UserAccountSaveDataJournalSizeMax. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "UserAccountSaveDataJournalSizeMax", (u64)nacp->user_account_save_data_journal_size_max)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "UserAccountSaveDataJournalSizeMax", (u64)nacp->user_account_save_data_journal_size_max, true)) goto end;
|
||||||
|
|
||||||
/* DeviceSaveDataSizeMax. */
|
/* DeviceSaveDataSizeMax. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DeviceSaveDataSizeMax", (u64)nacp->device_save_data_size_max)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DeviceSaveDataSizeMax", (u64)nacp->device_save_data_size_max, true)) goto end;
|
||||||
|
|
||||||
/* DeviceSaveDataJournalSizeMax. */
|
/* DeviceSaveDataJournalSizeMax. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DeviceSaveDataJournalSizeMax", (u64)nacp->device_save_data_journal_size_max)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "DeviceSaveDataJournalSizeMax", (u64)nacp->device_save_data_journal_size_max, true)) goto end;
|
||||||
|
|
||||||
/* TemporaryStorageSize. */
|
/* TemporaryStorageSize. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "TemporaryStorageSize", (u64)nacp->temporary_storage_size)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "TemporaryStorageSize", (u64)nacp->temporary_storage_size, true)) goto end;
|
||||||
|
|
||||||
/* CacheStorageSize. */
|
/* CacheStorageSize. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "CacheStorageSize", (u64)nacp->cache_storage_size)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "CacheStorageSize", (u64)nacp->cache_storage_size, true)) goto end;
|
||||||
|
|
||||||
/* CacheStorageJournalSize. */
|
/* CacheStorageJournalSize. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "CacheStorageJournalSize", (u64)nacp->cache_storage_journal_size)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "CacheStorageJournalSize", (u64)nacp->cache_storage_journal_size, true)) goto end;
|
||||||
|
|
||||||
/* CacheStorageDataAndJournalSizeMax. */
|
/* CacheStorageDataAndJournalSizeMax. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "CacheStorageDataAndJournalSizeMax", (u64)nacp->cache_storage_data_and_journal_size_max)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "CacheStorageDataAndJournalSizeMax", (u64)nacp->cache_storage_data_and_journal_size_max, true)) goto end;
|
||||||
|
|
||||||
/* CacheStorageIndexMax. */
|
/* CacheStorageIndexMax. */
|
||||||
if (!nacpAddU16FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "CacheStorageIndexMax", nacp->cache_storage_index_max, true)) goto end;
|
if (!nacpAddU16FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "CacheStorageIndexMax", nacp->cache_storage_index_max, true)) goto end;
|
||||||
|
@ -648,7 +648,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
for(i = 0, count = 0; i < 0x10; i++)
|
for(i = 0, count = 0; i < 0x10; i++)
|
||||||
{
|
{
|
||||||
if (!nacp->play_log_queryable_application_id[i]) continue;
|
if (!nacp->play_log_queryable_application_id[i]) continue;
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "PlayLogQueryableApplicationId", nacp->play_log_queryable_application_id[i])) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "PlayLogQueryableApplicationId", nacp->play_log_queryable_application_id[i], true)) goto end;
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -688,7 +688,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
" <GroupId>0x%016lx</GroupId>\n" \
|
" <GroupId>0x%016lx</GroupId>\n" \
|
||||||
" <Key>%s</Key>\n" \
|
" <Key>%s</Key>\n" \
|
||||||
" </SendGroupConfiguration>\n", \
|
" </SendGroupConfiguration>\n", \
|
||||||
ndcc->send_group_configuration.group_id,
|
ndcc->send_group_configuration.group_id, \
|
||||||
key_str)) goto end;
|
key_str)) goto end;
|
||||||
|
|
||||||
/* ReceivableGroupConfiguration. */
|
/* ReceivableGroupConfiguration. */
|
||||||
|
@ -703,7 +703,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
" <GroupId>0x%016lx</GroupId>\n" \
|
" <GroupId>0x%016lx</GroupId>\n" \
|
||||||
" <Key>%s</Key>\n" \
|
" <Key>%s</Key>\n" \
|
||||||
" </ReceivableGroupConfiguration>\n", \
|
" </ReceivableGroupConfiguration>\n", \
|
||||||
rgc->group_id,
|
rgc->group_id, \
|
||||||
key_str)) goto end;
|
key_str)) goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -718,7 +718,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
" <IsEnabled>%s</IsEnabled>\n" \
|
" <IsEnabled>%s</IsEnabled>\n" \
|
||||||
" <MemorySize>0x%016lx</MemorySize>\n" \
|
" <MemorySize>0x%016lx</MemorySize>\n" \
|
||||||
" </JitConfiguration>\n", \
|
" </JitConfiguration>\n", \
|
||||||
nacpGetJitConfigurationFlagString(nacp->jit_configuration.jit_configuration_flag),
|
nacpGetJitConfigurationFlagString(nacp->jit_configuration.jit_configuration_flag), \
|
||||||
nacp->jit_configuration.memory_size)) goto end;
|
nacp->jit_configuration.memory_size)) goto end;
|
||||||
|
|
||||||
/* RequiredAddOnContentsSet. */
|
/* RequiredAddOnContentsSet. */
|
||||||
|
@ -730,7 +730,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
if (!utilsAppendFormattedStringToBuffer(&xml_buf, &xml_buf_size, \
|
if (!utilsAppendFormattedStringToBuffer(&xml_buf, &xml_buf_size, \
|
||||||
" <RequiredAddOnContentsSet>\n" \
|
" <RequiredAddOnContentsSet>\n" \
|
||||||
" <Index>%u</Index>\n" \
|
" <Index>%u</Index>\n" \
|
||||||
" </RequiredAddOnContentsSet>\n",
|
" </RequiredAddOnContentsSet>\n", \
|
||||||
descriptor->index)) goto end;
|
descriptor->index)) goto end;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
@ -755,7 +755,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
if (!utilsAppendFormattedStringToBuffer(&xml_buf, &xml_buf_size, \
|
if (!utilsAppendFormattedStringToBuffer(&xml_buf, &xml_buf_size, \
|
||||||
" <AccessibleLaunchRequiredVersion>\n" \
|
" <AccessibleLaunchRequiredVersion>\n" \
|
||||||
" <ApplicationId>0x%016lx</ApplicationId>\n" \
|
" <ApplicationId>0x%016lx</ApplicationId>\n" \
|
||||||
" </AccessibleLaunchRequiredVersion>\n",
|
" </AccessibleLaunchRequiredVersion>\n", \
|
||||||
nacp->accessible_launch_required_version.application_id[i])) goto end;
|
nacp->accessible_launch_required_version.application_id[i])) goto end;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
@ -770,7 +770,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "RuntimeParameterDelivery", nacp->runtime_parameter_delivery, &nacpGetRuntimeParameterDeliveryString)) goto end;
|
if (!nacpAddEnumFieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "RuntimeParameterDelivery", nacp->runtime_parameter_delivery, &nacpGetRuntimeParameterDeliveryString)) goto end;
|
||||||
|
|
||||||
/* ApplicationId. */
|
/* ApplicationId. */
|
||||||
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "ApplicationId", nacp_ctx->nca_ctx->header.program_id)) goto end;
|
if (!nacpAddU64FieldToAuthoringToolXml(&xml_buf, &xml_buf_size, "ApplicationId", nacp_ctx->nca_ctx->header.program_id, true)) goto end;
|
||||||
|
|
||||||
/* FilterDescriptionFilePath. Unused but kept anyway. */
|
/* FilterDescriptionFilePath. Unused but kept anyway. */
|
||||||
if (!utilsAppendFormattedStringToBuffer(&xml_buf, &xml_buf_size, " <FilterDescriptionFilePath />\n")) goto end;
|
if (!utilsAppendFormattedStringToBuffer(&xml_buf, &xml_buf_size, " <FilterDescriptionFilePath />\n")) goto end;
|
||||||
|
@ -1000,11 +1000,12 @@ static bool nacpAddU16FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (hex ? utilsAppendFormattedStringToBuffer(xml_buf, xml_buf_size, " <%s>0x%04x</%s>\n", tag_name, value, tag_name) : \
|
const char *str = (hex ? " <%s>0x%04x</%s>\n" : " <%s>%u</%s>\n");
|
||||||
utilsAppendFormattedStringToBuffer(xml_buf, xml_buf_size, " <%s>%u</%s>\n", tag_name, value, tag_name));
|
|
||||||
|
return utilsAppendFormattedStringToBuffer(xml_buf, xml_buf_size, str, tag_name, value, tag_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool nacpAddU32FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u32 value)
|
static bool nacpAddU32FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u32 value, bool hex)
|
||||||
{
|
{
|
||||||
if (!xml_buf || !xml_buf_size || !tag_name || !*tag_name)
|
if (!xml_buf || !xml_buf_size || !tag_name || !*tag_name)
|
||||||
{
|
{
|
||||||
|
@ -1012,10 +1013,12 @@ static bool nacpAddU32FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return utilsAppendFormattedStringToBuffer(xml_buf, xml_buf_size, " <%s>%u</%s>\n", tag_name, value, tag_name);
|
const char *str = (hex ? " <%s>0x%08x</%s>\n" : " <%s>%u</%s>\n");
|
||||||
|
|
||||||
|
return utilsAppendFormattedStringToBuffer(xml_buf, xml_buf_size, str, tag_name, value, tag_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool nacpAddU64FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u64 value)
|
static bool nacpAddU64FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size, const char *tag_name, u64 value, bool hex)
|
||||||
{
|
{
|
||||||
if (!xml_buf || !xml_buf_size || !tag_name || !*tag_name)
|
if (!xml_buf || !xml_buf_size || !tag_name || !*tag_name)
|
||||||
{
|
{
|
||||||
|
@ -1023,5 +1026,7 @@ static bool nacpAddU64FieldToAuthoringToolXml(char **xml_buf, u64 *xml_buf_size,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return utilsAppendFormattedStringToBuffer(xml_buf, xml_buf_size, " <%s>0x%016lx</%s>\n", tag_name, value, tag_name);
|
const char *str = (hex ? " <%s>0x%016lx</%s>\n" : " <%s>%lu</%s>\n");
|
||||||
|
|
||||||
|
return utilsAppendFormattedStringToBuffer(xml_buf, xml_buf_size, str, tag_name, value, tag_name);
|
||||||
}
|
}
|
||||||
|
|
|
@ -384,7 +384,7 @@ bool nacpGenerateAuthoringToolXml(NacpContext *nacp_ctx, u32 version, u32 requir
|
||||||
/// If the input flag/value index is invalid, "Unknown" will be returned.
|
/// If the input flag/value index is invalid, "Unknown" will be returned.
|
||||||
/// If dealing with a bitflag field such as NacpAttribute, NacpSupportedLanguage, etc., the provided value must be a 0-based index to the desired flag and not a bitmask from its enum.
|
/// If dealing with a bitflag field such as NacpAttribute, NacpSupportedLanguage, etc., the provided value must be a 0-based index to the desired flag and not a bitmask from its enum.
|
||||||
/// (e.g. NacpAttribute_RetailInteractiveDisplay -> Use 1 instead).
|
/// (e.g. NacpAttribute_RetailInteractiveDisplay -> Use 1 instead).
|
||||||
const char *nacpGetLanguageString(u8 language); ///< Can also be used for NacpSupportedLanguage flags with values from the NacpLanguage enum.
|
const char *nacpGetLanguageString(u8 language); /// Can also be used for NacpSupportedLanguage flags with values from the NacpLanguage enum.
|
||||||
const char *nacpGetStartupUserAccountString(u8 startup_user_account);
|
const char *nacpGetStartupUserAccountString(u8 startup_user_account);
|
||||||
const char *nacpGetUserAccountSwitchLockString(u8 user_account_switch_lock);
|
const char *nacpGetUserAccountSwitchLockString(u8 user_account_switch_lock);
|
||||||
const char *nacpGetAddOnContentRegistrationTypeString(u8 add_on_content_registration_type);
|
const char *nacpGetAddOnContentRegistrationTypeString(u8 add_on_content_registration_type);
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <stdatomic.h>
|
#include <stdatomic.h>
|
||||||
|
#include <assert.h>
|
||||||
#include <switch.h>
|
#include <switch.h>
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
@ -52,9 +53,10 @@
|
||||||
|
|
||||||
#define BIT_LONG(n) (1UL << (n))
|
#define BIT_LONG(n) (1UL << (n))
|
||||||
|
|
||||||
#define ALIGN_DOWN(x, y) ((x) & ~((y) - 1))
|
|
||||||
#define ALIGN_UP(x, y) ((((y) - 1) + (x)) & ~((y) - 1))
|
#define ALIGN_UP(x, y) ((((y) - 1) + (x)) & ~((y) - 1))
|
||||||
|
#define ALIGN_DOWN(x, y) (((x) - ((y) - 1)) & ~((y) - 1))
|
||||||
#define IS_ALIGNED(x, y) (((x) & ((y) - 1)) == 0)
|
#define IS_ALIGNED(x, y) (((x) & ((y) - 1)) == 0)
|
||||||
|
|
||||||
#define IS_POWER_OF_TWO(x) (((x) & ((x) - 1)) == 0)
|
#define IS_POWER_OF_TWO(x) (((x) & ((x) - 1)) == 0)
|
||||||
|
|
||||||
#define BIS_SYSTEM_PARTITION_MOUNT_NAME "sys:"
|
#define BIS_SYSTEM_PARTITION_MOUNT_NAME "sys:"
|
||||||
|
|
3
todo.txt
3
todo.txt
|
@ -62,9 +62,6 @@ todo:
|
||||||
nca: support for compressed fs sections?
|
nca: support for compressed fs sections?
|
||||||
nca: support for sparse sections?
|
nca: support for sparse sections?
|
||||||
|
|
||||||
tik: automatically dump tickets to the SD card?
|
|
||||||
tik: use dumped tickets when the original ones can't be found in the ES savefile?
|
|
||||||
|
|
||||||
gamecard: functions to display filelist
|
gamecard: functions to display filelist
|
||||||
|
|
||||||
pfs0: functions to display filelist
|
pfs0: functions to display filelist
|
||||||
|
|
Loading…
Reference in a new issue