minecraft-source/src/com/mojang/realmsclient/dto/RealmsServerPlayerLists.java

41 lines
1.5 KiB
Java

package com.mojang.realmsclient.dto;
import org.apache.logging.log4j.LogManager;
import java.util.Iterator;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import com.google.gson.JsonElement;
import com.google.gson.JsonParser;
import com.google.common.collect.Lists;
import java.util.List;
import org.apache.logging.log4j.Logger;
public class RealmsServerPlayerLists extends ValueObject {
private static final Logger LOGGER;
public List<RealmsServerPlayerList> servers;
public static RealmsServerPlayerLists parse(final String string) {
final RealmsServerPlayerLists diu2 = new RealmsServerPlayerLists();
diu2.servers = Lists.newArrayList();
try {
final JsonParser jsonParser3 = new JsonParser();
final JsonObject jsonObject4 = jsonParser3.parse(string).getAsJsonObject();
if (jsonObject4.get("lists").isJsonArray()) {
final JsonArray jsonArray5 = jsonObject4.get("lists").getAsJsonArray();
final Iterator<JsonElement> iterator6 = jsonArray5.iterator();
while (iterator6.hasNext()) {
diu2.servers.add(RealmsServerPlayerList.parse(iterator6.next().getAsJsonObject()));
}
}
}
catch (Exception exception3) {
RealmsServerPlayerLists.LOGGER.error("Could not parse RealmsServerPlayerLists: " + exception3.getMessage());
}
return diu2;
}
static {
LOGGER = LogManager.getLogger();
}
}