Applied-Energistics-2-tiler.../src/main/java/appeng/tile/inventory/AppEngInternalInventory.java

276 lines
5.5 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2014-09-24 02:26:27 +02:00
package appeng.tile.inventory;
import java.util.Iterator;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
2014-12-29 21:59:05 +01:00
2014-09-24 02:26:27 +02:00
import appeng.api.storage.IMEInventory;
import appeng.core.AELog;
import appeng.me.storage.MEIInventoryWrapper;
import appeng.util.Platform;
import appeng.util.iterators.InvIterator;
public class AppEngInternalInventory implements IInventory, Iterable<ItemStack>
{
protected IAEAppEngInventory te;
protected final int size;
2014-09-24 02:26:27 +02:00
protected int maxStack;
public boolean enableClientEvents = false;
protected final ItemStack[] inv;
2014-09-24 02:26:27 +02:00
public IMEInventory getMEInventory()
2014-09-24 02:26:27 +02:00
{
return new MEIInventoryWrapper( this, null );
}
public boolean isEmpty()
{
for (int x = 0; x < this.size; x++)
2014-12-29 15:13:47 +01:00
if ( this.getStackInSlot( x ) != null )
2014-09-24 02:26:27 +02:00
return false;
return true;
}
public AppEngInternalInventory(IAEAppEngInventory _te, int s) {
2014-12-29 15:13:47 +01:00
this.te = _te;
this.size = s;
this.maxStack = 64;
this.inv = new ItemStack[s];
2014-09-24 02:26:27 +02:00
}
protected boolean eventsEnabled()
{
2014-12-29 15:13:47 +01:00
return Platform.isServer() || this.enableClientEvents;
2014-09-24 02:26:27 +02:00
}
public void setMaxStackSize(int s)
{
2014-12-29 15:13:47 +01:00
this.maxStack = s;
2014-09-24 02:26:27 +02:00
}
@Override
public ItemStack getStackInSlot(int var1)
{
2014-12-29 15:13:47 +01:00
return this.inv[var1];
2014-09-24 02:26:27 +02:00
}
@Override
public ItemStack decrStackSize(int slot, int qty)
{
2014-12-29 15:13:47 +01:00
if ( this.inv[slot] != null )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
ItemStack split = this.getStackInSlot( slot );
2014-09-24 02:26:27 +02:00
ItemStack ns = null;
if ( qty >= split.stackSize )
{
2014-12-29 15:13:47 +01:00
ns = this.inv[slot];
this.inv[slot] = null;
2014-09-24 02:26:27 +02:00
}
else
ns = split.splitStack( qty );
2014-12-29 15:13:47 +01:00
if ( this.te != null && this.eventsEnabled() )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.te.onChangeInventory( this, slot, InvOperation.decreaseStackSize, ns, null );
2014-09-24 02:26:27 +02:00
}
2014-12-29 15:13:47 +01:00
this.markDirty();
2014-09-24 02:26:27 +02:00
return ns;
}
return null;
}
@Override
public ItemStack getStackInSlotOnClosing(int var1)
{
return null;
}
@Override
public void setInventorySlotContents(int slot, ItemStack newItemStack)
{
2014-12-29 15:13:47 +01:00
ItemStack oldStack = this.inv[slot];
this.inv[slot] = newItemStack;
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
if ( this.te != null && this.eventsEnabled() )
2014-09-24 02:26:27 +02:00
{
ItemStack removed = oldStack;
ItemStack added = newItemStack;
if ( oldStack != null && newItemStack != null && Platform.isSameItem( oldStack, newItemStack ) )
{
if ( oldStack.stackSize > newItemStack.stackSize )
{
removed = removed.copy();
removed.stackSize -= newItemStack.stackSize;
added = null;
}
else if ( oldStack.stackSize < newItemStack.stackSize )
{
added = added.copy();
added.stackSize -= oldStack.stackSize;
removed = null;
}
else
{
removed = added = null;
}
}
2014-12-29 15:13:47 +01:00
this.te.onChangeInventory( this, slot, InvOperation.setInventorySlotContents, removed, added );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.markDirty();
2014-09-24 02:26:27 +02:00
}
}
@Override
public void markDirty()
{
2014-12-29 15:13:47 +01:00
if ( this.te != null && this.eventsEnabled() )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.te.onChangeInventory( this, -1, InvOperation.markDirty, null, null );
2014-09-24 02:26:27 +02:00
}
}
// for guis...
public void markDirty(int slotIndex)
{
2014-12-29 15:13:47 +01:00
if ( this.te != null && this.eventsEnabled() )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.te.onChangeInventory( this, slotIndex, InvOperation.markDirty, null, null );
2014-09-24 02:26:27 +02:00
}
}
@Override
public int getInventoryStackLimit()
{
2014-12-29 15:13:47 +01:00
return this.maxStack > 64 ? 64 : this.maxStack;
2014-09-24 02:26:27 +02:00
}
@Override
public boolean isUseableByPlayer(EntityPlayer var1)
{
return true;
}
@Override
public void closeInventory()
{
}
@Override
public void openInventory()
{
}
public void writeToNBT(NBTTagCompound target)
{
2014-12-29 15:13:47 +01:00
for (int x = 0; x < this.size; x++)
2014-09-24 02:26:27 +02:00
{
try
{
NBTTagCompound c = new NBTTagCompound();
2014-12-29 15:13:47 +01:00
if ( this.inv[x] != null )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.inv[x].writeToNBT( c );
2014-09-24 02:26:27 +02:00
}
target.setTag( "#" + x, c );
}
catch (Exception ignored)
2014-09-24 02:26:27 +02:00
{
}
}
}
public void readFromNBT(NBTTagCompound target)
{
2014-12-29 15:13:47 +01:00
for (int x = 0; x < this.size; x++)
2014-09-24 02:26:27 +02:00
{
try
{
NBTTagCompound c = target.getCompoundTag( "#" + x );
if ( c != null )
2014-12-29 15:13:47 +01:00
this.inv[x] = ItemStack.loadItemStackFromNBT( c );
2014-09-24 02:26:27 +02:00
}
catch (Exception e)
{
AELog.error( e );
}
}
}
public void writeToNBT(NBTTagCompound data, String name)
{
NBTTagCompound c = new NBTTagCompound();
2014-12-29 15:13:47 +01:00
this.writeToNBT( c );
2014-09-24 02:26:27 +02:00
data.setTag( name, c );
}
public void readFromNBT(NBTTagCompound data, String name)
{
NBTTagCompound c = data.getCompoundTag( name );
if ( c != null )
2014-12-29 15:13:47 +01:00
this.readFromNBT( c );
2014-09-24 02:26:27 +02:00
}
@Override
public int getSizeInventory()
{
2014-12-29 15:13:47 +01:00
return this.size;
2014-09-24 02:26:27 +02:00
}
@Override
public String getInventoryName()
{
return "appeng-internal";
}
@Override
public boolean hasCustomInventoryName()
{
return false;
}
@Override
public boolean isItemValidForSlot(int i, ItemStack itemstack)
{
return true;
}
@Override
public Iterator<ItemStack> iterator()
{
return new InvIterator( this );
}
}