Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-24 | Add missing includes (#6521) | Chloe | |
* Add missing includes * Add array | |||
2021-06-22 | input_common/mouse_input: Fix data race | Rodrigo Locatti | |
Fix data race using std::jthread and std::stop_token. | |||
2021-06-10 | Merge pull request #6407 from lat9nq/fix-libusb-2 | bunnei | |
cmake: Use autotools for libusb linking generally on GNU, and cleanup | |||
2021-06-03 | Merge pull request #6389 from german77/Analog_button_fix | bunnei | |
input_common: Analog button, use time based position | |||
2021-06-03 | cmake: General improvements to libusb linking | lat9nq | |
Delegates libusb external communication to externals/CMakeLists.txt Ensures an interface library `usb` for every pathway input_common just links to the `usb` library now externals/libusb/CMakeLists.txt sets variables to override SDL2's libusb finding Other minor cleanup | |||
2021-06-01 | Merge pull request #6318 from german77/dualJoycon | bunnei | |
input_common: Add dual joycon support | |||
2021-05-30 | input_common: Analog button, use time based position instead of frequent updates | german77 | |
2021-05-24 | Merge pull request #6312 from german77/analogMapping | bunnei | |
input_common: Rewrite sdl analog mapping and fix controller disconnection crash | |||
2021-05-22 | input_common: Add dual joycon support | german77 | |
2021-05-19 | Merge pull request #6310 from german77/nanMotion | bunnei | |
input_common: Sanitize motion data | |||
2021-05-15 | input_common: Implement SDL motion | german77 | |
2021-05-15 | input_common: Fix crash when controller disconnects | german77 | |
2021-05-14 | input_common: Rewrite sdl analog mapping | german77 | |
2021-05-13 | input_common: Sanitize motion data | german77 | |
2021-05-02 | input_common: Release mouse buttons on out of focus | german77 | |
2021-04-30 | Merge pull request #6243 from german77/GCresetOrigin | bunnei | |
input_common: Reset GC sticks center by measuring multiple packets | |||
2021-04-26 | input_common: Reset GC sticks center by measuring multiple packets | german77 | |
2021-04-23 | hid: Implement SevenSixAxis and ConsoleSixAxisSensor | german77 | |
2021-04-18 | general: Ignore implicit-fallthrough for SDL.h | lat9nq | |
SDL 2.0.14 introduces an incompatibility with Clang, causing it to trigger -Wimplicit-fallthrough even though it is marked. Ignore it for now, with a comment mentioning why this is needed. | |||
2021-04-17 | cmake: Use SDL 2.0.14 and fix CMake scope issue | lat9nq | |
Forces using SDL 2.0.14. Upgrades the SDL external to that version. Adds a message when switching to the external. Fixes an error where input_common only links to SDL when SDL2_FOUND is set, but externals/CMakeLists cannot set that variable to the required scope. Switch to using ENABLE_SDL2, which we can use since we now include the SDL source. | |||
2021-04-15 | Merge pull request #6119 from german77/SDLMapping | bunnei | |
InputCommon: Address mapping and naming issues with SDL2 | |||
2021-04-14 | common: Move settings to common from core. | bunnei | |
- Removes a dependency on core and input_common from common. | |||
2021-03-30 | Use a single connection for UDP server, make connection test longer and ↵ | german77 | |
check all pads instead of only the first one | |||
2021-03-30 | InputCommon: Name properly xbox 360 and one controllers, Fix mappings for ↵ | german77 | |
Nintendo Pro controllers | |||
2021-03-11 | Merge pull request #6040 from german77/toggleKeyboard | bunnei | |
Enable toggle buttons for keyboard and mouse | |||
2021-03-08 | Merge pull request #5990 from german77/mousePanningV2 | bunnei | |
InputCommon: Mouse fixes | |||
2021-03-06 | Enable mouse toggle buttons | german77 | |
2021-03-05 | Enable button toggle for keyboard in the modifier button | german | |
2021-03-01 | inputCommon: Use an unique client id for each socket instance | german | |
2021-02-27 | inputCommon: Mouse fixes | german77 | |
2021-02-18 | Revert "Port citra-emu/citra#5123: "SDL: Disable hidapi drivers due to ↵ | Morph | |
compatibility problems with certain controllers"" | |||
2021-02-16 | Merge pull request #5929 from german77/mousePanning | Morph | |
Improve mouse panning | |||
2021-02-15 | Merge pull request #3603 from FearlessTobi/port-5123 | bunnei | |
Port citra-emu/citra#5123: "SDL: Disable hidapi drivers due to compatibility problems with certain controllers" | |||
2021-02-15 | Merge pull request #4940 from german77/nativeGC | bunnei | |
HID: Implement GC controller in game | |||
2021-02-13 | Improve mouse panning | german | |
2021-02-11 | Merge pull request #5869 from german77/mousePanning | bunnei | |
input_common: Add mouse panning | |||
2021-02-09 | udp: Silence unused member variable warnings | Lioncash | |
Simply mark them as unused for now. | |||
2021-02-09 | udp/client: Define ClientData constructor/destructor in cpp file | Lioncash | |
Prevents compilation errors on clang 12 due to incomplete types within a unique_ptr member. | |||
2021-02-07 | hid: Implement GC controller | german | |
2021-02-07 | Add mouse panning | german | |
2021-02-06 | Add SL SR vectors, change dual joycon view, add missing raw data from ↵ | german | |
keyboard/mouse | |||
2021-02-06 | Make settings controller image change with controller input | german | |
2021-01-29 | analog_from_button: Fix update_thread.join exception | ameerj | |
This commit aims to address an exception that occurs when trying to join the Analog object's update_thread. By using an atomic bool for the status of the update thread, we ensure its value is consistent across the threads accessing it. | |||
2021-01-23 | sdl_impl: Set the maximum vibration duration to 1 second | Morph | |
2021-01-15 | Always initialize keyboard input | german | |
2021-01-15 | Add mutitouch support for touch screens | german | |
2021-01-15 | Allow to return up to 16 touch inputs per engine | german | |
2021-01-02 | general: Fix various spelling errors | Morph | |
2020-12-30 | Merge pull request #5265 from german77/port5509 | bunnei | |
Port citra-emu/citra#5509 "Look at direction of analog axis travel instead of instantaneous sample" | |||
2020-12-30 | Port citra-emu/citra#5509 | german | |