minecraft-src/net/minecraft/client/multiplayer/ServerData.java
2025-07-04 02:00:41 +03:00

191 lines
5 KiB
Java

package net.minecraft.client.multiplayer;
import com.mojang.logging.LogUtils;
import java.io.IOException;
import java.util.Base64;
import java.util.Collections;
import java.util.List;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.SharedConstants;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.network.chat.Component;
import net.minecraft.network.protocol.status.ServerStatus.Players;
import net.minecraft.util.PngInfo;
import org.jetbrains.annotations.Nullable;
import org.slf4j.Logger;
@Environment(EnvType.CLIENT)
public class ServerData {
private static final Logger LOGGER = LogUtils.getLogger();
private static final int MAX_ICON_SIZE = 1024;
public String name;
public String ip;
public Component status;
public Component motd;
@Nullable
public Players players;
public long ping;
public int protocol = SharedConstants.getCurrentVersion().getProtocolVersion();
public Component version = Component.literal(SharedConstants.getCurrentVersion().getName());
public List<Component> playerList = Collections.emptyList();
private ServerData.ServerPackStatus packStatus = ServerData.ServerPackStatus.PROMPT;
@Nullable
private byte[] iconBytes;
private ServerData.Type type;
private ServerData.State state = ServerData.State.INITIAL;
public ServerData(String name, String ip, ServerData.Type type) {
this.name = name;
this.ip = ip;
this.type = type;
}
/**
* Returns an NBTTagCompound with the server's name, IP and maybe acceptTextures.
*/
public CompoundTag write() {
CompoundTag compoundTag = new CompoundTag();
compoundTag.putString("name", this.name);
compoundTag.putString("ip", this.ip);
if (this.iconBytes != null) {
compoundTag.putString("icon", Base64.getEncoder().encodeToString(this.iconBytes));
}
if (this.packStatus == ServerData.ServerPackStatus.ENABLED) {
compoundTag.putBoolean("acceptTextures", true);
} else if (this.packStatus == ServerData.ServerPackStatus.DISABLED) {
compoundTag.putBoolean("acceptTextures", false);
}
return compoundTag;
}
public ServerData.ServerPackStatus getResourcePackStatus() {
return this.packStatus;
}
public void setResourcePackStatus(ServerData.ServerPackStatus packStatus) {
this.packStatus = packStatus;
}
/**
* Takes an NBTTagCompound with 'name' and 'ip' keys, returns a ServerData instance.
*/
public static ServerData read(CompoundTag nbtCompound) {
ServerData serverData = new ServerData(nbtCompound.getString("name"), nbtCompound.getString("ip"), ServerData.Type.OTHER);
if (nbtCompound.contains("icon", 8)) {
try {
byte[] bs = Base64.getDecoder().decode(nbtCompound.getString("icon"));
serverData.setIconBytes(validateIcon(bs));
} catch (IllegalArgumentException var3) {
LOGGER.warn("Malformed base64 server icon", (Throwable)var3);
}
}
if (nbtCompound.contains("acceptTextures", 99)) {
if (nbtCompound.getBoolean("acceptTextures")) {
serverData.setResourcePackStatus(ServerData.ServerPackStatus.ENABLED);
} else {
serverData.setResourcePackStatus(ServerData.ServerPackStatus.DISABLED);
}
} else {
serverData.setResourcePackStatus(ServerData.ServerPackStatus.PROMPT);
}
return serverData;
}
@Nullable
public byte[] getIconBytes() {
return this.iconBytes;
}
public void setIconBytes(@Nullable byte[] iconBytes) {
this.iconBytes = iconBytes;
}
/**
* Returns {@code true} if the server is a LAN server.
*/
public boolean isLan() {
return this.type == ServerData.Type.LAN;
}
public boolean isRealm() {
return this.type == ServerData.Type.REALM;
}
public ServerData.Type type() {
return this.type;
}
public void copyNameIconFrom(ServerData other) {
this.ip = other.ip;
this.name = other.name;
this.iconBytes = other.iconBytes;
}
public void copyFrom(ServerData serverData) {
this.copyNameIconFrom(serverData);
this.setResourcePackStatus(serverData.getResourcePackStatus());
this.type = serverData.type;
}
public ServerData.State state() {
return this.state;
}
public void setState(ServerData.State state) {
this.state = state;
}
@Nullable
public static byte[] validateIcon(@Nullable byte[] icon) {
if (icon != null) {
try {
PngInfo pngInfo = PngInfo.fromBytes(icon);
if (pngInfo.width() <= 1024 && pngInfo.height() <= 1024) {
return icon;
}
} catch (IOException var2) {
LOGGER.warn("Failed to decode server icon", (Throwable)var2);
}
}
return null;
}
@Environment(EnvType.CLIENT)
public static enum ServerPackStatus {
ENABLED("enabled"),
DISABLED("disabled"),
PROMPT("prompt");
private final Component name;
private ServerPackStatus(final String name) {
this.name = Component.translatable("addServer.resourcePack." + name);
}
public Component getName() {
return this.name;
}
}
@Environment(EnvType.CLIENT)
public static enum State {
INITIAL,
PINGING,
UNREACHABLE,
INCOMPATIBLE,
SUCCESSFUL;
}
@Environment(EnvType.CLIENT)
public static enum Type {
LAN,
REALM,
OTHER;
}
}