diff options
author | endolf <[email protected]> | 2005-08-29 16:24:03 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2005-08-29 16:24:03 +0000 |
commit | 09e48b0ab2732097d697a4924c64d4bd1ec0fb77 (patch) | |
tree | d116ef836e102e99ed22e6cafe93311fa641e7be | |
parent | 0e73adaf789cc2edcfd7d746372fbbca1af5b735 (diff) |
Changes for rumblers, it all works now, but had to do some nasty stuffforcefeedback
to get init, cleanup, and rumble all running from the same thread
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/branches/forcefeedback@119 e343933a-64c8-49c5-92b1-88f2ce3e89e8
3 files changed, 96 insertions, 19 deletions
diff --git a/plugins/linux/src/java/net/java/games/input/EventInterfaceTest.java b/plugins/linux/src/java/net/java/games/input/EventInterfaceTest.java index 85d0962..5abbcdb 100644 --- a/plugins/linux/src/java/net/java/games/input/EventInterfaceTest.java +++ b/plugins/linux/src/java/net/java/games/input/EventInterfaceTest.java @@ -83,7 +83,7 @@ public class EventInterfaceTest { EventInterface.cleanup(i); }*/ - LinuxEnvironmentPlugin.cleanup(); + //LinuxEnvironmentPlugin.cleanup(); } public static void main(String args[]) { diff --git a/plugins/linux/src/java/net/java/games/input/LinuxDeviceRumbler.java b/plugins/linux/src/java/net/java/games/input/LinuxDeviceRumbler.java index f9889c1..dfa6d27 100644 --- a/plugins/linux/src/java/net/java/games/input/LinuxDeviceRumbler.java +++ b/plugins/linux/src/java/net/java/games/input/LinuxDeviceRumbler.java @@ -18,7 +18,7 @@ public class LinuxDeviceRumbler implements Rumbler { public void rumble(float intensity) { // TODO Auto-generated method stub - EventInterface.rumble(deviceID, intensity); + LinuxEnvironmentPlugin.rumble(deviceID, intensity); } public String getAxisName() { diff --git a/plugins/linux/src/java/net/java/games/input/LinuxEnvironmentPlugin.java b/plugins/linux/src/java/net/java/games/input/LinuxEnvironmentPlugin.java index 017773d..235d2b1 100644 --- a/plugins/linux/src/java/net/java/games/input/LinuxEnvironmentPlugin.java +++ b/plugins/linux/src/java/net/java/games/input/LinuxEnvironmentPlugin.java @@ -35,19 +35,67 @@ public class LinuxEnvironmentPlugin extends ControllerEnvironment implements Plu /** List of controllers */ private Controller[] controllers; + private static Object workerThreadMonitor = new Object(); + private static boolean shutdown = false; + private static Object shutdownThreadMonitor = new Object(); + private static boolean cleanupDone = false; + private static int rumbler; + private static float force; /** Creates a new instance of LinuxEnvironmentPlugin */ public LinuxEnvironmentPlugin() { if(isSupported()) { - Runtime.runFinalizersOnExit(true); - /*Runtime.getRuntime().addShutdownHook(new Thread() { - public void run() { - cleanup(); - } - });*/ - LinuxNativeTypesMap.init(); - EventInterface.eventInit(); - createControllers(); + + LinuxNativeTypesMap.init(); + System.out.println("Creating shutdown thread"); + System.out.flush(); + Thread initShutdownThread = new Thread() { + public void run() { + EventInterface.eventInit(); + synchronized(workerThreadMonitor) { + while(!shutdown) { + System.out.println("Waiting on monitor"); + System.out.flush(); + try { + workerThreadMonitor.wait(); + } catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + if(rumbler>=0) { + EventInterface.rumble(rumbler,force); + } + } + } + System.out.println("Cleaning up from shutdown thread"); + realCleanup(); + cleanupDone = true; + synchronized (shutdownThreadMonitor) { + shutdownThreadMonitor.notifyAll(); + } + } + }; + + initShutdownThread.setDaemon(true); + initShutdownThread.start(); + + System.out.println("Shutdown thread created and run"); + + Runtime.getRuntime().addShutdownHook(new Thread() { + public void run() { + cleanup(); + } + }); + + //Make sure the init thread has got the event interface inited + try { + Thread.sleep(100); + } catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + createControllers(); + System.out.println("Created the controllers"); } else { controllers = new Controller[0]; } @@ -153,7 +201,36 @@ public class LinuxEnvironmentPlugin extends ControllerEnvironment implements Plu return device; } - public static void cleanup() { + private static void cleanup() { + shutdown = true; + System.out.println("Trying to notify for cleanup"); + System.out.flush(); + synchronized (workerThreadMonitor) { + System.out.println("Notifying clean up thread"); + System.out.flush(); + workerThreadMonitor.notify(); + } + + /*try { + Thread.sleep(2000); + } catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + }*/ + + while(!cleanupDone) { + synchronized (shutdownThreadMonitor) { + try { + shutdownThreadMonitor.wait(); + } catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + } + } + + private void realCleanup() { //Give the rumblers chance to cleanup try { Thread.sleep(1000); @@ -167,13 +244,13 @@ public class LinuxEnvironmentPlugin extends ControllerEnvironment implements Plu } } - protected void finalize() throws Throwable { - // TODO Auto-generated method stub - System.out.println("Environment finalize"); - for(int i=0;i<EventInterface.getNumDevices();i++) { - EventInterface.cleanup(i); + public static void rumble(int rumblerNo, float forceValue) { + rumbler = rumblerNo; + force = forceValue; + synchronized (workerThreadMonitor) { + System.out.println("Notifying clean up thread"); + System.out.flush(); + workerThreadMonitor.notify(); } - super.finalize(); } - } |