You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
171 lines
5.0 KiB
Java
171 lines
5.0 KiB
Java
package net.minecraft.inventory;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.entity.IMerchant;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.world.World;
|
|
|
|
public class ContainerMerchant extends Container
|
|
{
|
|
/** Instance of Merchant. */
|
|
private IMerchant theMerchant;
|
|
private InventoryMerchant merchantInventory;
|
|
/** Instance of World. */
|
|
private final World theWorld;
|
|
private static final String __OBFID = "CL_00001757";
|
|
|
|
public ContainerMerchant(InventoryPlayer p_i1821_1_, IMerchant p_i1821_2_, World p_i1821_3_)
|
|
{
|
|
this.theMerchant = p_i1821_2_;
|
|
this.theWorld = p_i1821_3_;
|
|
this.merchantInventory = new InventoryMerchant(p_i1821_1_.player, p_i1821_2_);
|
|
this.addSlotToContainer(new Slot(this.merchantInventory, 0, 36, 53));
|
|
this.addSlotToContainer(new Slot(this.merchantInventory, 1, 62, 53));
|
|
this.addSlotToContainer(new SlotMerchantResult(p_i1821_1_.player, p_i1821_2_, this.merchantInventory, 2, 120, 53));
|
|
int i;
|
|
|
|
for (i = 0; i < 3; ++i)
|
|
{
|
|
for (int j = 0; j < 9; ++j)
|
|
{
|
|
this.addSlotToContainer(new Slot(p_i1821_1_, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < 9; ++i)
|
|
{
|
|
this.addSlotToContainer(new Slot(p_i1821_1_, i, 8 + i * 18, 142));
|
|
}
|
|
}
|
|
|
|
public InventoryMerchant getMerchantInventory()
|
|
{
|
|
return this.merchantInventory;
|
|
}
|
|
|
|
public void addCraftingToCrafters(ICrafting p_75132_1_)
|
|
{
|
|
super.addCraftingToCrafters(p_75132_1_);
|
|
}
|
|
|
|
/**
|
|
* Looks for changes made in the container, sends them to every listener.
|
|
*/
|
|
public void detectAndSendChanges()
|
|
{
|
|
super.detectAndSendChanges();
|
|
}
|
|
|
|
/**
|
|
* Callback for when the crafting matrix is changed.
|
|
*/
|
|
public void onCraftMatrixChanged(IInventory p_75130_1_)
|
|
{
|
|
this.merchantInventory.resetRecipeAndSlots();
|
|
super.onCraftMatrixChanged(p_75130_1_);
|
|
}
|
|
|
|
public void setCurrentRecipeIndex(int p_75175_1_)
|
|
{
|
|
this.merchantInventory.setCurrentRecipeIndex(p_75175_1_);
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void updateProgressBar(int p_75137_1_, int p_75137_2_) {}
|
|
|
|
public boolean canInteractWith(EntityPlayer player)
|
|
{
|
|
return this.theMerchant.getCustomer() == player;
|
|
}
|
|
|
|
/**
|
|
* Called when a player shift-clicks on a slot. You must override this or you will crash when someone does that.
|
|
*/
|
|
public ItemStack transferStackInSlot(EntityPlayer player, int index)
|
|
{
|
|
ItemStack itemstack = null;
|
|
Slot slot = (Slot)this.inventorySlots.get(index);
|
|
|
|
if (slot != null && slot.getHasStack())
|
|
{
|
|
ItemStack itemstack1 = slot.getStack();
|
|
itemstack = itemstack1.copy();
|
|
|
|
if (index == 2)
|
|
{
|
|
if (!this.mergeItemStack(itemstack1, 3, 39, true))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
slot.onSlotChange(itemstack1, itemstack);
|
|
}
|
|
else if (index != 0 && index != 1)
|
|
{
|
|
if (index >= 3 && index < 30)
|
|
{
|
|
if (!this.mergeItemStack(itemstack1, 30, 39, false))
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
else if (index >= 30 && index < 39 && !this.mergeItemStack(itemstack1, 3, 30, false))
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
else if (!this.mergeItemStack(itemstack1, 3, 39, false))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (itemstack1.stackSize == 0)
|
|
{
|
|
slot.putStack((ItemStack)null);
|
|
}
|
|
else
|
|
{
|
|
slot.onSlotChanged();
|
|
}
|
|
|
|
if (itemstack1.stackSize == itemstack.stackSize)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
slot.onPickupFromSlot(player, itemstack1);
|
|
}
|
|
|
|
return itemstack;
|
|
}
|
|
|
|
/**
|
|
* Called when the container is closed.
|
|
*/
|
|
public void onContainerClosed(EntityPlayer p_75134_1_)
|
|
{
|
|
super.onContainerClosed(p_75134_1_);
|
|
this.theMerchant.setCustomer((EntityPlayer)null);
|
|
super.onContainerClosed(p_75134_1_);
|
|
|
|
if (!this.theWorld.isRemote)
|
|
{
|
|
ItemStack itemstack = this.merchantInventory.getStackInSlotOnClosing(0);
|
|
|
|
if (itemstack != null)
|
|
{
|
|
p_75134_1_.dropPlayerItemWithRandomChoice(itemstack, false);
|
|
}
|
|
|
|
itemstack = this.merchantInventory.getStackInSlotOnClosing(1);
|
|
|
|
if (itemstack != null)
|
|
{
|
|
p_75134_1_.dropPlayerItemWithRandomChoice(itemstack, false);
|
|
}
|
|
}
|
|
}
|
|
} |