|
|
|
@ -29,38 +29,41 @@ |
|
|
|
|
* 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.niftygui; |
|
|
|
|
|
|
|
|
|
import com.jme3.input.InputManager; |
|
|
|
|
import com.jme3.input.KeyInput; |
|
|
|
|
import com.jme3.input.RawInputListener; |
|
|
|
|
import com.jme3.input.SoftTextDialogInput; |
|
|
|
|
import com.jme3.input.controls.SoftTextDialogInputListener; |
|
|
|
|
import com.jme3.input.event.*; |
|
|
|
|
import com.jme3.system.JmeSystem; |
|
|
|
|
import de.lessvoid.nifty.Nifty; |
|
|
|
|
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.input.keyboard.KeyboardInputEvent; |
|
|
|
|
import de.lessvoid.nifty.spi.input.InputSystem; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.logging.Level; |
|
|
|
|
import java.util.logging.Logger; |
|
|
|
|
|
|
|
|
|
public class InputSystemJme implements InputSystem, RawInputListener { |
|
|
|
|
|
|
|
|
|
private final ArrayList<InputEvent> inputQueue = new ArrayList<InputEvent>(); |
|
|
|
|
|
|
|
|
|
private InputManager inputManager; |
|
|
|
|
|
|
|
|
|
private boolean isDragging = false, niftyOwnsDragging = false; |
|
|
|
|
private boolean pressed = false; |
|
|
|
|
private int buttonIndex; |
|
|
|
|
private int x, y; |
|
|
|
|
private int height; |
|
|
|
|
|
|
|
|
|
private boolean shiftDown = false; |
|
|
|
|
private boolean ctrlDown = false; |
|
|
|
|
|
|
|
|
|
private boolean ctrlDown = false; |
|
|
|
|
private Nifty nifty; |
|
|
|
|
|
|
|
|
|
public InputSystemJme(InputManager inputManager){ |
|
|
|
|
public InputSystemJme(InputManager inputManager) { |
|
|
|
|
this.inputManager = inputManager; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -75,17 +78,17 @@ public class InputSystemJme implements InputSystem, RawInputListener { |
|
|
|
|
* @param height The height of the viewport. Used to convert |
|
|
|
|
* buttom-left origin to upper-left origin. |
|
|
|
|
*/ |
|
|
|
|
public void setHeight(int height){ |
|
|
|
|
public void setHeight(int 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(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -96,30 +99,35 @@ public class InputSystemJme implements InputSystem, RawInputListener { |
|
|
|
|
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; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
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) { |
|
|
|
@ -127,8 +135,8 @@ public class InputSystemJme implements InputSystem, RawInputListener { |
|
|
|
|
y = height - evt.getY(); |
|
|
|
|
nic.processMouseEvent(x, y, evt.getDeltaWheel(), buttonIndex, pressed); |
|
|
|
|
// if (nic.processMouseEvent(niftyEvt) /*|| nifty.getCurrentScreen().isMouseOverElement()*/){
|
|
|
|
|
// Do not consume motion events
|
|
|
|
|
//evt.setConsumed();
|
|
|
|
|
// Do not consume motion events
|
|
|
|
|
//evt.setConsumed();
|
|
|
|
|
// }
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -140,8 +148,8 @@ public class InputSystemJme implements InputSystem, RawInputListener { |
|
|
|
|
pressed = evt.isPressed(); |
|
|
|
|
|
|
|
|
|
// Mouse button raised. End dragging
|
|
|
|
|
if (wasPressed && !pressed){ |
|
|
|
|
if (!niftyOwnsDragging){ |
|
|
|
|
if (wasPressed && !pressed) { |
|
|
|
|
if (!niftyOwnsDragging) { |
|
|
|
|
forwardToNifty = false; |
|
|
|
|
} |
|
|
|
|
isDragging = false; |
|
|
|
@ -149,18 +157,23 @@ public class InputSystemJme implements InputSystem, RawInputListener { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
boolean consumed = false; |
|
|
|
|
if (forwardToNifty){ |
|
|
|
|
if (forwardToNifty) { |
|
|
|
|
consumed = nic.processMouseEvent(x, y, 0, buttonIndex, pressed); |
|
|
|
|
if (consumed){ |
|
|
|
|
if (consumed) { |
|
|
|
|
evt.setConsumed(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Mouse button pressed. Begin dragging
|
|
|
|
|
if (!wasPressed && pressed){ |
|
|
|
|
if (!wasPressed && pressed) { |
|
|
|
|
isDragging = true; |
|
|
|
|
niftyOwnsDragging = consumed; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (consumed && pressed) { |
|
|
|
|
processSoftKeyboard(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void onKeyEventQueued(KeyInputEvent evt, NiftyInputConsumer nic) { |
|
|
|
@ -173,27 +186,27 @@ public class InputSystemJme implements InputSystem, RawInputListener { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
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(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void onMouseMotionEvent(MouseMotionEvent evt) { |
|
|
|
|
// 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); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
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); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -215,21 +228,47 @@ public class InputSystemJme implements InputSystem, RawInputListener { |
|
|
|
|
public void forwardEvents(NiftyInputConsumer nic) { |
|
|
|
|
int queueSize = inputQueue.size(); |
|
|
|
|
|
|
|
|
|
for (int i = 0; i < queueSize; i++){ |
|
|
|
|
for (int i = 0; i < queueSize; 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(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
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); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|