Geyser/connector/src/main/java/org/geysermc/connector/utils/Toolbox.java

62 lines
1.9 KiB
Java
Raw Normal View History

2019-07-11 22:39:28 +00:00
package org.geysermc.connector.utils;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.nukkitx.network.VarInts;
2019-07-17 01:05:10 +00:00
import com.nukkitx.protocol.bedrock.packet.StartGamePacket;
2019-07-11 22:39:28 +00:00
import com.nukkitx.protocol.bedrock.v361.BedrockUtils;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import java.io.InputStream;
2019-07-17 01:05:10 +00:00
import java.util.*;
2019-07-11 22:39:28 +00:00
public class Toolbox {
2019-07-21 22:22:56 +00:00
static {
2019-07-11 22:39:28 +00:00
InputStream stream = Toolbox.class.getClassLoader().getResourceAsStream("cached_pallete.json");
ObjectMapper mapper = new ObjectMapper();
ArrayList<LinkedHashMap<String, Object>> entries = new ArrayList<>();
try {
entries = mapper.readValue(stream, ArrayList.class);
} catch (Exception e) {
e.printStackTrace();
}
ByteBuf b = Unpooled.buffer();
2019-07-20 22:35:14 +00:00
VarInts.writeUnsignedInt(b, entries.size());
2019-07-11 22:39:28 +00:00
for (Map<String, Object> e : entries) {
BedrockUtils.writeString(b, (String) e.get("name"));
2019-07-20 22:35:14 +00:00
b.writeShortLE((int) e.get("data"));
b.writeShortLE((int) e.get("id"));
2019-07-11 22:39:28 +00:00
}
CACHED_PALLETE = b;
2019-07-17 01:05:10 +00:00
InputStream stream2 = Toolbox.class.getClassLoader().getResourceAsStream("items.json");
if (stream2 == null) {
throw new AssertionError("Items Table not found");
}
ObjectMapper mapper2 = new ObjectMapper();
ArrayList<HashMap> s = new ArrayList<>();
try {
s = mapper2.readValue(stream2, ArrayList.class);
} catch (Exception e) {
e.printStackTrace();
}
ArrayList<StartGamePacket.ItemEntry> l = new ArrayList<>();
2019-07-21 22:22:56 +00:00
for (HashMap e : s) {
2019-07-20 22:35:14 +00:00
l.add(new StartGamePacket.ItemEntry((String) e.get("name"), (short) ((int) e.get("id"))));
2019-07-17 01:05:10 +00:00
}
ITEMS = l;
2019-07-11 22:39:28 +00:00
}
2019-07-17 01:05:10 +00:00
public static final Collection<StartGamePacket.ItemEntry> ITEMS;
2019-07-11 22:39:28 +00:00
public static final ByteBuf CACHED_PALLETE;
2019-07-19 00:11:58 +00:00
//public static final byte[] EMPTY_CHUNK;
2019-07-11 22:39:28 +00:00
}