summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControlReference
AgeCommit message (Collapse)Author
2018-04-19THis fixes issue #08 and #16, the rumble test and sliderConnor Roth
2018-04-12Reformat all the things!spycrab
2017-09-14ExpressionParser: std::move() tokens vector to parserMichael M
2017-09-14ControlReference: don't reparse expression when references are updatedMichael M
2017-09-14ControlReference/ExpressionParser: separate parsing from bindingMichael M
2017-09-14ExpressionParser: add FallbackExpression node typeMichael M
2017-09-14ExpressionParser: expose ExpressionNode directlyMichael M
2017-09-14ParseStatus: replace NoDevice with EmptyExpressionMichael M
2017-09-14ExpressionParser: remove DummyExpressionMichael M
2017-09-14ExpressionParser: clean up ControlExpressionMichael M
2017-09-14ExpressionParser: replace bare pointers with unique_ptrsMichael M
2017-09-14ExpressionParser: use internal ParseResult struct instead of out-paramsMichael M
2017-09-14ParseExpression: return a std::pairMichael M
2017-07-12DolphinWX: fix input bitmaps not working when background input is offMichael Maltese
2017-06-30Disable Background Input when Background Input is disabledmimimi085181
Only remaining issue is that clicking on the titlebar of the window, to give it focus, is already interpreted as input. But clicking on the window in the task bar, or using alt tab works to get back, without causing an input event.
2017-04-02ExpressionParser: Rename ParseStatus' Success member to SuccessfulLioncash
This clashes with X11's preprocessor define named Success (because using non-prefixed lowercase identifiers in C was apparently a fantastic idea at some point), causing compilation errors.
2017-02-28ExpressionParser: Convert parse state enum into an enum classLioncash
2017-02-26ExpressionParser: Const-correctness changesLioncash
2017-02-11ControllerEmu: Add const to UpdateReferences() first reference parameterLioncash
None of these parameters are modified.
2017-02-10ControlReference: Add missing virtual destructorLioncash
ControllerEmu::Control instances have a unique_ptr<ControlReference> member, which is passed either an InputReference or OutputReference. Without this virtual destructor, deleting a derived class through a pointer to the base class is undefined behavior.
2017-02-07ControlReference: put parsed_expression in a unique_ptrMichael Maltese
2017-02-07ControlReference: hide parse_error behind GetParseStatus()Michael Maltese
2017-02-07ControlReference: hide is_input behind functionMichael Maltese
2017-02-07ControlReference: move function bodies out of headerMichael Maltese
2017-02-07InputCommon: Extract ControlReference from ControllerInterfaceMichael Maltese
Better separation of concerns. Relegates `ControllerInterface` to enumerating input controls, and the new `ControlReference` deals with combining inputs and configuration expression parsing.