3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 05:20:07 +01:00
Paper/src/main/java/net/minecraft/server/ContainerBrewingStand.java

127 Zeilen
4.1 KiB
Java

package net.minecraft.server;
// CraftBukkit start
import org.bukkit.craftbukkit.inventory.CraftInventory;
import org.bukkit.craftbukkit.inventory.CraftInventoryView;
// CraftBukkit end
public class ContainerBrewingStand extends Container {
2012-02-29 22:31:04 +01:00
private TileEntityBrewingStand brewingStand;
2012-07-29 09:33:13 +02:00
private final Slot f;
private int g = 0;
// CraftBukkit start
private CraftInventoryView bukkitEntity = null;
private PlayerInventory player;
// CraftBukkit end
public ContainerBrewingStand(PlayerInventory playerinventory, TileEntityBrewingStand tileentitybrewingstand) {
player = playerinventory; // CraftBukkit
2012-02-29 22:31:04 +01:00
this.brewingStand = tileentitybrewingstand;
2012-07-29 09:33:13 +02:00
this.a(new SlotPotionBottle(playerinventory.player, tileentitybrewingstand, 0, 56, 46));
this.a(new SlotPotionBottle(playerinventory.player, tileentitybrewingstand, 1, 79, 53));
this.a(new SlotPotionBottle(playerinventory.player, tileentitybrewingstand, 2, 102, 46));
this.f = this.a(new SlotBrewing(this, tileentitybrewingstand, 3, 79, 17));
int i;
for (i = 0; i < 3; ++i) {
for (int j = 0; j < 9; ++j) {
this.a(new Slot(playerinventory, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
}
}
for (i = 0; i < 9; ++i) {
this.a(new Slot(playerinventory, i, 8 + i * 18, 142));
}
}
2012-02-29 22:31:04 +01:00
public void addSlotListener(ICrafting icrafting) {
super.addSlotListener(icrafting);
icrafting.setContainerData(this, 0, this.brewingStand.x_());
}
2012-07-29 09:33:13 +02:00
public void b() {
super.b();
2012-11-06 13:05:28 +01:00
for (int i = 0; i < this.listeners.size(); ++i) {
ICrafting icrafting = (ICrafting) this.listeners.get(i);
if (this.g != this.brewingStand.x_()) {
icrafting.setContainerData(this, 0, this.brewingStand.x_());
}
}
this.g = this.brewingStand.x_();
}
2012-11-06 13:05:28 +01:00
public boolean a(EntityHuman entityhuman) {
if (!this.checkReachable) return true; // CraftBukkit
2012-11-06 13:05:28 +01:00
return this.brewingStand.a_(entityhuman);
}
public ItemStack b(EntityHuman entityhuman, int i) {
ItemStack itemstack = null;
2012-11-06 13:05:28 +01:00
Slot slot = (Slot) this.c.get(i);
2012-07-29 09:33:13 +02:00
if (slot != null && slot.d()) {
ItemStack itemstack1 = slot.getItem();
itemstack = itemstack1.cloneItemStack();
if ((i < 0 || i > 2) && i != 3) {
2012-07-29 09:33:13 +02:00
if (!this.f.d() && this.f.isAllowed(itemstack1)) {
if (!this.a(itemstack1, 3, 4, false)) {
return null;
}
} else if (SlotPotionBottle.a_(itemstack)) {
if (!this.a(itemstack1, 0, 3, false)) {
return null;
}
} else if (i >= 4 && i < 31) {
if (!this.a(itemstack1, 31, 40, false)) {
return null;
}
} else if (i >= 31 && i < 40) {
if (!this.a(itemstack1, 4, 31, false)) {
return null;
}
} else if (!this.a(itemstack1, 4, 40, false)) {
return null;
}
2012-03-01 11:49:23 +01:00
} else {
if (!this.a(itemstack1, 4, 40, true)) {
return null;
}
slot.a(itemstack1, itemstack);
}
if (itemstack1.count == 0) {
2012-02-29 22:31:04 +01:00
slot.set((ItemStack) null);
} else {
2012-07-29 09:33:13 +02:00
slot.e();
}
if (itemstack1.count == itemstack.count) {
return null;
}
slot.a(entityhuman, itemstack1);
}
return itemstack;
}
// CraftBukkit start
public CraftInventoryView getBukkitView() {
if (bukkitEntity != null) {
return bukkitEntity;
}
2012-07-29 09:33:13 +02:00
2012-02-29 22:31:04 +01:00
CraftInventory inventory = new CraftInventory(this.brewingStand);
bukkitEntity = new CraftInventoryView(this.player.player.getBukkitEntity(), inventory, this);
return bukkitEntity;
}
// CraftBukkit end
}