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

124 lines
5.4 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.nbt.NbtUtils;
import com.nukkitx.nbt.stream.NBTInputStream;
import com.nukkitx.nbt.tag.CompoundTag;
import com.nukkitx.nbt.tag.ListTag;
import com.nukkitx.nbt.tag.Tag;
2019-07-17 01:05:10 +00:00
import com.nukkitx.protocol.bedrock.packet.StartGamePacket;
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
import org.geysermc.connector.GeyserConnector;
2019-08-10 03:16:34 +00:00
import org.geysermc.connector.console.GeyserLogger;
2019-10-10 00:11:50 +00:00
import org.geysermc.connector.network.translators.block.BlockEntry;
import org.geysermc.connector.network.translators.item.ItemEntry;
2019-07-11 22:39:28 +00:00
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-11-06 00:55:59 +00:00
public static final Collection<StartGamePacket.ItemEntry> ITEMS = new ArrayList<>();
2019-11-02 20:50:04 +00:00
public static ListTag<CompoundTag> BLOCKS;
2019-10-10 00:11:50 +00:00
public static final Int2ObjectMap<ItemEntry> ITEM_ENTRIES = new Int2ObjectOpenHashMap<>();
public static final Int2ObjectMap<BlockEntry> BLOCK_ENTRIES = new Int2ObjectOpenHashMap<>();
2019-10-10 00:11:50 +00:00
2019-11-06 00:55:59 +00:00
public static void init() {
2019-11-02 20:50:04 +00:00
InputStream stream = GeyserConnector.class.getClassLoader().getResourceAsStream("bedrock/runtime_block_states.dat");
if (stream == null) {
2019-11-02 20:50:04 +00:00
throw new AssertionError("Unable to find bedrock/runtime_block_states.dat");
2019-07-11 22:39:28 +00:00
}
2019-11-02 20:50:04 +00:00
ListTag<CompoundTag> blocksTag;
2019-08-10 03:16:34 +00:00
2019-11-09 17:14:31 +00:00
NBTInputStream nbtInputStream = NbtUtils.createNetworkReader(stream);
try {
2019-11-02 20:50:04 +00:00
blocksTag = (ListTag<CompoundTag>) nbtInputStream.readTag();
nbtInputStream.close();
} catch (Exception ex) {
2019-11-02 20:50:04 +00:00
GeyserLogger.DEFAULT.warning("Failed to get blocks from runtime block states, please report this error!");
throw new AssertionError(ex);
2019-07-11 22:39:28 +00:00
}
2019-11-02 20:50:04 +00:00
BLOCKS = blocksTag;
2019-08-06 01:59:54 +00:00
InputStream stream2 = Toolbox.class.getClassLoader().getResourceAsStream("bedrock/items.json");
2019-07-17 01:05:10 +00:00
if (stream2 == null) {
throw new AssertionError("Items Table not found");
}
2019-10-10 00:11:50 +00:00
ObjectMapper startGameItemMapper = new ObjectMapper();
List<Map> startGameItems = new ArrayList<>();
2019-07-17 01:05:10 +00:00
try {
2019-10-10 00:11:50 +00:00
startGameItems = startGameItemMapper.readValue(stream2, ArrayList.class);
2019-07-17 01:05:10 +00:00
} catch (Exception e) {
e.printStackTrace();
}
2019-10-10 00:11:50 +00:00
for (Map entry : startGameItems) {
2019-11-06 00:55:59 +00:00
ITEMS.add(new StartGamePacket.ItemEntry((String) entry.get("name"), (short) ((int) entry.get("id"))));
2019-07-17 01:05:10 +00:00
}
2019-11-30 02:34:51 +00:00
InputStream itemStream = Toolbox.class.getClassLoader().getResourceAsStream("mappings/items.json");
2019-10-10 00:11:50 +00:00
ObjectMapper itemMapper = new ObjectMapper();
Map<String, Map<String, Object>> items = new HashMap<>();
try {
2019-10-10 00:11:50 +00:00
items = itemMapper.readValue(itemStream, LinkedHashMap.class);
} catch (Exception ex) {
ex.printStackTrace();
}
2019-10-10 00:11:50 +00:00
int itemIndex = 0;
for (Map.Entry<String, Map<String, Object>> itemEntry : items.entrySet()) {
2019-11-06 00:55:59 +00:00
ITEM_ENTRIES.put(itemIndex, new ItemEntry(itemEntry.getKey(), itemIndex, (int) itemEntry.getValue().get("bedrock_id"), (int) itemEntry.getValue().get("bedrock_data")));
2019-10-10 00:11:50 +00:00
itemIndex++;
}
2019-11-30 02:34:51 +00:00
InputStream blockStream = Toolbox.class.getClassLoader().getResourceAsStream("mappings/blocks.json");
2019-10-10 00:11:50 +00:00
ObjectMapper blockMapper = new ObjectMapper();
Map<String, Map<String, Object>> blocks = new HashMap<>();
2019-08-07 23:08:48 +00:00
try {
2019-10-10 00:11:50 +00:00
blocks = blockMapper.readValue(blockStream, LinkedHashMap.class);
2019-08-07 23:08:48 +00:00
} catch (Exception ex) {
ex.printStackTrace();
}
int javaIndex = -1;
javaLoop:
for (Map.Entry<String, Map<String, Object>> javaEntry : blocks.entrySet()) {
javaIndex++;
String wantedIdentifier = (String) javaEntry.getValue().get("bedrock_identifier");
Map<String, Object> wantedStates = (Map<String, Object>) javaEntry.getValue().get("bedrock_states");
int bedrockIndex = -1;
bedrockLoop:
for (CompoundTag bedrockEntry : BLOCKS.getValue()) {
bedrockIndex++;
CompoundTag blockTag = bedrockEntry.getAsCompound("block");
if (blockTag.getAsString("name").equals(wantedIdentifier)) {
if (wantedStates != null) {
Map<String, Tag<?>> bedrockStates = blockTag.getAsCompound("states").getValue();
for (Map.Entry<String, Object> stateEntry : wantedStates.entrySet()) {
Tag<?> bedrockStateTag = bedrockStates.get(stateEntry.getKey());
if (bedrockStateTag == null)
continue bedrockLoop;
Object bedrockStateValue = bedrockStateTag.getValue();
if (bedrockStateValue instanceof Byte)
bedrockStateValue = ((Byte) bedrockStateValue).intValue();
if (!stateEntry.getValue().equals(bedrockStateValue))
continue bedrockLoop;
}
}
BlockEntry blockEntry = new BlockEntry(javaEntry.getKey(), javaIndex, bedrockIndex);
BLOCK_ENTRIES.put(javaIndex, blockEntry);
continue javaLoop;
}
2019-10-10 00:11:50 +00:00
}
GeyserLogger.DEFAULT.debug("Mapping " + javaEntry.getKey() + " was not found for bedrock edition!");
2019-10-10 00:11:50 +00:00
}
2019-07-11 22:39:28 +00:00
}
}