summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets (follow)
Commit message (Collapse)AuthorAgeFilesLines
* input_common: Implement native mifare supportNarr the Reg2023-06-221-1/+1
|
* service: nfc: Merge device interfaces and create the device managerNarr the Reg2023-05-062-14/+16
|
* Merge pull request #10006 from german77/profile_selectliamwhite2023-04-012-14/+140
|\ | | | | service: am: Improve profile select applet
| * service: am: Improve profile select appletNarr the Reg2023-03-292-14/+140
| |
* | applet: controller: Implement cancel buttongerman772023-03-302-7/+14
|/
* qt: implement RequestExit for appletsLiam2023-03-258-9/+9
|
* applets: implement RequestExitLiam2023-03-2517-0/+61
|
* service: nfp: Improve implementationNarr the Reg2023-03-101-2/+2
|
* hle: rename legacy errors to ResultsLiam2023-03-072-8/+6
|
* general: rename CurrentProcess to ApplicationProcessLiam2023-02-143-3/+3
|
* Merge pull request #9238 from german77/cabinet_appletbunnei2022-11-204-7/+306
|\ | | | | service: am: Implement cabinet applet
| * general: Address review commentsgerman772022-11-142-13/+14
| |
| * service: am: Fix cabinet applet resultgerman772022-11-132-10/+22
| |
| * service: am: Implement cabinet applet backendgerman772022-11-134-7/+293
| |
* | Add break for default casesKyle Kienapfel2022-11-142-0/+3
|/ | | | | | | | | | | Visual Studio has an option to search all files in a solution, so I did a search in there for "default:" looking for any missing break statements. I've left out default statements that return something, and that throw something, even if via ThrowInvalidType. UNREACHABLE leads towards throw R_THROW macro leads towards a return
* general: Enforce C4800 everywhere except in video_coreMorph2022-10-221-1/+1
|
* kernel: remove KWritableEventLiam2022-10-131-5/+5
|
* core: nfp: Implement Convert and RecreateApplicationArea, accuracy fixesNarr the Reg2022-09-071-1/+1
|
* core: ns: Implement pl:s serviceNarr the Reg2022-09-031-1/+1
|
* applet/swkbd: Implement optional symbol keysMorph2022-07-241-0/+6
| | | | These are only used in the numeric keyboard, and correspond to the keys to the left and right of the "0" key on the numeric keyboard.
* core: Replace all instances of ResultCode with Resultgerman772022-06-2715-38/+38
|
* common: Change semantics of UNREACHABLE to unconditionally crashLiam2022-06-147-9/+9
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-2319-57/+38
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* applets/web: Keep foreground (websession) web applet openMorph2022-04-021-0/+8
| | | | This is a hack to keep the foreground (websession) web applet open in games using these such as Super Mario 3D All-Stars.
* Merge pull request #8041 from Morph1984/inline-swkbdbunnei2022-03-263-166/+415
|\ | | | | applets/swkbd: Add support for an updated inline software keyboard
| * applets/swkbd: Split software keyboard initializationMorph2022-03-222-160/+349
| | | | | | | | | | Since the CalcArg struct has been updated with a new size and fields, we have to split the initialization of the keyboard into multiple functions. This also adds support for parsing the new CalcArg struct used by updated versions of Monster Hunter Rise.
| * applets/swkbd: Add new inline software keyboard typesMorph2022-03-221-6/+66
| | | | | | | | These were added in newer firmware versions.
* | applets/mii: Remove unused includeMorph2022-03-221-1/+0
| |
* | applets/mii: Cleanup MiiEdit applet implementationMorph2022-03-222-44/+85
| | | | | | | | This also enables proper support for MiiEdit applets which are used in games with firmware versions prior to 10.2.0 by handling the 2 different versions of applet inputs and outputs.
* | applets/mii: Cleanup MiiEdit applet typesMorph2022-03-221-23/+44
| |
* | applets/mii: Move MiiEdit applet types into its own fileMorph2022-03-223-54/+69
| |
* | applets: Rename Mii to MiiEditMorph2022-03-224-34/+35
|/
* core: Reduce unused includesameerj2022-03-191-1/+0
|
* applet: mii: Simple implementation of mii appletgerman772022-03-014-5/+212
|
* general: Rename NewUUID to UUID, and remove the previous UUID implMorph2022-02-052-6/+5
| | | | This completes the removal of the old UUID implementation.
* profile: Migrate to the new UUID implementationMorph2022-02-052-7/+8
|
* core/hid: Remove usage of native types, fix a couple of errors with motiongerman772021-11-252-1/+6
|
* second commit lion reviewgerman772021-11-251-0/+2
|
* kraken: Address comments from reviewgerman772021-11-251-1/+1
| | | | review fixes
* configuration: Migrate controller settings to emulated controllergerman772021-11-251-11/+3
|
* core/frontend: Update appletsgerman772021-11-251-1/+1
|
* applets/swkbd: Fix text check message encodingMorph2021-11-081-7/+15
| | | | The text check message can be encoded in UTF-8.
* applets/swkbd: Skip text checking if the text has been confirmedMorph2021-11-082-8/+15
| | | | | | | Confirm means that the text has already been checked by the application to be correct, but is asking the user for confirmation. The confirmation text itself seems to be corrupted though, this needs to be investigated. Fixes the software keyboard in Famicom Detective Club: The Missing Heir
* general: Get the current process program id directly from the systemMorph2021-11-043-6/+3
| | | | This allows us to avoid including KProcess' header file in files that only need to get the current process' program id.
* general: Rename GetTitleID to GetProgramIDMorph2021-11-043-3/+3
|
* core: Remove unused includesameerj2021-11-043-4/+0
|
* Merge pull request #7110 from vonchenplus/fix_extract_offline_romefs_errorMorph2021-10-111-0/+10
|\ | | | | applets/web: Fallback to loader to get the manual romfs if none is found
| * applets/web: Fallback to loader to get the manual romfs if none is foundFeng Chen2021-10-111-0/+10
| |
* | service: Replace service event creation with ServiceContext::CreateEventMorph2021-10-022-25/+26
| | | | | | | | The service context helps to manage all created events and allows us to close them upon destruction.
* | common/uuid: Add validity checking functions to interfaceLioncash2021-09-221-1/+1
|/ | | | | Given we have a function to invalidate, we should also have ones to query the validity. Also makes the code more straightforward to read.
* applet_error: Fix 64-bit error code conversionMorph2021-08-191-6/+25
|
* applet_swkbd: Include the null terminator in the buffer size calculationMorph2021-08-051-2/+4
| | | | Some games may interpret the read string as a null-terminated string instead of just reading the string up to buffer_size.
* applet_swkbd: Correct string buffer size calculationMorph2021-07-301-2/+2
| | | | The buffer size here does not include the initial 8 bytes.
* applet_controller: Add preliminary support for version 8Morph2021-07-202-3/+33
| | | | Version 8 adds support for key remapping introduced in FW 11.0, we will not be implementing this for now.
* applets/web: Resolve Nintendo CDN URLsMorph2021-07-151-0/+13
| | | | This fixes the hint videos in New Super Mario Bros. U Deluxe
* applets: Append applet_ prefix to backend appletsMorph2021-07-1415-14/+14
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-029-11/+11
| | | | Transition to PascalCase for result names.
* applets/swkbd: Make use of std::move where applicableMorph2021-05-281-8/+8
| | | | Avoids redundant string copies
* applets/swkbd: Only read the text check message on Failure/ConfirmMorph2021-05-281-2/+7
| | | | | | Applications may leave this region of memory uninitialized when the text check result is not either Failure or Confirm. Attempting to read uninitialized memory may cause an exception within the UTF16 to UTF8 string converter. Fix this by only reading the text check message on Failure or Confirm.
* common: fs: Rework the Common Filesystem interface to make use of std::filesystem (#6270)Morph2021-05-262-28/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * common: fs: fs_types: Create filesystem types Contains various filesystem types used by the Common::FS library * common: fs: fs_util: Add std::string to std::u8string conversion utility * common: fs: path_util: Add utlity functions for paths Contains various utility functions for getting or manipulating filesystem paths used by the Common::FS library * common: fs: file: Rewrite the IOFile implementation * common: fs: Reimplement Common::FS library using std::filesystem * common: fs: fs_paths: Add fs_paths to replace common_paths * common: fs: path_util: Add the rest of the path functions * common: Remove the previous Common::FS implementation * general: Remove unused fs includes * string_util: Remove unused function and include * nvidia_flags: Migrate to the new Common::FS library * settings: Migrate to the new Common::FS library * logging: backend: Migrate to the new Common::FS library * core: Migrate to the new Common::FS library * perf_stats: Migrate to the new Common::FS library * reporter: Migrate to the new Common::FS library * telemetry_session: Migrate to the new Common::FS library * key_manager: Migrate to the new Common::FS library * bis_factory: Migrate to the new Common::FS library * registered_cache: Migrate to the new Common::FS library * xts_archive: Migrate to the new Common::FS library * service: acc: Migrate to the new Common::FS library * applets/profile: Migrate to the new Common::FS library * applets/web: Migrate to the new Common::FS library * service: filesystem: Migrate to the new Common::FS library * loader: Migrate to the new Common::FS library * gl_shader_disk_cache: Migrate to the new Common::FS library * nsight_aftermath_tracker: Migrate to the new Common::FS library * vulkan_library: Migrate to the new Common::FS library * configure_debug: Migrate to the new Common::FS library * game_list_worker: Migrate to the new Common::FS library * config: Migrate to the new Common::FS library * configure_filesystem: Migrate to the new Common::FS library * configure_per_game_addons: Migrate to the new Common::FS library * configure_profile_manager: Migrate to the new Common::FS library * configure_ui: Migrate to the new Common::FS library * input_profiles: Migrate to the new Common::FS library * yuzu_cmd: config: Migrate to the new Common::FS library * yuzu_cmd: Migrate to the new Common::FS library * vfs_real: Migrate to the new Common::FS library * vfs: Migrate to the new Common::FS library * vfs_libzip: Migrate to the new Common::FS library * service: bcat: Migrate to the new Common::FS library * yuzu: main: Migrate to the new Common::FS library * vfs_real: Delete the contents of an existing file in CreateFile Current usages of CreateFile expect to delete the contents of an existing file, retain this behavior for now. * input_profiles: Don't iterate the input profile dir if it does not exist Silences an error produced in the log if the directory does not exist. * game_list_worker: Skip parsing file if the returned VfsFile is nullptr Prevents crashes in GetLoader when the virtual file is nullptr * common: fs: Validate paths for path length * service: filesystem: Open the mod load directory as read only
* hle: kernel: Rename Process to KProcess.bunnei2021-05-063-3/+3
|
* hle: kernel: Remove deprecated Object class.bunnei2021-05-061-1/+0
|
* hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.bunnei2021-05-061-1/+0
|
* hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei2021-05-062-15/+15
|
* hle: kernel: Ensure all kernel objects with KAutoObject are properly created.bunnei2021-05-061-0/+5
|
* hle: kernel: Migrate KEvent to KAutoObject.bunnei2021-05-062-23/+18
|
* hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.bunnei2021-05-062-6/+6
|
* service: Remove unused class variablesLioncash2021-05-051-5/+4
| | | | Prevents some warnings from occurring.
* service: Resolve cases of member field shadowingLioncash2021-05-042-4/+4
| | | | | Now all that remains is for kernel code to be 'shadow-free' and then -Wshadow can be turned into an error.
* service: Eliminate cases of member shadowingLioncash2021-04-262-4/+4
| | | | | Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
* applets: Send focus state change message on applet state changeMorph2021-04-178-17/+46
| | | | Fixes the softlock after the controller applet exits in Mario Kart 8 Deluxe.
* applets: Make the applet mode a protected property of AppletMorph2021-04-1714-22/+20
|
* applets/swkbd: Implement the Normal and Inline Software Keyboard AppletMorph2021-04-153-13/+1487
|
* applets: Pass in the LibraryAppletMode each applet's constructorMorph2021-04-1512-31/+56
|
* applets: Remove the previous software keyboard applet implementationMorph2021-04-152-227/+6
|
* Merge pull request #5902 from lioncash/core-warnbunnei2021-02-121-1/+2
|\ | | | | core: Silence various warnings on Clang 12
| * am/controller: Remove [[fallthrough]] from unreachable pathLioncash2021-02-091-1/+2
| | | | | | | | | | Prevents warnings on clang 12. This path is reachable on other variations of the build that disable the unreachable macro.
* | software_keyboard: Implement Finalize request commandMorph2021-02-111-0/+4
|/
* Merge pull request #5326 from german77/hidUpdate1bunnei2021-02-061-1/+1
|\ | | | | HID: Update the HID service to match more closely to switchbrew part 1
| * Fix npad struct to match switchbrewgerman2021-02-041-1/+1
| |
* | hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei2021-02-052-18/+24
| |
* | hle: kernel: Rename WritableEvent to KWritableEvent.bunnei2021-02-052-5/+5
| |
* | hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei2021-02-052-7/+7
|/
* common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINITReinUsesLisp2021-01-151-5/+5
| | | | INSERT_PADDING_BYTES_NOINIT is more descriptive of the underlying behavior.
* applets/web: Implement the online web browser appletMorph2020-12-182-3/+11
|
* main, applets/web: Re-add progress dialog for RomFS extractionMorph2020-12-182-32/+44
|
* pl_u, applets/web: Decrypt shared fonts to TTF filesMorph2020-12-181-0/+86
|
* applets/web: Implement the default web browser applet frontendMorph2020-12-181-1/+4
|
* applets/web: Implement the offline browser applet backendMorph2020-12-182-13/+143
|
* applets/web: Initial implementation of the web browser appletMorph2020-12-183-2/+428
|
* applets: Remove the previous web browser applet implementationMorph2020-12-184-609/+37
|
* Merge pull request #5166 from lioncash/log-castbunnei2020-12-092-4/+4
|\ | | | | core: Remove unnecessary enum casts in log calls
| * core: Remove unnecessary enum casts in log callsLioncash2020-12-082-4/+4
| | | | | | | | | | Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts.
* | Merge pull request #5135 from Morph1984/applets-shadowbunnei2020-12-091-1/+1
|\ \ | | | | | | applets: Resolve variable shadowing
| * | applets: Resolve variable shadowingMorph2020-12-051-1/+1
| |/
* | controller: Use std::move within ConvertToFrontendParameters()Lioncash2020-12-081-3/+3
| | | | | | | | Avoids unnecessary copies.
* | controller: Avoid unnecessary copies in ConfigurationComplete()Lioncash2020-12-081-9/+8
|/ | | | | Avoids unnecessary 1072 byte copies when querying info about controllers.
* service: Eliminate usages of the global system instanceLioncash2020-11-2710-26/+34
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* controllers/npad: Rename NPadType to NpadStyleSetMorph2020-11-161-1/+1
| | | | This more accurately represents the underlying type and avoids confusion with NpadType
* settings: Preparation for per-game input settingsMorph2020-11-161-1/+1
|
* applets: Rename LibraryAppletVersion to ControllerAppletVersionMorph2020-11-082-15/+15
|
* applets/controller: Pop normal data for StrapGuide and FirmwareUpdateMorph2020-11-082-6/+19
|
* applets/controller: Introduce additional checks for mode and callerMorph2020-11-082-5/+39
| | | | | Some games like Cave Story+ set invalid values in the ControllerPrivateArg's mode and caller fields. Use other fields to determine the appropriate mode and caller should either or both fields be invalid.
* applets/controller: Add ControllerUpdateFirmwareArg structMorph2020-11-081-0/+7
|
* Revert "core: Fix clang build"bunnei2020-10-211-13/+13
|
* core: Fix clang buildLioncash2020-10-181-13/+13
| | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* frontend/controller: Eliminate dependency on the global system instanceLioncash2020-09-261-1/+2
|
* Address feedbackMorph2020-09-042-0/+7
|
* applets/controller: Set min_players to have a minimum value of 1.Morph2020-09-041-1/+1
| | | | - Some games like Shipped have a minimum requirement of 0 connected players and is undesired behavior. We must require a minimum of 1 player connected regardless of what games may ask.
* applets/controller: Implement "Explain Text"Morph2020-09-042-16/+26
| | | | "Explain Text" is additional text that is shown for each player in the controller applet.
* Project Mjölnir: Part 2 - Controller AppletMorph2020-09-044-31/+375
| | | | Co-authored-by: Its-Rei <kupfel@gmail.com>
* common/fileutil: Convert namespace to Common::FSLioncash2020-08-161-8/+8
| | | | | | | | | | | | Migrates a remaining common file over to the Common namespace, making it consistent with the rest of common files. This also allows for high-traffic FS related code to alias the filesystem function namespace as namespace FS = Common::FS; for more concise typing.
* software_keyboard: Resolve a pessimizing move warningLioncash2020-08-141-2/+1
| | | | | A std::vector created in place like this is already an rvalue and doesn't need to be moved.
* General: Tidy up clang-format warnings part 2Lioncash2020-08-131-1/+2
|
* Address issuesDavid Marcec2020-07-201-2/+2
|
* swkbd: Return result for Calc request for inlined swkbdDavid Marcec2020-07-192-13/+49
| | | | Fixes random swkbd popups in monster hunter
* Prevent nullptr dereference on swkbd error caseDavid Marcec2020-06-241-1/+1
|
* software_keyboard: Eliminate trivial redundant copiesLioncash2020-06-201-2/+2
| | | | We can just make use of moves here to get rid of two redundant copies
* core/web_browser: Allow WebApplet to exit gracefully when an error occursFearlessTobi2020-03-221-0/+6
| | | | | | | | Currently, yuzu just freezes when an error occurs while Initializing the WebApplet. From a user perspective, this obviously isn't great as the game just softlocks. With this change, yuzu will call the Finalize method, so to the game it seems like as the user just exited the WebApplet normally. This works around https://github.com/yuzu-emu/yuzu/issues/2852.
* hle: services: Use std::shared_ptr instead of copy by value.bunnei2020-02-087-39/+39
|
* services: am: Clear events on PopOutData and PopInteractiveOutData.bunnei2020-02-061-0/+2
|
* am: Refactor IStorage interface.bunnei2020-02-065-10/+10
|
* applets: software_keyboard: Signal state change on end of interactive session.bunnei2020-02-061-0/+1
|
* applets: software_keyboard: Minor cleanup.bunnei2020-02-061-2/+2
|
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei2019-11-252-6/+6
| | | | | | * kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details.
* service: Resolve sign conversion errorsLioncash2019-11-121-8/+8
| | | | | These are fairly trivial to resolve and most of the changes entail using RESULT_UNKNOWN over ResultCode(-1).
* Merge pull request #3062 from bunnei/event-improvebunnei2019-11-061-5/+5
|\ | | | | kernel: Improve events
| * kernel: events: Remove ResetType::Automatic.bunnei2019-11-031-5/+5
| | | | | | | | | | | | | | | | - This does not actually seem to exist in the real kernel - games reset these automatically. # Conflicts: # src/core/hle/service/am/applets/applets.cpp # src/core/hle/service/filesystem/fsp_srv.cpp
* | common_func: Use std::array for INSERT_PADDING_* macros.bunnei2019-11-041-5/+6
|/ | | | - Zero initialization here is useful for determinism.
* applets: Add accessor for AppletFrontendSetZach Hilman2019-09-302-0/+6
| | | | Allows other services to call applets without using LLE.
* service/am: Remove usages of global system accessorsLioncash2019-09-0512-48/+88
| | | | | | Avoids the use of global accessors, removing the reliance on global state. This also makes dependencies explicit in the interface, as opposed to being hidden
* file_sys: Rename other ContentRecordType membersBakugo2019-07-021-2/+2
|
* applets: Pass current process title ID to appletsZach Hilman2019-06-254-14/+20
| | | | Avoids using system accessor to get current process in applet code.
* general_frontend: Add documentation for parental controls and ecommerce appletsZach Hilman2019-06-252-16/+16
|
* web_browser: Only delete temporary directory if it was createdZach Hilman2019-06-251-1/+3
| | | | Prevents crashes with ShopN applet occasionally.
* web_browser: Take ECommerce applet frontend optionally in constructorZach Hilman2019-06-251-1/+6
| | | If it is needed but wasn't passed (or passed nullptr), the Shop handling code will alert and throw an error.
* web_browser: Use function tables for execute and initializeZach Hilman2019-06-252-7/+285
| | | Allows easy handling of multiple shim types, as they have enough in common to be the same backend but not enough to share init/exec.
* web_browser: Correct structures and properly parse TLVs/ShimKindZach Hilman2019-06-252-61/+168
| | | Much, much more HW-accurate and allows us to easily support all of the different web 'shim' types.
* applets: Track ECommerce and Parental Control applet frontendsZach Hilman2019-06-252-7/+29
|
* applets: Implement Auth applet backendZach Hilman2019-06-252-0/+146
| | | This is responsible for parental controls and supports verifying, changing, and registering PIN codes.
* Merge pull request #2482 from DarkLordZach/prepobunnei2019-06-215-20/+64
|\ | | | | core: Add detailed local reporting feature for development
| * loader: Move NSO module tracking to AppLoaderZach Hilman2019-05-262-3/+4
| | | | | | Also cleanup of general stuff
| * applets/error: Save report on error appletZach Hilman2019-05-251-5/+14
| | | | | | | | This matches official behavior with the erpt/eclct/eupld service chain.
| * applets: Save report on stubbed appletZach Hilman2019-05-254-15/+49
| | | | | | | | This also reworks the applet data storage to be peekable.
* | common/hex_util: Combine HexVectorToString() and HexArrayToString()Lioncash2019-06-121-6/+6
| | | | | | | | | | | | These can be generified together by using a concept type to designate them. This also has the benefit of not making copies of potentially very large arrays.
* | Merge pull request #2526 from lioncash/globalZach Hilman2019-06-052-5/+37
|\ \ | | | | | | core/telemetry_session: Remove usages of the global system accessor
| * | core/core: Remove unnecessary includesLioncash2019-05-292-5/+37
| |/ | | | | | | | | The contents of these includes aren't used anywhere in this translation unit.
* | Merge pull request #1931 from DarkLordZach/mii-database-1bunnei2019-05-302-6/+7
|\ \ | |/ |/| mii: Implement MiiManager backend and several mii service commands
| * mii_manager: Fix incorrect loop condition in mii UUID generation codeZach Hilman2019-04-252-1/+2
| |
| * profile_select: Port Service::Account::UUID to Common::UUIDZach Hilman2019-04-252-5/+5
| |
* | core/kernel/object: Rename ResetType enum membersLioncash2019-05-181-3/+3
|/ | | | | | | | | | | | | Renames the members to more accurately indicate what they signify. "OneShot" and "Sticky" are kind of ambiguous identifiers for the reset types, and can be kind of misleading. Automatic and Manual communicate the kind of reset type in a clearer manner. Either the event is automatically reset, or it isn't and must be manually cleared. The "OneShot" and "Sticky" terminology is just a hold-over from Citra where the kernel had a third type of event reset type known as "Pulse". Given the Switch kernel only has two forms of event reset types, we don't need to keep the old terminology around anymore.
* web_browser: Make OpenPage non-constZach Hilman2019-04-178-15/+20
|
* main: Add GMainWindow hooks for Error displayZach Hilman2019-04-171-2/+2
|
* general_backend: Move StubApplet and add backend PhotoViewerZach Hilman2019-04-172-1/+102
|
* applets: Add Error appletZach Hilman2019-04-173-24/+224
| | | Responsible for displaying error codes and messages
* applets: Port current applets to take frontend in constructorZach Hilman2019-04-176-14/+16
| | | As opposed to using Core::System::GetInstance()
* applets: Add AppletManager class to control lifetimeZach Hilman2019-04-172-0/+137
|
* patch_manager: Dump NSO name with build IDZach Hilman2019-03-281-2/+1
|
* game_list: Register content with ContentProviderZach Hilman2019-03-271-2/+3
|
* core/hle/ipc: Remove unnecessary includesLioncash2019-03-052-0/+4
| | | | | | | | | | | Removes a few inclusion dependencies from the headers or replaces existing ones with ones that don't indirectly include the required headers. This allows removing an inclusion of core/memory.h, meaning that if the memory header is ever changed in the future, it won't result in rebuilding the entirety of the HLE services (as the IPC headers are used quite ubiquitously throughout the HLE service implementations).
* core/frontend/applets/web_browser: Include missing headersLioncash2019-01-171-2/+8
| | | | Gets rid of a few indirect inclusions.
* core/frontend/applets/web_browser: Make OpenPage() non-constLioncash2019-01-171-1/+1
| | | | | | | | This is a function that definitely doesn't always have a non-modifying behavior across all implementations, so this should be made non-const. This gets rid of the need to mark data members as mutable to work around the fact mutating data members needs to occur.
* Merge pull request #1939 from DarkLordZach/web-appletbunnei2019-01-103-1/+229
|\ | | | | applets: Implement HLE web browser applet (LibAppletOff)
| * web_browser: Add bounds checking to applet interfaceZach Hilman2018-12-291-7/+7
| |
| * core: Add getter and setter for WebBrowserApplet frontendZach Hilman2018-12-281-1/+1
| |
| * applets: Implement LibAppletOff (Web) appletZach Hilman2018-12-282-0/+228
| |
* | core/kernel: Remove unnecessary inclusionsLioncash2019-01-012-2/+2
|/ | | | Gets rid of a few unnecessary header dependencies in some source files.
* Merge pull request #1781 from DarkLordZach/applet-profile-selectbunnei2018-12-232-0/+127
|\ | | | | am: Implement HLE profile selector applet
| * applets: Correct event ResetTypes from OneShot to StickyZach Hilman2018-12-034-13/+5
| | | | | | | | Fixes bugs relating to signalling in software keyboard.
| * applets: Implement ProfileSelect appletZach Hilman2018-12-032-0/+130
| | | | | | Allows the player to select an emulated profile.
| * software_keyboard: Signal state changed event upon constructionZach Hilman2018-12-031-1/+6
| | | | | | Previously, ILibraryAppletAccessor would signal upon creation of any applet, but this is incorrect. A flag inside of the applet code determines whether or not creation should signal state change and swkbd happens to be one of these applets.
* | applets: Correct usage of SignalStateChanged eventZach Hilman2018-12-102-5/+4
|/ | | | This was causing some games (most notably Pokemon Quest) to softlock due to an event being fired when not supposed to. This also removes a hack wherein we were firing the state changed event when the game retrieves it, which is incorrect.
* hle_ipc: Refactor SleepClientThread to avoid ReadableEventZach Hilman2018-11-291-5/+1
|
* kernel/event: Reference ReadableEvent from WritableEventZach Hilman2018-11-292-18/+12
|
* core: Port all current usages of Event to Readable/WritableEventZach Hilman2018-11-292-20/+28
|
* am: Return StubApplet instead of nullptr when AppletId not foundZach Hilman2018-11-222-7/+5
|
* applets: Add StubAppletZach Hilman2018-11-222-0/+96
| | | | This will log all data it receives, log all calls to its methods and push dummy data into both channels on execution.
* am/applets: Make the applet data broker part of the applet itself.Lioncash2018-11-204-20/+27
| | | | | The accessor should be doing just that, accessing, rather than retaining the lifetime of the data broker as well.
* am/applets: Replace includes with forward declarations where applicableLioncash2018-11-202-2/+9
| | | | | Also resolve places where includes should have been provided, but weren't.
* am/applets: Relocate comments above the relevant data member in AppletDataBrokerLioncash2018-11-201-11/+18
| | | | Avoids wonky wrapping and makes it nicer to read.
* software_keyboard: Fix erroneous extra PushNormalDataZach Hilman2018-11-191-3/+2
|
* software_keyboard: Return correct result code on user cancel operationZach Hilman2018-11-193-5/+1
|
* applet: Add AppletDataBroker to manage HLE to AM service interactionZach Hilman2018-11-194-47/+159
| | | | This cleans up most of the callbacks and such in the Applets::Applet interface, while also properly implementing all four data channels.
* software_keyboard: Use correct offset for inital text stringZach Hilman2018-11-191-1/+2
|
* software_keyboard: Check for UTF-8 config flagZach Hilman2018-11-192-9/+23
|
* software_keyboard: Push all data over all channels on dialog completionZach Hilman2018-11-181-18/+26
|
* applet: Use std::queue instead of std::vector for storage stackZach Hilman2018-11-184-8/+22
|
* applet: Add operation completed callbackZach Hilman2018-11-181-1/+1
|
* software_keyboard: Push buffer size to offset 0x4 in output dataZach Hilman2018-11-183-7/+20
|
* software_keyboard: Make GetText asynchronousZach Hilman2018-11-182-5/+19
| | | | a
* am: Allow applets to push multiple and different channels of dataZach Hilman2018-11-183-18/+18
|
* am: Implement text check software keyboard modeZach Hilman2018-11-182-9/+63
| | | | Allows the game to verify and send a message to the frontend.
* am: Deglobalize software keyboard appletZach Hilman2018-11-184-18/+29
|
* am/applets: Add connector between frontend and AM applet classesZach Hilman2018-11-182-0/+128
| | | Provides a middleman between the Frontend provider class and the expected AM::Applets::Applet class needed by ILibraryAppletAccessor
* am/applets: Add Applet superclass to describe a generic appletZach Hilman2018-11-182-0/+75
Adds an Initialize and Execute methods which are used by the ILibraryAppletAccessor to start and control the applet.