summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs/archive.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* HLE/FS: Corrected some style concerns.Subv2016-03-201-1/+1
|
* HLE/FS: Implemented GetFormatInfoSubv2016-03-201-2/+13
| | | | Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive.
* HLE/FS: FS::CreateFile takes an u64 for the file size.Subv2016-03-201-1/+1
|
* Implement FS_User::GetFreeBytesarchshift2015-10-281-0/+7
|
* General: Fix up doxygen commentsLioncash2015-09-101-1/+1
|
* Core: Cleanup file_sys includes.Emmanuel Gil Peyrot2015-06-281-5/+8
|
* ExtSavedata: Save the icon passed to CreateExtSaveData to the correct folder.Subv2015-06-021-1/+3
| | | | Organize the ExtSaveData folders as they are stored in the console.
* FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner2015-05-071-10/+6
|
* Services/FS: Implemented DeleteExtSaveData, CreateSystemSaveData and DeleteSystemSaveDataSubv2015-03-141-1/+33
| | | | Also fixed a bug with CreateExtSaveData that made it unable to create ExtSaveData archives in the SDMC directory.
* Archives: Made the Format function more generic.Subv2015-02-101-2/+5
|
* Archives: Expose the File and Directory classes to HLESubv2015-02-101-2/+32
|
* FS: Allow multiple instances of the same archive type to be open at onceYuri Kunde Schlesner2015-02-101-2/+2
|
* Filesys: Move creation of Handles for File/Directory to service handlersYuri Kunde Schlesner2015-02-021-4/+10
|
* Services: Stubbed more services.Subv2015-01-241-0/+8
| | | | Implemented FSUser::CreateExtSaveData
* core: Fix a few docstringsLioncash2015-01-201-1/+1
|
* Archives: Make SYSTEM_ID and SDCARD_ID stringsSubv2015-01-041-2/+2
|
* Archives: Changed the way paths are built for the archives.Subv2015-01-041-0/+5
| | | | Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout
* Archives: Reduced duplicate code in RomFS and SaveCheck.Subv2015-01-031-1/+1
| | | | Fixed a few warnings and cleaned up the code
* SaveDataCheck: Preliminary work in this archive.Subv2015-01-031-0/+1
| | | | | | 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-1/+2
| | | | | | | | 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.
* 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/+9
|/ | | | Tested with hwtests.
* Filesystem/Archives: Implemented the SaveData archiveSubv2014-12-181-0/+6
| | | | | | | | | | The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found
* FS.Archive: Clean up treatment of archives and their handlesYuri Kunde Schlesner2014-12-161-12/+14
| | | | | | | - 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::Archive to ArchiveBackendYuri Kunde Schlesner2014-12-161-2/+2
|
* Service.FS: Do archive registration using IdCode instead of nameYuri Kunde Schlesner2014-12-161-4/+15
|
* HLE: Rename namespaces to match move & fix initialization orderYuri Kunde Schlesner2014-12-161-5/+4
|
* HLE: Move kernel/archive.* to service/fs/Yuri Kunde Schlesner2014-12-161-0/+107