craftbukkit/src/main/java/net/minecraft/server/InventoryCrafting.java

83 lines
1.7 KiB
Java
Raw Normal View History

2011-01-29 22:50:29 +01:00
package net.minecraft.server;
public class InventoryCrafting implements IInventory {
private ItemStack[] a;
private int b;
private Container c;
// CraftBukkit start
public ItemStack[] getContents() {
return a;
}
// CraftBukkit end
public InventoryCrafting(Container container, int i, int j) {
int k = i * j;
this.a = new ItemStack[k];
this.c = container;
this.b = i;
}
2011-03-31 21:40:00 +01:00
public int q_() {
2011-01-29 22:50:29 +01:00
return this.a.length;
}
2011-02-23 02:37:56 +00:00
public ItemStack c_(int i) {
2011-03-31 21:40:00 +01:00
return i >= this.q_() ? null : this.a[i];
2011-01-29 22:50:29 +01:00
}
2011-02-23 02:37:56 +00:00
public ItemStack b(int i, int j) {
2011-01-29 22:50:29 +01:00
if (i >= 0 && i < this.b) {
int k = i + j * this.b;
2011-02-23 02:37:56 +00:00
return this.c_(k);
2011-01-29 22:50:29 +01:00
} else {
return null;
}
}
2011-02-23 02:37:56 +00:00
public String c() {
2011-01-29 22:50:29 +01:00
return "Crafting";
}
2011-02-23 02:37:56 +00:00
public ItemStack a(int i, int j) {
2011-01-29 22:50:29 +01:00
if (this.a[i] != null) {
ItemStack itemstack;
if (this.a[i].count <= j) {
itemstack = this.a[i];
this.a[i] = null;
this.c.a((IInventory) this);
return itemstack;
} else {
itemstack = this.a[i].a(j);
if (this.a[i].count == 0) {
this.a[i] = null;
}
this.c.a((IInventory) this);
return itemstack;
}
} else {
return null;
}
}
public void a(int i, ItemStack itemstack) {
this.a[i] = itemstack;
this.c.a((IInventory) this);
}
2011-03-31 21:40:00 +01:00
public int r_() {
2011-01-29 22:50:29 +01:00
return 64;
}
2011-03-31 21:40:00 +01:00
public void i() {}
2011-01-29 22:50:29 +01:00
public boolean a_(EntityHuman entityhuman) {
return true;
}
}