mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-14 22:44:07 +01:00
73 lines
1.5 KiB
Java
73 lines
1.5 KiB
Java
|
package com.simibubi.create;
|
||
|
|
||
|
import org.lwjgl.glfw.GLFW;
|
||
|
|
||
|
import net.minecraft.client.Minecraft;
|
||
|
import net.minecraft.client.gui.screen.Screen;
|
||
|
import net.minecraft.client.settings.KeyBinding;
|
||
|
import net.minecraftforge.fml.client.registry.ClientRegistry;
|
||
|
|
||
|
public enum AllKeys {
|
||
|
|
||
|
TOOL_MENU("Tool Menu (Hold)", GLFW.GLFW_KEY_LEFT_ALT),
|
||
|
ACTIVATE_TOOL("", GLFW.GLFW_KEY_LEFT_CONTROL),
|
||
|
|
||
|
;
|
||
|
|
||
|
private KeyBinding keybind;
|
||
|
private String description;
|
||
|
private int key;
|
||
|
private boolean modifiable;
|
||
|
|
||
|
private AllKeys(String description, int defaultKey) {
|
||
|
this.description = description;
|
||
|
this.key = defaultKey;
|
||
|
this.modifiable = !description.isEmpty();
|
||
|
}
|
||
|
|
||
|
public static void register() {
|
||
|
for (AllKeys key : values()) {
|
||
|
key.keybind = new KeyBinding(key.description, key.key, Create.NAME);
|
||
|
if (!key.modifiable)
|
||
|
continue;
|
||
|
|
||
|
ClientRegistry.registerKeyBinding(key.keybind);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public KeyBinding getKeybind() {
|
||
|
return keybind;
|
||
|
}
|
||
|
|
||
|
public boolean isPressed() {
|
||
|
if (!modifiable)
|
||
|
return isKeyDown(key);
|
||
|
return keybind.isKeyDown();
|
||
|
}
|
||
|
|
||
|
public String getBoundKey() {
|
||
|
return keybind.getLocalizedName().toUpperCase();
|
||
|
}
|
||
|
|
||
|
public int getBoundCode() {
|
||
|
return keybind.getKey().getKeyCode();
|
||
|
}
|
||
|
|
||
|
public static boolean isKeyDown(int key) {
|
||
|
return GLFW.glfwGetKey(Minecraft.getInstance().mainWindow.getHandle(), key) != 0;
|
||
|
}
|
||
|
|
||
|
public static boolean ctrlDown() {
|
||
|
return Screen.hasControlDown();
|
||
|
}
|
||
|
|
||
|
public static boolean shiftDown() {
|
||
|
return Screen.hasShiftDown();
|
||
|
}
|
||
|
|
||
|
public static boolean altDown() {
|
||
|
return Screen.hasAltDown();
|
||
|
}
|
||
|
|
||
|
}
|