Keymap with gamepad problem
#1
I'm trying to write a keymap.xml for the wireless xbox 360 controller running under Tattiebogle's osx drivers. All is well except for a little problem involving the AnalogSeekForward and AnalogSeekBack functions assigned to the right thumbstick. Although I have assigned these 2 functions to the same axis id, but with opposite limits, moving the thumbstick in either direction only results in the seek going in the direction of the first function. This is not a problem for the volume where the limits are correct.

For example:
Quote: <axis id="1" limit="+1"></axis>
<axis id="1" limit="-1"></axis>
<axis id="2" limit="+1">ScrollUp</axis>
<axis id="2" limit="-1">ScrollDown</axis>
<axis id="3" limit="+1">AnalogSeekForward</axis>
<axis id="3" limit="-1">AnalogSeekBack</axis>
<axis id="4" limit="-1">VolumeDown</axis>
<axis id="4" limit="+1">VolumeUp</axis>

<axis id="5" limit="+1">ScrollUp</axis>
<axis id="6" limit="+1">ScrollDown</axis>
</joystick>

When I move the right thumbstick in both directions, it will always seek forwards and seeking backwards is impossible. The case is reversed if I reverse the limits; it will only seek backwards regardless of the thumbstick direction. Volume up and volume down work correctly.

Anyone have ideas on how to fix this?
Reply

Logout Mark Read Team Forum Stats Members Help
Keymap with gamepad problem0