Spaces:
Build error
Build error
File size: 12,369 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 |
package com.mojang.realmsclient.gui.screens;
import com.mojang.logging.LogUtils;
import com.mojang.realmsclient.RealmsMainScreen;
import com.mojang.realmsclient.client.RealmsClient;
import com.mojang.realmsclient.dto.PendingInvite;
import com.mojang.realmsclient.exception.RealmsServiceException;
import com.mojang.realmsclient.gui.RealmsDataFetcher;
import com.mojang.realmsclient.gui.RowButton;
import com.mojang.realmsclient.util.RealmsUtil;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import javax.annotation.Nullable;
import net.minecraft.Util;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.gui.components.Button;
import net.minecraft.client.gui.components.ObjectSelectionList;
import net.minecraft.client.gui.screens.Screen;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.network.chat.CommonComponents;
import net.minecraft.network.chat.Component;
import net.minecraft.realms.RealmsScreen;
import net.minecraft.resources.ResourceLocation;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import org.slf4j.Logger;
@OnlyIn(Dist.CLIENT)
public class RealmsPendingInvitesScreen extends RealmsScreen {
static final ResourceLocation ACCEPT_HIGHLIGHTED_SPRITE = ResourceLocation.withDefaultNamespace("pending_invite/accept_highlighted");
static final ResourceLocation ACCEPT_SPRITE = ResourceLocation.withDefaultNamespace("pending_invite/accept");
static final ResourceLocation REJECT_HIGHLIGHTED_SPRITE = ResourceLocation.withDefaultNamespace("pending_invite/reject_highlighted");
static final ResourceLocation REJECT_SPRITE = ResourceLocation.withDefaultNamespace("pending_invite/reject");
private static final Logger LOGGER = LogUtils.getLogger();
private static final Component NO_PENDING_INVITES_TEXT = Component.translatable("mco.invites.nopending");
static final Component ACCEPT_INVITE = Component.translatable("mco.invites.button.accept");
static final Component REJECT_INVITE = Component.translatable("mco.invites.button.reject");
private final Screen lastScreen;
private final CompletableFuture<List<PendingInvite>> pendingInvites = CompletableFuture.supplyAsync(() -> {
try {
return RealmsClient.create().pendingInvites().pendingInvites;
} catch (RealmsServiceException realmsserviceexception) {
LOGGER.error("Couldn't list invites", (Throwable)realmsserviceexception);
return List.of();
}
}, Util.ioPool());
@Nullable
Component toolTip;
RealmsPendingInvitesScreen.PendingInvitationSelectionList pendingInvitationSelectionList;
private Button acceptButton;
private Button rejectButton;
public RealmsPendingInvitesScreen(Screen p_279260_, Component p_279122_) {
super(p_279122_);
this.lastScreen = p_279260_;
}
@Override
public void init() {
RealmsMainScreen.refreshPendingInvites();
this.pendingInvitationSelectionList = new RealmsPendingInvitesScreen.PendingInvitationSelectionList();
this.pendingInvites.thenAcceptAsync(p_296071_ -> {
List<RealmsPendingInvitesScreen.Entry> list = p_296071_.stream().map(p_296073_ -> new RealmsPendingInvitesScreen.Entry(p_296073_)).toList();
this.pendingInvitationSelectionList.replaceEntries(list);
if (list.isEmpty()) {
this.minecraft.getNarrator().say(NO_PENDING_INVITES_TEXT);
}
}, this.screenExecutor);
this.addRenderableWidget(this.pendingInvitationSelectionList);
this.acceptButton = this.addRenderableWidget(
Button.builder(ACCEPT_INVITE, p_357561_ -> this.handleInvitation(true)).bounds(this.width / 2 - 174, this.height - 32, 100, 20).build()
);
this.addRenderableWidget(
Button.builder(CommonComponents.GUI_DONE, p_296072_ -> this.onClose())
.bounds(this.width / 2 - 50, this.height - 32, 100, 20)
.build()
);
this.rejectButton = this.addRenderableWidget(
Button.builder(REJECT_INVITE, p_357565_ -> this.handleInvitation(false)).bounds(this.width / 2 + 74, this.height - 32, 100, 20).build()
);
this.updateButtonStates();
}
@Override
public void onClose() {
this.minecraft.setScreen(this.lastScreen);
}
void handleInvitation(boolean p_297359_) {
if (this.pendingInvitationSelectionList.getSelected() instanceof RealmsPendingInvitesScreen.Entry realmspendinginvitesscreen$entry) {
String s = realmspendinginvitesscreen$entry.pendingInvite.invitationId;
CompletableFuture.<Boolean>supplyAsync(() -> {
try {
RealmsClient realmsclient = RealmsClient.create();
if (p_297359_) {
realmsclient.acceptInvitation(s);
} else {
realmsclient.rejectInvitation(s);
}
return true;
} catch (RealmsServiceException realmsserviceexception) {
LOGGER.error("Couldn't handle invite", (Throwable)realmsserviceexception);
return false;
}
}, Util.ioPool()).thenAcceptAsync(p_357564_ -> {
if (p_357564_) {
this.pendingInvitationSelectionList.removeInvitation(realmspendinginvitesscreen$entry);
this.updateButtonStates();
RealmsDataFetcher realmsdatafetcher = this.minecraft.realmsDataFetcher();
if (p_297359_) {
realmsdatafetcher.serverListUpdateTask.reset();
}
realmsdatafetcher.pendingInvitesTask.reset();
}
}, this.screenExecutor);
}
}
@Override
public void render(GuiGraphics p_282787_, int p_88900_, int p_88901_, float p_88902_) {
this.toolTip = null;
super.render(p_282787_, p_88900_, p_88901_, p_88902_);
p_282787_.drawCenteredString(this.font, this.title, this.width / 2, 12, -1);
if (this.toolTip != null) {
p_282787_.renderTooltip(this.font, this.toolTip, p_88900_, p_88901_);
}
if (this.pendingInvites.isDone() && this.pendingInvitationSelectionList.hasPendingInvites()) {
p_282787_.drawCenteredString(this.font, NO_PENDING_INVITES_TEXT, this.width / 2, this.height / 2 - 20, -1);
}
}
void updateButtonStates() {
RealmsPendingInvitesScreen.Entry realmspendinginvitesscreen$entry = this.pendingInvitationSelectionList.getSelected();
this.acceptButton.visible = realmspendinginvitesscreen$entry != null;
this.rejectButton.visible = realmspendinginvitesscreen$entry != null;
}
@OnlyIn(Dist.CLIENT)
class Entry extends ObjectSelectionList.Entry<RealmsPendingInvitesScreen.Entry> {
private static final int TEXT_LEFT = 38;
final PendingInvite pendingInvite;
private final List<RowButton> rowButtons;
Entry(final PendingInvite p_88996_) {
this.pendingInvite = p_88996_;
this.rowButtons = Arrays.asList(new RealmsPendingInvitesScreen.Entry.AcceptRowButton(), new RealmsPendingInvitesScreen.Entry.RejectRowButton());
}
@Override
public void render(
GuiGraphics p_281445_,
int p_281806_,
int p_283610_,
int p_282909_,
int p_281705_,
int p_281977_,
int p_282983_,
int p_281655_,
boolean p_282274_,
float p_282862_
) {
this.renderPendingInvitationItem(p_281445_, this.pendingInvite, p_282909_, p_283610_, p_282983_, p_281655_);
}
@Override
public boolean mouseClicked(double p_88998_, double p_88999_, int p_89000_) {
RowButton.rowButtonMouseClicked(RealmsPendingInvitesScreen.this.pendingInvitationSelectionList, this, this.rowButtons, p_89000_, p_88998_, p_88999_);
return super.mouseClicked(p_88998_, p_88999_, p_89000_);
}
private void renderPendingInvitationItem(GuiGraphics p_281764_, PendingInvite p_282748_, int p_282810_, int p_282994_, int p_283639_, int p_283659_) {
p_281764_.drawString(RealmsPendingInvitesScreen.this.font, p_282748_.realmName, p_282810_ + 38, p_282994_ + 1, -1);
p_281764_.drawString(RealmsPendingInvitesScreen.this.font, p_282748_.realmOwnerName, p_282810_ + 38, p_282994_ + 12, 7105644);
p_281764_.drawString(RealmsPendingInvitesScreen.this.font, RealmsUtil.convertToAgePresentationFromInstant(p_282748_.date), p_282810_ + 38, p_282994_ + 24, 7105644);
RowButton.drawButtonsInRow(p_281764_, this.rowButtons, RealmsPendingInvitesScreen.this.pendingInvitationSelectionList, p_282810_, p_282994_, p_283639_, p_283659_);
RealmsUtil.renderPlayerFace(p_281764_, p_282810_, p_282994_, 32, p_282748_.realmOwnerUuid);
}
@Override
public Component getNarration() {
Component component = CommonComponents.joinLines(
Component.literal(this.pendingInvite.realmName), Component.literal(this.pendingInvite.realmOwnerName), RealmsUtil.convertToAgePresentationFromInstant(this.pendingInvite.date)
);
return Component.translatable("narrator.select", component);
}
@OnlyIn(Dist.CLIENT)
class AcceptRowButton extends RowButton {
AcceptRowButton() {
super(15, 15, 215, 5);
}
@Override
protected void draw(GuiGraphics p_282151_, int p_283695_, int p_282436_, boolean p_282168_) {
p_282151_.blitSprite(
RenderType::guiTextured,
p_282168_ ? RealmsPendingInvitesScreen.ACCEPT_HIGHLIGHTED_SPRITE : RealmsPendingInvitesScreen.ACCEPT_SPRITE,
p_283695_,
p_282436_,
18,
18
);
if (p_282168_) {
RealmsPendingInvitesScreen.this.toolTip = RealmsPendingInvitesScreen.ACCEPT_INVITE;
}
}
@Override
public void onClick(int p_89029_) {
RealmsPendingInvitesScreen.this.handleInvitation(true);
}
}
@OnlyIn(Dist.CLIENT)
class RejectRowButton extends RowButton {
RejectRowButton() {
super(15, 15, 235, 5);
}
@Override
protected void draw(GuiGraphics p_282457_, int p_281421_, int p_281260_, boolean p_281476_) {
p_282457_.blitSprite(
RenderType::guiTextured,
p_281476_ ? RealmsPendingInvitesScreen.REJECT_HIGHLIGHTED_SPRITE : RealmsPendingInvitesScreen.REJECT_SPRITE,
p_281421_,
p_281260_,
18,
18
);
if (p_281476_) {
RealmsPendingInvitesScreen.this.toolTip = RealmsPendingInvitesScreen.REJECT_INVITE;
}
}
@Override
public void onClick(int p_89039_) {
RealmsPendingInvitesScreen.this.handleInvitation(false);
}
}
}
@OnlyIn(Dist.CLIENT)
class PendingInvitationSelectionList extends ObjectSelectionList<RealmsPendingInvitesScreen.Entry> {
public PendingInvitationSelectionList() {
super(Minecraft.getInstance(), RealmsPendingInvitesScreen.this.width, RealmsPendingInvitesScreen.this.height - 72, 32, 36);
}
@Override
public int getRowWidth() {
return 260;
}
@Override
public void setSelectedIndex(int p_365125_) {
super.setSelectedIndex(p_365125_);
RealmsPendingInvitesScreen.this.updateButtonStates();
}
public boolean hasPendingInvites() {
return this.getItemCount() == 0;
}
public void removeInvitation(RealmsPendingInvitesScreen.Entry p_367374_) {
this.removeEntry(p_367374_);
}
}
} |