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

112 lines
4.7 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;
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;
import org.geysermc.connector.world.GlobalBlockPalette;
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-10-10 00:11:50 +00:00
Map<String, Integer> blockIdToIdentifier = new HashMap<>();
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
for (CompoundTag entry : blocksTag.getValue()) {
String name = entry.getAsCompound("block").getAsString("name");
int id = entry.getAsShort("id");
int data = entry.getAsShort("meta");
blockIdToIdentifier.put(name, id);
GlobalBlockPalette.registerMapping(id << 4 | data);
}
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();
}
2019-10-10 00:11:50 +00:00
int blockIndex = 0;
for (Map.Entry<String, Map<String, Object>> itemEntry : blocks.entrySet()) {
if (!blockIdToIdentifier.containsKey(itemEntry.getValue().get("bedrock_identifier"))) {
2019-11-02 20:50:04 +00:00
GeyserLogger.DEFAULT.debug("Mapping " + itemEntry.getValue().get("bedrock_identifier") + " was not found for bedrock edition!");
2019-11-06 00:55:59 +00:00
BLOCK_ENTRIES.put(blockIndex, new BlockEntry(itemEntry.getKey(), blockIndex, 248, 0)); // update block
2019-10-10 00:11:50 +00:00
} else {
2019-11-06 00:55:59 +00:00
BLOCK_ENTRIES.put(blockIndex, new BlockEntry(itemEntry.getKey(), blockIndex, blockIdToIdentifier.get(itemEntry.getValue().get("bedrock_identifier")), (int) itemEntry.getValue().get("bedrock_data")));
2019-10-10 00:11:50 +00:00
}
2019-08-07 23:08:48 +00:00
2019-10-10 00:11:50 +00:00
blockIndex++;
}
2019-07-11 22:39:28 +00:00
}
}