|
@@ -29,38 +29,41 @@
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
*/
|
|
-
|
|
|
|
package com.jme3.niftygui;
|
|
package com.jme3.niftygui;
|
|
|
|
|
|
import com.jme3.input.InputManager;
|
|
import com.jme3.input.InputManager;
|
|
import com.jme3.input.KeyInput;
|
|
import com.jme3.input.KeyInput;
|
|
import com.jme3.input.RawInputListener;
|
|
import com.jme3.input.RawInputListener;
|
|
|
|
+import com.jme3.input.SoftTextDialogInput;
|
|
|
|
+import com.jme3.input.controls.SoftTextDialogInputListener;
|
|
import com.jme3.input.event.*;
|
|
import com.jme3.input.event.*;
|
|
|
|
+import com.jme3.system.JmeSystem;
|
|
import de.lessvoid.nifty.Nifty;
|
|
import de.lessvoid.nifty.Nifty;
|
|
import de.lessvoid.nifty.NiftyInputConsumer;
|
|
import de.lessvoid.nifty.NiftyInputConsumer;
|
|
|
|
+import de.lessvoid.nifty.controls.TextField;
|
|
|
|
+import de.lessvoid.nifty.controls.nullobjects.TextFieldNull;
|
|
|
|
+import de.lessvoid.nifty.elements.Element;
|
|
import de.lessvoid.nifty.tools.resourceloader.NiftyResourceLoader;
|
|
import de.lessvoid.nifty.tools.resourceloader.NiftyResourceLoader;
|
|
import de.lessvoid.nifty.input.keyboard.KeyboardInputEvent;
|
|
import de.lessvoid.nifty.input.keyboard.KeyboardInputEvent;
|
|
import de.lessvoid.nifty.spi.input.InputSystem;
|
|
import de.lessvoid.nifty.spi.input.InputSystem;
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
|
|
+import java.util.logging.Level;
|
|
|
|
+import java.util.logging.Logger;
|
|
|
|
|
|
public class InputSystemJme implements InputSystem, RawInputListener {
|
|
public class InputSystemJme implements InputSystem, RawInputListener {
|
|
|
|
|
|
private final ArrayList<InputEvent> inputQueue = new ArrayList<InputEvent>();
|
|
private final ArrayList<InputEvent> inputQueue = new ArrayList<InputEvent>();
|
|
-
|
|
|
|
private InputManager inputManager;
|
|
private InputManager inputManager;
|
|
-
|
|
|
|
private boolean isDragging = false, niftyOwnsDragging = false;
|
|
private boolean isDragging = false, niftyOwnsDragging = false;
|
|
private boolean pressed = false;
|
|
private boolean pressed = false;
|
|
private int buttonIndex;
|
|
private int buttonIndex;
|
|
private int x, y;
|
|
private int x, y;
|
|
private int height;
|
|
private int height;
|
|
-
|
|
|
|
private boolean shiftDown = false;
|
|
private boolean shiftDown = false;
|
|
- private boolean ctrlDown = false;
|
|
|
|
-
|
|
|
|
|
|
+ private boolean ctrlDown = false;
|
|
private Nifty nifty;
|
|
private Nifty nifty;
|
|
|
|
|
|
- public InputSystemJme(InputManager inputManager){
|
|
|
|
|
|
+ public InputSystemJme(InputManager inputManager) {
|
|
this.inputManager = inputManager;
|
|
this.inputManager = inputManager;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -75,73 +78,78 @@ public class InputSystemJme implements InputSystem, RawInputListener {
|
|
* @param height The height of the viewport. Used to convert
|
|
* @param height The height of the viewport. Used to convert
|
|
* buttom-left origin to upper-left origin.
|
|
* buttom-left origin to upper-left origin.
|
|
*/
|
|
*/
|
|
- public void setHeight(int height){
|
|
|
|
|
|
+ public void setHeight(int height) {
|
|
this.height = height;
|
|
this.height = height;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMousePosition(int x, int y){
|
|
|
|
|
|
+ public void setMousePosition(int x, int y) {
|
|
}
|
|
}
|
|
|
|
|
|
- public void beginInput(){
|
|
|
|
|
|
+ public void beginInput() {
|
|
}
|
|
}
|
|
|
|
|
|
- public void endInput(){
|
|
|
|
|
|
+ public void endInput() {
|
|
boolean result = nifty.update();
|
|
boolean result = nifty.update();
|
|
}
|
|
}
|
|
|
|
|
|
- private void onTouchEventQueued(TouchEvent evt, NiftyInputConsumer nic) {
|
|
|
|
|
|
+ private void onTouchEventQueued(TouchEvent evt, NiftyInputConsumer nic) {
|
|
boolean consumed = false;
|
|
boolean consumed = false;
|
|
|
|
|
|
x = (int) evt.getX();
|
|
x = (int) evt.getX();
|
|
y = (int) (height - evt.getY());
|
|
y = (int) (height - evt.getY());
|
|
|
|
|
|
- if (!inputManager.getSimulateMouse()) {
|
|
|
|
- switch (evt.getType()) {
|
|
|
|
- case DOWN:
|
|
|
|
- consumed = nic.processMouseEvent(x, y, 0, 0, true);
|
|
|
|
- isDragging = true;
|
|
|
|
- niftyOwnsDragging = consumed;
|
|
|
|
- if (consumed){
|
|
|
|
- evt.setConsumed();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- break;
|
|
|
|
-
|
|
|
|
- case UP:
|
|
|
|
- if (niftyOwnsDragging){
|
|
|
|
- consumed = nic.processMouseEvent(x, y, 0, 0, false);
|
|
|
|
- if (consumed){
|
|
|
|
- evt.setConsumed();
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- isDragging = false;
|
|
|
|
- niftyOwnsDragging = false;
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ if (!inputManager.getSimulateMouse()) {
|
|
|
|
+ switch (evt.getType()) {
|
|
|
|
+ case DOWN:
|
|
|
|
+ consumed = nic.processMouseEvent(x, y, 0, 0, true);
|
|
|
|
+ isDragging = true;
|
|
|
|
+ niftyOwnsDragging = consumed;
|
|
|
|
+ if (consumed) {
|
|
|
|
+ evt.setConsumed();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case UP:
|
|
|
|
+ if (niftyOwnsDragging) {
|
|
|
|
+ consumed = nic.processMouseEvent(x, y, 0, 0, false);
|
|
|
|
+ if (consumed) {
|
|
|
|
+ evt.setConsumed();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ isDragging = false;
|
|
|
|
+ niftyOwnsDragging = false;
|
|
|
|
+
|
|
|
|
+ if (consumed) {
|
|
|
|
+ processSoftKeyboard();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
private void onMouseMotionEventQueued(MouseMotionEvent evt, NiftyInputConsumer nic) {
|
|
private void onMouseMotionEventQueued(MouseMotionEvent evt, NiftyInputConsumer nic) {
|
|
x = evt.getX();
|
|
x = evt.getX();
|
|
y = height - evt.getY();
|
|
y = height - evt.getY();
|
|
nic.processMouseEvent(x, y, evt.getDeltaWheel(), buttonIndex, pressed);
|
|
nic.processMouseEvent(x, y, evt.getDeltaWheel(), buttonIndex, pressed);
|
|
// if (nic.processMouseEvent(niftyEvt) /*|| nifty.getCurrentScreen().isMouseOverElement()*/){
|
|
// if (nic.processMouseEvent(niftyEvt) /*|| nifty.getCurrentScreen().isMouseOverElement()*/){
|
|
- // Do not consume motion events
|
|
|
|
- //evt.setConsumed();
|
|
|
|
|
|
+ // Do not consume motion events
|
|
|
|
+ //evt.setConsumed();
|
|
// }
|
|
// }
|
|
}
|
|
}
|
|
|
|
|
|
private void onMouseButtonEventQueued(MouseButtonEvent evt, NiftyInputConsumer nic) {
|
|
private void onMouseButtonEventQueued(MouseButtonEvent evt, NiftyInputConsumer nic) {
|
|
boolean wasPressed = pressed;
|
|
boolean wasPressed = pressed;
|
|
boolean forwardToNifty = true;
|
|
boolean forwardToNifty = true;
|
|
-
|
|
|
|
|
|
+
|
|
buttonIndex = evt.getButtonIndex();
|
|
buttonIndex = evt.getButtonIndex();
|
|
pressed = evt.isPressed();
|
|
pressed = evt.isPressed();
|
|
-
|
|
|
|
|
|
+
|
|
// Mouse button raised. End dragging
|
|
// Mouse button raised. End dragging
|
|
- if (wasPressed && !pressed){
|
|
|
|
- if (!niftyOwnsDragging){
|
|
|
|
|
|
+ if (wasPressed && !pressed) {
|
|
|
|
+ if (!niftyOwnsDragging) {
|
|
forwardToNifty = false;
|
|
forwardToNifty = false;
|
|
}
|
|
}
|
|
isDragging = false;
|
|
isDragging = false;
|
|
@@ -149,18 +157,23 @@ public class InputSystemJme implements InputSystem, RawInputListener {
|
|
}
|
|
}
|
|
|
|
|
|
boolean consumed = false;
|
|
boolean consumed = false;
|
|
- if (forwardToNifty){
|
|
|
|
|
|
+ if (forwardToNifty) {
|
|
consumed = nic.processMouseEvent(x, y, 0, buttonIndex, pressed);
|
|
consumed = nic.processMouseEvent(x, y, 0, buttonIndex, pressed);
|
|
- if (consumed){
|
|
|
|
|
|
+ if (consumed) {
|
|
evt.setConsumed();
|
|
evt.setConsumed();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
// Mouse button pressed. Begin dragging
|
|
// Mouse button pressed. Begin dragging
|
|
- if (!wasPressed && pressed){
|
|
|
|
|
|
+ if (!wasPressed && pressed) {
|
|
isDragging = true;
|
|
isDragging = true;
|
|
niftyOwnsDragging = consumed;
|
|
niftyOwnsDragging = consumed;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ if (consumed && pressed) {
|
|
|
|
+ processSoftKeyboard();
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
private void onKeyEventQueued(KeyInputEvent evt, NiftyInputConsumer nic) {
|
|
private void onKeyEventQueued(KeyInputEvent evt, NiftyInputConsumer nic) {
|
|
@@ -171,65 +184,91 @@ public class InputSystemJme implements InputSystem, RawInputListener {
|
|
} else if (code == KeyInput.KEY_LCONTROL || code == KeyInput.KEY_RCONTROL) {
|
|
} else if (code == KeyInput.KEY_LCONTROL || code == KeyInput.KEY_RCONTROL) {
|
|
ctrlDown = evt.isPressed();
|
|
ctrlDown = evt.isPressed();
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
KeyboardInputEvent keyEvt = new KeyboardInputEvent(code,
|
|
KeyboardInputEvent keyEvt = new KeyboardInputEvent(code,
|
|
- evt.getKeyChar(),
|
|
|
|
- evt.isPressed(),
|
|
|
|
- shiftDown,
|
|
|
|
- ctrlDown);
|
|
|
|
|
|
+ evt.getKeyChar(),
|
|
|
|
+ evt.isPressed(),
|
|
|
|
+ shiftDown,
|
|
|
|
+ ctrlDown);
|
|
|
|
|
|
- if (nic.processKeyboardEvent(keyEvt)){
|
|
|
|
|
|
+ if (nic.processKeyboardEvent(keyEvt)) {
|
|
evt.setConsumed();
|
|
evt.setConsumed();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public void onMouseMotionEvent(MouseMotionEvent evt) {
|
|
public void onMouseMotionEvent(MouseMotionEvent evt) {
|
|
// Only forward the event if there's actual motion involved.
|
|
// Only forward the event if there's actual motion involved.
|
|
- if (inputManager.isCursorVisible() && (evt.getDX() != 0 ||
|
|
|
|
- evt.getDY() != 0 ||
|
|
|
|
- evt.getDeltaWheel() != 0)){
|
|
|
|
|
|
+ if (inputManager.isCursorVisible() && (evt.getDX() != 0
|
|
|
|
+ || evt.getDY() != 0
|
|
|
|
+ || evt.getDeltaWheel() != 0)) {
|
|
inputQueue.add(evt);
|
|
inputQueue.add(evt);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
public void onMouseButtonEvent(MouseButtonEvent evt) {
|
|
public void onMouseButtonEvent(MouseButtonEvent evt) {
|
|
- if (inputManager.isCursorVisible() && evt.getButtonIndex() >= 0 && evt.getButtonIndex() <= 2){
|
|
|
|
|
|
+ if (inputManager.isCursorVisible() && evt.getButtonIndex() >= 0 && evt.getButtonIndex() <= 2) {
|
|
inputQueue.add(evt);
|
|
inputQueue.add(evt);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public void onJoyAxisEvent(JoyAxisEvent evt) {
|
|
public void onJoyAxisEvent(JoyAxisEvent evt) {
|
|
}
|
|
}
|
|
|
|
|
|
public void onJoyButtonEvent(JoyButtonEvent evt) {
|
|
public void onJoyButtonEvent(JoyButtonEvent evt) {
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public void onKeyEvent(KeyInputEvent evt) {
|
|
public void onKeyEvent(KeyInputEvent evt) {
|
|
inputQueue.add(evt);
|
|
inputQueue.add(evt);
|
|
}
|
|
}
|
|
-
|
|
|
|
- public void onTouchEvent(TouchEvent evt) {
|
|
|
|
|
|
+
|
|
|
|
+ public void onTouchEvent(TouchEvent evt) {
|
|
inputQueue.add(evt);
|
|
inputQueue.add(evt);
|
|
}
|
|
}
|
|
|
|
|
|
public void forwardEvents(NiftyInputConsumer nic) {
|
|
public void forwardEvents(NiftyInputConsumer nic) {
|
|
int queueSize = inputQueue.size();
|
|
int queueSize = inputQueue.size();
|
|
|
|
|
|
- for (int i = 0; i < queueSize; i++){
|
|
|
|
|
|
+ for (int i = 0; i < queueSize; i++) {
|
|
InputEvent evt = inputQueue.get(i);
|
|
InputEvent evt = inputQueue.get(i);
|
|
- if (evt instanceof MouseMotionEvent){
|
|
|
|
- onMouseMotionEventQueued( (MouseMotionEvent)evt, nic);
|
|
|
|
- }else if (evt instanceof MouseButtonEvent){
|
|
|
|
- onMouseButtonEventQueued( (MouseButtonEvent)evt, nic);
|
|
|
|
- }else if (evt instanceof KeyInputEvent){
|
|
|
|
- onKeyEventQueued( (KeyInputEvent)evt, nic);
|
|
|
|
- }else if (evt instanceof TouchEvent){
|
|
|
|
- onTouchEventQueued( (TouchEvent)evt, nic);
|
|
|
|
|
|
+ if (evt instanceof MouseMotionEvent) {
|
|
|
|
+ onMouseMotionEventQueued((MouseMotionEvent) evt, nic);
|
|
|
|
+ } else if (evt instanceof MouseButtonEvent) {
|
|
|
|
+ onMouseButtonEventQueued((MouseButtonEvent) evt, nic);
|
|
|
|
+ } else if (evt instanceof KeyInputEvent) {
|
|
|
|
+ onKeyEventQueued((KeyInputEvent) evt, nic);
|
|
|
|
+ } else if (evt instanceof TouchEvent) {
|
|
|
|
+ onTouchEventQueued((TouchEvent) evt, nic);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
inputQueue.clear();
|
|
inputQueue.clear();
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ private void processSoftKeyboard() {
|
|
|
|
+ SoftTextDialogInput softTextDialogInput = JmeSystem.getSoftTextDialogInput();
|
|
|
|
+ if (softTextDialogInput != null) {
|
|
|
|
+
|
|
|
|
+ Element element = nifty.getCurrentScreen().getFocusHandler().getKeyboardFocusElement();
|
|
|
|
+ if (element != null) {
|
|
|
|
+ final TextField textField = element.getNiftyControl(TextField.class);
|
|
|
|
+ if (textField != null && !(textField instanceof TextFieldNull)) {
|
|
|
|
+ Logger.getLogger(InputSystemJme.class.getName()).log(Level.INFO, "Current TextField: {0}", textField.getId());
|
|
|
|
+ String initialValue = textField.getText();
|
|
|
|
+ if (initialValue == null) {
|
|
|
|
+ initialValue = "";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ softTextDialogInput.requestDialog(SoftTextDialogInput.TEXT_ENTRY_DIALOG, "Enter Text", initialValue, new SoftTextDialogInputListener() {
|
|
|
|
+
|
|
|
|
+ public void onSoftText(int action, String text) {
|
|
|
|
+ if (action == SoftTextDialogInputListener.COMPLETE) {
|
|
|
|
+ textField.setText(text);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
}
|
|
}
|