ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/slot/SlotFilter.java

71 lines
2.1 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("SlotFilter.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.inventory.slot;
import de.ellpeck.actuallyadditions.mod.tile.FilterSettings;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class SlotFilter extends Slot{
public SlotFilter(IInventory inv, int slot, int x, int y){
super(inv, slot, x, y);
}
public SlotFilter(FilterSettings inv, int slot, int x, int y){
this(inv.filterInventory, slot, x, y);
}
/**
* Gets called when the Filter Slot is clicked
* Needs to be called in slotClick() in the Container!
2015-10-02 16:48:01 +02:00
*
* @param player The player
* @return Nothing, as the Item didn't really get "transferred"
*/
2015-10-10 02:52:53 +02:00
public ItemStack slotClick(EntityPlayer player){
ItemStack heldStack = player.inventory.getItemStack();
//Delete the stack in the inventory
if(StackUtil.isValid(this.getStack()) && !StackUtil.isValid(heldStack)){
this.putStack(StackUtil.getNull());
}
//Put the current Item as a filter
else{
if(StackUtil.isValid(heldStack)){
ItemStack stack = heldStack.copy();
stack = StackUtil.setStackSize(stack, 1);
this.putStack(stack);
}
}
2016-11-25 22:05:45 +01:00
return StackUtil.getNull();
}
@Override
2015-10-10 02:52:53 +02:00
public boolean isItemValid(ItemStack stack){
return false;
}
2015-10-10 02:51:06 +02:00
@Override
2015-10-10 02:52:53 +02:00
public void putStack(ItemStack stack){
super.putStack(StackUtil.validateCopy(stack));
2015-10-10 02:51:06 +02:00
}
@Override
public boolean canTakeStack(EntityPlayer player){
return false;
}
}