2015-10-13 18:48:44 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemChestToCrateUpgrade.java") is part of the Actually Additions mod for Minecraft.
|
2015-10-13 18:48:44 +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-10-13 18:48:44 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-10-13 18:48:44 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-10-13 18:48:44 +02:00
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
2016-12-04 00:10:52 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityInventoryBase;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2015-10-28 20:35:39 +01:00
|
|
|
import net.minecraft.block.Block;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.block.state.BlockState;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2016-08-04 03:14:45 +02:00
|
|
|
import net.minecraft.inventory.IInventory;
|
2015-10-13 18:48:44 +02:00
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.EnumActionResult;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.util.Hand;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2015-10-13 18:48:44 +02:00
|
|
|
import net.minecraft.world.World;
|
2016-12-04 00:10:52 +01:00
|
|
|
import net.minecraftforge.items.IItemHandlerModifiable;
|
|
|
|
import net.minecraftforge.items.wrapper.InvWrapper;
|
2015-10-13 18:48:44 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemChestToCrateUpgrade extends ItemBase {
|
2015-12-03 20:15:07 +01:00
|
|
|
|
2017-07-28 03:17:50 +02:00
|
|
|
private final Class<? extends TileEntity> start;
|
2021-02-26 22:15:48 +01:00
|
|
|
private final BlockState end;
|
2016-08-04 03:14:45 +02:00
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
public ItemChestToCrateUpgrade(String name, Class<? extends TileEntity> start, BlockState end) {
|
2015-12-03 20:15:07 +01:00
|
|
|
super(name);
|
2016-08-04 03:14:45 +02:00
|
|
|
this.start = start;
|
|
|
|
this.end = end;
|
2015-12-03 20:15:07 +01:00
|
|
|
}
|
2015-10-13 18:48:44 +02:00
|
|
|
|
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public EnumActionResult onItemUseFirst(PlayerEntity player, World world, BlockPos pos, EnumFacing side, float hitX, float hitY, float hitZ, Hand hand) {
|
2016-11-19 21:11:17 +01:00
|
|
|
ItemStack heldStack = player.getHeldItem(hand);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (player.isSneaking()) {
|
2016-01-07 21:41:28 +01:00
|
|
|
TileEntity tileHit = world.getTileEntity(pos);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (tileHit != null && this.start.isInstance(tileHit)) {
|
|
|
|
if (!world.isRemote) {
|
2015-10-13 18:48:44 +02:00
|
|
|
|
|
|
|
//Copy Slots
|
2016-12-04 00:10:52 +01:00
|
|
|
IItemHandlerModifiable chest = null;
|
2019-05-02 09:10:29 +02:00
|
|
|
if (tileHit instanceof IInventory) {
|
|
|
|
chest = new InvWrapper((IInventory) tileHit);
|
|
|
|
} else if (tileHit instanceof TileEntityInventoryBase) {
|
|
|
|
chest = ((TileEntityInventoryBase) tileHit).inv;
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (chest != null) {
|
2016-12-04 00:10:52 +01:00
|
|
|
ItemStack[] stacks = new ItemStack[chest.getSlots()];
|
2019-05-02 09:10:29 +02:00
|
|
|
for (int i = 0; i < stacks.length; i++) {
|
2016-12-04 00:10:52 +01:00
|
|
|
ItemStack aStack = chest.getStackInSlot(i);
|
2019-02-27 19:53:05 +01:00
|
|
|
stacks[i] = aStack.copy();
|
2016-12-04 00:10:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Set New Block
|
|
|
|
world.playEvent(2001, pos, Block.getStateId(world.getBlockState(pos)));
|
2017-05-03 14:45:22 +02:00
|
|
|
|
|
|
|
world.removeTileEntity(pos);
|
2016-12-04 00:10:52 +01:00
|
|
|
world.setBlockState(pos, this.end, 2);
|
2021-02-26 22:15:48 +01:00
|
|
|
if (!player.capabilities.isCreativeMode) {
|
|
|
|
heldStack.shrink(1);
|
|
|
|
}
|
2016-12-04 00:10:52 +01:00
|
|
|
|
|
|
|
//Copy Items into new Chest
|
|
|
|
TileEntity newTileHit = world.getTileEntity(pos);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (newTileHit instanceof TileEntityInventoryBase) {
|
|
|
|
IItemHandlerModifiable newChest = ((TileEntityInventoryBase) newTileHit).inv;
|
2016-12-04 00:10:52 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
for (int i = 0; i < stacks.length; i++) {
|
|
|
|
if (StackUtil.isValid(stacks[i])) {
|
|
|
|
if (newChest.getSlots() > i) {
|
2016-12-04 00:10:52 +01:00
|
|
|
newChest.setStackInSlot(i, stacks[i].copy());
|
|
|
|
}
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-28 03:12:18 +02:00
|
|
|
return EnumActionResult.SUCCESS;
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-28 03:12:18 +02:00
|
|
|
return EnumActionResult.PASS;
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2016-01-07 21:41:28 +01:00
|
|
|
return EnumRarity.RARE;
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
}
|