Browse Source

- remove input workaround altogether

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8664 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
nor..67 13 years ago
parent
commit
e9937936d1

+ 51 - 39
jme3-core/src/com/jme3/gde/core/sceneviewer/SceneViewerTopComponent.java

@@ -90,45 +90,57 @@ public final class SceneViewerTopComponent extends TopComponent {
 
         //We add a mouse wheel listener to the top conmponent in order to correctly dispatch the event ot the cam controller
         //the oGLPanel may naver have the focus.
-        addMouseWheelListener(new MouseWheelListener() {
-
-            public void mouseWheelMoved(final MouseWheelEvent e) {
-                SceneApplication.getApplication().enqueue(new Callable<Void>() {
-
-                    public Void call() throws Exception {
-                        String action = "MouseWheel-";
-                        if (e.getWheelRotation() < 0) {
-                            action = "MouseWheel";
-                        }
-                        app.getActiveCameraController().onAnalog(action, e.getWheelRotation(), 0);
-                        return null;
-                    }
-                });
-            }
-        });
-        addKeyListener(new KeyListener() {
-
-            public void keyTyped(KeyEvent evt) {
-            }
-
-            public void keyPressed(KeyEvent evt) {
-                int code = AwtKeyInput.convertAwtKey(evt.getKeyCode());
-                KeyInputEvent keyEvent = new KeyInputEvent(code, evt.getKeyChar(), true, false);
-                keyEvent.setTime(evt.getWhen());
-                if (app.getActiveCameraController() != null) {
-                    app.getActiveCameraController().onKeyEvent(keyEvent);
-                }
-            }
-
-            public void keyReleased(KeyEvent evt) {
-                int code = AwtKeyInput.convertAwtKey(evt.getKeyCode());
-                KeyInputEvent keyEvent = new KeyInputEvent(code, evt.getKeyChar(), false, false);
-                keyEvent.setTime(evt.getWhen());
-                if (app.getActiveCameraController() != null) {
-                    app.getActiveCameraController().onKeyEvent(keyEvent);
-                }
-            }
-        });
+//        addMouseWheelListener(new MouseWheelListener() {
+//
+//            public void mouseWheelMoved(final MouseWheelEvent e) {
+//                SceneApplication.getApplication().enqueue(new Callable<Void>() {
+//
+//                    public Void call() throws Exception {
+//                        String action = "MouseWheel-";
+//                        if (e.getWheelRotation() < 0) {
+//                            action = "MouseWheel";
+//                        }
+//                        app.getActiveCameraController().onAnalog(action, e.getWheelRotation(), 0);
+//                        return null;
+//                    }
+//                });
+//            }
+//        });
+//        addKeyListener(new KeyListener() {
+//
+//            public void keyTyped(KeyEvent evt) {
+//            }
+//
+//            public void keyPressed(final KeyEvent evt) {
+//                SceneApplication.getApplication().enqueue(new Callable<Void>() {
+//
+//                    public Void call() throws Exception {
+//                        int code = AwtKeyInput.convertAwtKey(evt.getKeyCode());
+//                        KeyInputEvent keyEvent = new KeyInputEvent(code, evt.getKeyChar(), true, false);
+//                        keyEvent.setTime(evt.getWhen());
+//                        if (app.getActiveCameraController() != null) {
+//                            app.getActiveCameraController().onKeyEvent(keyEvent);
+//                        }
+//                        return null;
+//                    }
+//                });
+//            }
+//
+//            public void keyReleased(final KeyEvent evt) {
+//                SceneApplication.getApplication().enqueue(new Callable<Void>() {
+//
+//                    public Void call() throws Exception {
+//                        int code = AwtKeyInput.convertAwtKey(evt.getKeyCode());
+//                        KeyInputEvent keyEvent = new KeyInputEvent(code, evt.getKeyChar(), false, false);
+//                        keyEvent.setTime(evt.getWhen());
+//                        if (app.getActiveCameraController() != null) {
+//                            app.getActiveCameraController().onKeyEvent(keyEvent);
+//                        }
+//                        return null;
+//                    }
+//                });
+//            }
+//        });
 
     }