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
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 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-06-05 12:15:02 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
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;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemChestToCrateUpgrade extends ItemBase{
|
|
|
|
|
2016-08-04 03:14:45 +02:00
|
|
|
private final Class<? extends IInventory> start;
|
|
|
|
private final IBlockState end;
|
|
|
|
|
|
|
|
public ItemChestToCrateUpgrade(String name, Class<? extends IInventory> 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
|
2016-03-18 23:47:22 +01:00
|
|
|
public EnumActionResult onItemUse(ItemStack heldStack, EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float par8, float par9, float par10){
|
2015-10-13 18:48:44 +02:00
|
|
|
if(player.isSneaking()){
|
2016-01-07 21:41:28 +01:00
|
|
|
TileEntity tileHit = world.getTileEntity(pos);
|
2016-08-04 03:14:45 +02:00
|
|
|
if(tileHit.getClass() == this.start){
|
2015-10-13 18:48:44 +02:00
|
|
|
if(!world.isRemote){
|
|
|
|
|
|
|
|
//Copy Slots
|
2016-08-04 03:14:45 +02:00
|
|
|
IInventory chest = (IInventory)tileHit;
|
2015-10-13 18:48:44 +02:00
|
|
|
ItemStack[] stacks = new ItemStack[chest.getSizeInventory()];
|
|
|
|
for(int i = 0; i < stacks.length; i++){
|
|
|
|
ItemStack aStack = chest.getStackInSlot(i);
|
|
|
|
if(aStack != null){
|
|
|
|
stacks[i] = aStack.copy();
|
|
|
|
chest.setInventorySlotContents(i, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Set New Block
|
2016-06-05 12:15:02 +02:00
|
|
|
if(!ConfigBoolValues.LESS_BLOCK_BREAKING_EFFECTS.isEnabled()){
|
2016-06-03 21:05:49 +02:00
|
|
|
world.playEvent(2001, pos, Block.getStateId(world.getBlockState(pos)));
|
2016-01-23 11:02:35 +01:00
|
|
|
}
|
2016-08-04 03:14:45 +02:00
|
|
|
world.setBlockState(pos, this.end, 2);
|
2015-10-13 18:48:44 +02:00
|
|
|
|
|
|
|
//Copy Items into new Chest
|
2016-01-07 21:41:28 +01:00
|
|
|
TileEntity newTileHit = world.getTileEntity(pos);
|
2016-08-04 03:14:45 +02:00
|
|
|
if(newTileHit instanceof IInventory){
|
|
|
|
IInventory newChest = (IInventory)newTileHit;
|
2015-10-13 18:48:44 +02:00
|
|
|
for(int i = 0; i < stacks.length; i++){
|
|
|
|
if(stacks[i] != null){
|
|
|
|
if(newChest.getSizeInventory() > i){
|
|
|
|
newChest.setInventorySlotContents(i, stacks[i].copy());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!player.capabilities.isCreativeMode){
|
|
|
|
heldStack.stackSize--;
|
|
|
|
}
|
|
|
|
}
|
2016-03-18 23:47:22 +01:00
|
|
|
return EnumActionResult.SUCCESS;
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-18 23:47:22 +01:00
|
|
|
return super.onItemUse(heldStack, player, world, pos, hand, facing, par8, par9, par10);
|
2015-10-13 18:48:44 +02:00
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|