1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-26 07:03:22 +00:00

Queue key presses for a short period after pressing a computer shortcut

Fixes #1326
This commit is contained in:
Jonathan Coates 2023-02-09 20:10:20 +00:00
parent 7e54a40fa9
commit 62e3c5f9aa
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06

View File

@ -30,6 +30,7 @@ public class TerminalWidget extends AbstractWidget {
private static final Component DESCRIPTION = Component.translatable("gui.computercraft.terminal");
private static final float TERMINATE_TIME = 0.5f;
private static final float KEY_SUPPRESS_DELAY = 0.2f;
private final Terminal terminal;
private final InputHandler computer;
@ -79,15 +80,12 @@ public boolean keyPressed(int key, int scancode, int modifiers) {
switch (key) {
case GLFW.GLFW_KEY_T -> {
if (terminateTimer < 0) terminateTimer = 0;
return true;
}
case GLFW.GLFW_KEY_S -> {
if (shutdownTimer < 0) shutdownTimer = 0;
return true;
}
case GLFW.GLFW_KEY_R -> {
if (rebootTimer < 0) rebootTimer = 0;
return true;
}
case GLFW.GLFW_KEY_V -> {
// Ctrl+V for paste
@ -118,7 +116,7 @@ public boolean keyPressed(int key, int scancode, int modifiers) {
}
}
if (key >= 0 && terminateTimer < 0 && rebootTimer < 0 && shutdownTimer < 0) {
if (key >= 0 && terminateTimer < KEY_SUPPRESS_DELAY && rebootTimer < KEY_SUPPRESS_DELAY && shutdownTimer < KEY_SUPPRESS_DELAY) {
// Queue the "key" event and add to the down set
var repeat = keysDown.get(key);
keysDown.set(key);