summaryrefslogtreecommitdiffstats
path: root/src/input_common/drivers/tas_input.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-01-08input_common: Handle errors on TAS scriptsgerman771-7/+24
2022-01-07yuzu: Add controller hotkeysgerman771-3/+4
2021-12-13tas_input: Avoid minor copies in Read/WriteCommandButtons()Lioncash1-2/+2
We don't need to copy the whole pair
2021-12-13tas_input: Remove unnecessary semicolonLioncash1-1/+1
Resolves a -Wextra-semi warning
2021-12-13tas_input: Execute clear() even if emptyLioncash1-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.
2021-12-13tas_input: std::move strings into vectorLioncash1-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.
2021-12-13tas_input: Use istringstream over stringstreamLioncash1-2/+2
This is only using the input facilities, so we don't need to use the fully-fleged stringstream.
2021-12-13tas_input: Use u8string_view instead of u8stringLioncash1-5/+6
Same behavior, but without the potential for extra allocations.
2021-12-13tas_input: Remove unused std::smatch variableLioncash1-2/+0
This also means we can get rid of the dependency on <regex>
2021-12-13tas_input: Amend -Wdocumentation warningsLioncash1-5/+5
Parameters shouldn't have the colon by their name.
2021-12-13tas_input: Make TasAxes enum an enum classLioncash1-5/+9
Prevents these values from potentially clashing with anything in other headers.
2021-12-13input_engine: std::move engine name where applicableLioncash1-1/+1
We can allow the name to be moved into, allowing allocations to be avoided.
2021-11-25kraken: Address comments from reviewgerman771-1/+1
Fix compiler bug
2021-11-25core/hid: Prevent Emulated controller from flapping with multiple inputs devicesgerman771-15/+9
2021-11-25input_common: Revert deleted TAS functionsgerman771-11/+12
2021-11-25core/hid: Only signal when neededgerman771-1/+1
2021-11-25input_common: Rewrite gc_adaptergerman771-0/+320