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;
|
2016-08-04 03:14:45 +02:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2015-10-13 18:48:44 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
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;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.EnumHand;
|
|
|
|
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
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemChestToCrateUpgrade extends ItemBase{
|
|
|
|
|
2017-07-28 03:17:50 +02:00
|
|
|
private final Class<? extends TileEntity> start;
|
2016-08-04 03:14:45 +02:00
|
|
|
private final IBlockState end;
|
|
|
|
|
2017-07-28 03:17:50 +02:00
|
|
|
public ItemChestToCrateUpgrade(String name, Class<? extends TileEntity> start, IBlockState 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
|
2017-05-20 19:41:51 +02:00
|
|
|
public EnumActionResult onItemUseFirst(EntityPlayer player, World world, BlockPos pos, EnumFacing side, float hitX, float hitY, float hitZ, EnumHand hand){
|
2016-11-19 21:11:17 +01:00
|
|
|
ItemStack heldStack = player.getHeldItem(hand);
|
2015-10-13 18:48:44 +02:00
|
|
|
if(player.isSneaking()){
|
2016-01-07 21:41:28 +01:00
|
|
|
TileEntity tileHit = world.getTileEntity(pos);
|
2017-07-12 21:50:12 +02:00
|
|
|
if(tileHit != null && start.isInstance(tileHit)){
|
2015-10-13 18:48:44 +02:00
|
|
|
if(!world.isRemote){
|
|
|
|
|
|
|
|
//Copy Slots
|
2016-12-04 00:10:52 +01:00
|
|
|
IItemHandlerModifiable chest = null;
|
|
|
|
if(tileHit instanceof IInventory){
|
|
|
|
chest = new InvWrapper((IInventory)tileHit);
|
|
|
|
}
|
|
|
|
else if(tileHit instanceof TileEntityInventoryBase){
|
2018-06-23 01:39:30 +02:00
|
|
|
chest = ((TileEntityInventoryBase)tileHit).inv;
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
|
2016-12-04 00:10:52 +01:00
|
|
|
if(chest != null){
|
|
|
|
ItemStack[] stacks = new ItemStack[chest.getSlots()];
|
2015-10-13 18:48:44 +02:00
|
|
|
for(int i = 0; i < stacks.length; i++){
|
2016-12-04 00:10:52 +01:00
|
|
|
ItemStack aStack = chest.getStackInSlot(i);
|
|
|
|
stacks[i] = aStack.copy();
|
|
|
|
}
|
|
|
|
|
|
|
|
//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);
|
2017-08-28 03:12:18 +02: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);
|
|
|
|
if(newTileHit instanceof TileEntityInventoryBase){
|
2018-06-23 01:39:30 +02:00
|
|
|
IItemHandlerModifiable newChest = ((TileEntityInventoryBase)newTileHit).inv;
|
2016-12-04 00:10:52 +01:00
|
|
|
|
|
|
|
for(int i = 0; i < stacks.length; i++){
|
|
|
|
if(StackUtil.isValid(stacks[i])){
|
|
|
|
if(newChest.getSlots() > i){
|
|
|
|
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
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-01-07 21:41:28 +01:00
|
|
|
return EnumRarity.RARE;
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
}
|