aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service
Commit message (Collapse)AuthorAge
* Filesystem/Archives: Implemented the SaveData archiveGravatar Subv2014-12-17
| | | | | | | | | | 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
* Comment out empty arrays causing compile errors in MSVCGravatar Yuri Kunde Schlesner2014-12-16
|
* Merge pull request #283 from yuriks/archive-refactorGravatar bunnei2014-12-15
|\ | | | | Archive refactor
| * Work around libstdc++'s lack of support for std::hash on enumsGravatar Yuri Kunde Schlesner2014-12-16
| |
| * 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
| |
| * Service.FS: Rename FileSys::Archive to ArchiveBackendGravatar Yuri Kunde Schlesner2014-12-16
| |
| * Service.FS: Do archive registration using IdCode instead of nameGravatar Yuri Kunde Schlesner2014-12-16
| |
| * HLE: Rename namespaces to match move & fix initialization orderGravatar Yuri Kunde Schlesner2014-12-16
| |
| * HLE: Move kernel/archive.* to service/fs/Gravatar Yuri Kunde Schlesner2014-12-16
| |
* | Merge pull request #282 from archshift/servicesGravatar bunnei2014-12-15
|\ \ | |/ |/| Added stubs for ldr:ro, cecd:u, nim:aoc, and am:app services
| * Added stub for nim:aoc service...Gravatar archshift2014-12-15
| |
| * Added stub for cecd:u service...Gravatar archshift2014-12-15
| | | | | | | | I couldn't find any information about this service...
| * Added stub for ldr:ro service...Gravatar archshift2014-12-15
| |
| * Added am:app service stub.Gravatar archshift2014-12-15
| | | | | | | | Apparently nothing at all is known about this service...
* | Remove SyncRequest from K::Object and create a new K::Session typeGravatar Yuri Kunde Schlesner2014-12-15
|/ | | | | | | This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.)
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* Merge pull request #267 from bunnei/apt-shared-fontGravatar bunnei2014-12-12
|\ | | | | APT shared font loading
| * APT_U: Added GetSharedFont service function.Gravatar bunnei2014-12-12
| |
* | DSP: Added stub for ReadPipeIfPossible.Gravatar bunnei2014-12-12
|/
* CFG:U: Store country codes as u16 instead of char pointers, and return the ↵Gravatar Emmanuel Gil Peyrot2014-12-10
| | | | correct error in GetCountryCodeID.
* GSP: Trigger GPU interrupts at more accurate locations.Gravatar bunnei2014-12-09
|
* GSP: Updated TriggerCmdReqQueue to return success code.Gravatar bunnei2014-12-09
|
* GSP: Updated RegisterInterruptRelayQueue to return expected magic number.Gravatar bunnei2014-12-09
|
* GPU: Fixed bug in command list size decoding.Gravatar bunnei2014-12-09
|
* Merge pull request #217 from archshift/cmd_buffGravatar bunnei2014-12-08
|\ | | | | Log the cmd_buff arguments when citra comes across an unimplemented function
* \ Merge pull request #222 from archshift/renamexyzGravatar bunnei2014-12-04
|\ \ | | | | | | Implemented RenameFile and RenameDirectory in FS:USER
| * | Updated archive.cpp functions for proper error handlingGravatar archshift2014-12-03
| | |
* | | Merge pull request #247 from lioncash/constGravatar bunnei2014-12-03
|\ \ \ | | | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease
* \ \ \ Merge pull request #238 from archshift/dspGravatar bunnei2014-12-03
|\ \ \ \ | | | | | | | | | | Add stub for ConvertProcessFromDspDram
| * | | | Add stub for ConvertProcessFromDspDramGravatar archshift2014-12-03
| | | | | | | | | | | | | | | | | | | | Should theoretically push retail stuff further along
| | * | | hid_user: Pass by reference with PadButtonPress/PadButtonReleaseGravatar Lioncash2014-12-03
| | | | |
* | | | | PTM_U: Added a stub for GetBatteryLevel & GetBatteryChargeState & ↵Gravatar purpasmart962014-12-03
| |/ / / |/| | | | | | | | | | | GetAdapterState
* | | | Merge pull request #231 from purpasmart96/serv_ac_wifi_statusGravatar bunnei2014-12-03
|\ \ \ \ | | | | | | | | | | AC_U: Added a stub for GetWifiStatus
* \ \ \ \ Merge pull request #219 from Subv/ptmGravatar bunnei2014-12-03
|\ \ \ \ \ | |_|/ / / |/| | | | PTM_U: Implemented the GetShellState function.
| | * | | AC_U: Added a stub for GetWifiStatusGravatar purpasmart962014-12-02
| | | | |
* | | | | Merge pull request #224 from bunnei/dsp-service-improvementsGravatar bunnei2014-11-30
|\ \ \ \ \ | | | | | | | | | | | | Dsp service improvements
| * | | | | DSP: Added stubs for several commonly used DSP service functions.Gravatar bunnei2014-11-30
| | | | | |
| * | | | | DSP: Fixed typo in port name.Gravatar bunnei2014-11-30
| | |/ / / | |/| | |
| | * | | PTM_U: Implemented the GetShellState function.Gravatar Subv2014-11-30
| | | | |
* | | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString.Gravatar Subv2014-11-29
| | | | |
* | | | | Fixed formatting and switch statement warningsGravatar vaguilar2014-11-27
|/ / / /
| | | * Log the cmd_buff arguments when citra comes across an unimplemented functionGravatar archshift2014-11-24
| |_|/ |/| |
| | * Implemented RenameDirectory in FS:USERGravatar archshift2014-11-24
| | |
| | * Implemented RenameFile in FS:USERGravatar archshift2014-11-24
| |/ |/|
* | Remove duplicated docs/update them for changed parameters.Gravatar Yuri Kunde Schlesner2014-11-24
| |
* | HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
* | 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
| |