Package extracells.container

Source Code of extracells.container.ContainerLevelEmitterFluid

package extracells.container;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.*;
import extracells.ItemEnum;
import extracells.container.slot.SlotFake;

public class ContainerLevelEmitterFluid extends ECContainer
{
  IInventory tileentity;

  public ContainerLevelEmitterFluid(IInventory inventoryPlayer, IInventory inventoryTileEntity)
  {
    super(inventoryTileEntity.getSizeInventory());

    tileentity = inventoryTileEntity;

    addSlotToContainer(new SlotFake(inventoryTileEntity, 0, 80, 37)
    {
      public boolean isItemValid(ItemStack itemstack)
      {
        return tileentity.isItemValidForSlot(0, itemstack);
      }

      public void putStack(ItemStack itemstack)
      {
        if (itemstack != null)
        {
          if (FluidContainerRegistry.isFilledContainer(itemstack))
          {
            FluidStack inContainer = FluidContainerRegistry.getFluidForFilledItem(itemstack);
            if (inContainer != null)
              itemstack = new ItemStack(ItemEnum.FLUIDDISPLAY.getItemInstance(), 1, inContainer.fluidID);
          } else if (itemstack.getItem() instanceof ItemFluidContainer)
          {
            FluidStack inContainer = ((ItemFluidContainer) itemstack.getItem()).getFluid(itemstack);
            if (inContainer != null)
              itemstack = new ItemStack(ItemEnum.FLUIDDISPLAY.getItemInstance(), 1, inContainer.fluidID);
          } else
          {
            itemstack = null;
          }

          if (itemstack != null)
          {
            this.inventory.setInventorySlotContents(getSlotIndex(), itemstack);
            this.onSlotChanged();
          }
        } else
        {
          this.inventory.setInventorySlotContents(getSlotIndex(), null);
          this.onSlotChanged();
        }
      }
    });

    bindPlayerInventory(inventoryPlayer);
  }

  protected void bindPlayerInventory(IInventory inventoryPlayer)
  {
    for (int i = 0; i < 3; i++)
    {
      for (int j = 0; j < 9; j++)
      {
        addSlotToContainer(new Slot(inventoryPlayer, j + i * 9 + 9, 8 + j * 18, i * 18 + 84));
      }
    }

    for (int i = 0; i < 9; i++)
    {
      addSlotToContainer(new Slot(inventoryPlayer, i, 8 + i * 18, 142));
    }
  }

  @Override
  public ItemStack transferStackInSlot(EntityPlayer player, int slotnumber)
  {
    ItemStack itemstack = null;
    Slot slot = (Slot) inventorySlots.get(slotnumber);
    if (slot != null && slot.getHasStack())
    {
      ItemStack itemstack1 = slot.getStack();
      itemstack = itemstack1.copy();
      itemstack.stackSize = 1;
      if (tileentity.isItemValidForSlot(0, itemstack1))
      {
        if (slotnumber == 0)
        {
          ((Slot) inventorySlots.get(0)).putStack(null);
          return null;
        } else if (slotnumber >= 1 && slotnumber <= 36)
        {
          ((Slot) inventorySlots.get(0)).putStack(itemstack);
          return null;
        }
      }
    }
    return null;
  }

  @Override
  public boolean canInteractWith(EntityPlayer entityplayer)
  {
    return true;
  }

  public ItemStack toFluidStack(ItemStack source)
  {
    if (FluidContainerRegistry.isFilledContainer(source))
    {
      FluidStack inContainer = FluidContainerRegistry.getFluidForFilledItem(source);
      if (inContainer != null)
        return new ItemStack(ItemEnum.FLUIDDISPLAY.getItemInstance(), 1, inContainer.fluidID);
    } else if (source.getItem() instanceof IFluidContainerItem)
    {
      FluidStack inContainer = ((IFluidContainerItem) source.getItem()).getFluid(source);
      if (inContainer != null)
        return new ItemStack(ItemEnum.FLUIDDISPLAY.getItemInstance(), 1, inContainer.fluidID);
    }
    return null;
  }
}
TOP

Related Classes of extracells.container.ContainerLevelEmitterFluid

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.