summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-24Bravely Default/Second stuck #1822 (#2188)pippo29311-0/+9
* Bravely Default/Second stuck #1822 CancelLibraryApplet stub * Log parameter. * Taking care of comments * Sync with 3DBrew * White space ? * lower case
2016-11-19APT/Applets: Renamed the members of the SignalType enum.Subv1-1/+1
Names now make sense and match 3dbrew.
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-7/+5
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/+2
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-62/+86
2016-08-27Auto-detect original shared_font.bin memory baseYuri Kunde Schlesner1-6/+1
This allows a file dumped from either an o3DS or a n3DS (and potentially even an original unrebased file) to be used.
2016-08-02fix #1942 and adds a few IPC functions for descriptorsLectem1-2/+2
2016-07-28Instead of segfaulting, log an error to remind the user to dump the shared font fileHenrik Rydgard1-0/+7
2016-07-15Correct APT::0x00550040 and APT::0x00560000 functionJamePeng1-6/+9
2016-05-21APT: Remove use of Memory::GetPointerMerryMage1-12/+13
2016-05-13APT: Move the shared font loading and relocation functions to their own subdirectory services/apt/bcfnt.Subv1-66/+7
2016-05-13APT: Implement relocating the shared font to its true address.Subv1-9/+74
2016-05-13Kernel/SharedMemory: Properly implemented shared memory support.Subv1-26/+12
Applications can request the kernel to allocate a piece of the linear heap for them when creating a shared memory object. Shared memory areas are now properly mapped into the target processes when calling svcMapMemoryBlock. Removed the APT Shared Font hack as it is no longer needed.
2016-04-20Implement CheckNew3DS and CheckNew3DSAppJamePeng1-0/+51
Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
2016-04-04implement APT::GetStartupArgumentJamePeng1-0/+17
2016-03-13svc: Move ResetType enum to the kernel event headerLioncash1-2/+2
2016-03-12svc: Make ResetType an enum classLioncash1-2/+2
2016-03-12HLE/Applets: Implemented a dummy Mii Selector applet.Subv1-0/+19
This prevents some games (like Super Mario 3D Land) from freezing when trying to launch it, however, it's not complete and won't let you go past Mii selection as the parameter structure hasn't been reverse engineered yet.
2016-02-02services: Get rid of unnecessary includesLioncash1-2/+0
2015-08-27Core: Improve APT Shared Font hackYuri Kunde Schlesner1-2/+2
Should fix invalid read loops in some games
2015-08-16APT: Adjust shared font hack so it works with the new linear heap codeYuri Kunde Schlesner1-10/+11
2015-07-24Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.Subv1-1/+20
2015-07-24Service/APT: Return proper parameters in GetLockHandle.Subv1-14/+18
Documented some APT functions This allows applets to boot.
2015-07-17Ensure all kernel objects are released during shutdownYuri Kunde Schlesner1-0/+3
This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
2015-07-12Applets: Reworked how the Applet update event is handled.Subv1-2/+2
Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
2015-07-12Applets: Add infrastructure to allow custom drawing and input handling in Applets.Subv1-18/+27
2015-07-12HLE/APT: Initial HLE support for applets.Subv1-34/+105
Currently only the SWKBD is emulated, and there's currently no way to ask the user for input, so it always returns "Subv" as the text.
2015-06-23Add helpers to create IPC command buffer headers and descriptorsYuri Kunde Schlesner1-2/+4
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot1-2/+2
2015-05-16APT/FS: Remove asserts that were causing false positivespurpasmart961-2/+0
2015-05-11Kernel: Capture SharedMemory attributes at creation, not when mappingYuri Kunde Schlesner1-1/+3
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-0/+2
2015-05-02Services: Initialize all state variables at bootup.bunnei1-6/+11
2015-04-10APT: (Subv) Fix bug where start event was being incorrectly signaled.bunnei1-6/+7
2015-04-03Services: Stubs and minor changespurpasmart961-18/+56
2015-03-04Services: Moved the PTM and APT services to their own folderSubv1-0/+285
This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.