Read buttons when joystick is read, otherwise it sucks

This commit is contained in:
Brendan Robert 2024-03-06 16:29:11 -06:00
parent cd16f37259
commit bba6a81d4a
1 changed files with 17 additions and 8 deletions

View File

@ -92,7 +92,7 @@ public class Joystick extends Device {
@ConfigurableField(name = "Prefer D-PAD", shortName = "dpad", description = "Physical game controller enable D-PAD")
public boolean useDPad = false;
@ConfigurableField(name = "Timer resolution", shortName = "timerres", description = "How many ticks until we poll the buttons again?")
public static long TIMER_RESOLUTION = TimedDevice.NTSC_1MHZ / 20; // 20FPS resolution
public static long TIMER_RESOLUTION = TimedDevice.NTSC_1MHZ / 15; // 15FPS resolution reads when joystick is not used
Integer controllerNumber = null;
@ -194,11 +194,26 @@ public class Joystick extends Device {
}
joyX = (int) (x * 128.0 + 128.0);
joyY = (int) (y * 128.0 + 128.0);
readButtons();
}
});
}
}
private void readButtons() {
if (selectedPhysicalController()) {
Integer controllerNum = getControllerNum();
if (controllerNum != null) {
ByteBuffer buttons = GLFW.glfwGetJoystickButtons(controllerNumber);
byte b0 = button0 >=0 && button0 < buttons.capacity() ? buttons.get(button0) : 0;
byte b1 = button1 >=0 && button1 < buttons.capacity() ? buttons.get(button1) : 0;
SoftSwitches.PB0.getSwitch().setState(b0 != 0);
SoftSwitches.PB1.getSwitch().setState(b1 != 0);
}
}
}
@Override
protected String getDeviceName() {
return "Joystick (port " + port + ")";
@ -236,13 +251,7 @@ public class Joystick extends Device {
// Read joystick buttons ~60 times a second as long as joystick is actively in use
Integer controllerNum = getControllerNum();
if (controllerNum != null) {
Platform.runLater(()->{
ByteBuffer buttons = GLFW.glfwGetJoystickButtons(controllerNumber);
byte b0 = button0 >=0 && button0 < buttons.capacity() ? buttons.get(button0) : 0;
byte b1 = button1 >=0 && button1 < buttons.capacity() ? buttons.get(button1) : 0;
SoftSwitches.PB0.getSwitch().setState(b0 != 0);
SoftSwitches.PB1.getSwitch().setState(b1 != 0);
});
Platform.runLater(this::readButtons);
}
}
} else if (finished) {