Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #7859 from german77/battery_again | bunnei | 2022-02-24 | 3 | -15/+18 |
|\ | | | | | input_common: Remove battery duplicated struct and update every button press | ||||
| * | input_common: Remove battery duplicated struct and update every button press | german77 | 2022-02-07 | 3 | -15/+18 |
| | | |||||
* | | Merge pull request #7852 from Morph1984/new-uuid | bunnei | 2022-02-11 | 7 | -11/+11 |
|\ \ | | | | | | | common: Revise and fix the UUID implementation | ||||
| * | | general: Rename NewUUID to UUID, and remove the previous UUID impl | Morph | 2022-02-05 | 8 | -13/+13 |
| | | | | | | | | | | | | This completes the removal of the old UUID implementation. | ||||
| * | | input/hid: Migrate to the new UUID implementation | Morph | 2022-02-05 | 8 | -17/+17 |
| |/ | |||||
* / | yuzu: Add auto center on right click | german77 | 2022-02-07 | 1 | -3/+3 |
|/ | |||||
* | Merge pull request #7839 from german77/battery | bunnei | 2022-02-05 | 1 | -3/+2 |
|\ | | | | | yuzu: ui: Improve battery symbols | ||||
| * | yuzu: ui: Improve battery symbols | Narr the Reg | 2022-02-02 | 1 | -3/+2 |
| | | |||||
* | | input_common: Add home and hard touch press buttons to UDP controllers | german77 | 2022-01-30 | 2 | -3/+16 |
|/ | |||||
* | input_common: Add DS5 to HD rumble list | Narr the Reg | 2022-01-27 | 1 | -2/+3 |
| | |||||
* | input_common/udp_client: Replace deprecated from_string()/to_ulong() functions | Lioncash | 2022-01-24 | 1 | -2/+2 |
| | | | | These are deprecated and make_address variants and to_uint() should be used instead. | ||||
* | input_common/udp_client: Prevent unnecessary string copies | Lioncash | 2022-01-24 | 2 | -4/+4 |
| | | | | | We can also remove some redundant const on the return values, since these don't do anything | ||||
* | Merge pull request #7735 from german77/udp_battery | bunnei | 2022-01-22 | 2 | -0/+25 |
|\ | | | | | input_common: Report battery for UDP controllers | ||||
| * | input_common: Report battery for UDP controllers | Narr the Reg | 2022-01-17 | 2 | -0/+25 |
| | | |||||
* | | Merge pull request #7715 from gidoly/patch-4 | bunnei | 2022-01-19 | 1 | -2/+2 |
|\ \ | | | | | | | Xbox controller default name nit pick | ||||
| * | | Xbox controller default name nit pick | gidoly | 2022-01-15 | 1 | -2/+2 |
| |/ | | | | | Discord User moon lacer pointed us that official name is 'Xbox' not 'XBox' | ||||
* | | Merge pull request #7725 from german77/mouse_in_motion | bunnei | 2022-01-19 | 2 | -1/+34 |
|\ \ | | | | | | | input_common: Reintroduce motion from mouse and use button names | ||||
| * | | input_common: Reintroduce motion from mouse and use button names | german77 | 2022-01-17 | 2 | -1/+34 |
| |/ | |||||
* / | input_common: fix copy-paste error | Valeri | 2022-01-17 | 1 | -1/+1 |
|/ | | | Found by static analysis with PVS-Studio. | ||||
* | Change default name for ps controllers | gidoly | 2022-01-15 | 1 | -0/+6 |
| | | | | Minor nitpick Code is from narr | ||||
* | Merge pull request #7633 from german77/hotkeys | bunnei | 2022-01-11 | 3 | -4/+7 |
|\ | | | | | yuzu: Add controller hotkeys | ||||
| * | yuzu: Add controller hotkeys | german77 | 2022-01-07 | 3 | -4/+7 |
| | | |||||
* | | Merge pull request #7687 from german77/tas_handle | Morph | 2022-01-10 | 1 | -7/+24 |
|\ \ | | | | | | | input_common: Handle errors on TAS scripts | ||||
| * | | input_common: Handle errors on TAS scripts | german77 | 2022-01-08 | 1 | -7/+24 |
| |/ | |||||
* / | input_common: Fix udp motion not automapping to both sides | german77 | 2022-01-07 | 1 | -8/+16 |
|/ | |||||
* | Merge pull request #7302 from VPeruS/check-deadlock | bunnei | 2021-12-18 | 1 | -35/+39 |
|\ | | | | | [input_common] Fixed thread hang | ||||
| * | [input_common] Move variable declaration closer to usage | vperus | 2021-12-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | MSVC supplied with VS2022 generates "warning C4189: 'CALIBRATION_THRESHOLD': local variable is initialized but not referenced" which is treated as an error. Circumvent it by moving constexpr variable directly into body of lambda function. | ||||
| * | Revert of b01aa72 | vperus | 2021-11-29 | 1 | -35/+39 |
| | | | | | | | | Caused worker_thread to be stuck in Stage1Completed state until job's destruction. | ||||
* | | Merge pull request #7577 from v1993/patch-2 | Narr the Reg | 2021-12-14 | 1 | -3/+4 |
|\ \ | | | | | | | input/SDL: Update SDL hints | ||||
| * | | input/SDL: Update SDL hints | Valeri | 2021-12-14 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | SDL_HINT_JOYSTICK_HIDAPI_SWITCH_HOME_LED is no longer needed thanks to new default in SDL 2.0.18. SDL_HINT_JOYSTICK_HIDAPI_XBOX is reported to cause conflicts with native driver Xbox driver on Linux, and Xbox controllers don't benefit from hidapi anyways. | ||||
* | | | Merge pull request #7575 from lioncash/input | bunnei | 2021-12-14 | 14 | -36/+38 |
|\ \ \ | | | | | | | | | input_engine: Minor object churn cleanup | ||||
| * | | | input_engine: Take BasicMotion by const reference with SetMotion() and TriggerOnMotionChange() | Lioncash | 2021-12-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | Copies the BasicMotion instance once instead of twice. | ||||
| * | | | input_engine: Pass VibrationStatus by const reference in SetRumble() | Lioncash | 2021-12-13 | 4 | -6/+8 |
| | | | | | | | | | | | | | | | | Avoids creating copies of the struct where not necessary. | ||||
| * | | | input_engine: std::move engine name where applicable | Lioncash | 2021-12-13 | 14 | -28/+28 |
| |/ / | | | | | | | | | | | | | We can allow the name to be moved into, allowing allocations to be avoided. | ||||
* | | | tas_input: Avoid minor copies in Read/WriteCommandButtons() | Lioncash | 2021-12-13 | 1 | -2/+2 |
| | | | | | | | | | | | | We don't need to copy the whole pair | ||||
* | | | tas_input: Remove unnecessary semicolon | Lioncash | 2021-12-13 | 1 | -1/+1 |
| | | | | | | | | | | | | Resolves a -Wextra-semi warning | ||||
* | | | tas_input: Execute clear() even if empty | Lioncash | 2021-12-13 | 1 | -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 includes | Lioncash | 2021-12-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | Gets rid of indirect includes and includes only what the interface needs. | ||||
* | | | tas_input: std::move strings into vector | Lioncash | 2021-12-13 | 1 | -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 stringstream | Lioncash | 2021-12-13 | 1 | -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 u8string | Lioncash | 2021-12-13 | 2 | -6/+7 |
| | | | | | | | | | | | | Same behavior, but without the potential for extra allocations. | ||||
* | | | tas_input: Remove unused std::smatch variable | Lioncash | 2021-12-13 | 1 | -2/+0 |
| | | | | | | | | | | | | This also means we can get rid of the dependency on <regex> | ||||
* | | | tas_input: Amend -Wdocumentation warnings | Lioncash | 2021-12-13 | 2 | -28/+30 |
| | | | | | | | | | | | | Parameters shouldn't have the colon by their name. | ||||
* | | | tas_input: Make TasAxes enum an enum class | Lioncash | 2021-12-13 | 2 | -5/+14 |
|/ / | | | | | | | | | Prevents these values from potentially clashing with anything in other headers. | ||||
* / | input_common: Fix error with thread name | Narr the Reg | 2021-11-30 | 1 | -2/+1 |
|/ | |||||
* | input_common: Fully implement UDP controllers | Narr the Reg | 2021-11-26 | 2 | -8/+254 |
| | |||||
* | input_common: Move button names to the frontend | german77 | 2021-11-25 | 6 | -33/+35 |
| | |||||
* | input_common: Fix SDL controller with inverted axis | german77 | 2021-11-25 | 1 | -23/+0 |
| | |||||
* | kraken: Address comments from review | german77 | 2021-11-25 | 10 | -23/+11 |
| | | | | Fix compiler bug | ||||
* | core/hid: Improve accuary of mouse implementation | german77 | 2021-11-25 | 2 | -8/+14 |
| | |||||
* | core/hid: Fully implement native mouse | german77 | 2021-11-25 | 2 | -6/+32 |
| | |||||
* | input_common: Allow keyboard to be backwards compatible | german77 | 2021-11-25 | 2 | -14/+52 |
| | |||||
* | core/hid: Improve accuracy of the keyboard implementation | german77 | 2021-11-25 | 2 | -4/+56 |
| | |||||
* | core/hid: Prevent Emulated controller from flapping with multiple inputs devices | german77 | 2021-11-25 | 2 | -23/+12 |
| | |||||
* | second commit lion review | german77 | 2021-11-25 | 6 | -19/+18 |
| | |||||
* | settings: Fix Debug controller type options | german77 | 2021-11-25 | 1 | -1/+0 |
| | |||||
* | kraken: Address comments from review | german77 | 2021-11-25 | 7 | -23/+23 |
| | | | | start lion review | ||||
* | input_common: Revert deleted TAS functions | german77 | 2021-11-25 | 2 | -18/+19 |
| | |||||
* | input_common: Fix GC adapter initialization | german77 | 2021-11-25 | 1 | -12/+12 |
| | | | | Fix GC controller | ||||
* | input_common: Fix UDP uuid | german77 | 2021-11-25 | 2 | -1/+11 |
| | |||||
* | input_common: Add multiple vibration curves | german77 | 2021-11-25 | 1 | -14/+19 |
| | |||||
* | settings: Fix mouse and keyboard mappings | german77 | 2021-11-25 | 2 | -1/+17 |
| | |||||
* | kraken: Address comments from review | german77 | 2021-11-25 | 2 | -2/+4 |
| | | | | review fixes | ||||
* | service/hid: Fix gesture input | german77 | 2021-11-25 | 2 | -2/+29 |
| | |||||
* | core/hid: Fix rumble too strong at 1% | german77 | 2021-11-25 | 1 | -1/+19 |
| | |||||
* | core/hid: Only signal when needed | german77 | 2021-11-25 | 5 | -23/+84 |
| | |||||
* | kraken: Fix errors from rebase and format files | german77 | 2021-11-25 | 3 | -3/+4 |
| | |||||
* | core/hid: Add output devices | german77 | 2021-11-25 | 4 | -6/+14 |
| | |||||
* | input_common: Rewrite SDL | german77 | 2021-11-25 | 2 | -0/+1035 |
| | |||||
* | input_common: Rewrite udp client | german77 | 2021-11-25 | 2 | -0/+491 |
| | |||||
* | input_common: Rewrite gc_adapter | german77 | 2021-11-25 | 4 | -0/+1131 |
| | |||||
* | input_common: Rewrite touch | german77 | 2021-11-25 | 2 | -0/+97 |
| | |||||
* | input_common: Rewrite mouse | german77 | 2021-11-25 | 2 | -0/+215 |
| | |||||
* | input_common: Rewrite keyboard | german77 | 2021-11-25 | 2 | -0/+79 |