2020-07-17 18:05:50 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-06-27 20:02:39 +02:00
|
|
|
From: tr7zw <tr7zw@live.de>
|
|
|
|
Date: Fri, 26 Jun 2020 01:11:47 +0200
|
|
|
|
Subject: [PATCH] Optimize Hopper logic
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockHopper.java b/src/main/java/net/minecraft/server/BlockHopper.java
|
2020-08-13 17:53:32 +02:00
|
|
|
index a29294fbc7cd6fcfff0df9eadd11de3bd7f1405e..2f66740de68667e5c0054a0bc7990256163087cd 100644
|
2020-07-17 18:21:30 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockHopper.java
|
2020-06-27 20:02:39 +02:00
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockHopper.java
|
2020-07-17 18:21:30 +02:00
|
|
|
@@ -110,6 +110,12 @@ public class BlockHopper extends BlockTileEntity {
|
|
|
|
@Override
|
|
|
|
public void doPhysics(IBlockData iblockdata, World world, BlockPosition blockposition, Block block, BlockPosition blockposition1, boolean flag) {
|
|
|
|
this.a(world, blockposition, iblockdata);
|
2020-08-13 17:53:32 +02:00
|
|
|
+ // Yatopia start
|
|
|
|
+ TileEntity tileEntity = world.getTileEntity(blockposition);
|
|
|
|
+ if (tileEntity instanceof TileEntityHopper) {
|
|
|
|
+ ((TileEntityHopper) tileEntity).flushCaches();
|
|
|
|
+ }
|
|
|
|
+ // Yatopia end
|
2020-07-17 18:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void a(World world, BlockPosition blockposition, IBlockData iblockdata) {
|
2020-06-27 20:02:39 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntityHopper.java b/src/main/java/net/minecraft/server/TileEntityHopper.java
|
2020-08-25 10:04:18 +02:00
|
|
|
index 95bede605c6401af10f18b641cd12c9d8ec2f207..0a975642ce0cce4cbce02e9be976427ed42cce65 100644
|
2020-06-27 20:02:39 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntityHopper.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntityHopper.java
|
2020-08-25 10:04:18 +02:00
|
|
|
@@ -661,14 +661,93 @@ public class TileEntityHopper extends TileEntityLootable implements IHopper, ITi
|
2020-06-27 20:02:39 +02:00
|
|
|
|
|
|
|
@Nullable
|
|
|
|
private IInventory l() {
|
2020-08-11 20:40:29 +02:00
|
|
|
+ // Yatopia start
|
2020-08-25 10:04:18 +02:00
|
|
|
+ if (!shouldNotCachePush && cachedPush != null) {
|
2020-08-13 17:53:32 +02:00
|
|
|
+ return cachedPush;
|
|
|
|
+ }
|
|
|
|
+ // Yatopia end
|
2020-06-27 20:02:39 +02:00
|
|
|
EnumDirection enumdirection = (EnumDirection) this.getBlock().get(BlockHopper.FACING);
|
|
|
|
|
|
|
|
- return b(this.getWorld(), this.position.shift(enumdirection));
|
2020-08-13 17:53:32 +02:00
|
|
|
+ // Yatopia start - replace logic
|
|
|
|
+ //return b(this.getWorld(), this.position.shift(enumdirection));
|
2020-08-17 20:39:05 +02:00
|
|
|
+ // basically reimplement TileEntityHopper#b but in a better way in order to
|
|
|
|
+ // not make them composters bork
|
2020-08-25 10:04:18 +02:00
|
|
|
+ if (shouldNotCachePush || !cachedPushAir) {
|
|
|
|
+ BlockPosition shifted = this.position.shift(enumdirection);
|
|
|
|
+ BlockPosition checkedPosition = new BlockPosition(shifted.getX() + 0.5D, shifted.getY() + 0.5D, shifted.getZ() + 0.5D);
|
2020-08-17 20:39:05 +02:00
|
|
|
+ if (!world.isLoaded(checkedPosition)) return null;
|
|
|
|
+ IBlockData blockData = world.getType(checkedPosition);
|
|
|
|
+ Block block = blockData.getBlock();
|
|
|
|
+ if (block instanceof IInventoryHolder) {
|
|
|
|
+ this.cachedPush = ((IInventoryHolder) block).a(blockData, world, checkedPosition);
|
2020-08-25 10:04:18 +02:00
|
|
|
+ shouldNotCachePush = true;
|
2020-08-17 20:39:05 +02:00
|
|
|
+ } else if (block.isTileEntity()) {
|
|
|
|
+ TileEntity tileEntity = world.getTileEntity(checkedPosition);
|
|
|
|
+ if (tileEntity instanceof IInventory) {
|
|
|
|
+ IInventory inv = (IInventory) tileEntity;
|
|
|
|
+ if (inv instanceof TileEntityChest && block instanceof BlockChest) {
|
|
|
|
+ inv = BlockChest.getInventory((BlockChest) block, blockData, world, checkedPosition, true);
|
|
|
|
+ }
|
2020-08-25 10:04:18 +02:00
|
|
|
+ if (inv instanceof EntityMinecartContainer) {
|
|
|
|
+ shouldNotCachePush = true;
|
|
|
|
+ }
|
2020-08-17 20:39:05 +02:00
|
|
|
+ this.cachedPush = inv;
|
|
|
|
+ }
|
|
|
|
+ }
|
2020-07-16 23:27:15 +02:00
|
|
|
+ }
|
2020-08-11 20:40:29 +02:00
|
|
|
+ if (this.cachedPush == null) {
|
2020-08-13 17:53:32 +02:00
|
|
|
+ this.cachedPushAir = true;
|
2020-07-16 23:27:15 +02:00
|
|
|
+ }
|
2020-06-27 20:02:39 +02:00
|
|
|
+ return this.cachedPush;
|
2020-08-13 17:53:32 +02:00
|
|
|
+ // Yatopia end
|
2020-06-27 20:02:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
public static IInventory b(IHopper ihopper) {
|
2020-08-13 17:53:32 +02:00
|
|
|
+ // Yatopia start - replaced logic
|
|
|
|
+ if (ihopper instanceof TileEntityHopper) {
|
|
|
|
+ TileEntityHopper hopper = (TileEntityHopper) ihopper;
|
2020-08-25 10:04:18 +02:00
|
|
|
+ if (!hopper.shouldNotCachePull && hopper.cachedAbove != null) {
|
2020-08-13 17:53:32 +02:00
|
|
|
+ return hopper.cachedAbove;
|
|
|
|
+ }
|
2020-08-25 10:04:18 +02:00
|
|
|
+ // reimplement here too cuz minecarts
|
|
|
|
+ BlockPosition pos = new BlockPosition(ihopper.getX(), ihopper.getY() + 1.0D, ihopper.getZ());
|
|
|
|
+ if (hopper.shouldNotCachePull || hopper.cachedPullAir) {
|
|
|
|
+ if (hopper.world.isLoaded(pos)) return null;
|
|
|
|
+ IBlockData blockData = hopper.world.getType(pos);
|
|
|
|
+ Block block = blockData.getBlock();
|
|
|
|
+ if (block instanceof IInventoryHolder) {
|
|
|
|
+ hopper.cachedAbove = ((IInventoryHolder) block).a(blockData, hopper.world, pos);
|
|
|
|
+ hopper.shouldNotCachePull = true;
|
|
|
|
+ } else if (block.isTileEntity()) {
|
|
|
|
+ TileEntity tileEntity = hopper.world.getTileEntity(pos);
|
|
|
|
+ if (tileEntity instanceof IInventory) {
|
|
|
|
+ IInventory inv = (IInventory) tileEntity;
|
|
|
|
+ if (inv instanceof TileEntityChest && block instanceof BlockChest) {
|
|
|
|
+ inv = BlockChest.getInventory((BlockChest) block, blockData, hopper.world, pos, true);
|
|
|
|
+ }
|
|
|
|
+ if (inv instanceof EntityMinecartContainer) {
|
|
|
|
+ hopper.shouldNotCachePull = true;
|
|
|
|
+ }
|
|
|
|
+ hopper.cachedAbove = inv;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (hopper.cachedAbove == null) {
|
|
|
|
+ List<Entity> list = hopper.world.getEntities((Entity) null, new AxisAlignedBB(pos.getX() - 0.5D, pos.getY() - 0.5D, pos.getZ() - 0.5D, pos.getX() + 0.5D, pos.getY() + 0.5D, pos.getZ() + 0.5D), IEntitySelector.d);
|
|
|
|
+
|
|
|
|
+ if (!list.isEmpty()) {
|
|
|
|
+ hopper.cachedAbove = (IInventory) list.get(java.util.concurrent.ThreadLocalRandom.current().nextInt(list.size()));
|
|
|
|
+ }
|
|
|
|
+ }
|
2020-08-13 17:53:32 +02:00
|
|
|
+ if (hopper.cachedAbove == null) {
|
|
|
|
+ hopper.cachedPullAir = true;
|
|
|
|
+ }
|
2020-08-25 10:04:18 +02:00
|
|
|
+ return hopper.cachedAbove;
|
2020-08-13 17:53:32 +02:00
|
|
|
+ } else {
|
|
|
|
return a(ihopper.getWorld(), ihopper.x(), ihopper.z() + 1.0D, ihopper.A());
|
|
|
|
+ }
|
2020-08-11 20:40:29 +02:00
|
|
|
+ // Yatopia end
|
2020-06-27 20:02:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static List<EntityItem> c(IHopper ihopper) {
|
2020-08-25 10:04:18 +02:00
|
|
|
@@ -779,4 +858,21 @@ public class TileEntityHopper extends TileEntityLootable implements IHopper, ITi
|
2020-06-27 20:02:39 +02:00
|
|
|
protected Container createContainer(int i, PlayerInventory playerinventory) {
|
|
|
|
return new ContainerHopper(i, playerinventory, this);
|
|
|
|
}
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
|
|
|
+ // Yatopia start
|
2020-06-27 20:02:39 +02:00
|
|
|
+ private IInventory cachedAbove = null;
|
|
|
|
+ private IInventory cachedPush = null;
|
2020-07-16 23:27:15 +02:00
|
|
|
+ private boolean cachedPushAir = false;
|
|
|
|
+ private boolean cachedPullAir = false;
|
2020-08-25 10:04:18 +02:00
|
|
|
+ private boolean shouldNotCachePush = false;
|
|
|
|
+ private boolean shouldNotCachePull = false;
|
2020-06-27 20:02:39 +02:00
|
|
|
+ public void flushCaches() {
|
2020-08-13 17:53:32 +02:00
|
|
|
+ cachedAbove = null;
|
|
|
|
+ cachedPush = null;
|
|
|
|
+ cachedPushAir = false;
|
|
|
|
+ cachedPullAir = false;
|
2020-08-25 10:04:18 +02:00
|
|
|
+ shouldNotCachePush = false;
|
|
|
|
+ shouldNotCachePull = false;
|
2020-06-27 20:02:39 +02:00
|
|
|
+ }
|
2020-08-25 10:04:18 +02:00
|
|
|
+ // Yatopia end
|
2020-06-27 20:02:39 +02:00
|
|
|
}
|