2016-08-02 16:32:13 +02:00
|
|
|
/*
|
|
|
|
* This file ("ItemBag.java") is part of the Actually Additions mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://ellpeck.de/actaddlicense
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2016-08-02 16:32:13 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.mod.inventory.ContainerBag;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
2018-06-23 01:39:30 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA;
|
2017-06-17 00:55:55 +02:00
|
|
|
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:44:00 +01:00
|
|
|
import net.minecraft.entity.player.ServerPlayerEntity;
|
|
|
|
import net.minecraft.inventory.container.SimpleNamedContainerProvider;
|
2016-08-02 16:32:13 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2021-02-27 22:44:00 +01:00
|
|
|
import net.minecraft.item.ItemUseContext;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.nbt.CompoundNBT;
|
2016-08-07 01:11:01 +02:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2016-12-18 17:50:31 +01:00
|
|
|
import net.minecraft.util.ActionResult;
|
2021-02-27 22:44:00 +01:00
|
|
|
import net.minecraft.util.ActionResultType;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.util.Hand;
|
2021-02-27 22:44:00 +01:00
|
|
|
import net.minecraft.util.text.StringTextComponent;
|
2016-08-02 16:32:13 +02:00
|
|
|
import net.minecraft.world.World;
|
2021-02-27 22:44:00 +01:00
|
|
|
import net.minecraftforge.fml.network.NetworkHooks;
|
2016-08-07 01:11:01 +02:00
|
|
|
import net.minecraftforge.items.CapabilityItemHandler;
|
2016-08-02 16:32:13 +02:00
|
|
|
|
2021-02-27 22:44:00 +01:00
|
|
|
import javax.annotation.Nullable;
|
2016-08-02 16:32:13 +02:00
|
|
|
|
2021-02-27 22:44:00 +01:00
|
|
|
public class ItemBag extends ItemBase {
|
2017-06-17 00:55:55 +02:00
|
|
|
public final boolean isVoid;
|
2016-08-02 16:32:13 +02:00
|
|
|
|
2021-02-27 22:44:00 +01:00
|
|
|
public ItemBag(boolean isVoid) {
|
|
|
|
super(InitItems.defaultProps().maxStackSize(1));
|
2016-08-02 16:32:13 +02:00
|
|
|
this.isVoid = isVoid;
|
|
|
|
}
|
|
|
|
|
2016-08-10 13:32:55 +02:00
|
|
|
@Override
|
2021-02-27 22:44:00 +01:00
|
|
|
public ActionResultType onItemUse(ItemUseContext context) {
|
|
|
|
ItemStack stack = context.getPlayer().getHeldItem(context.getHand());
|
2018-07-28 02:08:42 +02:00
|
|
|
if (!this.isVoid) {
|
2021-02-27 22:44:00 +01:00
|
|
|
TileEntity tile = context.getWorld().getTileEntity(context.getPos());
|
|
|
|
if (tile != null) {
|
|
|
|
if (!context.getWorld().isRemote) {
|
|
|
|
ItemStackHandlerAA inv = new ItemStackHandlerAA(ContainerBag.getSlotAmount(this.isVoid));
|
2016-08-07 01:11:01 +02:00
|
|
|
|
2021-02-27 22:44:00 +01:00
|
|
|
boolean changed = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, context.getFace())
|
|
|
|
.map(cap -> {
|
|
|
|
boolean localChanged = false;
|
|
|
|
ItemDrill.loadSlotsFromNBT(inv, stack);
|
2016-08-07 01:11:01 +02:00
|
|
|
|
2021-02-27 22:44:00 +01:00
|
|
|
for (int j = 0; j < inv.getSlots(); j++) {
|
|
|
|
ItemStack invStack = inv.getStackInSlot(j);
|
|
|
|
if (StackUtil.isValid(invStack)) {
|
|
|
|
for (int i = 0; i < cap.getSlots(); i++) {
|
|
|
|
ItemStack remain = cap.insertItem(i, invStack, false);
|
|
|
|
if (!ItemStack.areItemStacksEqual(remain, invStack)) {
|
|
|
|
inv.setStackInSlot(j, remain.copy());
|
|
|
|
localChanged = true;
|
|
|
|
if (!StackUtil.isValid(remain)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
invStack = remain;
|
2016-08-07 01:11:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-27 22:44:00 +01:00
|
|
|
return localChanged;
|
|
|
|
}).orElse(false);
|
|
|
|
|
|
|
|
if (changed) {
|
|
|
|
ItemDrill.writeSlotsToNBT(inv, stack);
|
2016-08-07 01:11:01 +02:00
|
|
|
}
|
|
|
|
}
|
2021-02-27 22:44:00 +01:00
|
|
|
return ActionResultType.SUCCESS;
|
2016-08-07 01:11:01 +02:00
|
|
|
}
|
|
|
|
}
|
2021-02-27 22:44:00 +01:00
|
|
|
return ActionResultType.PASS;
|
2016-08-07 01:11:01 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 16:32:13 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public ActionResult<ItemStack> onItemRightClick(World world, PlayerEntity player, Hand hand) {
|
|
|
|
if (!world.isRemote && hand == Hand.MAIN_HAND) {
|
2021-02-27 22:44:00 +01:00
|
|
|
NetworkHooks.openGui((ServerPlayerEntity) player, new SimpleNamedContainerProvider((windowId, playerInventory, playerEntity) -> new ContainerBag(windowId, playerInventory, playerEntity.getHeldItem(hand), this.isVoid), StringTextComponent.EMPTY));
|
|
|
|
// player.openGui(ActuallyAdditions.INSTANCE, (this.isVoid
|
|
|
|
// ? GuiTypes.VOID_BAG
|
|
|
|
// : GuiTypes.BAG).ordinal(), world, (int) player.posX, (int) player.posY, (int) player.posZ);
|
2016-08-02 16:32:13 +02:00
|
|
|
}
|
2021-02-27 22:44:00 +01:00
|
|
|
return ActionResult.resultPass(player.getHeldItem(hand));
|
2016-08-02 16:32:13 +02:00
|
|
|
}
|
2016-08-02 20:06:31 +02:00
|
|
|
|
2021-02-27 22:44:00 +01:00
|
|
|
// TODO: [port] confirm this is correct
|
|
|
|
@Nullable
|
2016-08-02 20:06:31 +02:00
|
|
|
@Override
|
2021-02-27 22:44:00 +01:00
|
|
|
public CompoundNBT getShareTag(ItemStack stack) {
|
|
|
|
return new CompoundNBT();
|
2016-08-02 20:06:31 +02:00
|
|
|
}
|
2018-07-28 02:08:42 +02:00
|
|
|
|
2021-02-27 22:44:00 +01:00
|
|
|
// @Override
|
|
|
|
// public CompoundNBT getNBTShareTag(ItemStack stack) {
|
|
|
|
// return null;
|
|
|
|
// }
|
2016-08-02 16:32:13 +02:00
|
|
|
}
|