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

85 lines
2.6 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
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 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.items.ItemFilter;
import de.ellpeck.actuallyadditions.mod.tile.FilterSettings;
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
2021-02-26 22:15:48 +01:00
import net.minecraft.entity.player.PlayerEntity;
2021-02-27 22:59:18 +01:00
import net.minecraft.inventory.container.Container;
import net.minecraft.inventory.container.Slot;
import net.minecraft.item.ItemStack;
2019-05-02 09:10:29 +02:00
public class SlotFilter extends SlotItemHandlerUnconditioned {
2019-05-02 09:10:29 +02:00
public SlotFilter(ItemStackHandlerAA inv, int slot, int x, int y) {
super(inv, slot, x, y);
}
2019-05-02 09:10:29 +02:00
public SlotFilter(FilterSettings inv, int slot, int x, int y) {
this(inv.filterInventory, slot, x, y);
}
2021-02-26 22:15:48 +01:00
public static boolean checkFilter(Container container, int slotId, PlayerEntity player) {
2019-05-02 09:10:29 +02:00
if (slotId >= 0 && slotId < container.inventorySlots.size()) {
Slot slot = container.getSlot(slotId);
2019-05-02 09:10:29 +02:00
if (slot instanceof SlotFilter) {
((SlotFilter) slot).slotClick(player);
return true;
}
}
return false;
}
2019-05-02 09:10:29 +02:00
public static boolean isFilter(ItemStack stack) {
2016-12-18 17:50:31 +01:00
return StackUtil.isValid(stack) && stack.getItem() instanceof ItemFilter;
}
2021-02-26 22:15:48 +01:00
private void slotClick(PlayerEntity player) {
ItemStack heldStack = player.inventory.getItemStack();
ItemStack stackInSlot = this.getStack();
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(stackInSlot) && !StackUtil.isValid(heldStack)) {
if (isFilter(stackInSlot)) {
player.inventory.setItemStack(stackInSlot);
}
2017-11-02 22:49:53 +01:00
this.putStack(StackUtil.getEmpty());
2019-05-02 09:10:29 +02:00
} else if (StackUtil.isValid(heldStack)) {
if (!isFilter(stackInSlot)) {
2018-06-23 19:27:08 +02:00
ItemStack s = heldStack.copy();
s.setCount(1);
this.putStack(s);
2019-05-02 09:10:29 +02:00
if (isFilter(heldStack)) {
2018-06-23 19:27:08 +02:00
heldStack.shrink(1);
}
}
}
}
@Override
2019-05-02 09:10:29 +02:00
public boolean isItemValid(ItemStack stack) {
2015-10-10 02:52:53 +02:00
return false;
}
2015-10-10 02:51:06 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void putStack(ItemStack stack) {
super.putStack(stack.copy());
2015-10-10 02:51:06 +02:00
}
@Override
2021-02-26 22:15:48 +01:00
public boolean canTakeStack(PlayerEntity player) {
2015-10-10 02:51:06 +02:00
return false;
}
}