2016-11-05 15:36:16 +01:00
|
|
|
/*
|
|
|
|
* This file ("ItemFillingWand.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-11-05 15:36:16 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
|
2017-02-14 21:50:03 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2017-02-14 21:50:03 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2016-11-05 15:36:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.SoundType;
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
2017-06-17 00:48:49 +02:00
|
|
|
import net.minecraft.client.util.ITooltipFlag;
|
2016-11-05 15:36:16 +01:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2016-11-05 16:16:42 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
2016-11-05 15:36:16 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.util.EnumActionResult;
|
|
|
|
import net.minecraft.util.EnumFacing;
|
|
|
|
import net.minecraft.util.EnumHand;
|
|
|
|
import net.minecraft.util.SoundCategory;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.util.math.RayTraceResult;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2016-11-05 15:36:16 +01:00
|
|
|
public class ItemFillingWand extends ItemEnergy{
|
|
|
|
|
|
|
|
public ItemFillingWand(String name){
|
2016-11-21 13:38:43 +01:00
|
|
|
super(500000, 1000, name);
|
2016-11-05 15:36:16 +01:00
|
|
|
}
|
|
|
|
|
2016-11-16 20:31:16 +01:00
|
|
|
private static boolean removeFittingItem(IBlockState state, EntityPlayer player){
|
|
|
|
Block block = state.getBlock();
|
|
|
|
ItemStack stack = new ItemStack(block, 1, block.damageDropped(state));
|
|
|
|
|
|
|
|
if(StackUtil.isValid(stack)){
|
|
|
|
for(int i = 0; i < player.inventory.getSizeInventory(); i++){
|
|
|
|
ItemStack slot = player.inventory.getStackInSlot(i);
|
|
|
|
if(StackUtil.isValid(slot) && slot.isItemEqual(stack)){
|
|
|
|
slot = StackUtil.addStackSize(slot, -1);
|
|
|
|
if(!StackUtil.isValid(slot)){
|
|
|
|
player.inventory.setInventorySlotContents(i, StackUtil.getNull());
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void saveBlock(IBlockState state, ItemStack stack){
|
|
|
|
if(!stack.hasTagCompound()){
|
|
|
|
stack.setTagCompound(new NBTTagCompound());
|
|
|
|
}
|
|
|
|
|
2017-08-17 07:06:09 +02:00
|
|
|
stack.getTagCompound().setInteger("state", Block.getStateId(state));
|
2016-11-16 20:31:16 +01:00
|
|
|
}
|
2017-08-17 07:06:09 +02:00
|
|
|
|
2016-11-16 20:31:16 +01:00
|
|
|
private static IBlockState loadBlock(ItemStack stack){
|
|
|
|
if(stack.hasTagCompound()){
|
2017-08-17 07:06:09 +02:00
|
|
|
return Block.getStateById(stack.getTagCompound().getInteger("state"));
|
2016-11-16 20:31:16 +01:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-11-05 15:36:16 +01:00
|
|
|
@Override
|
2016-11-19 21:11:17 +01:00
|
|
|
public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ){
|
|
|
|
ItemStack stack = player.getHeldItem(hand);
|
2016-11-05 16:16:42 +01:00
|
|
|
if(!world.isRemote && player.getItemInUseCount() <= 0){
|
2016-11-05 15:36:16 +01:00
|
|
|
if(player.isSneaking()){
|
|
|
|
IBlockState state = world.getBlockState(pos);
|
|
|
|
saveBlock(state, stack);
|
|
|
|
return EnumActionResult.SUCCESS;
|
|
|
|
}
|
|
|
|
else if(loadBlock(stack) != null){
|
|
|
|
if(!stack.hasTagCompound()){
|
|
|
|
stack.setTagCompound(new NBTTagCompound());
|
|
|
|
}
|
|
|
|
NBTTagCompound compound = stack.getTagCompound();
|
|
|
|
|
|
|
|
if(compound.getInteger("CurrX") == 0 && compound.getInteger("CurrY") == 0 && compound.getInteger("CurrZ") == 0){
|
|
|
|
compound.setInteger("FirstX", pos.getX());
|
|
|
|
compound.setInteger("FirstY", pos.getY());
|
|
|
|
compound.setInteger("FirstZ", pos.getZ());
|
|
|
|
|
|
|
|
player.setActiveHand(hand);
|
|
|
|
return EnumActionResult.SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return EnumActionResult.PASS;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPlayerStoppedUsing(ItemStack stack, World world, EntityLivingBase entity, int timeLeft){
|
2016-11-05 16:16:42 +01:00
|
|
|
if(!world.isRemote){
|
|
|
|
boolean clear = true;
|
|
|
|
if(entity instanceof EntityPlayer){
|
|
|
|
RayTraceResult result = WorldUtil.getNearestBlockWithDefaultReachDistance(world, (EntityPlayer)entity);
|
|
|
|
if(result != null && result.getBlockPos() != null){
|
|
|
|
if(!stack.hasTagCompound()){
|
|
|
|
stack.setTagCompound(new NBTTagCompound());
|
|
|
|
}
|
|
|
|
NBTTagCompound compound = stack.getTagCompound();
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
BlockPos pos = result.getBlockPos();
|
|
|
|
compound.setInteger("SecondX", pos.getX());
|
|
|
|
compound.setInteger("SecondY", pos.getY());
|
|
|
|
compound.setInteger("SecondZ", pos.getZ());
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
clear = false;
|
|
|
|
}
|
2016-11-05 15:36:16 +01:00
|
|
|
}
|
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
if(clear){
|
|
|
|
ItemPhantomConnector.clearStorage(stack, "FirstX", "FirstY", "FirstZ");
|
|
|
|
}
|
2016-11-05 15:36:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
super.onPlayerStoppedUsing(stack, world, entity, timeLeft);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onUpdate(ItemStack stack, World world, Entity entity, int itemSlot, boolean isSelected){
|
|
|
|
super.onUpdate(stack, world, entity, itemSlot, isSelected);
|
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
if(!world.isRemote){
|
|
|
|
boolean shouldClear = false;
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
if(isSelected){
|
|
|
|
if(entity instanceof EntityPlayer && stack.hasTagCompound()){
|
|
|
|
EntityPlayer player = (EntityPlayer)entity;
|
|
|
|
boolean creative = player.capabilities.isCreativeMode;
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
NBTTagCompound compound = stack.getTagCompound();
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
BlockPos firstPos = new BlockPos(compound.getInteger("FirstX"), compound.getInteger("FirstY"), compound.getInteger("FirstZ"));
|
|
|
|
BlockPos secondPos = new BlockPos(compound.getInteger("SecondX"), compound.getInteger("SecondY"), compound.getInteger("SecondZ"));
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
if(!BlockPos.ORIGIN.equals(firstPos) && !BlockPos.ORIGIN.equals(secondPos)){
|
|
|
|
int energyUse = 1500;
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
IBlockState replaceState = loadBlock(stack);
|
|
|
|
if(replaceState != null && (creative || this.getEnergyStored(stack) >= energyUse)){
|
|
|
|
int lowestX = Math.min(firstPos.getX(), secondPos.getX());
|
|
|
|
int lowestY = Math.min(firstPos.getY(), secondPos.getY());
|
|
|
|
int lowestZ = Math.min(firstPos.getZ(), secondPos.getZ());
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
int currX = compound.getInteger("CurrX");
|
|
|
|
int currY = compound.getInteger("CurrY");
|
|
|
|
int currZ = compound.getInteger("CurrZ");
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
BlockPos pos = new BlockPos(lowestX+currX, lowestY+currY, lowestZ+currZ);
|
|
|
|
IBlockState state = world.getBlockState(pos);
|
2016-11-05 15:36:16 +01:00
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
if(state.getBlock().isReplaceable(world, pos) && replaceState.getBlock().canPlaceBlockAt(world, pos)){
|
|
|
|
if(creative || removeFittingItem(replaceState, player)){
|
|
|
|
world.setBlockState(pos, replaceState, 2);
|
|
|
|
|
2016-11-07 19:58:34 +01:00
|
|
|
SoundType sound = replaceState.getBlock().getSoundType(replaceState, world, pos, player);
|
2017-10-31 23:01:15 +01:00
|
|
|
world.playSound(null, pos, sound.getPlaceSound(), SoundCategory.BLOCKS, sound.getVolume()/2F + .5F, sound.getPitch()*0.8F);
|
2016-11-05 16:16:42 +01:00
|
|
|
|
|
|
|
if(!creative){
|
2016-11-23 18:10:55 +01:00
|
|
|
this.extractEnergyInternal(stack, energyUse, false);
|
2016-11-05 16:16:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2016-11-05 15:36:16 +01:00
|
|
|
shouldClear = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-05 16:16:42 +01:00
|
|
|
int distX = Math.abs(secondPos.getX()-firstPos.getX());
|
|
|
|
int distY = Math.abs(secondPos.getY()-firstPos.getY());
|
|
|
|
int distZ = Math.abs(secondPos.getZ()-firstPos.getZ());
|
|
|
|
|
|
|
|
currX++;
|
|
|
|
if(currX > distX){
|
|
|
|
currX = 0;
|
|
|
|
currY++;
|
|
|
|
if(currY > distY){
|
|
|
|
currY = 0;
|
|
|
|
currZ++;
|
|
|
|
if(currZ > distZ){
|
|
|
|
shouldClear = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!shouldClear){
|
|
|
|
compound.setInteger("CurrX", currX);
|
|
|
|
compound.setInteger("CurrY", currY);
|
|
|
|
compound.setInteger("CurrZ", currZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
shouldClear = true;
|
|
|
|
}
|
2016-11-05 15:36:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-05 16:16:42 +01:00
|
|
|
else{
|
|
|
|
shouldClear = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(shouldClear){
|
|
|
|
ItemPhantomConnector.clearStorage(stack, "FirstX", "FirstY", "FirstZ", "SecondX", "SecondY", "SecondZ", "CurrX", "CurrY", "CurrZ");
|
|
|
|
}
|
2016-11-05 15:36:16 +01:00
|
|
|
}
|
2016-11-05 16:16:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-06-17 00:48:49 +02:00
|
|
|
public void addInformation(ItemStack stack, World playerIn, List<String> tooltip, ITooltipFlag advanced){
|
|
|
|
super.addInformation(stack, playerIn, tooltip, advanced);
|
2016-11-05 16:16:42 +01:00
|
|
|
|
2017-02-14 21:50:03 +01:00
|
|
|
String display = StringUtil.localize("tooltip."+ModUtil.MOD_ID+".item_filling_wand.selectedBlock.none");
|
2016-11-05 16:16:42 +01:00
|
|
|
|
|
|
|
IBlockState state = loadBlock(stack);
|
|
|
|
if(state != null){
|
|
|
|
Block block = state.getBlock();
|
|
|
|
ItemStack blockStack = new ItemStack(block, 1, block.getMetaFromState(state));
|
2016-11-16 16:59:00 +01:00
|
|
|
if(StackUtil.isValid(blockStack)){
|
2016-11-05 16:16:42 +01:00
|
|
|
display = blockStack.getDisplayName();
|
|
|
|
}
|
2016-11-05 15:36:16 +01:00
|
|
|
}
|
|
|
|
|
2017-06-17 00:48:49 +02:00
|
|
|
tooltip.add(String.format("%s: %s", StringUtil.localize("tooltip."+ModUtil.MOD_ID+".item_filling_wand.selectedBlock"), display));
|
2016-11-05 16:16:42 +01:00
|
|
|
}
|
|
|
|
|
2016-11-05 15:36:16 +01:00
|
|
|
@Override
|
|
|
|
public int getMaxItemUseDuration(ItemStack stack){
|
|
|
|
return Integer.MAX_VALUE;
|
|
|
|
}
|
2016-11-05 16:16:42 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.EPIC;
|
|
|
|
}
|
2016-11-05 15:36:16 +01:00
|
|
|
}
|