2015-10-20 00:22:36 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemLaserWrench.java") is part of the Actually Additions mod for Minecraft.
|
2015-10-20 00:22:36 +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-20 00:22:36 +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-20 00:22:36 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-10-20 00:22:36 +02:00
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.misc.LaserRelayConnectionHandler;
|
2016-06-04 13:51:06 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.data.WorldData;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityLaserRelay;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2015-10-20 00:22:36 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
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;
|
2016-05-27 18:54:17 +02:00
|
|
|
import net.minecraft.util.text.TextComponentTranslation;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.text.TextFormatting;
|
2015-10-20 00:22:36 +02:00
|
|
|
import net.minecraft.world.World;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-10-20 00:22:36 +02:00
|
|
|
|
2015-10-21 18:31:35 +02:00
|
|
|
import java.util.List;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemLaserWrench extends ItemBase{
|
2015-10-20 00:22:36 +02:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public ItemLaserWrench(String name){
|
|
|
|
super(name);
|
2015-10-20 00:22:36 +02:00
|
|
|
this.setMaxStackSize(1);
|
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-10-20 00:22:36 +02:00
|
|
|
@Override
|
2016-03-18 23:47:22 +01:00
|
|
|
public EnumActionResult onItemUse(ItemStack stack, EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing par7, float par8, float par9, float par10){
|
2015-10-21 19:14:57 +02:00
|
|
|
if(!world.isRemote){
|
2016-01-07 21:41:28 +01:00
|
|
|
TileEntity tile = world.getTileEntity(pos);
|
2015-10-21 19:14:57 +02:00
|
|
|
if(tile instanceof TileEntityLaserRelay){
|
2015-10-20 00:22:36 +02:00
|
|
|
if(ItemPhantomConnector.getStoredPosition(stack) == null){
|
2016-01-07 21:41:28 +01:00
|
|
|
ItemPhantomConnector.storeConnection(stack, pos.getX(), pos.getY(), pos.getZ(), world);
|
2016-05-27 18:54:17 +02:00
|
|
|
player.addChatComponentMessage(new TextComponentTranslation("tooltip."+ModUtil.MOD_ID+".laser.stored.desc"));
|
2015-10-20 00:22:36 +02:00
|
|
|
}
|
|
|
|
else{
|
2016-01-08 13:31:58 +01:00
|
|
|
BlockPos savedPos = ItemPhantomConnector.getStoredPosition(stack);
|
2016-05-16 22:52:27 +02:00
|
|
|
if(savedPos != null){
|
|
|
|
TileEntity savedTile = world.getTileEntity(savedPos);
|
2016-06-04 13:51:06 +02:00
|
|
|
if(ItemPhantomConnector.getStoredWorld(stack) == world && savedTile instanceof TileEntityLaserRelay && ((TileEntityLaserRelay)savedTile).isItem == ((TileEntityLaserRelay)tile).isItem && LaserRelayConnectionHandler.addConnection(savedPos, pos, world.provider.getDimension())){
|
2016-05-16 22:52:27 +02:00
|
|
|
ItemPhantomConnector.clearStorage(stack);
|
2015-10-21 00:22:50 +02:00
|
|
|
|
2016-05-16 22:52:27 +02:00
|
|
|
((TileEntityLaserRelay)world.getTileEntity(savedPos)).sendUpdate();
|
|
|
|
((TileEntityLaserRelay)world.getTileEntity(pos)).sendUpdate();
|
2015-10-21 19:14:57 +02:00
|
|
|
|
2016-05-27 18:54:17 +02:00
|
|
|
player.addChatComponentMessage(new TextComponentTranslation("tooltip."+ModUtil.MOD_ID+".laser.connected.desc"));
|
2016-05-16 22:52:27 +02:00
|
|
|
}
|
|
|
|
else{
|
2016-05-27 18:54:17 +02:00
|
|
|
player.addChatComponentMessage(new TextComponentTranslation("tooltip."+ModUtil.MOD_ID+".laser.cantConnect.desc"));
|
2016-05-16 22:52:27 +02:00
|
|
|
ItemPhantomConnector.clearStorage(stack);
|
|
|
|
}
|
2015-10-20 00:22:36 +02:00
|
|
|
}
|
|
|
|
}
|
2016-03-18 23:47:22 +01:00
|
|
|
return EnumActionResult.SUCCESS;
|
2015-10-20 00:22:36 +02:00
|
|
|
}
|
|
|
|
}
|
2016-03-18 23:47:22 +01:00
|
|
|
return EnumActionResult.FAIL;
|
2015-10-20 00:22:36 +02:00
|
|
|
}
|
|
|
|
|
2015-10-23 16:54:33 +02:00
|
|
|
@Override
|
|
|
|
public boolean getShareTag(){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5){
|
|
|
|
if(ItemPhantomConnector.getStoredPosition(stack) == null){
|
|
|
|
ItemPhantomConnector.clearStorage(stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-21 18:31:35 +02:00
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
|
2016-01-08 13:31:58 +01:00
|
|
|
BlockPos coords = ItemPhantomConnector.getStoredPosition(stack);
|
2015-10-21 18:31:35 +02:00
|
|
|
if(coords != null){
|
2016-04-20 21:39:03 +02:00
|
|
|
list.add(StringUtil.localize("tooltip."+ModUtil.MOD_ID+".boundTo.desc")+":");
|
2015-10-27 20:58:42 +01:00
|
|
|
list.add("X: "+coords.getX());
|
|
|
|
list.add("Y: "+coords.getY());
|
|
|
|
list.add("Z: "+coords.getZ());
|
2016-04-20 21:39:03 +02:00
|
|
|
list.add(TextFormatting.ITALIC+StringUtil.localize("tooltip."+ModUtil.MOD_ID+".clearStorage.desc"));
|
2015-10-21 18:31:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-10-20 00:22:36 +02:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-01-07 21:41:28 +01:00
|
|
|
return EnumRarity.EPIC;
|
2015-10-20 00:22:36 +02:00
|
|
|
}
|
|
|
|
}
|