summaryrefslogtreecommitdiffstats
path: root/src/input_common/drivers (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tas_input: Remove unnecessary semicolonLioncash2021-12-131-1/+1
| | | | Resolves a -Wextra-semi warning
* tas_input: Execute clear() even if emptyLioncash2021-12-131-3/+2
| | | | | clear() when empty is simply a no-op, so we can get rid of the check here and let the stdlib do it for us.
* tas_input: Remove unnecessary includesLioncash2021-12-131-2/+2
| | | | | Gets rid of indirect includes and includes only what the interface needs.
* tas_input: std::move strings into vectorLioncash2021-12-131-21/+24
| | | | | While we're in the same area, we can also avoid performing std::stoi in a loop when it only needs to be performed once.
* tas_input: Use istringstream over stringstreamLioncash2021-12-131-2/+2
| | | | | This is only using the input facilities, so we don't need to use the fully-fleged stringstream.
* tas_input: Use u8string_view instead of u8stringLioncash2021-12-132-6/+7
| | | | Same behavior, but without the potential for extra allocations.
* tas_input: Remove unused std::smatch variableLioncash2021-12-131-2/+0
| | | | This also means we can get rid of the dependency on <regex>
* tas_input: Amend -Wdocumentation warningsLioncash2021-12-132-28/+30
| | | | Parameters shouldn't have the colon by their name.
* tas_input: Make TasAxes enum an enum classLioncash2021-12-132-5/+14
| | | | | Prevents these values from potentially clashing with anything in other headers.
* input_common: Fix error with thread nameNarr the Reg2021-11-301-2/+1
|
* input_common: Fully implement UDP controllersNarr the Reg2021-11-262-8/+254
|
* input_common: Move button names to the frontendgerman772021-11-256-33/+35
|
* input_common: Fix SDL controller with inverted axisgerman772021-11-251-23/+0
|
* kraken: Address comments from reviewgerman772021-11-2510-23/+11
| | | | Fix compiler bug
* core/hid: Improve accuary of mouse implementationgerman772021-11-252-8/+14
|
* core/hid: Fully implement native mousegerman772021-11-252-6/+32
|
* input_common: Allow keyboard to be backwards compatiblegerman772021-11-252-14/+52
|
* core/hid: Improve accuracy of the keyboard implementationgerman772021-11-252-4/+56
|
* core/hid: Prevent Emulated controller from flapping with multiple inputs devicesgerman772021-11-252-23/+12
|
* second commit lion reviewgerman772021-11-256-19/+18
|
* settings: Fix Debug controller type optionsgerman772021-11-251-1/+0
|
* kraken: Address comments from reviewgerman772021-11-257-23/+23
| | | | start lion review
* input_common: Revert deleted TAS functionsgerman772021-11-252-18/+19
|
* input_common: Fix GC adapter initializationgerman772021-11-251-12/+12
| | | | Fix GC controller
* input_common: Fix UDP uuidgerman772021-11-252-1/+11
|
* input_common: Add multiple vibration curvesgerman772021-11-251-14/+19
|
* settings: Fix mouse and keyboard mappingsgerman772021-11-252-1/+17
|
* kraken: Address comments from reviewgerman772021-11-252-2/+4
| | | | review fixes
* service/hid: Fix gesture inputgerman772021-11-252-2/+29
|
* core/hid: Fix rumble too strong at 1%german772021-11-251-1/+19
|
* core/hid: Only signal when neededgerman772021-11-255-23/+84
|
* kraken: Fix errors from rebase and format filesgerman772021-11-253-3/+4
|
* core/hid: Add output devicesgerman772021-11-254-6/+14
|
* input_common: Rewrite SDLgerman772021-11-252-0/+1035
|
* input_common: Rewrite udp clientgerman772021-11-252-0/+491
|
* input_common: Rewrite gc_adaptergerman772021-11-254-0/+1131
|
* input_common: Rewrite touchgerman772021-11-252-0/+97
|
* input_common: Rewrite mousegerman772021-11-252-0/+215
|
* input_common: Rewrite keyboardgerman772021-11-252-0/+79