From c47f72208e6fd80b40abcf79a2070dd6aa97b69d Mon Sep 17 00:00:00 2001 From: endolf Date: Sun, 4 Dec 2005 16:39:13 +0000 Subject: [PATCH] First bodge at pursuading windows to use some of the same button ID's as linux. I dunno which is right, I suspect that both are as there is no standard that both admit to. So for now, lets do that good old nasty hack of string searching. --- .../net/java/games/input/DirectInputAxis.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/plugins/DX8/src/java/net/java/games/input/DirectInputAxis.java b/plugins/DX8/src/java/net/java/games/input/DirectInputAxis.java index cdc9267..1312769 100644 --- a/plugins/DX8/src/java/net/java/games/input/DirectInputAxis.java +++ b/plugins/DX8/src/java/net/java/games/input/DirectInputAxis.java @@ -135,6 +135,21 @@ class DirectInputAxis extends AbstractComponent { offset = 12 + (instance/4); bitshift = (instance%4)*8; bitmask=0xff; + + //Nasty cludge to get some similarities across platforms. + if(name.contains("A Button")) { + this.id = Component.Identifier.Button.A; + } else if(name.contains("B Button")) { + this.id = Component.Identifier.Button.B; + } else if(name.contains("C Button")) { + this.id = Component.Identifier.Button.C; + } else if(name.contains("X Button")) { + this.id = Component.Identifier.Button.X; + } else if(name.contains("Y Button")) { + this.id = Component.Identifier.Button.Y; + } else if(name.contains("Z Button")) { + this.id = Component.Identifier.Button.Z; + } } }