aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys/archive_romfs.cpp
Commit message (Collapse)AuthorAge
* Loader: Remove unnecessary pointer indirection to IOFileGravatar Yuri Kunde Schlesner2015-07-13
|
* FS: Stream RomFS from file instead of loading all of it to memoryGravatar condut2015-07-13
|
* Core: Cleanup file_sys includes.Gravatar Emmanuel Gil Peyrot2015-06-28
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* FS: Allow multiple instances of the same archive type to be open at onceGravatar Yuri Kunde Schlesner2015-02-10
|
* Archives: Reduced duplicate code in RomFS and SaveCheck.Gravatar Subv2015-01-02
| | | | Fixed a few warnings and cleaned up the code
* SaveDataCheck: Preliminary work in this archive.Gravatar Subv2015-01-02
| | | | | | This allows Steel Diver to boot further, some files are needed. This is still not ready and needs a big cleanup, this will possibly be delayed until the way we handle archives is fixed (with factory classes instead of ahead-of-time creation of archives)
* Archives: Implemented ExtSaveData and SharedExtSaveDataGravatar Subv2014-12-29
| | | | | | | | They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded.
* FileSys: Clean up according to the coding style, and remove redundant ↵Gravatar Emmanuel Gil Peyrot2014-12-24
| | | | namespaced names.
* Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-21
|\ | | | | License change
* | Added CreateFile to the FS_USER serviceGravatar archshift2014-12-21
| | | | | | | | Tested with hwtests.
| * License changeGravatar purpasmart962014-12-20
| |
* | Common: Add a clone of std::make_uniqueGravatar Yuri Kunde Schlesner2014-12-20
|/
* FS.Archive: Clean up treatment of archives and their handlesGravatar Yuri Kunde Schlesner2014-12-16
| | | | | | | - Refactor FS::Archive internals to make Archive creation and lifetime management clearer. - Remove the "Archive as a File" hack. - Implement 64-bit Archive handles.
* Service.FS: Rename FileSys::File to FileBackendGravatar Yuri Kunde Schlesner2014-12-16
|
* Service.FS: Rename FileSys::Directory to DirectoryBackendGravatar Yuri Kunde Schlesner2014-12-16
|
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* Updated archive.cpp functions for proper error handlingGravatar archshift2014-12-03
|
* Implemented RenameDirectory in FS:USERGravatar archshift2014-11-24
|
* Implemented RenameFile in FS:USERGravatar archshift2014-11-24
|
* Merge pull request #191 from archshift/deletexyzGravatar bunnei2014-11-23
|\ | | | | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.
| * Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.Gravatar archshift2014-11-23
| |
* | Remove extraneous semicolonsGravatar Lioncash2014-11-18
|/
* FileSys: Updated backend code to use FileSys::Path instead of string for paths.Gravatar bunnei2014-11-17
|
* Added CreateDirectory function to service/fs.cpp, and in Archive.Gravatar archshift2014-11-02
|
* Fix some warningsGravatar Sean2014-10-29
|
* Core: Add a method to obtain a Directory from an Archive.Gravatar Emmanuel Gil Peyrot2014-09-17
|
* Core: Add a new File class, obtainable from an Archive, and a stub ↵Gravatar Emmanuel Gil Peyrot2014-09-17
| | | | implementation.
* Added FS functions to Archive and Archive_RomFSGravatar archshift2014-08-22
|
* Loader: Updated read methods to be constGravatar bunnei2014-07-04
| | | | - Required "file" handle to be made local and explicitly opened/closed as needed
* FileSys: Added preliminary support for applications reading the RomFS archive.Gravatar bunnei2014-07-04
Archive: Fixed brace ugliness for neobrain :) FS: Commented out unused local variables to prevent warnings. ...But keeping them here for future use. archive_romfs: Removed unused #include.