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

83 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;
2024-03-02 21:23:08 +01:00
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.inventory.AbstractContainerMenu;
import net.minecraft.world.inventory.Slot;
import net.minecraft.world.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);
}
2024-03-02 21:23:08 +01:00
public static boolean checkFilter(AbstractContainerMenu container, int slotId, Player player) {
if (slotId >= 0 && slotId < container.slots.size()) {
Slot slot = container.getSlot(slotId);
2019-05-02 09:10:29 +02:00
if (slot instanceof SlotFilter) {
2024-03-05 23:23:49 +01:00
((SlotFilter) slot).slotClick(player, container.getCarried());
return true;
}
}
return false;
}
2019-05-02 09:10:29 +02:00
public static boolean isFilter(ItemStack stack) {
2024-03-04 22:37:11 +01:00
return !stack.isEmpty() && stack.getItem() instanceof ItemFilter;
2016-12-18 17:50:31 +01:00
}
2024-03-05 23:23:49 +01:00
private void slotClick(Player player, ItemStack cursorItem) {
ItemStack stackInSlot = this.getItem();
if (!stackInSlot.isEmpty() && cursorItem.isEmpty()) {
2019-05-02 09:10:29 +02:00
if (isFilter(stackInSlot)) {
player.containerMenu.setCarried(stackInSlot);
}
2022-06-24 21:38:07 +02:00
this.set(ItemStack.EMPTY);
} else if (StackUtil.isValid(cursorItem)) {
2019-05-02 09:10:29 +02:00
if (!isFilter(stackInSlot)) {
ItemStack s = cursorItem.copy();
2018-06-23 19:27:08 +02:00
s.setCount(1);
this.set(s);
if (isFilter(cursorItem)) {
cursorItem.shrink(1);
}
}
}
}
@Override
public boolean mayPlace(ItemStack stack) {
2015-10-10 02:52:53 +02:00
return false;
}
2015-10-10 02:51:06 +02:00
@Override
public void set(ItemStack stack) {
super.set(stack.copy());
2015-10-10 02:51:06 +02:00
}
@Override
2024-03-02 21:23:08 +01:00
public boolean mayPickup(Player player) {
2015-10-10 02:51:06 +02:00
return false;
}
}