Spaces:
Build error
Build error
File size: 13,473 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 |
package com.mojang.realmsclient.gui.screens;
import com.google.common.collect.ImmutableList;
import com.mojang.logging.LogUtils;
import com.mojang.realmsclient.client.RealmsClient;
import com.mojang.realmsclient.dto.Ops;
import com.mojang.realmsclient.dto.PlayerInfo;
import com.mojang.realmsclient.dto.RealmsServer;
import com.mojang.realmsclient.exception.RealmsServiceException;
import com.mojang.realmsclient.util.RealmsUtil;
import java.util.List;
import java.util.UUID;
import java.util.function.Supplier;
import javax.annotation.Nullable;
import net.minecraft.ChatFormatting;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.gui.components.AbstractWidget;
import net.minecraft.client.gui.components.Button;
import net.minecraft.client.gui.components.ContainerObjectSelectionList;
import net.minecraft.client.gui.components.SpriteIconButton;
import net.minecraft.client.gui.components.events.GuiEventListener;
import net.minecraft.client.gui.layouts.HeaderAndFooterLayout;
import net.minecraft.client.gui.layouts.LinearLayout;
import net.minecraft.client.gui.narration.NarratableEntry;
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 RealmsPlayerScreen extends RealmsScreen {
static final Logger LOGGER = LogUtils.getLogger();
private static final Component TITLE = Component.translatable("mco.configure.world.players.title");
static final Component QUESTION_TITLE = Component.translatable("mco.question");
private static final int PADDING = 8;
final HeaderAndFooterLayout layout = new HeaderAndFooterLayout(this);
private final RealmsConfigureWorldScreen lastScreen;
final RealmsServer serverData;
@Nullable
private RealmsPlayerScreen.InvitedObjectSelectionList invitedList;
boolean stateChanged;
public RealmsPlayerScreen(RealmsConfigureWorldScreen p_89089_, RealmsServer p_89090_) {
super(TITLE);
this.lastScreen = p_89089_;
this.serverData = p_89090_;
}
@Override
public void init() {
this.layout.addTitleHeader(TITLE, this.font);
this.invitedList = this.layout.addToContents(new RealmsPlayerScreen.InvitedObjectSelectionList());
this.repopulateInvitedList();
LinearLayout linearlayout = this.layout.addToFooter(LinearLayout.horizontal().spacing(8));
linearlayout.addChild(
Button.builder(
Component.translatable("mco.configure.world.buttons.invite"),
p_280732_ -> this.minecraft.setScreen(new RealmsInviteScreen(this.lastScreen, this, this.serverData))
)
.build()
);
linearlayout.addChild(Button.builder(CommonComponents.GUI_BACK, p_325135_ -> this.onClose()).build());
this.layout.visitWidgets(p_325137_ -> {
AbstractWidget abstractwidget = this.addRenderableWidget(p_325137_);
});
this.repositionElements();
}
@Override
protected void repositionElements() {
this.layout.arrangeElements();
if (this.invitedList != null) {
this.invitedList.updateSize(this.width, this.layout);
}
}
void repopulateInvitedList() {
if (this.invitedList != null) {
this.invitedList.children().clear();
for (PlayerInfo playerinfo : this.serverData.players) {
this.invitedList.children().add(new RealmsPlayerScreen.Entry(playerinfo));
}
}
}
@Override
public void onClose() {
this.backButtonClicked();
}
private void backButtonClicked() {
if (this.stateChanged) {
this.minecraft.setScreen(this.lastScreen.getNewScreen());
} else {
this.minecraft.setScreen(this.lastScreen);
}
}
@OnlyIn(Dist.CLIENT)
class Entry extends ContainerObjectSelectionList.Entry<RealmsPlayerScreen.Entry> {
private static final Component NORMAL_USER_TEXT = Component.translatable("mco.configure.world.invites.normal.tooltip");
private static final Component OP_TEXT = Component.translatable("mco.configure.world.invites.ops.tooltip");
private static final Component REMOVE_TEXT = Component.translatable("mco.configure.world.invites.remove.tooltip");
private static final ResourceLocation MAKE_OP_SPRITE = ResourceLocation.withDefaultNamespace("player_list/make_operator");
private static final ResourceLocation REMOVE_OP_SPRITE = ResourceLocation.withDefaultNamespace("player_list/remove_operator");
private static final ResourceLocation REMOVE_PLAYER_SPRITE = ResourceLocation.withDefaultNamespace("player_list/remove_player");
private static final int ICON_WIDTH = 8;
private static final int ICON_HEIGHT = 7;
private final PlayerInfo playerInfo;
private final Button removeButton;
private final Button makeOpButton;
private final Button removeOpButton;
public Entry(final PlayerInfo p_89204_) {
this.playerInfo = p_89204_;
int i = RealmsPlayerScreen.this.serverData.players.indexOf(this.playerInfo);
this.makeOpButton = SpriteIconButton.builder(NORMAL_USER_TEXT, p_325150_ -> this.op(i), false)
.sprite(MAKE_OP_SPRITE, 8, 7)
.width(16 + RealmsPlayerScreen.this.font.width(NORMAL_USER_TEXT))
.narration(
p_325144_ -> CommonComponents.joinForNarration(
Component.translatable("mco.invited.player.narration", p_89204_.getName()),
p_325144_.get(),
Component.translatable("narration.cycle_button.usage.focused", OP_TEXT)
)
)
.build();
this.removeOpButton = SpriteIconButton.builder(OP_TEXT, p_325146_ -> this.deop(i), false)
.sprite(REMOVE_OP_SPRITE, 8, 7)
.width(16 + RealmsPlayerScreen.this.font.width(OP_TEXT))
.narration(
p_325142_ -> CommonComponents.joinForNarration(
Component.translatable("mco.invited.player.narration", p_89204_.getName()),
p_325142_.get(),
Component.translatable("narration.cycle_button.usage.focused", NORMAL_USER_TEXT)
)
)
.build();
this.removeButton = SpriteIconButton.builder(REMOVE_TEXT, p_325152_ -> this.uninvite(i), false)
.sprite(REMOVE_PLAYER_SPRITE, 8, 7)
.width(16 + RealmsPlayerScreen.this.font.width(REMOVE_TEXT))
.narration(p_325148_ -> CommonComponents.joinForNarration(Component.translatable("mco.invited.player.narration", p_89204_.getName()), p_325148_.get()))
.build();
this.updateOpButtons();
}
private void op(int p_333700_) {
RealmsClient realmsclient = RealmsClient.create();
UUID uuid = RealmsPlayerScreen.this.serverData.players.get(p_333700_).getUuid();
try {
this.updateOps(realmsclient.op(RealmsPlayerScreen.this.serverData.id, uuid));
} catch (RealmsServiceException realmsserviceexception) {
RealmsPlayerScreen.LOGGER.error("Couldn't op the user", (Throwable)realmsserviceexception);
}
this.updateOpButtons();
}
private void deop(int p_328404_) {
RealmsClient realmsclient = RealmsClient.create();
UUID uuid = RealmsPlayerScreen.this.serverData.players.get(p_328404_).getUuid();
try {
this.updateOps(realmsclient.deop(RealmsPlayerScreen.this.serverData.id, uuid));
} catch (RealmsServiceException realmsserviceexception) {
RealmsPlayerScreen.LOGGER.error("Couldn't deop the user", (Throwable)realmsserviceexception);
}
this.updateOpButtons();
}
private void uninvite(int p_328197_) {
if (p_328197_ >= 0 && p_328197_ < RealmsPlayerScreen.this.serverData.players.size()) {
PlayerInfo playerinfo = RealmsPlayerScreen.this.serverData.players.get(p_328197_);
RealmsConfirmScreen realmsconfirmscreen = new RealmsConfirmScreen(p_325140_ -> {
if (p_325140_) {
RealmsClient realmsclient = RealmsClient.create();
try {
realmsclient.uninvite(RealmsPlayerScreen.this.serverData.id, playerinfo.getUuid());
} catch (RealmsServiceException realmsserviceexception) {
RealmsPlayerScreen.LOGGER.error("Couldn't uninvite user", (Throwable)realmsserviceexception);
}
RealmsPlayerScreen.this.serverData.players.remove(p_328197_);
RealmsPlayerScreen.this.repopulateInvitedList();
}
RealmsPlayerScreen.this.stateChanged = true;
RealmsPlayerScreen.this.minecraft.setScreen(RealmsPlayerScreen.this);
}, RealmsPlayerScreen.QUESTION_TITLE, Component.translatable("mco.configure.world.uninvite.player", playerinfo.getName()));
RealmsPlayerScreen.this.minecraft.setScreen(realmsconfirmscreen);
}
}
private void updateOps(Ops p_335160_) {
for (PlayerInfo playerinfo : RealmsPlayerScreen.this.serverData.players) {
playerinfo.setOperator(p_335160_.ops.contains(playerinfo.getName()));
}
}
private void updateOpButtons() {
this.makeOpButton.visible = !this.playerInfo.isOperator();
this.removeOpButton.visible = !this.makeOpButton.visible;
}
private Button activeOpButton() {
return this.makeOpButton.visible ? this.makeOpButton : this.removeOpButton;
}
@Override
public List<? extends GuiEventListener> children() {
return ImmutableList.of(this.activeOpButton(), this.removeButton);
}
@Override
public List<? extends NarratableEntry> narratables() {
return ImmutableList.of(this.activeOpButton(), this.removeButton);
}
@Override
public void render(
GuiGraphics p_282985_,
int p_281343_,
int p_283042_,
int p_282863_,
int p_281381_,
int p_282692_,
int p_283240_,
int p_282706_,
boolean p_283067_,
float p_282230_
) {
int i;
if (!this.playerInfo.getAccepted()) {
i = -6250336;
} else if (this.playerInfo.getOnline()) {
i = 8388479;
} else {
i = -1;
}
int j = p_283042_ + p_282692_ / 2 - 16;
RealmsUtil.renderPlayerFace(p_282985_, p_282863_, j, 32, this.playerInfo.getUuid());
int k = p_283042_ + p_282692_ / 2 - 9 / 2;
p_282985_.drawString(RealmsPlayerScreen.this.font, this.playerInfo.getName(), p_282863_ + 8 + 32, k, i);
int l = p_283042_ + p_282692_ / 2 - 10;
int i1 = p_282863_ + p_281381_ - this.removeButton.getWidth();
this.removeButton.setPosition(i1, l);
this.removeButton.render(p_282985_, p_283240_, p_282706_, p_282230_);
int j1 = i1 - this.activeOpButton().getWidth() - 8;
this.makeOpButton.setPosition(j1, l);
this.makeOpButton.render(p_282985_, p_283240_, p_282706_, p_282230_);
this.removeOpButton.setPosition(j1, l);
this.removeOpButton.render(p_282985_, p_283240_, p_282706_, p_282230_);
}
}
@OnlyIn(Dist.CLIENT)
class InvitedObjectSelectionList extends ContainerObjectSelectionList<RealmsPlayerScreen.Entry> {
private static final int ITEM_HEIGHT = 36;
public InvitedObjectSelectionList() {
super(
Minecraft.getInstance(),
RealmsPlayerScreen.this.width,
RealmsPlayerScreen.this.layout.getContentHeight(),
RealmsPlayerScreen.this.layout.getHeaderHeight(),
36,
(int)(9.0F * 1.5F)
);
}
@Override
protected void renderHeader(GuiGraphics p_329500_, int p_331955_, int p_330781_) {
String s = RealmsPlayerScreen.this.serverData.players != null ? Integer.toString(RealmsPlayerScreen.this.serverData.players.size()) : "0";
Component component = Component.translatable("mco.configure.world.invited.number", s).withStyle(ChatFormatting.UNDERLINE);
p_329500_.drawString(
RealmsPlayerScreen.this.font,
component,
p_331955_ + this.getRowWidth() / 2 - RealmsPlayerScreen.this.font.width(component) / 2,
p_330781_,
-1
);
}
@Override
public int getRowWidth() {
return 300;
}
}
} |