From 5e594a87d2e7016aec2eff65ddf4cddc155a03ed Mon Sep 17 00:00:00 2001 From: Dokthar Date: Mon, 25 Apr 2016 20:52:04 +0200 Subject: [PATCH 1/9] joystick : add trim() to each joystick name input --- .../com/jme3/input/JoystickCompatibilityMappings.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jme3-core/src/main/java/com/jme3/input/JoystickCompatibilityMappings.java b/jme3-core/src/main/java/com/jme3/input/JoystickCompatibilityMappings.java index 60a4e126f..ee2434d54 100644 --- a/jme3-core/src/main/java/com/jme3/input/JoystickCompatibilityMappings.java +++ b/jme3-core/src/main/java/com/jme3/input/JoystickCompatibilityMappings.java @@ -68,10 +68,10 @@ public class JoystickCompatibilityMappings { } protected static Map getMappings( String joystickName, boolean create ) { - Map result = joystickMappings.get(joystickName); + Map result = joystickMappings.get(joystickName.trim()); if( result == null && create ) { result = new HashMap(); - joystickMappings.put(joystickName,result); + joystickMappings.put(joystickName.trim(),result); } return result; } @@ -94,7 +94,7 @@ public class JoystickCompatibilityMappings { * it returns an empty map. */ public static Map getJoystickMappings( String joystickName ) { - Map result = getMappings(joystickName, false); + Map result = getMappings(joystickName.trim(), false); if( result == null ) return Collections.emptyMap(); return Collections.unmodifiableMap(result); @@ -121,7 +121,7 @@ public class JoystickCompatibilityMappings { for( Map.Entry e : p.entrySet() ) { String key = String.valueOf(e.getKey()).trim(); - int split = key.indexOf( '.' ); + int split = key.lastIndexOf( '.' ); if( split < 0 ) { logger.log(Level.WARNING, "Skipping mapping:{0}", e); continue; From a7766c68558b80bd1bec4444b85675d1c8cad457 Mon Sep 17 00:00:00 2001 From: Dokthar Date: Mon, 25 Apr 2016 20:57:48 +0200 Subject: [PATCH 2/9] joystick : added a easier way to create custom joystick/gamepad mappings : - push the joystick/gamepad button - if the wrong button is highlighted, click with the mouse on the correct button (on the gamepad gui) - this will print the string to be inserted into the joystick-mapping.properties file --- .../java/jme3test/input/TestJoystick.java | 59 +++++++++++++++++-- 1 file changed, 55 insertions(+), 4 deletions(-) diff --git a/jme3-examples/src/main/java/jme3test/input/TestJoystick.java b/jme3-examples/src/main/java/jme3test/input/TestJoystick.java index 9d9abc914..c37231ca7 100644 --- a/jme3-examples/src/main/java/jme3test/input/TestJoystick.java +++ b/jme3-examples/src/main/java/jme3test/input/TestJoystick.java @@ -1,11 +1,15 @@ package jme3test.input; import com.jme3.app.SimpleApplication; +import com.jme3.collision.CollisionResult; +import com.jme3.collision.CollisionResults; import com.jme3.font.BitmapText; import com.jme3.input.Joystick; import com.jme3.input.JoystickAxis; import com.jme3.input.JoystickButton; import com.jme3.input.RawInputListener; +import com.jme3.input.controls.ActionListener; +import com.jme3.input.controls.MouseButtonTrigger; import com.jme3.input.event.JoyAxisEvent; import com.jme3.input.event.JoyButtonEvent; import com.jme3.input.event.KeyInputEvent; @@ -16,7 +20,10 @@ import com.jme3.material.Material; import com.jme3.material.RenderState.BlendMode; import com.jme3.math.ColorRGBA; import com.jme3.math.FastMath; +import com.jme3.math.Ray; import com.jme3.math.Vector2f; +import com.jme3.math.Vector3f; +import com.jme3.renderer.Camera; import com.jme3.scene.Geometry; import com.jme3.scene.Node; import com.jme3.scene.shape.Quad; @@ -33,6 +40,7 @@ public class TestJoystick extends SimpleApplication { private GamepadView gamepad; private Node joystickInfo; private float yInfo = 0; + private JoystickButton lastButton; public static void main(String[] args){ TestJoystick app = new TestJoystick(); @@ -44,6 +52,8 @@ public class TestJoystick extends SimpleApplication { @Override public void simpleInitApp() { + getFlyByCamera().setEnabled(false); + Joystick[] joysticks = inputManager.getJoysticks(); if (joysticks == null) throw new IllegalStateException("Cannot find any joysticks!"); @@ -54,9 +64,9 @@ public class TestJoystick extends SimpleApplication { out.close(); } catch( IOException e ) { throw new RuntimeException( "Error writing joystick dump", e ); - } + } + - int gamepadSize = cam.getHeight() / 2; float scale = gamepadSize / 512.0f; gamepad = new GamepadView(); @@ -71,6 +81,18 @@ public class TestJoystick extends SimpleApplication { // Add a raw listener because it's eisier to get all joystick events // this way. inputManager.addRawInputListener( new JoystickEventListener() ); + + // add action listener for mouse click + // to all easier custom mapping + inputManager.addMapping("mouseClick", new MouseButtonTrigger(mouseInput.BUTTON_LEFT)); + inputManager.addListener(new ActionListener() { + @Override + public void onAction(String name, boolean isPressed, float tpf) { + if(isPressed){ + pickGamePad(getInputManager().getCursorPosition()); + } + } + }, "mouseClick"); } protected void dumpJoysticks( Joystick[] joysticks, PrintWriter out ) { @@ -199,7 +221,7 @@ public class TestJoystick extends SimpleApplication { leftStick = new Geometry( "leftStick", new Quad(64, 64) ); leftStick.setMaterial(m); attachChild(leftStick); - rightStick = new Geometry( "leftStick", new Quad(64, 64) ); + rightStick = new Geometry( "rightStick", new Quad(64, 64) ); rightStick.setMaterial(m); attachChild(rightStick); @@ -244,7 +266,7 @@ public class TestJoystick extends SimpleApplication { } public void setAxisValue( JoystickAxis axis, float value ) { - System.out.println( "Axis:" + axis.getName() + "=" + value ); + //System.out.println( "Axis:" + axis.getName() + "=" + value ); if( axis == axis.getJoystick().getXAxis() ) { setXAxis(value); } else if( axis == axis.getJoystick().getYAxis() ) { @@ -288,6 +310,7 @@ public class TestJoystick extends SimpleApplication { public void setButtonValue( JoystickButton button, boolean isPressed ) { System.out.println( "Button:" + button.getName() + "=" + (isPressed ? "Down" : "Up") ); setButtonValue( button.getLogicalId(), isPressed ); + lastButton = button; } protected void setButtonValue( String name, boolean isPressed ) { @@ -389,4 +412,32 @@ public class TestJoystick extends SimpleApplication { resetState(); } } + + private void pickGamePad(Vector2f mouseLoc){ + if (lastButton != null) { + CollisionResults cresults = pick(cam, mouseLoc, gamepad); + for (CollisionResult cr : cresults) { + Node n = cr.getGeometry().getParent(); + if (n != null && (n instanceof ButtonView)) { + String b = ((ButtonView) n).getName().substring("Button:".length()); + String name = lastButton.getJoystick().getName().replaceAll(" ", "\\\\ "); + String id = lastButton.getLogicalId().replaceAll(" ", "\\\\ "); + System.out.println(name + "." + id + "=" + b); + return; + } + } + } + } + + private static CollisionResults pick(Camera cam, Vector2f mouseLoc, Node node) { + CollisionResults results = new CollisionResults(); + Ray ray = new Ray(); + Vector3f pos = new Vector3f(mouseLoc.x, mouseLoc.y, -1); + Vector3f dir = new Vector3f(mouseLoc.x, mouseLoc.y, 1); + dir.subtractLocal(pos).normalizeLocal(); + ray.setOrigin(pos); + ray.setDirection(dir); + node.collideWith(ray, results); + return results; + } } From 256abb38fa6a18d1a5955d49c6a7b9ad07628c75 Mon Sep 17 00:00:00 2001 From: Dokthar Date: Mon, 25 Apr 2016 21:01:00 +0200 Subject: [PATCH 3/9] joystick : added mapping for two gamepads - the "GASIA CORP. PLAYSTATION(R)3 Controller" - the "DragonRise Inc. Generic USB Joystick" --- .../resources/joystick-mapping.properties | 45 ++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/jme3-core/src/main/resources/joystick-mapping.properties b/jme3-core/src/main/resources/joystick-mapping.properties index 73d0f504f..83a6996de 100644 --- a/jme3-core/src/main/resources/joystick-mapping.properties +++ b/jme3-core/src/main/resources/joystick-mapping.properties @@ -7,10 +7,26 @@ # interface. # # Keys with spaces in them should have those spaces escaped. -# Values do not need their spaces escaped. For example: +# Values do not need their spaces escaped : # +# Joystick\ Name.{axis/button id}={remapping id value} +# +# For example : # Some\ Joystick.0=3 # +# Mappings logicalId : +# triangle / 1 : 0 +# circle / 2 : 1 +# cross / 3 : 2 +# square / 4 : 3 +# L1 : 4 +# R1 : 5 +# L2 : 6 +# R2 : 7 +# select : 8 +# start : 9 +# Lstick button : 10 +# Rstick button : 11 # Final Fantasy XIV mapping @@ -132,3 +148,30 @@ XBOX\ 360\ For\ Windows\ (Controller).ry=rz # requires custom code to support trigger buttons but this # keeps it from confusing the .rx mapping. XBOX\ 360\ For\ Windows\ (Controller).z=trigger + +# from : Freebox controller as "DragonRise Inc. Generic USB Joystick" +DragonRise\ Inc.\ \ \ Generic\ \ \ USB\ \ Joystick.x=rx +DragonRise\ Inc.\ \ \ Generic\ \ \ USB\ \ Joystick.y=ry +DragonRise\ Inc.\ \ \ Generic\ \ \ USB\ \ Joystick.z=y +DragonRise\ Inc.\ \ \ Generic\ \ \ USB\ \ Joystick.rx=z +DragonRise\ Inc.\ \ \ Generic\ \ \ USB\ \ Joystick.rz=rz + +# from : Two dots controller as "GASIA CORP. PLAYSTATION(R)3 Controller" +# most of the button have a analog axis +# two controllers are detected at the same time instead of one +# some button mappings are missing (triangle, circle, cross) on linux +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.8=6 +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.9=7 +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.10=4 +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.11=5 +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.12=3 + +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.0=8 +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.3=9 +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.1=10 +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.2=11 + +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.5=POV +X +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.6=POV -Y +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.7=POV -X +GASIA\ CORP.\ PLAYSTATION(R)3\ Controller.4=POV +Y \ No newline at end of file From 119a076f11da94625255fef782143089b9d2bca2 Mon Sep 17 00:00:00 2001 From: Dokthar Date: Mon, 25 Apr 2016 21:05:35 +0200 Subject: [PATCH 4/9] joystick : if a button id isn't a numeric it will be set to the button index --- .../com/jme3/input/lwjgl/JInputJoyInput.java | 46 +++++++++++++++++-- 1 file changed, 41 insertions(+), 5 deletions(-) diff --git a/jme3-lwjgl/src/main/java/com/jme3/input/lwjgl/JInputJoyInput.java b/jme3-lwjgl/src/main/java/com/jme3/input/lwjgl/JInputJoyInput.java index 606ebec87..d89a07af5 100644 --- a/jme3-lwjgl/src/main/java/com/jme3/input/lwjgl/JInputJoyInput.java +++ b/jme3-lwjgl/src/main/java/com/jme3/input/lwjgl/JInputJoyInput.java @@ -1,3 +1,35 @@ +/* + * Copyright (c) 2009-2016 jMonkeyEngine + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * * Neither the name of 'jMonkeyEngine' nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + package com.jme3.input.lwjgl; import com.jme3.input.AbstractJoystick; @@ -60,8 +92,7 @@ public class JInputJoyInput implements JoyInput { logger.log(Level.FINE, "Attempting to create joystick for: \"{0}\"", c); // Try to create it like a joystick - JInputJoystick stick = new JInputJoystick(inputManager, this, c, list.size(), - c.getName()); + JInputJoystick stick = new JInputJoystick(inputManager, this, c, list.size(), c.getName()); for( Component comp : c.getComponents() ) { stick.addComponent(comp); } @@ -210,13 +241,18 @@ public class JInputJoyInput implements JoyInput { Identifier id = comp.getIdentifier(); if( !(id instanceof Button) ) { - throw new IllegalArgumentException( "Component is not an axis:" + comp ); + throw new IllegalArgumentException( "Component is not an button:" + comp ); } String name = comp.getName(); String original = id.getName(); + try { + Integer.parseInt(original); + } catch (NumberFormatException e){ + original = String.valueOf(buttonIndex.size()); + } String logicalId = JoystickCompatibilityMappings.remapComponent( controller.getName(), original ); - if( name != original ) { + if( logicalId != original ) { logger.log(Level.FINE, "Remapped:" + original + " to:" + logicalId); } @@ -238,7 +274,7 @@ public class JInputJoyInput implements JoyInput { String name = comp.getName(); String original = id.getName(); String logicalId = JoystickCompatibilityMappings.remapComponent( controller.getName(), original ); - if( name != original ) { + if( logicalId != original ) { logger.log(Level.FINE, "Remapped:" + original + " to:" + logicalId); } From 5facee58e6ed5274545bbcac4ec9ecf98264199d Mon Sep 17 00:00:00 2001 From: Dokthar Date: Mon, 25 Apr 2016 22:59:32 +0200 Subject: [PATCH 5/9] joystick : revert commented out sysout on axis update --- jme3-examples/src/main/java/jme3test/input/TestJoystick.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jme3-examples/src/main/java/jme3test/input/TestJoystick.java b/jme3-examples/src/main/java/jme3test/input/TestJoystick.java index c37231ca7..29a9166fe 100644 --- a/jme3-examples/src/main/java/jme3test/input/TestJoystick.java +++ b/jme3-examples/src/main/java/jme3test/input/TestJoystick.java @@ -266,7 +266,7 @@ public class TestJoystick extends SimpleApplication { } public void setAxisValue( JoystickAxis axis, float value ) { - //System.out.println( "Axis:" + axis.getName() + "=" + value ); + System.out.println( "Axis:" + axis.getName() + "=" + value ); if( axis == axis.getJoystick().getXAxis() ) { setXAxis(value); } else if( axis == axis.getJoystick().getYAxis() ) { From adc7ad757e752c29526169e52319fc3063b4e778 Mon Sep 17 00:00:00 2001 From: iwgeric Date: Mon, 25 Apr 2016 22:35:51 -0400 Subject: [PATCH 6/9] Move OpenALSoft source files to build directory Move the zip file downloaded from OpenALSoft and the extraction folder to within the build folder so that are ignored by git and cleaned appropriately. --- jme3-android-native/openalsoft.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jme3-android-native/openalsoft.gradle b/jme3-android-native/openalsoft.gradle index 22e47a65a..5ae9ec3d7 100644 --- a/jme3-android-native/openalsoft.gradle +++ b/jme3-android-native/openalsoft.gradle @@ -5,7 +5,7 @@ String openALSoftZipFile = 'OpenALSoft.zip' // OpenAL Soft directory the download is extracted into // Typically, the downloaded OpenAL Soft zip file will extract to a directory // called "openal-soft" -String openALSoftFolder = 'openal-soft' +String openALSoftFolder = 'openal-soft-e5016f8' //Working directories for the ndk build. String openalsoftBuildDir = "${buildDir}" + File.separator + 'openalsoft' @@ -21,19 +21,19 @@ String openalsoftJmeAndroidPath = 'src/native/jme_openalsoft' // Download external source files if not available task downloadOpenALSoft(type: MyDownload) { sourceUrl = openALSoftUrl - target = file(openALSoftZipFile) + target = file(openalsoftBuildDir + File.separator + openALSoftZipFile) } // Unzip external source files task unzipOpenALSoft(type: Copy) { - def zipFile = file(openALSoftZipFile) - def outputDir = file(".") + def zipFile = file(openalsoftBuildDir + File.separator + openALSoftZipFile) + def outputDir = file(openalsoftBuildDir) from zipTree(zipFile) into outputDir } unzipOpenALSoft.dependsOn { - def zipFilePath = project.projectDir.absolutePath + File.separator + openALSoftZipFile + def zipFilePath = openalsoftBuildDir + File.separator + openALSoftZipFile def zipFile = new File(zipFilePath) // println "zipFile path: " + zipFile.absolutePath // println "zipFile exists: " + zipFile.exists() @@ -44,7 +44,7 @@ unzipOpenALSoft.dependsOn { // Copy external source files to jni directory task copyOpenALSoft(type: Copy) { - def sourceDir = file(openALSoftFolder) + def sourceDir = file(openalsoftBuildDir + File.separator + openALSoftFolder) def outputDir = file(openalsoftBuildJniDir) // println "copyOpenALSoft sourceDir: " + sourceDir // println "copyOpenALSoft outputDir: " + outputDir From 3e122c96859fe3116a62bde4ad4d1dfb2bf3558b Mon Sep 17 00:00:00 2001 From: iwgeric Date: Mon, 25 Apr 2016 22:36:40 -0400 Subject: [PATCH 7/9] Update OpenALSoft native libraries --- .../openalsoft/arm64-v8a/libopenalsoftjme.so | Bin 510048 -> 461048 bytes .../armeabi-v7a/libopenalsoftjme.so | Bin 263740 -> 259692 bytes .../openalsoft/armeabi/libopenalsoftjme.so | Bin 280120 -> 280164 bytes .../libs/openalsoft/mips/libopenalsoftjme.so | Bin 565204 -> 629660 bytes .../openalsoft/mips64/libopenalsoftjme.so | Bin 730096 -> 648328 bytes .../libs/openalsoft/x86/libopenalsoftjme.so | Bin 407436 -> 603692 bytes .../openalsoft/x86_64/libopenalsoftjme.so | Bin 498056 -> 551536 bytes 7 files changed, 0 insertions(+), 0 deletions(-) diff --git a/jme3-android-native/libs/openalsoft/arm64-v8a/libopenalsoftjme.so b/jme3-android-native/libs/openalsoft/arm64-v8a/libopenalsoftjme.so index 92b07fb834b7a1c573e681527a8ba24e85cab3cf..907bd76ec1606a1aaaf2772799dbedb7b8e4d430 100755 GIT binary patch literal 461048 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