Spaces:
Build error
Build error
File size: 21,284 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
package com.mojang.blaze3d.platform;
import com.google.common.collect.Maps;
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.MethodType;
import java.lang.invoke.MethodHandles.Lookup;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.OptionalInt;
import java.util.function.BiFunction;
import javax.annotation.Nullable;
import net.minecraft.locale.Language;
import net.minecraft.network.chat.Component;
import net.minecraft.util.LazyLoadedValue;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import org.lwjgl.glfw.GLFW;
import org.lwjgl.glfw.GLFWCharModsCallbackI;
import org.lwjgl.glfw.GLFWCursorPosCallbackI;
import org.lwjgl.glfw.GLFWDropCallbackI;
import org.lwjgl.glfw.GLFWKeyCallbackI;
import org.lwjgl.glfw.GLFWMouseButtonCallbackI;
import org.lwjgl.glfw.GLFWScrollCallbackI;
@OnlyIn(Dist.CLIENT)
public class InputConstants {
@Nullable
private static final MethodHandle GLFW_RAW_MOUSE_MOTION_SUPPORTED;
private static final int GLFW_RAW_MOUSE_MOTION;
public static final int KEY_0 = 48;
public static final int KEY_1 = 49;
public static final int KEY_2 = 50;
public static final int KEY_3 = 51;
public static final int KEY_4 = 52;
public static final int KEY_5 = 53;
public static final int KEY_6 = 54;
public static final int KEY_7 = 55;
public static final int KEY_8 = 56;
public static final int KEY_9 = 57;
public static final int KEY_A = 65;
public static final int KEY_B = 66;
public static final int KEY_C = 67;
public static final int KEY_D = 68;
public static final int KEY_E = 69;
public static final int KEY_F = 70;
public static final int KEY_G = 71;
public static final int KEY_H = 72;
public static final int KEY_I = 73;
public static final int KEY_J = 74;
public static final int KEY_K = 75;
public static final int KEY_L = 76;
public static final int KEY_M = 77;
public static final int KEY_N = 78;
public static final int KEY_O = 79;
public static final int KEY_P = 80;
public static final int KEY_Q = 81;
public static final int KEY_R = 82;
public static final int KEY_S = 83;
public static final int KEY_T = 84;
public static final int KEY_U = 85;
public static final int KEY_V = 86;
public static final int KEY_W = 87;
public static final int KEY_X = 88;
public static final int KEY_Y = 89;
public static final int KEY_Z = 90;
public static final int KEY_F1 = 290;
public static final int KEY_F2 = 291;
public static final int KEY_F3 = 292;
public static final int KEY_F4 = 293;
public static final int KEY_F5 = 294;
public static final int KEY_F6 = 295;
public static final int KEY_F7 = 296;
public static final int KEY_F8 = 297;
public static final int KEY_F9 = 298;
public static final int KEY_F10 = 299;
public static final int KEY_F11 = 300;
public static final int KEY_F12 = 301;
public static final int KEY_F13 = 302;
public static final int KEY_F14 = 303;
public static final int KEY_F15 = 304;
public static final int KEY_F16 = 305;
public static final int KEY_F17 = 306;
public static final int KEY_F18 = 307;
public static final int KEY_F19 = 308;
public static final int KEY_F20 = 309;
public static final int KEY_F21 = 310;
public static final int KEY_F22 = 311;
public static final int KEY_F23 = 312;
public static final int KEY_F24 = 313;
public static final int KEY_F25 = 314;
public static final int KEY_NUMLOCK = 282;
public static final int KEY_NUMPAD0 = 320;
public static final int KEY_NUMPAD1 = 321;
public static final int KEY_NUMPAD2 = 322;
public static final int KEY_NUMPAD3 = 323;
public static final int KEY_NUMPAD4 = 324;
public static final int KEY_NUMPAD5 = 325;
public static final int KEY_NUMPAD6 = 326;
public static final int KEY_NUMPAD7 = 327;
public static final int KEY_NUMPAD8 = 328;
public static final int KEY_NUMPAD9 = 329;
public static final int KEY_NUMPADCOMMA = 330;
public static final int KEY_NUMPADENTER = 335;
public static final int KEY_NUMPADEQUALS = 336;
public static final int KEY_DOWN = 264;
public static final int KEY_LEFT = 263;
public static final int KEY_RIGHT = 262;
public static final int KEY_UP = 265;
public static final int KEY_ADD = 334;
public static final int KEY_APOSTROPHE = 39;
public static final int KEY_BACKSLASH = 92;
public static final int KEY_COMMA = 44;
public static final int KEY_EQUALS = 61;
public static final int KEY_GRAVE = 96;
public static final int KEY_LBRACKET = 91;
public static final int KEY_MINUS = 45;
public static final int KEY_MULTIPLY = 332;
public static final int KEY_PERIOD = 46;
public static final int KEY_RBRACKET = 93;
public static final int KEY_SEMICOLON = 59;
public static final int KEY_SLASH = 47;
public static final int KEY_SPACE = 32;
public static final int KEY_TAB = 258;
public static final int KEY_LALT = 342;
public static final int KEY_LCONTROL = 341;
public static final int KEY_LSHIFT = 340;
public static final int KEY_LWIN = 343;
public static final int KEY_RALT = 346;
public static final int KEY_RCONTROL = 345;
public static final int KEY_RSHIFT = 344;
public static final int KEY_RWIN = 347;
public static final int KEY_RETURN = 257;
public static final int KEY_ESCAPE = 256;
public static final int KEY_BACKSPACE = 259;
public static final int KEY_DELETE = 261;
public static final int KEY_END = 269;
public static final int KEY_HOME = 268;
public static final int KEY_INSERT = 260;
public static final int KEY_PAGEDOWN = 267;
public static final int KEY_PAGEUP = 266;
public static final int KEY_CAPSLOCK = 280;
public static final int KEY_PAUSE = 284;
public static final int KEY_SCROLLLOCK = 281;
public static final int KEY_PRINTSCREEN = 283;
public static final int PRESS = 1;
public static final int RELEASE = 0;
public static final int REPEAT = 2;
public static final int MOUSE_BUTTON_LEFT = 0;
public static final int MOUSE_BUTTON_MIDDLE = 2;
public static final int MOUSE_BUTTON_RIGHT = 1;
public static final int MOD_CONTROL = 2;
public static final int CURSOR = 208897;
public static final int CURSOR_DISABLED = 212995;
public static final int CURSOR_NORMAL = 212993;
public static final InputConstants.Key UNKNOWN;
public static InputConstants.Key getKey(int p_84828_, int p_84829_) {
return p_84828_ == -1 ? InputConstants.Type.SCANCODE.getOrCreate(p_84829_) : InputConstants.Type.KEYSYM.getOrCreate(p_84828_);
}
public static InputConstants.Key getKey(String p_84852_) {
if (InputConstants.Key.NAME_MAP.containsKey(p_84852_)) {
return InputConstants.Key.NAME_MAP.get(p_84852_);
} else {
for (InputConstants.Type inputconstants$type : InputConstants.Type.values()) {
if (p_84852_.startsWith(inputconstants$type.defaultPrefix)) {
String s = p_84852_.substring(inputconstants$type.defaultPrefix.length() + 1);
int i = Integer.parseInt(s);
if (inputconstants$type == InputConstants.Type.MOUSE) {
i--;
}
return inputconstants$type.getOrCreate(i);
}
}
throw new IllegalArgumentException("Unknown key name: " + p_84852_);
}
}
public static boolean isKeyDown(long p_84831_, int p_84832_) {
return GLFW.glfwGetKey(p_84831_, p_84832_) == 1;
}
public static void setupKeyboardCallbacks(long p_84845_, GLFWKeyCallbackI p_84846_, GLFWCharModsCallbackI p_84847_) {
GLFW.glfwSetKeyCallback(p_84845_, p_84846_);
GLFW.glfwSetCharModsCallback(p_84845_, p_84847_);
}
public static void setupMouseCallbacks(
long p_84839_, GLFWCursorPosCallbackI p_84840_, GLFWMouseButtonCallbackI p_84841_, GLFWScrollCallbackI p_84842_, GLFWDropCallbackI p_84843_
) {
GLFW.glfwSetCursorPosCallback(p_84839_, p_84840_);
GLFW.glfwSetMouseButtonCallback(p_84839_, p_84841_);
GLFW.glfwSetScrollCallback(p_84839_, p_84842_);
GLFW.glfwSetDropCallback(p_84839_, p_84843_);
}
public static void grabOrReleaseMouse(long p_84834_, int p_84835_, double p_84836_, double p_84837_) {
GLFW.glfwSetCursorPos(p_84834_, p_84836_, p_84837_);
GLFW.glfwSetInputMode(p_84834_, 208897, p_84835_);
}
public static boolean isRawMouseInputSupported() {
try {
return GLFW_RAW_MOUSE_MOTION_SUPPORTED != null && (boolean)GLFW_RAW_MOUSE_MOTION_SUPPORTED.invokeExact();
} catch (Throwable throwable) {
throw new RuntimeException(throwable);
}
}
public static void updateRawMouseInput(long p_84849_, boolean p_84850_) {
if (isRawMouseInputSupported()) {
GLFW.glfwSetInputMode(p_84849_, GLFW_RAW_MOUSE_MOTION, p_84850_ ? 1 : 0);
}
}
static {
Lookup lookup = MethodHandles.lookup();
MethodType methodtype = MethodType.methodType(boolean.class);
MethodHandle methodhandle = null;
int i = 0;
try {
methodhandle = lookup.findStatic(GLFW.class, "glfwRawMouseMotionSupported", methodtype);
MethodHandle methodhandle1 = lookup.findStaticGetter(GLFW.class, "GLFW_RAW_MOUSE_MOTION", int.class);
i = (int)methodhandle1.invokeExact();
} catch (NoSuchFieldException | NoSuchMethodException nosuchmethodexception) {
} catch (Throwable throwable) {
throw new RuntimeException(throwable);
}
GLFW_RAW_MOUSE_MOTION_SUPPORTED = methodhandle;
GLFW_RAW_MOUSE_MOTION = i;
UNKNOWN = InputConstants.Type.KEYSYM.getOrCreate(-1);
}
@OnlyIn(Dist.CLIENT)
public static final class Key {
private final String name;
private final InputConstants.Type type;
private final int value;
private final LazyLoadedValue<Component> displayName;
static final Map<String, InputConstants.Key> NAME_MAP = Maps.newHashMap();
Key(String p_84860_, InputConstants.Type p_84861_, int p_84862_) {
this.name = p_84860_;
this.type = p_84861_;
this.value = p_84862_;
this.displayName = new LazyLoadedValue<>(() -> p_84861_.displayTextSupplier.apply(p_84862_, p_84860_));
NAME_MAP.put(p_84860_, this);
}
public InputConstants.Type getType() {
return this.type;
}
public int getValue() {
return this.value;
}
public String getName() {
return this.name;
}
public Component getDisplayName() {
return this.displayName.get();
}
public OptionalInt getNumericKeyValue() {
if (this.value >= 48 && this.value <= 57) {
return OptionalInt.of(this.value - 48);
} else {
return this.value >= 320 && this.value <= 329 ? OptionalInt.of(this.value - 320) : OptionalInt.empty();
}
}
@Override
public boolean equals(Object p_84878_) {
if (this == p_84878_) {
return true;
} else if (p_84878_ != null && this.getClass() == p_84878_.getClass()) {
InputConstants.Key inputconstants$key = (InputConstants.Key)p_84878_;
return this.value == inputconstants$key.value && this.type == inputconstants$key.type;
} else {
return false;
}
}
@Override
public int hashCode() {
return Objects.hash(this.type, this.value);
}
@Override
public String toString() {
return this.name;
}
}
@OnlyIn(Dist.CLIENT)
public static enum Type {
KEYSYM("key.keyboard", (p_288232_, p_288233_) -> {
if ("key.keyboard.unknown".equals(p_288233_)) {
return Component.translatable(p_288233_);
} else {
String s = GLFW.glfwGetKeyName(p_288232_, -1);
return s != null ? Component.literal(s.toUpperCase(Locale.ROOT)) : Component.translatable(p_288233_);
}
}),
SCANCODE("scancode", (p_84911_, p_84912_) -> {
String s = GLFW.glfwGetKeyName(-1, p_84911_);
return s != null ? Component.literal(s) : Component.translatable(p_84912_);
}),
MOUSE(
"key.mouse",
(p_84904_, p_84905_) -> Language.getInstance().has(p_84905_) ? Component.translatable(p_84905_) : Component.translatable("key.mouse", p_84904_ + 1)
);
private static final String KEY_KEYBOARD_UNKNOWN = "key.keyboard.unknown";
private final Int2ObjectMap<InputConstants.Key> map = new Int2ObjectOpenHashMap<>();
final String defaultPrefix;
final BiFunction<Integer, String, Component> displayTextSupplier;
private static void addKey(InputConstants.Type p_84900_, String p_84901_, int p_84902_) {
InputConstants.Key inputconstants$key = new InputConstants.Key(p_84901_, p_84900_, p_84902_);
p_84900_.map.put(p_84902_, inputconstants$key);
}
private Type(final String p_84893_, final BiFunction<Integer, String, Component> p_84894_) {
this.defaultPrefix = p_84893_;
this.displayTextSupplier = p_84894_;
}
public InputConstants.Key getOrCreate(int p_84896_) {
return this.map.computeIfAbsent(p_84896_, p_84907_ -> {
int i = p_84907_;
if (this == MOUSE) {
i = p_84907_ + 1;
}
String s = this.defaultPrefix + "." + i;
return new InputConstants.Key(s, this, p_84907_);
});
}
static {
addKey(KEYSYM, "key.keyboard.unknown", -1);
addKey(MOUSE, "key.mouse.left", 0);
addKey(MOUSE, "key.mouse.right", 1);
addKey(MOUSE, "key.mouse.middle", 2);
addKey(MOUSE, "key.mouse.4", 3);
addKey(MOUSE, "key.mouse.5", 4);
addKey(MOUSE, "key.mouse.6", 5);
addKey(MOUSE, "key.mouse.7", 6);
addKey(MOUSE, "key.mouse.8", 7);
addKey(KEYSYM, "key.keyboard.0", 48);
addKey(KEYSYM, "key.keyboard.1", 49);
addKey(KEYSYM, "key.keyboard.2", 50);
addKey(KEYSYM, "key.keyboard.3", 51);
addKey(KEYSYM, "key.keyboard.4", 52);
addKey(KEYSYM, "key.keyboard.5", 53);
addKey(KEYSYM, "key.keyboard.6", 54);
addKey(KEYSYM, "key.keyboard.7", 55);
addKey(KEYSYM, "key.keyboard.8", 56);
addKey(KEYSYM, "key.keyboard.9", 57);
addKey(KEYSYM, "key.keyboard.a", 65);
addKey(KEYSYM, "key.keyboard.b", 66);
addKey(KEYSYM, "key.keyboard.c", 67);
addKey(KEYSYM, "key.keyboard.d", 68);
addKey(KEYSYM, "key.keyboard.e", 69);
addKey(KEYSYM, "key.keyboard.f", 70);
addKey(KEYSYM, "key.keyboard.g", 71);
addKey(KEYSYM, "key.keyboard.h", 72);
addKey(KEYSYM, "key.keyboard.i", 73);
addKey(KEYSYM, "key.keyboard.j", 74);
addKey(KEYSYM, "key.keyboard.k", 75);
addKey(KEYSYM, "key.keyboard.l", 76);
addKey(KEYSYM, "key.keyboard.m", 77);
addKey(KEYSYM, "key.keyboard.n", 78);
addKey(KEYSYM, "key.keyboard.o", 79);
addKey(KEYSYM, "key.keyboard.p", 80);
addKey(KEYSYM, "key.keyboard.q", 81);
addKey(KEYSYM, "key.keyboard.r", 82);
addKey(KEYSYM, "key.keyboard.s", 83);
addKey(KEYSYM, "key.keyboard.t", 84);
addKey(KEYSYM, "key.keyboard.u", 85);
addKey(KEYSYM, "key.keyboard.v", 86);
addKey(KEYSYM, "key.keyboard.w", 87);
addKey(KEYSYM, "key.keyboard.x", 88);
addKey(KEYSYM, "key.keyboard.y", 89);
addKey(KEYSYM, "key.keyboard.z", 90);
addKey(KEYSYM, "key.keyboard.f1", 290);
addKey(KEYSYM, "key.keyboard.f2", 291);
addKey(KEYSYM, "key.keyboard.f3", 292);
addKey(KEYSYM, "key.keyboard.f4", 293);
addKey(KEYSYM, "key.keyboard.f5", 294);
addKey(KEYSYM, "key.keyboard.f6", 295);
addKey(KEYSYM, "key.keyboard.f7", 296);
addKey(KEYSYM, "key.keyboard.f8", 297);
addKey(KEYSYM, "key.keyboard.f9", 298);
addKey(KEYSYM, "key.keyboard.f10", 299);
addKey(KEYSYM, "key.keyboard.f11", 300);
addKey(KEYSYM, "key.keyboard.f12", 301);
addKey(KEYSYM, "key.keyboard.f13", 302);
addKey(KEYSYM, "key.keyboard.f14", 303);
addKey(KEYSYM, "key.keyboard.f15", 304);
addKey(KEYSYM, "key.keyboard.f16", 305);
addKey(KEYSYM, "key.keyboard.f17", 306);
addKey(KEYSYM, "key.keyboard.f18", 307);
addKey(KEYSYM, "key.keyboard.f19", 308);
addKey(KEYSYM, "key.keyboard.f20", 309);
addKey(KEYSYM, "key.keyboard.f21", 310);
addKey(KEYSYM, "key.keyboard.f22", 311);
addKey(KEYSYM, "key.keyboard.f23", 312);
addKey(KEYSYM, "key.keyboard.f24", 313);
addKey(KEYSYM, "key.keyboard.f25", 314);
addKey(KEYSYM, "key.keyboard.num.lock", 282);
addKey(KEYSYM, "key.keyboard.keypad.0", 320);
addKey(KEYSYM, "key.keyboard.keypad.1", 321);
addKey(KEYSYM, "key.keyboard.keypad.2", 322);
addKey(KEYSYM, "key.keyboard.keypad.3", 323);
addKey(KEYSYM, "key.keyboard.keypad.4", 324);
addKey(KEYSYM, "key.keyboard.keypad.5", 325);
addKey(KEYSYM, "key.keyboard.keypad.6", 326);
addKey(KEYSYM, "key.keyboard.keypad.7", 327);
addKey(KEYSYM, "key.keyboard.keypad.8", 328);
addKey(KEYSYM, "key.keyboard.keypad.9", 329);
addKey(KEYSYM, "key.keyboard.keypad.add", 334);
addKey(KEYSYM, "key.keyboard.keypad.decimal", 330);
addKey(KEYSYM, "key.keyboard.keypad.enter", 335);
addKey(KEYSYM, "key.keyboard.keypad.equal", 336);
addKey(KEYSYM, "key.keyboard.keypad.multiply", 332);
addKey(KEYSYM, "key.keyboard.keypad.divide", 331);
addKey(KEYSYM, "key.keyboard.keypad.subtract", 333);
addKey(KEYSYM, "key.keyboard.down", 264);
addKey(KEYSYM, "key.keyboard.left", 263);
addKey(KEYSYM, "key.keyboard.right", 262);
addKey(KEYSYM, "key.keyboard.up", 265);
addKey(KEYSYM, "key.keyboard.apostrophe", 39);
addKey(KEYSYM, "key.keyboard.backslash", 92);
addKey(KEYSYM, "key.keyboard.comma", 44);
addKey(KEYSYM, "key.keyboard.equal", 61);
addKey(KEYSYM, "key.keyboard.grave.accent", 96);
addKey(KEYSYM, "key.keyboard.left.bracket", 91);
addKey(KEYSYM, "key.keyboard.minus", 45);
addKey(KEYSYM, "key.keyboard.period", 46);
addKey(KEYSYM, "key.keyboard.right.bracket", 93);
addKey(KEYSYM, "key.keyboard.semicolon", 59);
addKey(KEYSYM, "key.keyboard.slash", 47);
addKey(KEYSYM, "key.keyboard.space", 32);
addKey(KEYSYM, "key.keyboard.tab", 258);
addKey(KEYSYM, "key.keyboard.left.alt", 342);
addKey(KEYSYM, "key.keyboard.left.control", 341);
addKey(KEYSYM, "key.keyboard.left.shift", 340);
addKey(KEYSYM, "key.keyboard.left.win", 343);
addKey(KEYSYM, "key.keyboard.right.alt", 346);
addKey(KEYSYM, "key.keyboard.right.control", 345);
addKey(KEYSYM, "key.keyboard.right.shift", 344);
addKey(KEYSYM, "key.keyboard.right.win", 347);
addKey(KEYSYM, "key.keyboard.enter", 257);
addKey(KEYSYM, "key.keyboard.escape", 256);
addKey(KEYSYM, "key.keyboard.backspace", 259);
addKey(KEYSYM, "key.keyboard.delete", 261);
addKey(KEYSYM, "key.keyboard.end", 269);
addKey(KEYSYM, "key.keyboard.home", 268);
addKey(KEYSYM, "key.keyboard.insert", 260);
addKey(KEYSYM, "key.keyboard.page.down", 267);
addKey(KEYSYM, "key.keyboard.page.up", 266);
addKey(KEYSYM, "key.keyboard.caps.lock", 280);
addKey(KEYSYM, "key.keyboard.pause", 284);
addKey(KEYSYM, "key.keyboard.scroll.lock", 281);
addKey(KEYSYM, "key.keyboard.menu", 348);
addKey(KEYSYM, "key.keyboard.print.screen", 283);
addKey(KEYSYM, "key.keyboard.world.1", 161);
addKey(KEYSYM, "key.keyboard.world.2", 162);
}
}
} |