mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
Merge branch 'master' into FixEncodingAndroidCompatible
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
package forge.adventure.scene;
|
package forge.adventure.scene;
|
||||||
|
|
||||||
import com.badlogic.gdx.Gdx;
|
import com.badlogic.gdx.Gdx;
|
||||||
|
import com.badlogic.gdx.Input;
|
||||||
import com.badlogic.gdx.controllers.Controller;
|
import com.badlogic.gdx.controllers.Controller;
|
||||||
import com.badlogic.gdx.graphics.GL20;
|
import com.badlogic.gdx.graphics.GL20;
|
||||||
import com.badlogic.gdx.graphics.g2d.TextureRegion;
|
import com.badlogic.gdx.graphics.g2d.TextureRegion;
|
||||||
@@ -242,6 +243,7 @@ public class UIScene extends Scene {
|
|||||||
public Dialog createGenericDialog(String title, String label, String stringYes, String stringNo, Runnable runnableYes, Runnable runnableNo) {
|
public Dialog createGenericDialog(String title, String label, String stringYes, String stringNo, Runnable runnableYes, Runnable runnableNo) {
|
||||||
return createGenericDialog(title, label, stringYes, stringNo, runnableYes, runnableNo, false, "");
|
return createGenericDialog(title, label, stringYes, stringNo, runnableYes, runnableNo, false, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
public Dialog createGenericDialog(String title, String label, String stringYes, String stringNo, Runnable runnableYes, Runnable runnableNo, boolean cancelButton, String stringCancel) {
|
public Dialog createGenericDialog(String title, String label, String stringYes, String stringNo, Runnable runnableYes, Runnable runnableNo, boolean cancelButton, String stringCancel) {
|
||||||
Dialog dialog = new Dialog(title == null ? "" : title, Controls.getSkin());
|
Dialog dialog = new Dialog(title == null ? "" : title, Controls.getSkin());
|
||||||
textboxOpen = true;
|
textboxOpen = true;
|
||||||
@@ -378,17 +380,22 @@ public class UIScene extends Scene {
|
|||||||
scroll.setScrollY(scroll.getScrollY() + 20);
|
scroll.setScrollY(scroll.getScrollY() + 20);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!textboxOpen){
|
if (!textboxOpen) {
|
||||||
if (KeyBinding.Down.isPressed(keycode))
|
//Allow letter S for TextField since this is binded on down keys
|
||||||
|
if (KeyBinding.Down.isPressed(keycode, !(stage.getKeyboardFocus() instanceof TextField))
|
||||||
|
|| KeyBinding.Down.isPressed(keycode, Input.Keys.S != keycode))
|
||||||
selectNextDown();
|
selectNextDown();
|
||||||
if (KeyBinding.Up.isPressed(keycode))
|
//Allow letter W for TextField since this is binded on up keys
|
||||||
|
if (KeyBinding.Up.isPressed(keycode, !(stage.getKeyboardFocus() instanceof TextField))
|
||||||
|
|| KeyBinding.Up.isPressed(keycode, Input.Keys.W != keycode))
|
||||||
selectNextUp();
|
selectNextUp();
|
||||||
if (!(stage.getKeyboardFocus() instanceof Selector) && !(stage.getKeyboardFocus() instanceof TextField) && !(stage.getKeyboardFocus() instanceof Slider)) {
|
// Allow Right & Left keybinds if not Selector, Slider or Textfield
|
||||||
if (KeyBinding.Right.isPressed(keycode))
|
if (KeyBinding.Right.isPressed(keycode, !(stage.getKeyboardFocus() instanceof Selector)
|
||||||
selectNextRight();
|
&& !(stage.getKeyboardFocus() instanceof TextField) && !(stage.getKeyboardFocus() instanceof Slider)))
|
||||||
if (KeyBinding.Left.isPressed(keycode))
|
selectNextRight();
|
||||||
selectNextLeft();
|
if (KeyBinding.Left.isPressed(keycode, !(stage.getKeyboardFocus() instanceof Selector)
|
||||||
}
|
&& !(stage.getKeyboardFocus() instanceof TextField) && !(stage.getKeyboardFocus() instanceof Slider)))
|
||||||
|
selectNextLeft();
|
||||||
}
|
}
|
||||||
if (!dialogShowing()) {
|
if (!dialogShowing()) {
|
||||||
Button pressedButton = ui.buttonPressed(keycode);
|
Button pressedButton = ui.buttonPressed(keycode);
|
||||||
|
|||||||
@@ -34,9 +34,15 @@ public enum KeyBinding {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean isPressed(int key) {
|
public boolean isPressed(int key) {
|
||||||
for (int i = 0; i < bindings.length; i++) {
|
return isPressed(key, null);
|
||||||
if (key == bindings[i]) {
|
}
|
||||||
return true;
|
|
||||||
|
public boolean isPressed(int key, Boolean requiredCondition) {
|
||||||
|
if (requiredCondition == null || requiredCondition) {
|
||||||
|
for (int i = 0; i < bindings.length; i++) {
|
||||||
|
if (key == bindings[i]) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user