ds4drv icon indicating copy to clipboard operation
ds4drv copied to clipboard

[Feature Request] The ability to map complete keystrokes and macros

Open liftoff opened this issue 11 years ago • 3 comments

It would be nice if we could define keystrokes like:

KEY_LEFTSHIFT+KEY_UP = button_l1

To further this line of thinking it would be really, really great if we could define whole macros:

KEY_V,DELAY(500),KEY_1 = button_r2

...and with button combinations on the other side as well:

KEY_LEFTSHIFT+KEY_TAB = button_l3+button_r3

liftoff avatar Apr 23 '14 21:04 liftoff

Also, if this is going to be refactored, I think it should be

button_l1 = KEY_UP

instead of

KEY_UP = button_l1

Ape avatar Apr 27 '14 16:04 Ape

I agree. The mapping should definitely be:

controller event = some action or actions

That makes a heck of a lot more sense.

liftoff avatar May 02 '14 15:05 liftoff

I know this is an old feature request, but I'd like to second this request, specifically the combo mapping in a manner such as:

KEY_SPACEBAR = button_l2+button_r2

This would be extremely helpful when mapping for games that rely heavily on the keyboard along with a joystick.

wesbeyrent avatar Sep 25 '18 01:09 wesbeyrent