2011-01-29 22:50:29 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2012-02-29 19:56:35 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
|
|
import org.bukkit.entity.HumanEntity;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public class InventoryCraftResult implements IInventory {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private ItemStack[] items = new ItemStack[1];
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2012-03-14 15:00:54 +01:00
|
|
|
private int maxStack = MAX_STACK;
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public ItemStack[] getContents() {
|
2011-06-27 00:25:01 +02:00
|
|
|
return this.items;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-07-22 08:18:00 +02:00
|
|
|
public org.bukkit.inventory.InventoryHolder getOwner() {
|
2012-02-29 19:56:35 +01:00
|
|
|
return null; // Result slots don't get an owner
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't need a transaction; the InventoryCrafting keeps track of it for us
|
|
|
|
public void onOpen(CraftHumanEntity who) {}
|
|
|
|
public void onClose(CraftHumanEntity who) {}
|
2012-07-22 08:18:00 +02:00
|
|
|
public java.util.List<HumanEntity> getViewers() {
|
|
|
|
return new java.util.ArrayList<HumanEntity>();
|
2012-02-29 19:56:35 +01:00
|
|
|
}
|
2012-03-14 15:00:54 +01:00
|
|
|
|
|
|
|
public void setMaxStackSize(int size) {
|
|
|
|
maxStack = size;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
public InventoryCraftResult() {}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getSize() {
|
2011-02-23 03:37:56 +01:00
|
|
|
return 1;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public ItemStack getItem(int i) {
|
|
|
|
return this.items[i];
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public String getName() {
|
2011-01-29 22:50:29 +01:00
|
|
|
return "Result";
|
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
public ItemStack splitStack(int i, int j) {
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[i] != null) {
|
|
|
|
ItemStack itemstack = this.items[i];
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.items[i] = null;
|
2011-01-29 22:50:29 +01:00
|
|
|
return itemstack;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
public ItemStack splitWithoutUpdate(int i) {
|
|
|
|
if (this.items[i] != null) {
|
|
|
|
ItemStack itemstack = this.items[i];
|
|
|
|
|
|
|
|
this.items[i] = null;
|
|
|
|
return itemstack;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void setItem(int i, ItemStack itemstack) {
|
|
|
|
this.items[i] = itemstack;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getMaxStackSize() {
|
2012-03-14 15:00:54 +01:00
|
|
|
return maxStack; // CraftBukkit
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void update() {}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean a(EntityHuman entityhuman) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return true;
|
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void startOpen() {}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void f() {}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|