mirror of
https://github.com/badvision/jace.git
synced 2024-11-24 15:30:51 +00:00
#41: Treat mouse clicks as joystick buttons
This commit is contained in:
parent
41310b43e7
commit
7e638dbf05
@ -41,6 +41,7 @@ import jace.core.Utility;
|
|||||||
import jace.core.Utility.OS;
|
import jace.core.Utility.OS;
|
||||||
import jace.state.Stateful;
|
import jace.state.Stateful;
|
||||||
import javafx.application.Platform;
|
import javafx.application.Platform;
|
||||||
|
import javafx.scene.input.MouseButton;
|
||||||
import javafx.scene.input.MouseEvent;
|
import javafx.scene.input.MouseEvent;
|
||||||
import javafx.stage.Stage;
|
import javafx.stage.Stage;
|
||||||
|
|
||||||
@ -279,6 +280,38 @@ public class Joystick extends Device {
|
|||||||
joyX = (int) (event.getX() / stage.getWidth() * 255);
|
joyX = (int) (event.getX() / stage.getWidth() * 255);
|
||||||
joyY = (int) (event.getY() / stage.getHeight() * 255);
|
joyY = (int) (event.getY() / stage.getHeight() * 255);
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
stage.addEventHandler(MouseEvent.MOUSE_PRESSED, event -> {
|
||||||
|
if (!useKeyboard && !selectedPhysicalController()) {
|
||||||
|
if (event.getButton() == MouseButton.PRIMARY) {
|
||||||
|
if (port == 0) {
|
||||||
|
SoftSwitches.PB0.getSwitch().setState(true);
|
||||||
|
Keyboard.isOpenApplePressed = true;
|
||||||
|
} else {
|
||||||
|
SoftSwitches.PB2.getSwitch().setState(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.getButton() == MouseButton.SECONDARY) {
|
||||||
|
Keyboard.isClosedApplePressed = true;
|
||||||
|
SoftSwitches.PB1.getSwitch().setState(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
stage.addEventHandler(MouseEvent.MOUSE_RELEASED, event -> {
|
||||||
|
if (event.getButton() == MouseButton.PRIMARY) {
|
||||||
|
if (port == 0) {
|
||||||
|
SoftSwitches.PB0.getSwitch().setState(false);
|
||||||
|
Keyboard.isOpenApplePressed = false;
|
||||||
|
} else {
|
||||||
|
SoftSwitches.PB2.getSwitch().setState(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.getButton() == MouseButton.SECONDARY) {
|
||||||
|
Keyboard.isClosedApplePressed = false;
|
||||||
|
SoftSwitches.PB1.getSwitch().setState(false);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
this.port = port;
|
this.port = port;
|
||||||
if (port == 0) {
|
if (port == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user