summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_savedata.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-29FileSys: abstract SD save data archive sourcewwylele1-73/+6
2016-11-19FileSys: add SaveDataArchivewwylele1-2/+2
The error checking of SaveDataArchive is completely different from DiskArchive, so it has to be a new class instead of a subclass of DiskArchive.
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+1
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-4/+3
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-12/+21
2016-04-05Common: Remove Common::make_unique, use std::make_uniqueMerryMage1-2/+2
2016-03-20HLE/FS: Change the error code returned when an ExtSaveData archive is not found.Subv1-7/+7
This allows Fire Emblem to boot again.
2016-03-20HLE/FS: Corrected some style concerns.Subv1-4/+4
2016-03-20HLE/FS: Implemented GetFormatInfoSubv1-1/+31
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.
2015-07-12Core: Properly configure address space when loading a binaryYuri Kunde Schlesner1-2/+2
The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory.
2015-06-28Core: Cleanup file_sys includes.Emmanuel Gil Peyrot1-2/+1
2015-06-28Common: Fix FileUtil includes, and everything relying on those.Emmanuel Gil Peyrot1-0/+1
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot1-1/+1
2015-05-09Kernel: Remove g_program_idYuri Kunde Schlesner1-2/+3
This has been obsoleted by the field in Process.
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-0/+1
2015-02-10FS: Allow multiple instances of the same archive type to be open at onceYuri Kunde Schlesner1-10/+13
2015-01-06Archives: Addressed some commentsSubv1-6/+6
2015-01-04Archives: Make SYSTEM_ID and SDCARD_ID stringsSubv1-1/+2
2015-01-04Archives: Changed the way paths are built for the archives.Subv1-2/+13
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
2014-12-30Archives: Implemented ExtSaveData and SharedExtSaveDataSubv1-7/+18
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.
2014-12-24FileSys: Clean up according to the coding style, and remove redundant namespaced names.Emmanuel Gil Peyrot1-1/+1
2014-12-21License changepurpasmart961-1/+1
2014-12-18Filesystem/Archives: Implemented the SaveData archiveSubv1-0/+33
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