Spaces:
Build error
Build error
File size: 28,116 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 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
package net.minecraft.client;
import com.google.common.base.MoreObjects;
import com.mojang.blaze3d.Blaze3D;
import com.mojang.blaze3d.platform.ClipboardManager;
import com.mojang.blaze3d.platform.InputConstants;
import com.mojang.blaze3d.platform.TextureUtil;
import java.nio.file.Path;
import java.text.MessageFormat;
import java.util.Locale;
import javax.annotation.Nullable;
import net.minecraft.ChatFormatting;
import net.minecraft.CrashReport;
import net.minecraft.CrashReportCategory;
import net.minecraft.ReportedException;
import net.minecraft.Util;
import net.minecraft.client.gui.components.ChatComponent;
import net.minecraft.client.gui.components.EditBox;
import net.minecraft.client.gui.screens.PauseScreen;
import net.minecraft.client.gui.screens.Screen;
import net.minecraft.client.gui.screens.debug.GameModeSwitcherScreen;
import net.minecraft.client.gui.screens.options.controls.KeyBindsScreen;
import net.minecraft.client.multiplayer.ClientPacketListener;
import net.minecraft.client.player.LocalPlayer;
import net.minecraft.client.renderer.FogRenderer;
import net.minecraft.commands.arguments.blocks.BlockStateParser;
import net.minecraft.core.BlockPos;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.nbt.NbtUtils;
import net.minecraft.network.chat.ClickEvent;
import net.minecraft.network.chat.CommonComponents;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.Style;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.util.Mth;
import net.minecraft.util.NativeModuleLister;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.level.GameType;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.phys.BlockHitResult;
import net.minecraft.world.phys.EntityHitResult;
import net.minecraft.world.phys.HitResult;
import net.minecraft.world.phys.Vec3;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class KeyboardHandler {
public static final int DEBUG_CRASH_TIME = 10000;
private final Minecraft minecraft;
private final ClipboardManager clipboardManager = new ClipboardManager();
private long debugCrashKeyTime = -1L;
private long debugCrashKeyReportedTime = -1L;
private long debugCrashKeyReportedCount = -1L;
private boolean handledDebugKey;
public KeyboardHandler(Minecraft p_90875_) {
this.minecraft = p_90875_;
}
private boolean handleChunkDebugKeys(int p_167814_) {
switch (p_167814_) {
case 69:
this.minecraft.sectionPath = !this.minecraft.sectionPath;
this.debugFeedback("SectionPath: {0}", this.minecraft.sectionPath ? "shown" : "hidden");
return true;
case 70:
boolean flag1 = FogRenderer.toggleFog();
this.debugFeedback("Fog: {0}", flag1 ? "enabled" : "disabled");
return true;
case 71:
case 72:
case 73:
case 74:
case 75:
case 77:
case 78:
case 80:
case 81:
case 82:
case 83:
case 84:
default:
return false;
case 76:
this.minecraft.smartCull = !this.minecraft.smartCull;
this.debugFeedback("SmartCull: {0}", this.minecraft.smartCull ? "enabled" : "disabled");
return true;
case 79:
boolean flag = this.minecraft.debugRenderer.toggleRenderOctree();
this.debugFeedback("Frustum culling Octree: {0}", flag ? "enabled" : "disabled");
return true;
case 85:
if (Screen.hasShiftDown()) {
this.minecraft.levelRenderer.killFrustum();
this.debugFeedback("Killed frustum");
} else {
this.minecraft.levelRenderer.captureFrustum();
this.debugFeedback("Captured frustum");
}
return true;
case 86:
this.minecraft.sectionVisibility = !this.minecraft.sectionVisibility;
this.debugFeedback("SectionVisibility: {0}", this.minecraft.sectionVisibility ? "enabled" : "disabled");
return true;
case 87:
this.minecraft.wireframe = !this.minecraft.wireframe;
this.debugFeedback("WireFrame: {0}", this.minecraft.wireframe ? "enabled" : "disabled");
return true;
}
}
private void debugComponent(ChatFormatting p_167825_, Component p_167826_) {
this.minecraft
.gui
.getChat()
.addMessage(
Component.empty()
.append(Component.translatable("debug.prefix").withStyle(p_167825_, ChatFormatting.BOLD))
.append(CommonComponents.SPACE)
.append(p_167826_)
);
}
private void debugFeedbackComponent(Component p_167823_) {
this.debugComponent(ChatFormatting.YELLOW, p_167823_);
}
private void debugFeedbackTranslated(String p_90914_, Object... p_90915_) {
this.debugFeedbackComponent(Component.translatableEscape(p_90914_, p_90915_));
}
private void debugWarningTranslated(String p_90949_, Object... p_90950_) {
this.debugComponent(ChatFormatting.RED, Component.translatableEscape(p_90949_, p_90950_));
}
private void debugFeedback(String p_167838_, Object... p_167839_) {
this.debugFeedbackComponent(Component.literal(MessageFormat.format(p_167838_, p_167839_)));
}
private boolean handleDebugKeys(int p_90933_) {
if (this.debugCrashKeyTime > 0L && this.debugCrashKeyTime < Util.getMillis() - 100L) {
return true;
} else {
switch (p_90933_) {
case 49:
this.minecraft.getDebugOverlay().toggleProfilerChart();
return true;
case 50:
this.minecraft.getDebugOverlay().toggleFpsCharts();
return true;
case 51:
this.minecraft.getDebugOverlay().toggleNetworkCharts();
return true;
case 65:
this.minecraft.levelRenderer.allChanged();
this.debugFeedbackTranslated("debug.reload_chunks.message");
return true;
case 66:
boolean flag = !this.minecraft.getEntityRenderDispatcher().shouldRenderHitBoxes();
this.minecraft.getEntityRenderDispatcher().setRenderHitBoxes(flag);
this.debugFeedbackTranslated(flag ? "debug.show_hitboxes.on" : "debug.show_hitboxes.off");
return true;
case 67:
if (this.minecraft.player.isReducedDebugInfo()) {
return false;
} else {
ClientPacketListener clientpacketlistener = this.minecraft.player.connection;
if (clientpacketlistener == null) {
return false;
}
this.debugFeedbackTranslated("debug.copy_location.message");
this.setClipboard(
String.format(
Locale.ROOT,
"/execute in %s run tp @s %.2f %.2f %.2f %.2f %.2f",
this.minecraft.player.level().dimension().location(),
this.minecraft.player.getX(),
this.minecraft.player.getY(),
this.minecraft.player.getZ(),
this.minecraft.player.getYRot(),
this.minecraft.player.getXRot()
)
);
return true;
}
case 68:
if (this.minecraft.gui != null) {
this.minecraft.gui.getChat().clearMessages(false);
}
return true;
case 71:
boolean flag1 = this.minecraft.debugRenderer.switchRenderChunkborder();
this.debugFeedbackTranslated(flag1 ? "debug.chunk_boundaries.on" : "debug.chunk_boundaries.off");
return true;
case 72:
this.minecraft.options.advancedItemTooltips = !this.minecraft.options.advancedItemTooltips;
this.debugFeedbackTranslated(this.minecraft.options.advancedItemTooltips ? "debug.advanced_tooltips.on" : "debug.advanced_tooltips.off");
this.minecraft.options.save();
return true;
case 73:
if (!this.minecraft.player.isReducedDebugInfo()) {
this.copyRecreateCommand(this.minecraft.player.hasPermissions(2), !Screen.hasShiftDown());
}
return true;
case 76:
if (this.minecraft.debugClientMetricsStart(this::debugFeedbackComponent)) {
this.debugFeedbackTranslated("debug.profiling.start", 10);
}
return true;
case 78:
if (!this.minecraft.player.hasPermissions(2)) {
this.debugFeedbackTranslated("debug.creative_spectator.error");
} else if (!this.minecraft.player.isSpectator()) {
this.minecraft.player.connection.sendUnsignedCommand("gamemode spectator");
} else {
this.minecraft
.player
.connection
.sendUnsignedCommand("gamemode " + MoreObjects.firstNonNull(this.minecraft.gameMode.getPreviousPlayerMode(), GameType.CREATIVE).getName());
}
return true;
case 80:
this.minecraft.options.pauseOnLostFocus = !this.minecraft.options.pauseOnLostFocus;
this.minecraft.options.save();
this.debugFeedbackTranslated(this.minecraft.options.pauseOnLostFocus ? "debug.pause_focus.on" : "debug.pause_focus.off");
return true;
case 81:
this.debugFeedbackTranslated("debug.help.message");
ChatComponent chatcomponent = this.minecraft.gui.getChat();
chatcomponent.addMessage(Component.translatable("debug.reload_chunks.help"));
chatcomponent.addMessage(Component.translatable("debug.show_hitboxes.help"));
chatcomponent.addMessage(Component.translatable("debug.copy_location.help"));
chatcomponent.addMessage(Component.translatable("debug.clear_chat.help"));
chatcomponent.addMessage(Component.translatable("debug.chunk_boundaries.help"));
chatcomponent.addMessage(Component.translatable("debug.advanced_tooltips.help"));
chatcomponent.addMessage(Component.translatable("debug.inspect.help"));
chatcomponent.addMessage(Component.translatable("debug.profiling.help"));
chatcomponent.addMessage(Component.translatable("debug.creative_spectator.help"));
chatcomponent.addMessage(Component.translatable("debug.pause_focus.help"));
chatcomponent.addMessage(Component.translatable("debug.help.help"));
chatcomponent.addMessage(Component.translatable("debug.dump_dynamic_textures.help"));
chatcomponent.addMessage(Component.translatable("debug.reload_resourcepacks.help"));
chatcomponent.addMessage(Component.translatable("debug.pause.help"));
chatcomponent.addMessage(Component.translatable("debug.gamemodes.help"));
return true;
case 83:
Path path = this.minecraft.gameDirectory.toPath().toAbsolutePath();
Path path1 = TextureUtil.getDebugTexturePath(path);
this.minecraft.getTextureManager().dumpAllSheets(path1);
Component component = Component.literal(path.relativize(path1).toString())
.withStyle(ChatFormatting.UNDERLINE)
.withStyle(p_276097_ -> p_276097_.withClickEvent(new ClickEvent(ClickEvent.Action.OPEN_FILE, path1.toFile().toString())));
this.debugFeedbackTranslated("debug.dump_dynamic_textures", component);
return true;
case 84:
this.debugFeedbackTranslated("debug.reload_resourcepacks.message");
this.minecraft.reloadResourcePacks();
return true;
case 293:
if (!this.minecraft.player.hasPermissions(2)) {
this.debugFeedbackTranslated("debug.gamemodes.error");
} else {
this.minecraft.setScreen(new GameModeSwitcherScreen());
}
return true;
default:
return false;
}
}
}
private void copyRecreateCommand(boolean p_90929_, boolean p_90930_) {
HitResult hitresult = this.minecraft.hitResult;
if (hitresult != null) {
switch (hitresult.getType()) {
case BLOCK:
BlockPos blockpos = ((BlockHitResult)hitresult).getBlockPos();
Level level = this.minecraft.player.level();
BlockState blockstate = level.getBlockState(blockpos);
if (p_90929_) {
if (p_90930_) {
this.minecraft.player.connection.getDebugQueryHandler().queryBlockEntityTag(blockpos, p_90947_ -> {
this.copyCreateBlockCommand(blockstate, blockpos, p_90947_);
this.debugFeedbackTranslated("debug.inspect.server.block");
});
} else {
BlockEntity blockentity = level.getBlockEntity(blockpos);
CompoundTag compoundtag1 = blockentity != null ? blockentity.saveWithoutMetadata(level.registryAccess()) : null;
this.copyCreateBlockCommand(blockstate, blockpos, compoundtag1);
this.debugFeedbackTranslated("debug.inspect.client.block");
}
} else {
this.copyCreateBlockCommand(blockstate, blockpos, null);
this.debugFeedbackTranslated("debug.inspect.client.block");
}
break;
case ENTITY:
Entity entity = ((EntityHitResult)hitresult).getEntity();
ResourceLocation resourcelocation = BuiltInRegistries.ENTITY_TYPE.getKey(entity.getType());
if (p_90929_) {
if (p_90930_) {
this.minecraft.player.connection.getDebugQueryHandler().queryEntityTag(entity.getId(), p_90921_ -> {
this.copyCreateEntityCommand(resourcelocation, entity.position(), p_90921_);
this.debugFeedbackTranslated("debug.inspect.server.entity");
});
} else {
CompoundTag compoundtag = entity.saveWithoutId(new CompoundTag());
this.copyCreateEntityCommand(resourcelocation, entity.position(), compoundtag);
this.debugFeedbackTranslated("debug.inspect.client.entity");
}
} else {
this.copyCreateEntityCommand(resourcelocation, entity.position(), null);
this.debugFeedbackTranslated("debug.inspect.client.entity");
}
}
}
}
private void copyCreateBlockCommand(BlockState p_90900_, BlockPos p_90901_, @Nullable CompoundTag p_90902_) {
StringBuilder stringbuilder = new StringBuilder(BlockStateParser.serialize(p_90900_));
if (p_90902_ != null) {
stringbuilder.append(p_90902_);
}
String s = String.format(Locale.ROOT, "/setblock %d %d %d %s", p_90901_.getX(), p_90901_.getY(), p_90901_.getZ(), stringbuilder);
this.setClipboard(s);
}
private void copyCreateEntityCommand(ResourceLocation p_90923_, Vec3 p_90924_, @Nullable CompoundTag p_90925_) {
String s;
if (p_90925_ != null) {
p_90925_.remove("UUID");
p_90925_.remove("Pos");
p_90925_.remove("Dimension");
String s1 = NbtUtils.toPrettyComponent(p_90925_).getString();
s = String.format(Locale.ROOT, "/summon %s %.2f %.2f %.2f %s", p_90923_, p_90924_.x, p_90924_.y, p_90924_.z, s1);
} else {
s = String.format(Locale.ROOT, "/summon %s %.2f %.2f %.2f", p_90923_, p_90924_.x, p_90924_.y, p_90924_.z);
}
this.setClipboard(s);
}
public void keyPress(long p_90894_, int p_90895_, int p_90896_, int p_90897_, int p_90898_) {
if (p_90894_ == this.minecraft.getWindow().getWindow()) {
this.minecraft.getFramerateLimitTracker().onInputReceived();
boolean flag = InputConstants.isKeyDown(Minecraft.getInstance().getWindow().getWindow(), 292);
if (this.debugCrashKeyTime > 0L) {
if (!InputConstants.isKeyDown(Minecraft.getInstance().getWindow().getWindow(), 67) || !flag) {
this.debugCrashKeyTime = -1L;
}
} else if (InputConstants.isKeyDown(Minecraft.getInstance().getWindow().getWindow(), 67) && flag) {
this.handledDebugKey = true;
this.debugCrashKeyTime = Util.getMillis();
this.debugCrashKeyReportedTime = Util.getMillis();
this.debugCrashKeyReportedCount = 0L;
}
Screen screen = this.minecraft.screen;
if (screen != null) {
switch (p_90895_) {
case 258:
this.minecraft.setLastInputType(InputType.KEYBOARD_TAB);
case 259:
case 260:
case 261:
default:
break;
case 262:
case 263:
case 264:
case 265:
this.minecraft.setLastInputType(InputType.KEYBOARD_ARROW);
}
}
if (p_90897_ == 1 && (!(this.minecraft.screen instanceof KeyBindsScreen) || ((KeyBindsScreen)screen).lastKeySelection <= Util.getMillis() - 20L)) {
if (this.minecraft.options.keyFullscreen.matches(p_90895_, p_90896_)) {
this.minecraft.getWindow().toggleFullScreen();
this.minecraft.options.fullscreen().set(this.minecraft.getWindow().isFullscreen());
return;
}
if (this.minecraft.options.keyScreenshot.matches(p_90895_, p_90896_)) {
if (Screen.hasControlDown()) {
}
Screenshot.grab(
this.minecraft.gameDirectory,
this.minecraft.getMainRenderTarget(),
p_90917_ -> this.minecraft.execute(() -> this.minecraft.gui.getChat().addMessage(p_90917_))
);
return;
}
}
if (p_90897_ != 0) {
boolean flag1 = screen == null || !(screen.getFocused() instanceof EditBox) || !((EditBox)screen.getFocused()).canConsumeInput();
if (flag1) {
if (Screen.hasControlDown() && p_90895_ == 66 && this.minecraft.getNarrator().isActive() && this.minecraft.options.narratorHotkey().get()) {
boolean flag2 = this.minecraft.options.narrator().get() == NarratorStatus.OFF;
this.minecraft.options.narrator().set(NarratorStatus.byId(this.minecraft.options.narrator().get().getId() + 1));
this.minecraft.options.save();
if (screen != null) {
screen.updateNarratorStatus(flag2);
}
}
LocalPlayer localplayer = this.minecraft.player;
}
}
if (screen != null) {
try {
if (p_90897_ != 1 && p_90897_ != 2) {
if (p_90897_ == 0 && screen.keyReleased(p_90895_, p_90896_, p_90898_)) {
return;
}
} else {
screen.afterKeyboardAction();
if (screen.keyPressed(p_90895_, p_90896_, p_90898_)) {
return;
}
}
} catch (Throwable throwable) {
CrashReport crashreport = CrashReport.forThrowable(throwable, "keyPressed event handler");
screen.fillCrashDetails(crashreport);
CrashReportCategory crashreportcategory = crashreport.addCategory("Key");
crashreportcategory.setDetail("Key", p_90895_);
crashreportcategory.setDetail("Scancode", p_90896_);
crashreportcategory.setDetail("Mods", p_90898_);
throw new ReportedException(crashreport);
}
}
InputConstants.Key inputconstants$key;
boolean flag3;
boolean flag6;
label197: {
inputconstants$key = InputConstants.getKey(p_90895_, p_90896_);
flag3 = this.minecraft.screen == null;
label153:
if (!flag3) {
if (this.minecraft.screen instanceof PauseScreen pausescreen && !pausescreen.showsPauseMenu()) {
break label153;
}
flag6 = false;
break label197;
}
flag6 = true;
}
boolean flag4 = flag6;
if (p_90897_ == 0) {
KeyMapping.set(inputconstants$key, false);
if (flag4 && p_90895_ == 292) {
if (this.handledDebugKey) {
this.handledDebugKey = false;
} else {
this.minecraft.getDebugOverlay().toggleOverlay();
}
}
} else {
boolean flag5 = false;
if (flag4) {
if (p_90895_ == 293 && this.minecraft.gameRenderer != null) {
this.minecraft.gameRenderer.togglePostEffect();
}
if (p_90895_ == 256) {
this.minecraft.pauseGame(flag);
flag5 |= flag;
}
flag5 |= flag && this.handleDebugKeys(p_90895_);
this.handledDebugKey |= flag5;
if (p_90895_ == 290) {
this.minecraft.options.hideGui = !this.minecraft.options.hideGui;
}
if (this.minecraft.getDebugOverlay().showProfilerChart() && !flag && p_90895_ >= 48 && p_90895_ <= 57) {
this.minecraft.getDebugOverlay().getProfilerPieChart().profilerPieChartKeyPress(p_90895_ - 48);
}
}
if (flag3) {
if (flag5) {
KeyMapping.set(inputconstants$key, false);
} else {
KeyMapping.set(inputconstants$key, true);
KeyMapping.click(inputconstants$key);
}
}
}
}
}
private void charTyped(long p_90890_, int p_90891_, int p_90892_) {
if (p_90890_ == this.minecraft.getWindow().getWindow()) {
Screen screen = this.minecraft.screen;
if (screen != null && this.minecraft.getOverlay() == null) {
try {
if (Character.isBmpCodePoint(p_90891_)) {
screen.charTyped((char)p_90891_, p_90892_);
} else if (Character.isValidCodePoint(p_90891_)) {
screen.charTyped(Character.highSurrogate(p_90891_), p_90892_);
screen.charTyped(Character.lowSurrogate(p_90891_), p_90892_);
}
} catch (Throwable throwable) {
CrashReport crashreport = CrashReport.forThrowable(throwable, "charTyped event handler");
screen.fillCrashDetails(crashreport);
CrashReportCategory crashreportcategory = crashreport.addCategory("Key");
crashreportcategory.setDetail("Codepoint", p_90891_);
crashreportcategory.setDetail("Mods", p_90892_);
throw new ReportedException(crashreport);
}
}
}
}
public void setup(long p_90888_) {
InputConstants.setupKeyboardCallbacks(
p_90888_,
(p_90939_, p_90940_, p_90941_, p_90942_, p_90943_) -> this.minecraft.execute(() -> this.keyPress(p_90939_, p_90940_, p_90941_, p_90942_, p_90943_)),
(p_90935_, p_90936_, p_90937_) -> this.minecraft.execute(() -> this.charTyped(p_90935_, p_90936_, p_90937_))
);
}
public String getClipboard() {
return this.clipboardManager.getClipboard(this.minecraft.getWindow().getWindow(), (p_90878_, p_90879_) -> {
if (p_90878_ != 65545) {
this.minecraft.getWindow().defaultErrorCallback(p_90878_, p_90879_);
}
});
}
public void setClipboard(String p_90912_) {
if (!p_90912_.isEmpty()) {
this.clipboardManager.setClipboard(this.minecraft.getWindow().getWindow(), p_90912_);
}
}
public void tick() {
if (this.debugCrashKeyTime > 0L) {
long i = Util.getMillis();
long j = 10000L - (i - this.debugCrashKeyTime);
long k = i - this.debugCrashKeyReportedTime;
if (j < 0L) {
if (Screen.hasControlDown()) {
Blaze3D.youJustLostTheGame();
}
String s = "Manually triggered debug crash";
CrashReport crashreport = new CrashReport("Manually triggered debug crash", new Throwable("Manually triggered debug crash"));
CrashReportCategory crashreportcategory = crashreport.addCategory("Manual crash details");
NativeModuleLister.addCrashSection(crashreportcategory);
throw new ReportedException(crashreport);
}
if (k >= 1000L) {
if (this.debugCrashKeyReportedCount == 0L) {
this.debugFeedbackTranslated("debug.crash.message");
} else {
this.debugWarningTranslated("debug.crash.warning", Mth.ceil((float)j / 1000.0F));
}
this.debugCrashKeyReportedTime = i;
this.debugCrashKeyReportedCount++;
}
}
}
} |