summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: mii: Fix reported bugsgerman772023-09-283-3/+3
|
* service: mii: Limit checks to string sizegerman772023-09-241-1/+1
|
* am: mii_edit: Implement DB operationsNarr the Reg2023-09-226-64/+91
|
* service: mii: Address review commentsgerman772023-09-187-22/+24
|
* service: mii: Implement the rest of the servicegerman772023-09-183-103/+751
|
* service: mii: Implement database managergerman772023-09-182-0/+478
|
* service: mii: Implement figurine databasegerman772023-09-182-0/+208
|
* service: mii: Add device crc16german772023-09-181-0/+26
|
* service: mii: Complete structs and fix mistakesgerman772023-09-189-138/+387
|
* mii_types: Remove null terminator checklat9nq2023-09-171-4/+1
| | | | | | | This is an OoB array access, causing a crash on at least the Linux Flatpak releases. Co-authored-by: german77 <juangerman-13@hotmail.com>
* service: mii: Remove most magic valuesNarr the Reg2023-09-1210-1069/+1537
|
* mii: service: Address reviewgerman772023-09-1112-103/+133
|
* mii: Prepare Interface for new implementationgerman772023-09-114-132/+197
|
* service: mii: Fix ver3 inconsistenciesgerman772023-09-118-211/+463
|
* service: mii: move char info operationsgerman772023-09-114-21/+576
|
* service: mii: Move store data operationsgerman772023-09-115-73/+512
|
* service: mii: Move core data operationsgerman772023-09-115-246/+730
|
* service: mii: Move ver3 operationsgerman772023-09-115-241/+238
|
* service: mii: separate mii types into their own filegerman772023-09-1116-535/+570
|
* service: mii: Move all raw data to it's filegerman772023-09-115-381/+479
|
* service: mii: Add mii util and resultgerman772023-09-114-11/+87
|
* service: mii: Fix broken mii on MK8Narr the Reg2023-09-074-4/+115
|
* service: mii: Fix default mii databasegerman772023-09-053-105/+3
|
* core: remove ResultVal typeLiam2023-08-083-27/+16
|
* service: nfp: Convert mii colors to v3Narr the Reg2023-03-163-10/+87
|
* service: nfp: Actually write correct crcNarr the Reg2023-03-152-1/+4
|
* service: move hle_ipc from kernelLiam2023-03-011-13/+13
|
* service: refactor server architectureLiam2023-02-212-10/+8
| | | | Converts services to have their own processes
* service: mii: Copy only valid name bytesgerman772022-10-021-3/+18
|
* nfp: Multiple fixes against HWgerman772022-10-022-2/+67
|
* service: nfp: Rewrite and implement applet callsgerman772022-10-022-5/+78
|
* core: nfp: Correct date and amiibo nameNarr the Reg2022-09-071-1/+2
|
* core: nfp: Implement Convert and RecreateApplicationArea, accuracy fixesNarr the Reg2022-09-074-26/+241
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-273-4/+4
|
* common: Change semantics of UNREACHABLE to unconditionally crashLiam2022-06-141-1/+1
|
* chore: add missing SPDX tagsAndrea Pappacoda2022-04-281-19/+2
| | | | Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52
* general: Convert source file copyright comments over to SPDXMorph2022-04-236-18/+12
| | | | | 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.
* service: Move mii enums and structs into its own fileMorph2022-03-224-306/+309
| | | | Moves these into types.h, since other files also make use of these types.
* general: Rename NewUUID to UUID, and remove the previous UUID implMorph2022-02-052-11/+10
| | | | This completes the removal of the old UUID implementation.
* service: Migrate to the new UUID implementationMorph2022-02-052-20/+11
|
* core: Remove unused includesameerj2021-11-041-1/+0
|
* general: Remove MakeResult helpersMorph2021-11-021-2/+2
| | | | This is made obsolete by the presence of implicit constructors.
* service: Reduce header include overheadMorph2021-10-071-1/+0
|
* service: Append service name prefix to common filenamesMorph2021-07-144-3/+3
|
* service: mii: Retrieve the correct default miis.Morph2021-07-041-2/+3
| | | | We were including the first 2 default miis which are not meant to be shown in games. With this change, we properly retrieve the 6 default miis shown in games, with 3 of each gender.
* Add missing includes (#6521)Chloe2021-06-241-0/+2
| | | | | * Add missing includes * Add array
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-10/+10
| | | | Transition to PascalCase for result names.
* common: fs: Rework the Common Filesystem interface to make use of std::filesystem (#6270)Morph2021-05-261-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* core: Make variable shadowing a compile-time errorLioncash2021-05-162-3/+3
| | | | | | Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
* mii: Fix BuildRandomStoreData & Cleanup raw_dataChloe Marcec2021-01-204-2274/+1657
| | | | | Cleaned up mii raw data to reflect the underlying values instead of just a chunk of bytes. Fixed BuildRandomStoreData not actually generating random miis properly. "values" should be a u32, not a u8.
* core: Silence Wclass-memaccess warningsReinUsesLisp2021-01-152-53/+54
| | | | | This requires making several types trivial and properly initialize them whenever they are called.
* service: Eliminate usages of the global system instanceLioncash2020-11-272-9/+15
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* service: Update function tablesLioncash2020-10-281-0/+1
| | | | Updates function tables according to info on SwitchBrew.
* Revert "core: Fix clang build"bunnei2020-10-211-10/+10
|
* Merge pull request #4796 from lioncash/clangLC2020-10-211-10/+10
|\ | | | | core: Fix clang build
| * core: Fix clang buildLioncash2020-10-181-10/+10
| | | | | | | | | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* | mii/manager: Make use of unused lower bound in GetRandomValue()Lioncash2020-10-171-1/+1
|/ | | | | | | | | | | Previously, the lower bound wasn't being used and zero was being used as the lower bound every time this function was called. This affects the outcome of some of the randomized entries a little bit, for example, the lower-bound for beard and mustache flags was supposed to be 1, not 0. Aside from these cases, the bug didn't affect anything else.
* core/CMakeLists: Make some warnings errorsLioncash2020-10-131-2/+2
| | | | | | | | | Makes our error coverage a little more consistent across the board by applying it to Linux side of things as well. This also makes it more consistent with the warning settings in other libraries in the project. This also updates httplib to 0.7.9, as there are several warning cleanups made that allow us to enable several warnings as errors.
* Merge pull request #4365 from lioncash/miibunnei2020-07-181-53/+54
|\ | | | | mii/manager: Make use of designated initializers
| * mii/manager: Make use of designated initializersLioncash2020-07-171-53/+54
| | | | | | | | Allows returning the structure in a more concise manner.
* | mii/manager: Resolve sign mismatch warningsLioncash2020-07-171-3/+3
|/ | | | | Previously the loop termination condition was testing variables of different signedness.
* hle: service: mii: Rewrite service to properly support creation of random and default miis.bunnei2020-07-128-912/+3265
|
* core: Initialize several structs that make use of Common::UUID.bunnei2020-01-041-78/+78
|
* Merge pull request #3094 from lioncash/tablesbunnei2019-11-251-0/+2
|\ | | | | service: Update function tables
| * service: Update function tablesLioncash2019-11-121-0/+2
| | | | | | | | | | | | Keeps the function tables up to date. Updated based off information from Switchbrew.
* | service: Resolve sign conversion errorsLioncash2019-11-121-3/+3
|/ | | | | These are fairly trivial to resolve and most of the changes entail using RESULT_UNKNOWN over ResultCode(-1).
* Merge pull request #2708 from DarkLordZach/mii-db-source-crashDavid2019-09-041-0/+4
|\ | | | | mii: Handle logging of unknown database source
| * mii: Handle logging of unknown database sourceZach Hilman2019-07-101-0/+4
| |
* | mii: Implement IDatabaseService SetInterfaceVersionZach Hilman2019-07-071-1/+15
|/ | | Appears to set a member variable used to affect the API that games access, and the method used to store data.
* mii_manager: Fix incorrect loop condition in mii UUID generation codeZach Hilman2019-04-251-1/+1
|
* profile_select: Port Service::Account::UUID to Common::UUIDZach Hilman2019-04-251-1/+1
|
* mii: Implement Delete and Destroy fileZach Hilman2019-04-253-8/+116
|
* mii: Implement IsUpdated command (IPC 0)Zach Hilman2019-04-253-9/+34
|
* mii_manager: Cleanup and optimizationZach Hilman2019-04-252-32/+46
|
* mii: Implement IDatabaseService commands using MiiManagerZach Hilman2019-04-251-15/+242
| | | Since the MiiManager was designed around the IPC interface, this is quite easy. Only functions that were clearly defined were implemented.
* mii: Add MiiManager class to manage Mii databaseZach Hilman2019-04-252-0/+622
| | | Provides serialization/deserialization to the database in system save files, accessors for database state and proper handling of both major Mii formats (MiiInfo and MiiStoreData)
* service: Add mii servicesLioncash2018-07-272-0/+122
Adds the skeleton for the mii services based off information provided by Switch Brew