summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/patch_manager.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* patch_manager: Do not apply LayeredFS mods when dumpingMorph2021-06-281-1/+2
| | | | We should not apply any mods when dumping a game's RomFS.
* patch_manager: Remove usages of the global system instanceLioncash2020-11-181-2/+11
| | | | | | | With this, only 19 usages of the global system instance remain within the core library. We're almost there.
* patch_manager: Make use of type aliasesLioncash2020-09-151-16/+20
| | | | | We can use these to avoid typing the same type redundantly. This way, if these ever change, only a single location needs to be modified.
* patch_manager: Make a few functions internally linkedLioncash2020-09-151-12/+0
| | | | | These functions are only used within this translation unit, so we can make them internally linked.
* file_sys/patch_manager: Add missing includeReinUsesLisp2020-09-031-0/+1
| | | | Fixes build issues
* file_sys: Replace inclusions with forward declarations where applicableLioncash2020-08-231-3/+2
| | | | Same behavior, minus unnecessary inclusions where not necessary.
* Address requested changeslat9nq2020-05-281-1/+1
|
* *nix systems can read any-case patch directorieslat9nq2020-05-281-0/+5
| | | | | | Changes many patch_manager functions to use a case-less variant of GetSubdirectory. Fixes patches not showing up on *nix systems when patch directories are named with odd cases, i.e. `exeFS'.
* core: memory: Move to Core::Memory namespace.bunnei2020-04-171-2/+2
| | | | - helpful to disambiguate Kernel::Memory namespace.
* patch_manager: Update cheat parsing for new VMZach Hilman2019-09-221-3/+3
|
* glue: Correct missing bytes in ApplicationLaunchParameterZach Hilman2019-06-261-0/+3
|
* patch_manager: Add getter for title versionZach Hilman2019-06-251-2/+4
|
* patch_manager: Dump NSO name with build IDZach Hilman2019-03-281-1/+1
|
* file_sys/cheat_engine: Remove use of global system accessorsLioncash2019-03-221-1/+6
| | | | | Instead, pass in the core timing instance and make the dependency explicit in the interface.
* patch_manager: Add support for loading cheats listsZach Hilman2019-03-051-0/+4
| | | | Uses load/<title_id>/<mod_name>/cheats as root dir, file name is all upper or lower hex first 8 bytes build ID.
* patch_manager: Obey disabled add-ons list when patching gameZach Hilman2018-12-031-0/+5
|
* patch_manager: Return a std::unique_ptr from ParseControlNCA() and GetControlMetadata() instead of a std::shared_ptrLioncash2018-10-091-3/+2
| | | | | | | | | | | | | | Neither of these functions require the use of shared ownership of the returned pointer. This makes it more difficult to create reference cycles with, and makes the interface more generic, as std::shared_ptr instances can be created from a std::unique_ptr, but the vice-versa isn't possible. This also alters relevant functions to take NCA arguments by const reference rather than a const reference to a std::shared_ptr. These functions don't alter the ownership of the memory used by the NCA instance, so we can make the interface more generic by not assuming anything about the type of smart pointer the NCA is contained within and make it the caller's responsibility to ensure the supplied NCA is valid.
* Merge pull request #1424 from DarkLordZach/ips-witchbunnei2018-10-081-0/+1
|\ | | | | ips_layer: Add support for IPSwitch executable patches
| * ips_layer: Add support for escape sequences and midline commentsZach Hilman2018-10-041-0/+1
| | | | | | | | More accurately follows IPSwitch specification.
* | romfs_factory: Extract packed update setter to new functionZach Hilman2018-10-051-1/+2
| |
* | patch_manager: Add support for packed updatesZach Hilman2018-10-051-1/+2
|/ | | | Will prefer any installed update over the packed version.
* nso: Optimize loading of IPS patchesZach Hilman2018-10-021-1/+1
| | | | Avoid resource-heavy classes and remove quasi-duplicated code.
* patch_manager: Add PatchNSO functionZach Hilman2018-10-011-0/+8
| | | | While PatchExeFS operated on the entire directory, this function operates on the uncompressed NSO. Avoids copying decompression code to PatchManager.
* patch_manager: Use strings for patch type instead of enumZach Hilman2018-10-011-10/+2
|
* patch_manager: Add DLC recognition to PatchManagerZach Hilman2018-10-011-0/+1
|
* patch_manager: Add LayeredFS mods supportZach Hilman2018-09-221-0/+2
|
* file-sys: Default heavy-weight class destructors in the cpp fileLioncash2018-09-201-0/+1
| | | | | | | | | | Several classes have a lot of non-trivial members within them, or don't but likely should have the destructor defaulted in the cpp file for future-proofing/being more friendly to forward declarations. Leaving the destructor unspecified allows the compiler to inline the destruction code all over the place, which is generally undesirable from a code bloat perspective.
* file_sys/patch_manager: Add missing includesLioncash2018-09-061-0/+1
| | | | These includes were previously being satisfied indirectly.
* bktr: Fix bucket overlap errorZach Hilman2018-09-041-1/+0
|
* patch_manager: Centralize Control-type NCA parsingZach Hilman2018-09-041-2/+11
|
* game_list: Fix version display on non-NAND titlesZach Hilman2018-09-041-1/+1
|
* bktr: Add logging on successful patchZach Hilman2018-09-041-1/+6
|
* bktr: Fix missing includes and optimize styleZach Hilman2018-09-041-1/+8
|
* file_sys: Add class to manage game patchesZach Hilman2018-09-041-0/+42
Right now only includes Updates, but should eventually contain all of the other patches we need.