2021-05-18 13:32:43 +01:00
todo:
2022-07-05 02:04:28 +01:00
2022-06-27 03:58:03 +01:00
title: always retrieve names from unpacked nacps? (e.g. if an update changes the name of a title, like deltarune)
title: use dlc index as part of the output dump filename?
2021-05-18 13:32:43 +01:00
title: more functions for title lookup? (filters, patches / aoc, etc.)
title: more functions for content lookup? (based on id)
title: parse the update partition from gamecards (if available) to generate ncmcontentinfo data for all update titles
2022-07-05 02:04:28 +01:00
2021-07-21 16:04:18 +01:00
usb: change buffer size?
usb: change chunk size?
usb: improve abi (make it rest-like?)
usb: improve cancel mechanism
2022-07-05 02:04:28 +01:00
2021-08-07 09:42:03 +01:00
others: check todo with grep
2021-05-18 13:32:43 +01:00
others: dump verification via nswdb / no-intro
others: fatfs browser for emmc partitions
2020-10-14 01:15:21 +01:00
reminder:
list of top level functions designed to alter nca data in order of (possible) usage:
2022-07-05 02:04:28 +01:00
2020-10-22 05:38:14 +01:00
out of dump loop:
2020-10-14 01:15:21 +01:00
* ncaSetDownloadDistributionType (instead of always using it like legacy, offer it as an option)
2022-07-05 02:04:28 +01:00
2020-10-14 01:15:21 +01:00
* ncaRemoveTitlekeyCrypto (can be used with digital titles + game updates in gamecards)
2022-07-05 02:04:28 +01:00
2020-10-14 01:15:21 +01:00
* nacpGenerateNcaPatch (Control)
* calls romfsGenerateFileEntryPatch
* calls ncaGenerateHierarchicalSha256Patch / ncaGenerateHierarchicalIntegrityPatch
2022-07-05 02:04:28 +01:00
2020-10-14 01:15:21 +01:00
* ncaEncryptHeader (doesn't modify anything per se, but it's used to generate new encrypted header data if needed)
2022-07-05 02:04:28 +01:00
2020-10-22 05:38:14 +01:00
inside dump loop:
2020-10-28 22:48:46 +00:00
* cnmtGenerateNcaPatch (Meta)
* calls pfsGenerateEntryPatch
* calls ncaGenerateHierarchicalSha256Patch
* returns true if cnmt needs no patching
* demands an immediate ncaEncryptHeader call
2022-07-05 02:04:28 +01:00
2020-10-22 05:38:14 +01:00
* ncaIsHeaderDirty (doesn't modify anything per se, but it's used to check if any of the functions above has been used, basically - and by extension, if the functions below need to be used)
2022-07-05 02:04:28 +01:00
2020-10-22 05:38:14 +01:00
* ncaWriteEncryptedHeaderDataToMemoryBuffer (write encrypted nca header data)
2022-07-05 02:04:28 +01:00
2020-10-22 05:38:14 +01:00
* cnmtWriteNcaPatch (writes cnmt patch)
* calls pfsWriteEntryPatchToMemoryBuffer
* calls ncaWriteHierarchicalSha256PatchToMemoryBuffer
2022-07-05 02:04:28 +01:00
2020-10-28 22:48:46 +00:00
* nacpWriteNcaPatch (writes nacp patch)
* calls romfsWriteFileEntryPatchToMemoryBuffer
* calls ncaWriteHierarchicalSha256PatchToMemoryBuffer / ncaWriteHierarchicalIntegrityPatchToMemoryBuffer
2022-07-05 02:04:28 +01:00
2020-10-28 22:48:46 +00:00
* cnmtUpdateContentInfo (used to update content entry info in the raw cnmt copy after dumping each one - ignores the current content if its a meta nca)