summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/romfs_factory.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fsp_srv: Implement OpenDataStorageWithProgramIndexMorph2020-12-081-0/+4
| | | | - Used by RollerCoaster Tycoon 3: Complete Edition
* file_sys/romfs_factory: Eliminate usage of the global system accessorLioncash2020-09-171-3/+18
|
* hle/service: Replace global system instance calls with instance-based onesLioncash2019-10-061-1/+1
| | | | | | | | | | Migrates the HLE service code off the use of directly accessing the global system instance where trivially able to do so. This removes all usages of Core::CurrentProcess from the service code, only 8 occurrences of this function exist elsewhere. There's still quite a bit of "System::GetInstance()" being used, however this was able to replace a few instances.
* filesystem: Add const qualification to various accessorsZach Hilman2019-09-211-2/+2
|
* romfs_factory: Extract packed update setter to new functionZach Hilman2018-10-051-0/+1
|
* patch_manager: Add support for packed updatesZach Hilman2018-10-051-0/+1
| | | | Will prefer any installed update over the packed version.
* 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.
* bktr: Implement IVFC offset shiftingZach Hilman2018-09-041-0/+1
| | | | Fixes base game read errors
* patch_manager: Add usages of patches to ExeFSZach Hilman2018-09-041-0/+1
|
* romfs_factory: Remove unnecessary includes and use forward declarations where applicableLioncash2018-08-211-1/+7
| | | | | | Avoids the need to rebuild whatever includes the romfs factory header if the loader header ever changes. We also don't need to include the main core header. We can instead include the headers we specifically need.
* filesystem: Add support for loading of system archivesZach Hilman2018-08-191-1/+11
|
* Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman2018-07-191-7/+2
| | | | | | | | | | * Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
* General Filesystem and Save Data Fixes (#670)Zach Hilman2018-07-171-8/+3
|
* Revert "Virtual Filesystem (#597)"bunnei2018-07-081-0/+35
| | | | This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.
* Virtual Filesystem (#597)Zach Hilman2018-07-061-35/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add VfsFile and VfsDirectory classes * Finish abstract Vfs classes * Implement RealVfsFile (computer fs backend) * Finish RealVfsFile and RealVfsDirectory * Finished OffsetVfsFile * More changes * Fix import paths * Major refactor * Remove double const * Use experimental/filesystem or filesystem depending on compiler * Port partition_filesystem * More changes * More Overhaul * FSP_SRV fixes * Fixes and testing * Try to get filesystem to compile * Filesystem on linux * Remove std::filesystem and document/test * Compile fixes * Missing include * Bug fixes * Fixes * Rename v_file and v_dir * clang-format fix * Rename NGLOG_* to LOG_* * Most review changes * Fix TODO * Guess 'main' to be Directory by filename
* FS: Make EnsureSaveData create the savedata folder when called for the first time.Subv2018-03-041-1/+1
|
* file_sys: Cleanup to better match Switch file system constructs.bunnei2018-01-211-0/+35
file_sys: Add factory class for RomFS file system.