mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-18 00:25:39 +01:00
SPIGOT-5621: Add missing container types for opening InventoryView
This commit is contained in:
parent
aa3a2f2767
commit
b2de47d581
@ -17,13 +17,11 @@ import net.minecraft.server.Containers;
|
|||||||
import net.minecraft.server.CraftingManager;
|
import net.minecraft.server.CraftingManager;
|
||||||
import net.minecraft.server.Entity;
|
import net.minecraft.server.Entity;
|
||||||
import net.minecraft.server.EntityHuman;
|
import net.minecraft.server.EntityHuman;
|
||||||
import net.minecraft.server.EntityMinecartHopper;
|
|
||||||
import net.minecraft.server.EntityPlayer;
|
import net.minecraft.server.EntityPlayer;
|
||||||
import net.minecraft.server.EntityTypes;
|
import net.minecraft.server.EntityTypes;
|
||||||
import net.minecraft.server.EnumMainHand;
|
import net.minecraft.server.EnumMainHand;
|
||||||
import net.minecraft.server.IBlockData;
|
import net.minecraft.server.IBlockData;
|
||||||
import net.minecraft.server.IChatBaseComponent;
|
import net.minecraft.server.IChatBaseComponent;
|
||||||
import net.minecraft.server.IInventory;
|
|
||||||
import net.minecraft.server.IMerchant;
|
import net.minecraft.server.IMerchant;
|
||||||
import net.minecraft.server.IRecipe;
|
import net.minecraft.server.IRecipe;
|
||||||
import net.minecraft.server.ITileInventory;
|
import net.minecraft.server.ITileInventory;
|
||||||
@ -32,17 +30,7 @@ import net.minecraft.server.NBTTagCompound;
|
|||||||
import net.minecraft.server.PacketPlayInCloseWindow;
|
import net.minecraft.server.PacketPlayInCloseWindow;
|
||||||
import net.minecraft.server.PacketPlayOutOpenWindow;
|
import net.minecraft.server.PacketPlayOutOpenWindow;
|
||||||
import net.minecraft.server.TileEntity;
|
import net.minecraft.server.TileEntity;
|
||||||
import net.minecraft.server.TileEntityBarrel;
|
import net.minecraft.server.TileEntityContainer;
|
||||||
import net.minecraft.server.TileEntityBeacon;
|
|
||||||
import net.minecraft.server.TileEntityBlastFurnace;
|
|
||||||
import net.minecraft.server.TileEntityBrewingStand;
|
|
||||||
import net.minecraft.server.TileEntityDispenser;
|
|
||||||
import net.minecraft.server.TileEntityDropper;
|
|
||||||
import net.minecraft.server.TileEntityFurnaceFurnace;
|
|
||||||
import net.minecraft.server.TileEntityHopper;
|
|
||||||
import net.minecraft.server.TileEntityLectern;
|
|
||||||
import net.minecraft.server.TileEntityShulkerBox;
|
|
||||||
import net.minecraft.server.TileEntitySmoker;
|
|
||||||
import net.minecraft.server.Vec3D;
|
import net.minecraft.server.Vec3D;
|
||||||
import org.bukkit.GameMode;
|
import org.bukkit.GameMode;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
@ -318,7 +306,6 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
|||||||
public InventoryView openInventory(Inventory inventory) {
|
public InventoryView openInventory(Inventory inventory) {
|
||||||
if(!(getHandle() instanceof EntityPlayer)) return null;
|
if(!(getHandle() instanceof EntityPlayer)) return null;
|
||||||
EntityPlayer player = (EntityPlayer) getHandle();
|
EntityPlayer player = (EntityPlayer) getHandle();
|
||||||
InventoryType type = inventory.getType();
|
|
||||||
Container formerContainer = getHandle().activeContainer;
|
Container formerContainer = getHandle().activeContainer;
|
||||||
|
|
||||||
ITileInventory iinventory = null;
|
ITileInventory iinventory = null;
|
||||||
@ -340,150 +327,13 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (type) {
|
Containers<?> container = CraftContainer.getNotchInventoryType(inventory);
|
||||||
case PLAYER:
|
if (iinventory instanceof TileEntityContainer) {
|
||||||
case CHEST:
|
getHandle().openContainer(iinventory);
|
||||||
case ENDER_CHEST:
|
|
||||||
if (iinventory instanceof ITileInventory) {
|
|
||||||
getHandle().openContainer((ITileInventory) iinventory);
|
|
||||||
} else {
|
} else {
|
||||||
Containers customSize;
|
openCustomInventory(inventory, player, container);
|
||||||
switch (inventory.getSize()) {
|
|
||||||
case 9:
|
|
||||||
customSize = Containers.GENERIC_9X1;
|
|
||||||
break;
|
|
||||||
case 18:
|
|
||||||
customSize = Containers.GENERIC_9X2;
|
|
||||||
break;
|
|
||||||
case 27:
|
|
||||||
customSize = Containers.GENERIC_9X3;
|
|
||||||
break;
|
|
||||||
case 36:
|
|
||||||
case 41: // PLAYER
|
|
||||||
customSize = Containers.GENERIC_9X4;
|
|
||||||
break;
|
|
||||||
case 45:
|
|
||||||
customSize = Containers.GENERIC_9X5;
|
|
||||||
break;
|
|
||||||
case 54:
|
|
||||||
customSize = Containers.GENERIC_9X6;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
throw new IllegalArgumentException("Unsupported custom inventory size " + inventory.getSize());
|
|
||||||
}
|
|
||||||
openCustomInventory(inventory, player, customSize);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case DISPENSER:
|
|
||||||
if (iinventory instanceof TileEntityDispenser) {
|
|
||||||
getHandle().openContainer((TileEntityDispenser) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.GENERIC_3X3);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case DROPPER:
|
|
||||||
if (iinventory instanceof TileEntityDropper) {
|
|
||||||
getHandle().openContainer((TileEntityDropper) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.GENERIC_3X3);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case FURNACE:
|
|
||||||
if (iinventory instanceof TileEntityFurnaceFurnace) {
|
|
||||||
getHandle().openContainer((TileEntityFurnaceFurnace) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.FURNACE);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case WORKBENCH:
|
|
||||||
openCustomInventory(inventory, player, Containers.CRAFTING);
|
|
||||||
break;
|
|
||||||
case BREWING:
|
|
||||||
if (iinventory instanceof TileEntityBrewingStand) {
|
|
||||||
getHandle().openContainer((TileEntityBrewingStand) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.BREWING_STAND);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case ENCHANTING:
|
|
||||||
openCustomInventory(inventory, player, Containers.ENCHANTMENT);
|
|
||||||
break;
|
|
||||||
case HOPPER:
|
|
||||||
if (iinventory instanceof TileEntityHopper) {
|
|
||||||
getHandle().openContainer((TileEntityHopper) iinventory);
|
|
||||||
} else if (iinventory instanceof EntityMinecartHopper) {
|
|
||||||
getHandle().openContainer((EntityMinecartHopper) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.HOPPER);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case BEACON:
|
|
||||||
if (iinventory instanceof TileEntityBeacon) {
|
|
||||||
getHandle().openContainer((TileEntityBeacon) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.BEACON);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case ANVIL:
|
|
||||||
if (iinventory instanceof ITileInventory) {
|
|
||||||
getHandle().openContainer((ITileInventory) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.ANVIL);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case SHULKER_BOX:
|
|
||||||
if (iinventory instanceof TileEntityShulkerBox) {
|
|
||||||
getHandle().openContainer((TileEntityShulkerBox) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.SHULKER_BOX);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case BARREL:
|
|
||||||
if (iinventory instanceof TileEntityBarrel) {
|
|
||||||
getHandle().openContainer((TileEntityBarrel) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.GENERIC_9X3);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case BLAST_FURNACE:
|
|
||||||
if (iinventory instanceof TileEntityBlastFurnace) {
|
|
||||||
getHandle().openContainer((TileEntityBlastFurnace) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.BLAST_FURNACE);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case LECTERN:
|
|
||||||
if (iinventory instanceof TileEntityLectern) {
|
|
||||||
getHandle().openContainer((TileEntityLectern) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.LECTERN);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case SMOKER:
|
|
||||||
if (iinventory instanceof TileEntitySmoker) {
|
|
||||||
getHandle().openContainer((TileEntitySmoker) iinventory);
|
|
||||||
} else {
|
|
||||||
openCustomInventory(inventory, player, Containers.SMOKER);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case STONECUTTER:
|
|
||||||
openCustomInventory(inventory, player, Containers.STONECUTTER);
|
|
||||||
break;
|
|
||||||
case LOOM:
|
|
||||||
openCustomInventory(inventory, player, Containers.LOOM);
|
|
||||||
break;
|
|
||||||
case CARTOGRAPHY:
|
|
||||||
openCustomInventory(inventory, player, Containers.CARTOGRAPHY_TABLE);
|
|
||||||
break;
|
|
||||||
case GRINDSTONE:
|
|
||||||
openCustomInventory(inventory, player, Containers.GRINDSTONE);
|
|
||||||
break;
|
|
||||||
case CREATIVE:
|
|
||||||
case CRAFTING:
|
|
||||||
case MERCHANT:
|
|
||||||
default:
|
|
||||||
throw new IllegalArgumentException("Can't open a " + type + " inventory!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getHandle().activeContainer == formerContainer) {
|
if (getHandle().activeContainer == formerContainer) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -569,8 +419,7 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Now open the window
|
// Now open the window
|
||||||
InventoryType type = inventory.getType();
|
Containers<?> windowType = CraftContainer.getNotchInventoryType(inventory.getTopInventory());
|
||||||
Containers<?> windowType = CraftContainer.getNotchInventoryType(type);
|
|
||||||
String title = inventory.getTitle();
|
String title = inventory.getTitle();
|
||||||
player.playerConnection.sendPacket(new PacketPlayOutOpenWindow(container.windowId, windowType, new ChatComponentText(title)));
|
player.playerConnection.sendPacket(new PacketPlayOutOpenWindow(container.windowId, windowType, new ChatComponentText(title)));
|
||||||
player.activeContainer = container;
|
player.activeContainer = container;
|
||||||
|
@ -42,7 +42,7 @@ public class CraftContainer extends Container {
|
|||||||
private final int cachedSize;
|
private final int cachedSize;
|
||||||
|
|
||||||
public CraftContainer(InventoryView view, EntityHuman player, int id) {
|
public CraftContainer(InventoryView view, EntityHuman player, int id) {
|
||||||
super(getNotchInventoryType(view.getType()), id);
|
super(getNotchInventoryType(view.getTopInventory()), id);
|
||||||
this.view = view;
|
this.view = view;
|
||||||
// TODO: Do we need to check that it really is a CraftInventory?
|
// TODO: Do we need to check that it really is a CraftInventory?
|
||||||
IInventory top = ((CraftInventory) view.getTopInventory()).getInventory();
|
IInventory top = ((CraftInventory) view.getTopInventory()).getInventory();
|
||||||
@ -104,7 +104,7 @@ public class CraftContainer extends Container {
|
|||||||
cachedTitle = view.getTitle();
|
cachedTitle = view.getTitle();
|
||||||
if (view.getPlayer() instanceof CraftPlayer) {
|
if (view.getPlayer() instanceof CraftPlayer) {
|
||||||
CraftPlayer player = (CraftPlayer) view.getPlayer();
|
CraftPlayer player = (CraftPlayer) view.getPlayer();
|
||||||
Containers type = getNotchInventoryType(cachedType);
|
Containers<?> type = getNotchInventoryType(view.getTopInventory());
|
||||||
IInventory top = ((CraftInventory) view.getTopInventory()).getInventory();
|
IInventory top = ((CraftInventory) view.getTopInventory()).getInventory();
|
||||||
PlayerInventory bottom = (PlayerInventory) ((CraftInventory) view.getBottomInventory()).getInventory();
|
PlayerInventory bottom = (PlayerInventory) ((CraftInventory) view.getBottomInventory()).getInventory();
|
||||||
this.items.clear();
|
this.items.clear();
|
||||||
@ -119,8 +119,29 @@ public class CraftContainer extends Container {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Containers getNotchInventoryType(InventoryType type) {
|
public static Containers getNotchInventoryType(Inventory inventory) {
|
||||||
switch (type) {
|
switch (inventory.getType()) {
|
||||||
|
case PLAYER:
|
||||||
|
case CHEST:
|
||||||
|
case ENDER_CHEST:
|
||||||
|
case BARREL:
|
||||||
|
switch(inventory.getSize()) {
|
||||||
|
case 9:
|
||||||
|
return Containers.GENERIC_9X1;
|
||||||
|
case 18:
|
||||||
|
return Containers.GENERIC_9X2;
|
||||||
|
case 27:
|
||||||
|
return Containers.GENERIC_9X3;
|
||||||
|
case 36:
|
||||||
|
case 41: // PLAYER
|
||||||
|
return Containers.GENERIC_9X4;
|
||||||
|
case 45:
|
||||||
|
return Containers.GENERIC_9X5;
|
||||||
|
case 54:
|
||||||
|
return Containers.GENERIC_9X6;
|
||||||
|
default:
|
||||||
|
throw new IllegalArgumentException("Unsupported custom inventory size " + inventory.getSize());
|
||||||
|
}
|
||||||
case WORKBENCH:
|
case WORKBENCH:
|
||||||
return Containers.CRAFTING;
|
return Containers.CRAFTING;
|
||||||
case FURNACE:
|
case FURNACE:
|
||||||
@ -155,7 +176,12 @@ public class CraftContainer extends Container {
|
|||||||
return Containers.GRINDSTONE;
|
return Containers.GRINDSTONE;
|
||||||
case STONECUTTER:
|
case STONECUTTER:
|
||||||
return Containers.STONECUTTER;
|
return Containers.STONECUTTER;
|
||||||
|
case CREATIVE:
|
||||||
|
case CRAFTING:
|
||||||
|
case MERCHANT:
|
||||||
|
throw new IllegalArgumentException("Can't open a " + inventory.getType() + " inventory!");
|
||||||
default:
|
default:
|
||||||
|
// TODO: If it reaches the default case, should we throw an error?
|
||||||
return Containers.GENERIC_9X3;
|
return Containers.GENERIC_9X3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -271,6 +297,6 @@ public class CraftContainer extends Container {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Containers<?> getType() {
|
public Containers<?> getType() {
|
||||||
return getNotchInventoryType(cachedType);
|
return getNotchInventoryType(view.getTopInventory());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user