summaryrefslogtreecommitdiff
path: root/src/common/input.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-06-28input_common: Remove duplicated DriverResult enumGravatar german771-0/+2
2023-06-21input_common: Implement native mifare supportGravatar Narr the Reg1-4/+39
2023-05-05input_common: Add property to invert an axis buttonGravatar Narr the Reg1-0/+2
2023-05-05input_common: Add property to invert an axis buttonGravatar Narr the Reg1-0/+2
2023-03-12general: fix spelling mistakesGravatar Liam1-4/+4
2023-03-08input_common: Minor typo issues (#9922)Gravatar Narr the Reg1-1/+1
2023-02-01input_common: Implement turbo buttonsGravatar german771-0/+2
2023-01-19input_common: Use DriverResult on all enginesGravatar german771-26/+20
2023-01-19input_common: Initial skeleton for custom joycon driverGravatar Narr the Reg1-3/+23
2023-01-05input_common: Create an update engineGravatar Narr the Reg1-3/+0
2022-11-28common/input: Add helpers functions for creating input and output devicesGravatar Lioncash1-0/+34
Avoids the redundancy of needing to explictly specify the common namespace and the type.
2022-11-28common/input: Pass ParamPackage by const reference in CreateDeviceGravatar Lioncash1-3/+3
This was previously being passed by value, which was unnecessary and created more allocations than necessary.
2022-11-22general: fix compile for Apple ClangGravatar Liam1-0/+1
2022-10-21input_common: cache vibration testsGravatar german771-1/+4
2022-10-09input_common: have an unique vector in callback statusGravatar german771-2/+3
2022-10-02service: nfp: address commentsGravatar german771-1/+1
2022-10-02input_common: Create virtual amiibo driverGravatar german771-0/+27
2022-09-06input_common: Add support for analog toggleGravatar Narr the Reg1-0/+5
2022-07-27chore: make yuzu REUSE compliantGravatar Andrea Pappacoda1-3/+2
[REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2022-07-23input_common: Add camera driverGravatar german771-1/+28
2022-05-23input_common: Make vibration request asyncGravatar Narr the Reg1-0/+1
2022-02-05general: Rename NewUUID to UUID, and remove the previous UUID implGravatar Morph1-4/+4
This completes the removal of the old UUID implementation.
2022-02-05input/hid: Migrate to the new UUID implementationGravatar Morph1-4/+4
2022-01-30input_common: Add home and hard touch press buttons to UDP controllersGravatar german771-0/+2
2022-01-16input_common: Reintroduce motion from mouse and use button namesGravatar german771-0/+7
2021-12-13common/input: Avoid numerous large copies of CallbackStatusGravatar Lioncash1-2/+2
CallbackStatus instances aren't the cheapest things to copy around (relative to everything else), given that they're currently 520 bytes in size and are currently copied numerous times when callbacks are invoked. Instead, we can pass the status by const reference to avoid all the copying.
2021-12-13common/input: Remove unnecessary returnsGravatar Lioncash1-6/+2
Given these return void, these can be omitted.
2021-12-13input_engine: Pass LedStatus by const referenceGravatar Lioncash1-1/+1
Avoids copies where reasonably applicable
2021-12-13input_engine: Pass VibrationStatus by const reference in SetRumble()Gravatar Lioncash1-4/+2
Avoids creating copies of the struct where not necessary.
2021-11-26input_common: Fully implement UDP controllersGravatar Narr the Reg1-0/+14
2021-11-24input_common: Move button names to the frontendGravatar german771-0/+22
2021-11-24config: Cleanup and documentationGravatar german771-3/+31
2021-11-24core/hid: Prevent Emulated controller from flapping with multiple inputs devicesGravatar german771-0/+4
2021-11-24core/hid: Fully emulate motion from buttonGravatar german771-0/+5
2021-11-24second commit lion reviewGravatar german771-1/+1
2021-11-24settings: Fix Debug controller type optionsGravatar german771-2/+2
2021-11-24kraken: Address comments from reviewGravatar german771-2/+2
start lion review
2021-11-24input_common: Add manual update options to input devicesGravatar german771-0/+10
2021-11-24core/hid: Fix rumble too strong at 1%Gravatar german771-0/+7
2021-11-24core/hid: Only signal when neededGravatar german771-0/+1
2021-11-24core/hid: Add output devicesGravatar german771-0/+39
2021-11-24common: Rewrite and move core/frontend/input.h to commonGravatar german771-0/+242