/**
* MrCrayfish's Furniture Mod
* Copyright (C) 2016 MrCrayfish (http://www.mrcrayfish.com/)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.mrcrayfish.furniture.gui.containers;
import com.mrcrayfish.furniture.gui.slots.SlotEski;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemPotion;
import net.minecraft.item.ItemStack;
public class ContainerEski extends Container
{
private IInventory inventory;
public ContainerEski(IInventory playerInventory, IInventory inventory)
{
this.inventory = inventory;
for (int y = 0; y < 2; y++)
{
for (int x = 0; x < 4; x++)
{
this.addSlotToContainer(new SlotEski(inventory, x + y * 4, x * 18 + 53, y * 18 + 12));
}
}
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 9; ++j)
{
this.addSlotToContainer(new Slot(playerInventory, j + i * 9 + 9, j * 18 + 8, i * 18 + 85));
}
}
for (int i = 0; i < 9; i++)
{
this.addSlotToContainer(new Slot(playerInventory, i, i * 18 + 8, 143));
}
}
@Override
public boolean canInteractWith(EntityPlayer par1EntityPlayer)
{
return this.inventory.isUseableByPlayer(par1EntityPlayer);
}
@Override
public ItemStack transferStackInSlot(EntityPlayer player, int slotNum)
{
ItemStack itemCopy = null;
Slot slot = (Slot) this.inventorySlots.get(slotNum);
if (slot != null && slot.getHasStack())
{
ItemStack item = slot.getStack();
itemCopy = item.copy();
if (!(item.getItem() instanceof ItemPotion))
return null;
if (slotNum < inventory.getSizeInventory())
{
if (!this.mergeItemStack(item, inventory.getSizeInventory(), this.inventorySlots.size(), true))
{
return null;
}
}
else if (!this.mergeItemStack(item, 0, inventory.getSizeInventory(), false))
{
return null;
}
if (item.stackSize == 0)
{
slot.putStack((ItemStack) null);
}
else
{
slot.onSlotChanged();
}
}
return itemCopy;
}
@Override
public void onContainerClosed(EntityPlayer player)
{
super.onContainerClosed(player);
inventory.closeInventory(player);
}
}