| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | General: Tidy up clang-format warnings part 2 | 2020-08-13 | 1 | -4/+2 | |
| | | |||||
| * | Remove UI changes | 2020-08-10 | 2 | -2/+2 | |
| | | | | | This PR is now only the Analog devices handling the range value defaulting at 100% | ||||
| * | Add range slider functionality for gc adapter | 2020-08-10 | 1 | -7/+7 | |
| | | |||||
| * | undo unnecessary newlines, slider range 50-150 | 2020-08-10 | 1 | -1/+1 | |
| | | |||||
| * | Add range slider for analog sticks | 2020-08-10 | 1 | -11/+14 | |
| | | |||||
| * | GCAdapter: only join worker thread if running & joinable | 2020-07-26 | 1 | -1/+3 | |
| | | |||||
| * | Merge pull request #4418 from lioncash/udp-warn | 2020-07-25 | 1 | -1/+0 | |
| |\ | | | | | udp/client: Remove unused boost include | ||||
| | * | udp/client: Remove unused boost include | 2020-07-25 | 1 | -1/+0 | |
| | | | | | | | | | Also silences a deprecation warning from boost on Clang/GCC. | ||||
| * | | gc_adapter: Resolve C++20 deprecation warning | 2020-07-25 | 1 | -1/+1 | |
| | | | |||||
| * | | gc_poller: Resolve -Wsign-compare warning | 2020-07-25 | 1 | -1/+2 | |
| | | | |||||
| * | | gc_poller: Resolve -Wredundant-move warning | 2020-07-25 | 1 | -2/+1 | |
| |/ | |||||
| * | Fix axis thresholding while polling | 2020-07-19 | 1 | -5/+2 | |
| | | | | | axes were very sensitive when mapping controls. | ||||
| * | std::size_t where appropriate, make error message more clear if can't read | 2020-07-17 | 1 | -3/+4 | |
| | | |||||
| * | Refactor adapter code | 2020-07-16 | 2 | -179/+44 | |
| | | |||||
| * | Rebase to master | 2020-07-14 | 7 | -31/+48 | |
| |\ | |||||
| | * | Fix crash if gc configured but adapter not connected | 2020-07-14 | 2 | -15/+25 | |
| | | | |||||
| | * | Merge pull request #4314 from lioncash/input-warn | 2020-07-14 | 4 | -11/+15 | |
| | |\ | | | | | | | gcadapter: Tidy up compiler warnings | ||||
| | | * | gc_poller: Mark GCButtonFactory::GetNextInput() as const | 2020-07-12 | 2 | -2/+2 | |
| | | | | | | | | | | | | | This doesn't modify class instance state. | ||||
| | | * | gc_poller: Get rid of undefined behavior in Create() | 2020-07-12 | 1 | -0/+4 | |
| | | | | | | | | | | | | | Ensures that the function always has returns in all control paths. | ||||
| | | * | gc_poller: Silence sign conversion warnings | 2020-07-12 | 1 | -1/+1 | |
| | | | | |||||
| | | * | gc_adapter: Remove deprecated usage of = in lambda captures | 2020-07-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | It's deprecated in C++20 to use = to capture the this pointer. Instead, we can simply pass this as an argument to the thread constructor. | ||||
| | | * | gc_adapter: Silence sign conversion warnings | 2020-07-12 | 2 | -7/+7 | |
| | | | | |||||
| | * | | Merge pull request #4315 from lioncash/udp-warn | 2020-07-14 | 1 | -1/+1 | |
| | |\ \ | | | | | | | | | udp: Silence a C++20 deprecation warning | ||||
| | | * | | udp: Silence a C++20 deprecation warning | 2020-07-12 | 1 | -1/+1 | |
| | | |/ | | | | | | | | | | | | | C++20 deprecates using the = lambda capture to implicitly capture the this pointer. Instead, we must specify it explicitly. | ||||
| | * | | input_common: drop unused libusb.h include | 2020-07-14 | 1 | -1/+0 | |
| | | | | | | | | | | | | | Remnant of an early implementation. | ||||
| | * | | input_common: make libusb private to gc_adapter | 2020-07-13 | 3 | -3/+7 | |
| | | | | |||||
| | * | | cmake: pass libusb include directory as well | 2020-07-09 | 1 | -0/+1 | |
| | |/ | | | | | | | | | | | | | In file included from src/input_common/gcadapter/gc_adapter.cpp:8: src/./input_common/gcadapter/gc_adapter.h:11:10: fatal error: 'libusb.h' file not found #include <libusb.h> ^~~~~~~~~~ | ||||
| * | | Break out of scan loop if can't find adapter on first run | 2020-07-10 | 1 | -0/+3 | |
| | | | |||||
| * | | Rebase to master, fix merge conflicts | 2020-07-08 | 2 | -10/+30 | |
| |\| | |||||
| | * | Merge pull request #4266 from jbeich/freebsd | 2020-07-08 | 1 | -0/+1 | |
| | |\ | | | | | | | gcadapter: unbreak build on FreeBSD | ||||
| | | * | input_common/gcadapter: add missing C++11 header required by libc++ | 2020-07-07 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In file included from src/input_common/gcadapter/gc_adapter.cpp:8: src/./input_common/gcadapter/gc_adapter.h:77:10: error: no template named 'unordered_map' in namespace 'std' std::unordered_map<int, bool> buttons; ~~~~~^ src/./input_common/gcadapter/gc_adapter.h:78:10: error: no template named 'unordered_map' in namespace 'std' std::unordered_map<int, u16> axes; ~~~~~^ | ||||
| | * | | Address comments for better clarity/signed dev count | 2020-07-08 | 1 | -11/+15 | |
| | | | | |||||
| | * | | Add more libusb error checks | 2020-07-08 | 1 | -3/+18 | |
| | |/ | |||||
| * | | Address PR feedback, fix axis button thresholding | 2020-07-07 | 3 | -58/+22 | |
| | | | |||||
| * | | Brace the code! Fix compile error due to class member construction order | 2020-07-06 | 2 | -15/+31 | |
| | | | |||||
| * | | Recalibrate reconnected controllers | 2020-07-06 | 1 | -0/+5 | |
| | | | |||||
| * | | Save origin state of GC controller analog features, compare against origin ↵ | 2020-07-06 | 3 | -28/+72 | |
| |/ | | | | for input detection | ||||
| * | Fix for always firing triggers on some controllers, trigger threshold more ↵ | 2020-07-04 | 2 | -5/+5 | |
| | | | | | universal | ||||
| * | Address lioncash feedback: Log formatting, extern const PadButtonArray, ↵ | 2020-07-03 | 3 | -24/+32 | |
| | | | | | little touch ups | ||||
| * | Fix unnecessary diffs | 2020-07-02 | 3 | -3/+3 | |
| | | |||||
| * | Add LR triggers as axes, half press to initiate a press, add GC axis id in ↵ | 2020-07-02 | 2 | -10/+34 | |
| | | | | | config, clarify some code blocks for better readability | ||||
| * | Reset adapter state on init, fixes errors relating driver hang from ↵ | 2020-07-01 | 2 | -0/+9 | |
| | | | | | unexpected unplug | ||||
| * | Address feedback regarding increments, const vars, and general cleanup | 2020-06-30 | 2 | -24/+21 | |
| | | |||||
| * | fix implicit conversion of size_t type to int | 2020-06-30 | 1 | -1/+1 | |
| | | |||||
| * | left const auto&, comment punctuation. | 2020-06-26 | 1 | -2/+2 | |
| | | | | Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com> | ||||
| * | const& to button in button array | 2020-06-25 | 1 | -2/+2 | |
| | | | | Co-authored-by: VolcaEM <63682805+VolcaEM@users.noreply.github.com> | ||||
| * | Stop reading loop if error is encountered | 2020-06-25 | 1 | -4/+4 | |
| | | |||||
| * | padbutton enum class and struct initiailization | 2020-06-24 | 3 | -36/+32 | |
| | | |||||
| * | cleanup check access, read, and factory GetNextInput funcs. Use size rather ↵ | 2020-06-23 | 4 | -151/+101 | |
| | | | | | than magic number | ||||
| * | Fix deallocation of GC Adapter | 2020-06-23 | 3 | -4/+10 | |
| | | |||||