mirror of https://github.com/encounter/SDL.git
Don't add paddle mappings for the Xbox One Elite Series 1 controller, since they can't be unmapped and read directly on that controller.
This commit is contained in:
parent
d789ba8332
commit
178ae70a29
|
@ -584,8 +584,11 @@ static ControllerMapping_t *SDL_CreateMappingForHIDAPIController(SDL_JoystickGUI
|
||||||
if (SDL_IsJoystickXboxOneSeriesX(vendor, product)) {
|
if (SDL_IsJoystickXboxOneSeriesX(vendor, product)) {
|
||||||
/* XBox One Series X Controllers have a share button under the guide button */
|
/* XBox One Series X Controllers have a share button under the guide button */
|
||||||
SDL_strlcat(mapping_string, "misc1:b15,", sizeof(mapping_string));
|
SDL_strlcat(mapping_string, "misc1:b15,", sizeof(mapping_string));
|
||||||
} else if (SDL_IsJoystickXboxOneElite(vendor, product)) {
|
} else if (SDL_IsJoystickXboxOneElite(vendor, product) &&
|
||||||
/* XBox One Elite Controllers have 4 back paddle buttons */
|
!SDL_IsJoystickXboxOneEliteSeries1(vendor, product)) {
|
||||||
|
/* XBox One Elite Controllers have 4 back paddle buttons
|
||||||
|
* The Series 1 controller has paddles but they can't be unmapped
|
||||||
|
*/
|
||||||
SDL_strlcat(mapping_string, "paddle1:b15,paddle2:b17,paddle3:b16,paddle4:b18,", sizeof(mapping_string));
|
SDL_strlcat(mapping_string, "paddle1:b15,paddle2:b17,paddle3:b16,paddle4:b18,", sizeof(mapping_string));
|
||||||
} else if (SDL_IsJoystickSteamController(vendor, product)) {
|
} else if (SDL_IsJoystickSteamController(vendor, product)) {
|
||||||
/* Steam controllers have 2 back paddle buttons */
|
/* Steam controllers have 2 back paddle buttons */
|
||||||
|
|
|
@ -1902,6 +1902,29 @@ SDL_IsJoystickXboxOneElite(Uint16 vendor_id, Uint16 product_id)
|
||||||
return SDL_FALSE;
|
return SDL_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SDL_bool
|
||||||
|
SDL_IsJoystickXboxOneEliteSeries1(Uint16 vendor_id, Uint16 product_id)
|
||||||
|
{
|
||||||
|
if (vendor_id == USB_VENDOR_MICROSOFT) {
|
||||||
|
if (product_id == USB_PRODUCT_XBOX_ONE_ELITE_SERIES_1) {
|
||||||
|
return SDL_TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return SDL_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
SDL_bool
|
||||||
|
SDL_IsJoystickXboxOneEliteSeries2(Uint16 vendor_id, Uint16 product_id)
|
||||||
|
{
|
||||||
|
if (vendor_id == USB_VENDOR_MICROSOFT) {
|
||||||
|
if (product_id == USB_PRODUCT_XBOX_ONE_ELITE_SERIES_2 ||
|
||||||
|
product_id == USB_PRODUCT_XBOX_ONE_ELITE_SERIES_2_BLUETOOTH) {
|
||||||
|
return SDL_TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return SDL_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
SDL_bool
|
SDL_bool
|
||||||
SDL_IsJoystickXboxOneSeriesX(Uint16 vendor_id, Uint16 product_id)
|
SDL_IsJoystickXboxOneSeriesX(Uint16 vendor_id, Uint16 product_id)
|
||||||
{
|
{
|
||||||
|
|
|
@ -64,6 +64,8 @@ extern SDL_GameControllerType SDL_GetJoystickGameControllerType(const char *name
|
||||||
|
|
||||||
/* Function to return whether a joystick is an Xbox One Elite controller */
|
/* Function to return whether a joystick is an Xbox One Elite controller */
|
||||||
extern SDL_bool SDL_IsJoystickXboxOneElite(Uint16 vendor_id, Uint16 product_id);
|
extern SDL_bool SDL_IsJoystickXboxOneElite(Uint16 vendor_id, Uint16 product_id);
|
||||||
|
extern SDL_bool SDL_IsJoystickXboxOneEliteSeries1(Uint16 vendor_id, Uint16 product_id);
|
||||||
|
extern SDL_bool SDL_IsJoystickXboxOneEliteSeries2(Uint16 vendor_id, Uint16 product_id);
|
||||||
|
|
||||||
/* Function to return whether a joystick is an Xbox One Series X controller */
|
/* Function to return whether a joystick is an Xbox One Series X controller */
|
||||||
extern SDL_bool SDL_IsJoystickXboxOneSeriesX(Uint16 vendor_id, Uint16 product_id);
|
extern SDL_bool SDL_IsJoystickXboxOneSeriesX(Uint16 vendor_id, Uint16 product_id);
|
||||||
|
|
Loading…
Reference in New Issue