Spaces:
Build error
Build error
File size: 2,120 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 |
package net.minecraft.realms;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.gui.components.Button;
import net.minecraft.client.gui.components.MultiLineLabel;
import net.minecraft.client.gui.screens.Screen;
import net.minecraft.network.chat.CommonComponents;
import net.minecraft.network.chat.Component;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class DisconnectedRealmsScreen extends RealmsScreen {
private final Component reason;
private MultiLineLabel message = MultiLineLabel.EMPTY;
private final Screen parent;
private int textHeight;
public DisconnectedRealmsScreen(Screen p_120653_, Component p_120654_, Component p_120655_) {
super(p_120654_);
this.parent = p_120653_;
this.reason = p_120655_;
}
@Override
public void init() {
this.minecraft.getDownloadedPackSource().cleanupAfterDisconnect();
this.message = MultiLineLabel.create(this.font, this.reason, this.width - 50);
this.textHeight = this.message.getLineCount() * 9;
this.addRenderableWidget(
Button.builder(CommonComponents.GUI_BACK, p_296421_ -> this.minecraft.setScreen(this.parent))
.bounds(this.width / 2 - 100, this.height / 2 + this.textHeight / 2 + 9, 200, 20)
.build()
);
}
@Override
public Component getNarrationMessage() {
return Component.empty().append(this.title).append(": ").append(this.reason);
}
@Override
public void onClose() {
Minecraft.getInstance().setScreen(this.parent);
}
@Override
public void render(GuiGraphics p_282959_, int p_120658_, int p_120659_, float p_120660_) {
super.render(p_282959_, p_120658_, p_120659_, p_120660_);
p_282959_.drawCenteredString(this.font, this.title, this.width / 2, this.height / 2 - this.textHeight / 2 - 9 * 2, 11184810);
this.message.renderCentered(p_282959_, this.width / 2, this.height / 2 - this.textHeight / 2);
}
} |