mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Merge pull request #1 from davchoo/feature/blocky
Fix light components and overriding inventory blocks
This commit is contained in:
commit
1e75b88215
5 changed files with 41 additions and 45 deletions
|
@ -76,15 +76,18 @@ public class BlockInventoryHolder extends InventoryHolder {
|
||||||
// (This could be a virtual inventory that the player is opening)
|
// (This could be a virtual inventory that the player is opening)
|
||||||
if (checkInteractionPosition(session)) {
|
if (checkInteractionPosition(session)) {
|
||||||
// Then, check to see if the interacted block is valid for this inventory by ensuring the block state identifier is valid
|
// Then, check to see if the interacted block is valid for this inventory by ensuring the block state identifier is valid
|
||||||
|
// and the bedrock block is vanilla
|
||||||
int javaBlockId = session.getGeyser().getWorldManager().getBlockAt(session, session.getLastInteractionBlockPosition());
|
int javaBlockId = session.getGeyser().getWorldManager().getBlockAt(session, session.getLastInteractionBlockPosition());
|
||||||
String[] javaBlockString = BlockRegistries.JAVA_IDENTIFIERS.get().getOrDefault(javaBlockId, "minecraft:air").split("\\[");
|
if (!BlockRegistries.CUSTOM_BLOCK_STATE_OVERRIDES.get().containsKey(javaBlockId)) {
|
||||||
if (isValidBlock(javaBlockString)) {
|
String[] javaBlockString = BlockRegistries.JAVA_IDENTIFIERS.get().getOrDefault(javaBlockId, "minecraft:air").split("\\[");
|
||||||
// We can safely use this block
|
if (isValidBlock(javaBlockString)) {
|
||||||
inventory.setHolderPosition(session.getLastInteractionBlockPosition());
|
// We can safely use this block
|
||||||
((Container) inventory).setUsingRealBlock(true, javaBlockString[0]);
|
inventory.setHolderPosition(session.getLastInteractionBlockPosition());
|
||||||
setCustomName(session, session.getLastInteractionBlockPosition(), inventory, javaBlockId);
|
((Container) inventory).setUsingRealBlock(true, javaBlockString[0]);
|
||||||
|
setCustomName(session, session.getLastInteractionBlockPosition(), inventory, javaBlockId);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +99,7 @@ public class BlockInventoryHolder extends InventoryHolder {
|
||||||
UpdateBlockPacket blockPacket = new UpdateBlockPacket();
|
UpdateBlockPacket blockPacket = new UpdateBlockPacket();
|
||||||
blockPacket.setDataLayer(0);
|
blockPacket.setDataLayer(0);
|
||||||
blockPacket.setBlockPosition(position);
|
blockPacket.setBlockPosition(position);
|
||||||
blockPacket.setRuntimeId(session.getBlockMappings().getBedrockBlockId(defaultJavaBlockState));
|
blockPacket.setRuntimeId(session.getBlockMappings().getVanillaBedrockBlockId(defaultJavaBlockState));
|
||||||
blockPacket.getFlags().addAll(UpdateBlockPacket.FLAG_ALL_PRIORITY);
|
blockPacket.getFlags().addAll(UpdateBlockPacket.FLAG_ALL_PRIORITY);
|
||||||
session.sendUpstreamPacket(blockPacket);
|
session.sendUpstreamPacket(blockPacket);
|
||||||
inventory.setHolderPosition(position);
|
inventory.setHolderPosition(position);
|
||||||
|
|
|
@ -118,7 +118,7 @@ public class BlockRegistries {
|
||||||
|
|
||||||
static {
|
static {
|
||||||
CustomSkullRegistryPopulator.populate();
|
CustomSkullRegistryPopulator.populate();
|
||||||
BlockRegistryPopulator.populate();
|
BlockRegistryPopulator.registerJavaBlocks();
|
||||||
COLLISIONS = IntMappedRegistry.create(Pair.of("org.geysermc.geyser.translator.collision.CollisionRemapper", "mappings/collision.json"), CollisionRegistryLoader::new);
|
COLLISIONS = IntMappedRegistry.create(Pair.of("org.geysermc.geyser.translator.collision.CollisionRemapper", "mappings/collision.json"), CollisionRegistryLoader::new);
|
||||||
CustomBlockRegistryPopulator.registerCustomBedrockBlocks();
|
CustomBlockRegistryPopulator.registerCustomBedrockBlocks();
|
||||||
BlockRegistryPopulator.registerBedrockBlocks();
|
BlockRegistryPopulator.registerBedrockBlocks();
|
||||||
|
|
|
@ -74,14 +74,6 @@ public final class BlockRegistryPopulator {
|
||||||
*/
|
*/
|
||||||
private static JsonNode BLOCKS_JSON;
|
private static JsonNode BLOCKS_JSON;
|
||||||
|
|
||||||
public static void populate() {
|
|
||||||
registerJavaBlocks();
|
|
||||||
// CustomBlockRegistryPopulator.registerCustomBedrockBlocks() and registerBedrockBlocks() moved to BlockRegistries to ensure correct load order
|
|
||||||
|
|
||||||
// Needs to be placed somewhere at some point
|
|
||||||
//BLOCKS_JSON = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void registerBedrockBlocks() {
|
public static void registerBedrockBlocks() {
|
||||||
BiFunction<String, NbtMapBuilder, String> emptyMapper = (bedrockIdentifier, statesBuilder) -> null;
|
BiFunction<String, NbtMapBuilder, String> emptyMapper = (bedrockIdentifier, statesBuilder) -> null;
|
||||||
ImmutableMap<ObjectIntPair<String>, BiFunction<String, NbtMapBuilder, String>> blockMappers = ImmutableMap.<ObjectIntPair<String>, BiFunction<String, NbtMapBuilder, String>>builder()
|
ImmutableMap<ObjectIntPair<String>, BiFunction<String, NbtMapBuilder, String>> blockMappers = ImmutableMap.<ObjectIntPair<String>, BiFunction<String, NbtMapBuilder, String>>builder()
|
||||||
|
@ -262,9 +254,11 @@ public final class BlockRegistryPopulator {
|
||||||
.customBlockStateIds(customBlockStateIds)
|
.customBlockStateIds(customBlockStateIds)
|
||||||
.build());
|
.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BLOCKS_JSON = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void registerJavaBlocks() {
|
public static void registerJavaBlocks() {
|
||||||
JsonNode blocksJson;
|
JsonNode blocksJson;
|
||||||
try (InputStream stream = GeyserImpl.getInstance().getBootstrap().getResource("mappings/blocks.json")) {
|
try (InputStream stream = GeyserImpl.getInstance().getBootstrap().getResource("mappings/blocks.json")) {
|
||||||
blocksJson = GeyserImpl.JSON_MAPPER.readTree(stream);
|
blocksJson = GeyserImpl.JSON_MAPPER.readTree(stream);
|
||||||
|
|
|
@ -254,15 +254,12 @@ public class CustomBlockRegistryPopulator {
|
||||||
}
|
}
|
||||||
if (components.lightEmission() != null) {
|
if (components.lightEmission() != null) {
|
||||||
builder.putCompound("minecraft:light_emission", NbtMap.builder()
|
builder.putCompound("minecraft:light_emission", NbtMap.builder()
|
||||||
.putInt("value", components.lightEmission())
|
.putByte("emission", components.lightEmission().byteValue())
|
||||||
.build());
|
.build());
|
||||||
}
|
}
|
||||||
// This is supposed to be sent as "light_dampening" since "block_light_filter" is the old value
|
|
||||||
// However, it seems they forgot to actually update it on the network despite all the documentation changing
|
|
||||||
// So we'll send this for now
|
|
||||||
if (components.lightDampening() != null) {
|
if (components.lightDampening() != null) {
|
||||||
builder.putCompound("minecraft:block_light_filter", NbtMap.builder()
|
builder.putCompound("minecraft:light_dampening", NbtMap.builder()
|
||||||
.putByte("value", components.lightDampening().byteValue())
|
.putByte("lightLevel", components.lightDampening().byteValue())
|
||||||
.build());
|
.build());
|
||||||
}
|
}
|
||||||
if (components.rotation() != null) {
|
if (components.rotation() != null) {
|
||||||
|
|
|
@ -55,30 +55,32 @@ public class DoubleChestInventoryTranslator extends ChestInventoryTranslator {
|
||||||
// See BlockInventoryHolder - same concept there except we're also dealing with a specific block state
|
// See BlockInventoryHolder - same concept there except we're also dealing with a specific block state
|
||||||
if (session.getLastInteractionPlayerPosition().equals(session.getPlayerEntity().getPosition())) {
|
if (session.getLastInteractionPlayerPosition().equals(session.getPlayerEntity().getPosition())) {
|
||||||
int javaBlockId = session.getGeyser().getWorldManager().getBlockAt(session, session.getLastInteractionBlockPosition());
|
int javaBlockId = session.getGeyser().getWorldManager().getBlockAt(session, session.getLastInteractionBlockPosition());
|
||||||
String[] javaBlockString = BlockRegistries.JAVA_IDENTIFIERS.get().getOrDefault(javaBlockId, "minecraft:air").split("\\[");
|
if (!BlockRegistries.CUSTOM_BLOCK_STATE_OVERRIDES.get().containsKey(javaBlockId)) {
|
||||||
if (javaBlockString.length > 1 && (javaBlockString[0].equals("minecraft:chest") || javaBlockString[0].equals("minecraft:trapped_chest"))
|
String[] javaBlockString = BlockRegistries.JAVA_IDENTIFIERS.get().getOrDefault(javaBlockId, "minecraft:air").split("\\[");
|
||||||
&& !javaBlockString[1].contains("type=single")) {
|
if (javaBlockString.length > 1 && (javaBlockString[0].equals("minecraft:chest") || javaBlockString[0].equals("minecraft:trapped_chest"))
|
||||||
inventory.setHolderPosition(session.getLastInteractionBlockPosition());
|
&& !javaBlockString[1].contains("type=single")) {
|
||||||
((Container) inventory).setUsingRealBlock(true, javaBlockString[0]);
|
inventory.setHolderPosition(session.getLastInteractionBlockPosition());
|
||||||
|
((Container) inventory).setUsingRealBlock(true, javaBlockString[0]);
|
||||||
|
|
||||||
NbtMapBuilder tag = NbtMap.builder()
|
NbtMapBuilder tag = NbtMap.builder()
|
||||||
.putString("id", "Chest")
|
.putString("id", "Chest")
|
||||||
.putInt("x", session.getLastInteractionBlockPosition().getX())
|
.putInt("x", session.getLastInteractionBlockPosition().getX())
|
||||||
.putInt("y", session.getLastInteractionBlockPosition().getY())
|
.putInt("y", session.getLastInteractionBlockPosition().getY())
|
||||||
.putInt("z", session.getLastInteractionBlockPosition().getZ())
|
.putInt("z", session.getLastInteractionBlockPosition().getZ())
|
||||||
.putString("CustomName", inventory.getTitle())
|
.putString("CustomName", inventory.getTitle())
|
||||||
.putString("id", "Chest");
|
.putString("id", "Chest");
|
||||||
|
|
||||||
DoubleChestValue chestValue = BlockStateValues.getDoubleChestValues().get(javaBlockId);
|
DoubleChestValue chestValue = BlockStateValues.getDoubleChestValues().get(javaBlockId);
|
||||||
DoubleChestBlockEntityTranslator.translateChestValue(tag, chestValue,
|
DoubleChestBlockEntityTranslator.translateChestValue(tag, chestValue,
|
||||||
session.getLastInteractionBlockPosition().getX(), session.getLastInteractionBlockPosition().getZ());
|
session.getLastInteractionBlockPosition().getX(), session.getLastInteractionBlockPosition().getZ());
|
||||||
|
|
||||||
BlockEntityDataPacket dataPacket = new BlockEntityDataPacket();
|
BlockEntityDataPacket dataPacket = new BlockEntityDataPacket();
|
||||||
dataPacket.setData(tag.build());
|
dataPacket.setData(tag.build());
|
||||||
dataPacket.setBlockPosition(session.getLastInteractionBlockPosition());
|
dataPacket.setBlockPosition(session.getLastInteractionBlockPosition());
|
||||||
session.sendUpstreamPacket(dataPacket);
|
session.sendUpstreamPacket(dataPacket);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -88,7 +90,7 @@ public class DoubleChestInventoryTranslator extends ChestInventoryTranslator {
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3i pairPosition = position.add(Vector3i.UNIT_X);
|
Vector3i pairPosition = position.add(Vector3i.UNIT_X);
|
||||||
int bedrockBlockId = session.getBlockMappings().getBedrockBlockId(defaultJavaBlockState);
|
int bedrockBlockId = session.getBlockMappings().getVanillaBedrockBlockId(defaultJavaBlockState);
|
||||||
|
|
||||||
UpdateBlockPacket blockPacket = new UpdateBlockPacket();
|
UpdateBlockPacket blockPacket = new UpdateBlockPacket();
|
||||||
blockPacket.setDataLayer(0);
|
blockPacket.setDataLayer(0);
|
||||||
|
|
Loading…
Reference in a new issue