summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_romfs.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Archives: Reduced duplicate code in RomFS and SaveCheck.Subv2015-01-031-70/+0
| | | | Fixed a few warnings and cleaned up the code
* SaveDataCheck: Preliminary work in this archive.Subv2015-01-031-0/+25
| | | | | | 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 SharedExtSaveDataSubv2014-12-301-0/+5
| | | | | | | | 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 namespaced names.Emmanuel Gil Peyrot2014-12-241-30/+4
|
* Merge pull request #291 from purpasmart96/licensebunnei2014-12-211-1/+1
|\ | | | | License change
| * License changepurpasmart962014-12-211-1/+1
| |
* | Added CreateFile to the FS_USER servicearchshift2014-12-211-0/+6
| | | | | | | | Tested with hwtests.
* | Common: Add a clone of std::make_uniqueYuri Kunde Schlesner2014-12-201-2/+3
|/
* FS.Archive: Clean up treatment of archives and their handlesYuri Kunde Schlesner2014-12-161-46/+4
| | | | | | | - 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 FileBackendYuri Kunde Schlesner2014-12-161-2/+2
|
* Service.FS: Rename FileSys::Directory to DirectoryBackendYuri Kunde Schlesner2014-12-161-2/+2
|
* Convert old logging calls to new logging macrosYuri Kunde Schlesner2014-12-131-9/+9
|
* Updated archive.cpp functions for proper error handlingarchshift2014-12-041-12/+0
|
* Implemented RenameDirectory in FS:USERarchshift2014-11-251-0/+11
|
* Implemented RenameFile in FS:USERarchshift2014-11-251-0/+11
|
* Merge pull request #191 from archshift/deletexyzbunnei2014-11-241-0/+20
|\ | | | | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.
| * Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.archshift2014-11-231-0/+20
| |
* | Remove extraneous semicolonsLioncash2014-11-181-1/+1
|/
* FileSys: Updated backend code to use FileSys::Path instead of string for paths.bunnei2014-11-181-3/+3
|
* Added CreateDirectory function to service/fs.cpp, and in Archive.archshift2014-11-021-0/+10
|
* Fix some warningsSean2014-10-301-1/+1
|
* Core: Add a method to obtain a Directory from an Archive.Emmanuel Gil Peyrot2014-09-171-0/+10
|
* Core: Add a new File class, obtainable from an Archive, and a stub implementation.Emmanuel Gil Peyrot2014-09-171-0/+11
|
* Added FS functions to Archive and Archive_RomFSarchshift2014-08-231-4/+23
|
* Loader: Updated read methods to be constbunnei2014-07-051-1/+1
| | | | - Required "file" handle to be made local and explicitly opened/closed as needed
* FileSys: Added preliminary support for applications reading the RomFS archive.bunnei2014-07-051-0/+46
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.