summaryrefslogtreecommitdiff
path: root/src/core/loader/xci.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: implement basic integrity verificationGravatar Liam2023-09-061-0/+2
|
* vfs: expand support for NCA readingGravatar Liam2023-08-151-1/+0
|
* general: Convert source file copyright comments over to SPDXGravatar Morph2022-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.
* core: Remove unused includesGravatar ameerj2021-11-031-1/+0
|
* file_sys: Support load game collection (#6582)Gravatar Feng Chen2021-07-201-1/+2
| | | Adds support for loading games with multiple programs embedded within such as the Dragon Quest 1+2+3 Collection
* hle: kernel: Rename Process to KProcess.Gravatar bunnei2021-05-051-1/+1
|
* loader: Resolve instances of variable shadowingGravatar Lioncash2021-04-271-8/+10
| | | | | Eliminates variable shadowing cases across all the loaders to bring us closer to enabling variable shadowing as an error in core.
* vfs: Use existing type aliases consistentlyGravatar Lioncash2020-12-101-1/+1
| | | | | Makes use of the VirtualDir and VirtualFile aliases across the board instead of having a few isolated places that don't use it.
* core: loader: Implement support for loading indexed programs.Gravatar bunnei2020-11-241-1/+2
|
* patch_manager: Remove usages of the global system instanceGravatar Lioncash2020-11-181-5/+8
| | | | | | | With this, only 19 usages of the global system instance remain within the core library. We're almost there.
* core/loader: Remove dependencies on the global system instanceGravatar Lioncash2020-09-161-1/+5
| | | | | | | | | Now all that remains is: 18 instances in file_sys code 14 instances in GDB stub code (this can be tossed wholesale) 4 instances in HLE code 2 instances in settings code.
* loader: Move NSO module tracking to AppLoaderGravatar Zach Hilman2019-05-261-0/+2
| | | Also cleanup of general stuff
* core/core: Move process execution start to System's Load()Gravatar Lioncash2019-04-111-1/+1
| | | | | | | | | This gives us significantly more control over where in the initialization process we start execution of the main process. Previously we were running the main process before the CPU or GPU threads were initialized (not good). This amends execution to start after all of our threads are properly set up.
* core: Add missing override specifiers where applicableGravatar Lioncash2019-04-041-1/+1
| | | | | | | | | Applies the override specifier where applicable. In the case of destructors that are defaulted in their definition, they can simply be removed. This also removes the unnecessary inclusions being done in audin_u and audrec_u, given their close proximity.
* loader: Propagate NCA logo section to ReadBanner and ReadLogoGravatar Zach Hilman2019-01-151-0/+3
|
* web_browser: Add bounds checking to applet interfaceGravatar Zach Hilman2018-12-281-1/+0
|
* loader: Add accessor for Manual RomFSGravatar Zach Hilman2018-12-281-0/+2
|
* loader: Add accessor for game control dataGravatar Zach Hilman2018-12-271-1/+1
|
* Merge pull request #1819 from DarkLordZach/disable-addonsGravatar bunnei2018-12-101-0/+1
|\ | | | | patch_manager: Add support for disabling patches
| * loader: Add support for reading the name of game's developerGravatar Zach Hilman2018-12-031-0/+1
| |
* | loaders: Make GetFileType() a const qualified member functionGravatar Lioncash2018-12-051-1/+1
|/ | | | | | No implementations actually modify instance state (and it would be questionable to do that in the first place given the name), so we can make this a const member function.
* patch_manager: Return a std::unique_ptr from ParseControlNCA() and ↵Gravatar Lioncash2018-10-091-1/+1
| | | | | | | | | | | | | | | | GetControlMetadata() instead of a std::shared_ptr 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.
* loader: Add getter for packed updateGravatar Zach Hilman2018-10-051-0/+1
| | | | Reads the update included with the game if it has one and adds the new ErrorNoPackedUpdate status.
* loader: Add ReadRomFSIVFCOffset to NSP, XCI, and NAX loadersGravatar Zach Hilman2018-10-051-1/+2
| | | | Fixes errors with certain updates
* loader: Make the Load() function take a process as a regular reference, not ↵Gravatar Lioncash2018-09-291-1/+1
| | | | | | | | | | a SharedPtr A process should never require being reference counted in this situation. If the handle to a process is freed before this function is called, it's definitely a bug with our lifetime management, so we can put the requirement in place for the API that the process must be a valid instance.
* loader/xci: Remove unnecessary includes and member variablesGravatar Lioncash2018-08-151-4/+8
| | | | | | | | Many of these aren't necessary and will cause this file to be required to be recompiled whenever any changes to those files are made, which lengthens compile times for no reason. This also removes an unused metadata variable from AppLoader_XCI
* loader: Add icon and title support to XCIGravatar Zach Hilman2018-08-061-0/+5
|
* Add missing includes and use const where applicableGravatar Zach Hilman2018-08-011-0/+3
|
* Make XCI comply to review and style guidelinesGravatar Zach Hilman2018-08-011-2/+1
|
* Remove files that are not usedGravatar Zach Hilman2018-08-011-0/+42