Applied-Energistics-2-tiler.../src/main/java/appeng/container/slot/AppEngSlot.java

254 lines
4.6 KiB
Java

/*
* 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>.
*/
package appeng.container.slot;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import appeng.container.AEBaseContainer;
import appeng.tile.inventory.AppEngInternalInventory;
public class AppEngSlot extends Slot
{
private final int defX;
private final int defY;
private boolean isDraggable = true;
private boolean isPlayerSide = false;
private AEBaseContainer myContainer = null;
private int IIcon = -1;
private hasCalculatedValidness isValid;
private boolean isDisplay = false;
public AppEngSlot( final IInventory inv, final int idx, final int x, final int y )
{
super( inv, idx, x, y );
this.defX = x;
this.defY = y;
this.setIsValid( hasCalculatedValidness.NotAvailable );
}
public Slot setNotDraggable()
{
this.setDraggable( false );
return this;
}
public Slot setPlayerSide()
{
this.isPlayerSide = true;
return this;
}
public String getTooltip()
{
return null;
}
public void clearStack()
{
super.putStack( null );
}
@Override
public boolean isItemValid( final ItemStack par1ItemStack )
{
if( this.isEnabled() )
{
return super.isItemValid( par1ItemStack );
}
return false;
}
@Override
public ItemStack getStack()
{
if( !this.isEnabled() )
{
return ItemStack.EMPTY;
}
if( this.inventory.getSizeInventory() <= this.getSlotIndex() )
{
return ItemStack.EMPTY;
}
if( this.isDisplay() )
{
this.setDisplay( false );
return this.getDisplayStack();
}
return super.getStack();
}
@Override
public void putStack( final ItemStack par1ItemStack )
{
if( this.isEnabled() )
{
super.putStack( par1ItemStack );
if( this.getContainer() != null )
{
this.getContainer().onSlotChange( this );
}
}
}
@Override
public void onSlotChanged()
{
if( this.inventory instanceof AppEngInternalInventory )
{
( (AppEngInternalInventory) this.inventory ).markDirty( this.getSlotIndex() );
}
else
{
super.onSlotChanged();
}
this.setIsValid( hasCalculatedValidness.NotAvailable );
}
@Override
public boolean canTakeStack( final EntityPlayer par1EntityPlayer )
{
if( this.isEnabled() )
{
return super.canTakeStack( par1EntityPlayer );
}
return false;
}
@Override
public boolean canBeHovered()
{
return this.isEnabled();
}
public ItemStack getDisplayStack()
{
return super.getStack();
}
public boolean isEnabled()
{
return true;
}
public float getOpacityOfIcon()
{
return 0.4f;
}
public boolean renderIconWithItem()
{
return false;
}
public int getIcon()
{
return this.getIIcon();
}
public boolean isPlayerSide()
{
return this.isPlayerSide;
}
public boolean shouldDisplay()
{
return this.isEnabled();
}
public int getX()
{
return this.defX;
}
public int getY()
{
return this.defY;
}
private int getIIcon()
{
return this.IIcon;
}
public void setIIcon( final int iIcon )
{
this.IIcon = iIcon;
}
private boolean isDisplay()
{
return this.isDisplay;
}
public void setDisplay( final boolean isDisplay )
{
this.isDisplay = isDisplay;
}
public boolean isDraggable()
{
return this.isDraggable;
}
private void setDraggable( final boolean isDraggable )
{
this.isDraggable = isDraggable;
}
void setPlayerSide( final boolean isPlayerSide )
{
this.isPlayerSide = isPlayerSide;
}
public hasCalculatedValidness getIsValid()
{
return this.isValid;
}
public void setIsValid( final hasCalculatedValidness isValid )
{
this.isValid = isValid;
}
AEBaseContainer getContainer()
{
return this.myContainer;
}
public void setContainer( final AEBaseContainer myContainer )
{
this.myContainer = myContainer;
}
public enum hasCalculatedValidness
{
NotAvailable, Valid, Invalid
}
}