WhiteMagic
WhiteMagic
Gremlin provides DirectInput devices via vJoy and not XInput devices. There also appears to be confusion as to what the different tools are. - HidGuardian is a kernel module that...
There is no way to map a single button to a PoV hat as that mapping is ill-defined. What you can do, however, is to map a single button to...
This isn't so much a problem in Gremlin but with dill which I wrote to handle inputs. That library purely uses DirectInput and has no notion of what Xinput is...
I would suspect that the error you're getting with xinputplus is due to it not honouring DirectInput properly. The error you get is caused by the index to axis offset...
Looking back at the code I think handing this more explicitly is a better idea. The code really only should override the given values if, for some reason, an actual...
Does this happen when you keep the button held for a while, i.e. not just a short tap but holding it for a second or so?
The long press causing stuck inputs is likely a bug in the logic and timers used to implement the double tap function. Switching modes could have a similar effect on...
Yeah this is the same as #301 and as you've found out is just one place that doesn't properly do utf handling. The deploy but should easily be adjustable to...
That looks neat. A stack-based handling of mode switching makes sense and might work around some of the odd quirks with switching. I'm not too keen on the logic of...
I agree I personally would likely do a manager for modes as that would allow abstracting away the logic into an internal component that has an API used by the...