2025-11-24 22:52:51 +03:00

85 lines
2.2 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* org.jspecify.annotations.Nullable
*/
package net.minecraft.client.gui.screens;
import net.minecraft.client.GameNarrator;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.gui.screens.Screen;
import net.minecraft.network.chat.Component;
import net.minecraft.util.ProgressListener;
import org.jspecify.annotations.Nullable;
public class ProgressScreen
extends Screen
implements ProgressListener {
private @Nullable Component header;
private @Nullable Component stage;
private int progress;
private boolean stop;
private final boolean clearScreenAfterStop;
public ProgressScreen(boolean clearScreenAfterStop) {
super(GameNarrator.NO_TITLE);
this.clearScreenAfterStop = clearScreenAfterStop;
}
@Override
public boolean shouldCloseOnEsc() {
return false;
}
@Override
protected boolean shouldNarrateNavigation() {
return false;
}
@Override
public void progressStartNoAbort(Component string) {
this.progressStart(string);
}
@Override
public void progressStart(Component string) {
this.header = string;
this.progressStage(Component.translatable("menu.working"));
}
@Override
public void progressStage(Component string) {
this.stage = string;
this.progressStagePercentage(0);
}
@Override
public void progressStagePercentage(int i) {
this.progress = i;
}
@Override
public void stop() {
this.stop = true;
}
@Override
public void render(GuiGraphics graphics, int mouseX, int mouseY, float a) {
if (this.stop) {
if (this.clearScreenAfterStop) {
this.minecraft.setScreen(null);
}
return;
}
super.render(graphics, mouseX, mouseY, a);
if (this.header != null) {
graphics.drawCenteredString(this.font, this.header, this.width / 2, 70, -1);
}
if (this.stage != null && this.progress != 0) {
graphics.drawCenteredString(this.font, Component.empty().append(this.stage).append(" " + this.progress + "%"), this.width / 2, 90, -1);
}
}
}