summaryrefslogtreecommitdiff
path: root/src/input_common/udp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-11-24input_common: Rewrite udp clientGravatar german774-876/+0
2021-11-24input_common: Move touch and analog from button. Move udp protocolGravatar german773-338/+1
2021-10-20input_common: Fix VS2022 compilation errorsGravatar ameerj1-39/+35
2021-09-10input_common: Enable steam controllers and 8 player supportGravatar german771-2/+0
2021-06-28general: Make most settings a BasicSettingGravatar lat9nq1-2/+2
Creates a new BasicSettings class in common/settings, and forces setting a default and label for each setting that uses it in common/settings. Moves defaults and labels from both frontends into common settings. Creates a helper function in each frontend to facillitate reading the settings now with the new default and label properties. Settings::Setting is also now a subclass of Settings::BasicSetting. Also adds documentation for both Setting and BasicSetting.
2021-06-28input_common: Remove #pragma warning directives for external headersGravatar Morph1-7/+0
2021-05-13input_common: Sanitize motion dataGravatar german771-0/+23
2021-04-14common: Move settings to common from core.Gravatar bunnei1-1/+1
- Removes a dependency on core and input_common from common.
2021-03-30Use a single connection for UDP server, make connection test longer and ↵Gravatar german772-95/+96
check all pads instead of only the first one
2021-03-01inputCommon: Use an unique client id for each socket instanceGravatar german2-13/+19
2021-02-09udp: Silence unused member variable warningsGravatar Lioncash1-2/+2
Simply mark them as unused for now.
2021-02-09udp/client: Define ClientData constructor/destructor in cpp fileGravatar Lioncash2-0/+7
Prevents compilation errors on clang 12 due to incomplete types within a unique_ptr member.
2021-01-15Always initialize keyboard inputGravatar german1-10/+8
2021-01-15Add mutitouch support for touch screensGravatar german2-15/+12
2021-01-15Allow to return up to 16 touch inputs per engineGravatar german4-85/+108
2021-01-02general: Fix various spelling errorsGravatar Morph1-4/+4
2020-12-27udp client: process packets only for the correct padGravatar gal201-0/+5
2020-11-25Add multiple udp server supportGravatar german3-99/+148
2020-11-23input_common: Add more missing [[maybe_unused]] from #4927.Gravatar bunnei1-2/+2
2020-11-22input_common: Treat warnings as errorsGravatar Lioncash2-4/+13
Migrates over warnings as errors for input common to match how the common library treats warnings as errors.
2020-11-15udp/client: Reduce testing period to 5 secondsGravatar Morph1-1/+1
2020-10-16udp/client: Make use of designated initializers in TestCommunication()Gravatar Lioncash1-2/+5
Same behavior, but makes the callback list nicer to look at.
2020-10-16udp/client: Take std::function by const reference with TestCommunication()Gravatar Lioncash2-5/+5
Avoids redundant copies.
2020-10-15input_common/CMakeLists: Make some warnings errorsGravatar Lioncash3-51/+56
Makes the input_common code warnings consistent with the rest of the codebase.
2020-09-30Reduce the "shake" requirements when configuring UDP.Gravatar Lukas Senionis1-2/+6
2020-09-25Add random motion input to SDLGravatar german1-5/+3
2020-09-05Minor cleanupGravatar german1-19/+16
2020-09-04Add cemu hook changes related to PR #4609Gravatar german4-134/+369
2020-09-04Remove RealMotionDeviceGravatar german3-3/+12
2020-08-26Address feedbackGravatar Morph2-4/+3
2020-08-26Project Mjölnir: Part 1Gravatar Morph2-4/+18
Co-authored-by: James Rowe <jroweboy@gmail.com> Co-authored-by: Its-Rei <kupfel@gmail.com>
2020-08-13General: Tidy up clang-format warnings part 2Gravatar Lioncash1-4/+2
2020-07-25udp/client: Remove unused boost includeGravatar Lioncash1-1/+0
Also silences a deprecation warning from boost on Clang/GCC.
2020-07-12udp: Silence a C++20 deprecation warningGravatar Lioncash1-1/+1
C++20 deprecates using the = lambda capture to implicitly capture the this pointer. Instead, we must specify it explicitly.
2020-06-21Singleton GC Adapter class, remove globals, fix naming conventionGravatar Ameer1-2/+4
Fix clang formatting Manual fix for configure_input_player formatting Add missing lib usb cmake command
2020-06-21Clang FormattingGravatar Ameer1-4/+2
2020-06-21Cleanup after linterGravatar Ameer4-116/+76
2020-06-21GC Adapter ImplementationGravatar Ameer4-76/+116
2020-03-18input_common/udp: Fix clang build issuesGravatar ReinUsesLisp1-1/+2
2020-03-17input_common/udp: Fix Linux build by using a backwards compatible way of ↵Gravatar FearlessTobi1-1/+1
error checking Should fix https://github.com/yuzu-emu/yuzu/issues/3487. error_code::failed is a function which has been introduced in Boost 1.69. This version of boost hasn't landed in most major distros yet.
2020-03-03input/udp - Add minor error handling to prevent bad input from crashingGravatar James Rowe1-4/+13
2020-03-03input/udp - Dont log on invalid packet receivedGravatar James Rowe1-1/+0
2020-02-03input_common/udp: Add missing override specifiersGravatar Lioncash1-2/+2
Prevents trivial warnings and ensures interfaces are properly maintained between the base class.
2020-02-03input_common/udp: std::move SocketCallback instances where applicableGravatar Lioncash1-2/+2
std::function is allowed to heap allocate if the size of the captures associated with each lambda exceed a certain threshold. This prevents potentially unnecessary reallocations from occurring.
2020-02-03input_common/udp: std::move shared_ptr within Client constructorGravatar Lioncash1-1/+1
Gets rid of a trivially avoidable atomic reference count increment and decrement.
2020-02-03udp/client: Replace deprecated from_string() call with make_address_v4()Gravatar Lioncash1-2/+2
Future-proofs code if boost is ever updated.
2020-02-03input_common/udp: Silence -Wreorder warning for SocketGravatar Lioncash1-4/+3
Amends the constructor initializer list to specify the order of its elements in the same order that initialization would occur.
2020-02-03input_common/udp: Remove unnecessary inclusionsGravatar Lioncash4-8/+4
2020-02-03input_common/udp: Add missing header guardGravatar Lioncash1-0/+2
2020-01-23Address second part of review commentsGravatar FearlessTobi3-13/+17