ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemPhantomConnector.java

155 lines
5.6 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemPhantomConnector.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +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-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2015-05-20 22:39:43 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.api.tile.IPhantomTile;
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBase;
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
2015-05-20 22:39:43 +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.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.EnumActionResult;
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-05-20 22:39:43 +02:00
import net.minecraft.world.World;
import net.minecraftforge.common.DimensionManager;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-05-20 22:39:43 +02:00
import java.util.List;
public class ItemPhantomConnector extends ItemBase{
2015-05-20 22:39:43 +02:00
public ItemPhantomConnector(String name){
super(name);
2015-05-20 22:39:43 +02:00
this.setMaxStackSize(1);
}
2016-02-01 20:39:11 +01:00
public static World getStoredWorld(ItemStack stack){
NBTTagCompound tag = stack.getTagCompound();
if(tag != null){
return DimensionManager.getWorld(tag.getInteger("WorldOfTileStored"));
}
return null;
}
public static BlockPos getStoredPosition(ItemStack stack){
NBTTagCompound tag = stack.getTagCompound();
if(tag != null){
int x = tag.getInteger("XCoordOfTileStored");
int y = tag.getInteger("YCoordOfTileStored");
int z = tag.getInteger("ZCoordOfTileStored");
if(!(x == 0 && y == 0 && z == 0)){
return new BlockPos(x, y, z);
}
}
return null;
}
public static void clearStorage(ItemStack stack){
stack.setTagCompound(new NBTTagCompound());
}
public static void storeConnection(ItemStack stack, int x, int y, int z, World world){
NBTTagCompound tag = stack.getTagCompound();
if(tag == null){
tag = new NBTTagCompound();
}
tag.setInteger("XCoordOfTileStored", x);
tag.setInteger("YCoordOfTileStored", y);
tag.setInteger("ZCoordOfTileStored", z);
2016-03-18 23:47:22 +01:00
tag.setInteger("WorldOfTileStored", world.provider.getDimension());
2016-02-01 20:39:11 +01:00
stack.setTagCompound(tag);
}
2015-05-20 22:39:43 +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-05-20 22:39:43 +02:00
if(!world.isRemote){
2015-05-25 17:00:54 +02:00
//Passing Data to Phantoms
TileEntity tile = world.getTileEntity(pos);
2015-05-25 17:00:54 +02:00
if(tile != null){
2015-08-22 19:47:20 +02:00
//Passing to Phantom
if(tile instanceof IPhantomTile){
if(this.checkHasConnection(stack, player, tile) && getStoredWorld(stack) == world){
((IPhantomTile)tile).setBoundPosition(getStoredPosition(stack));
if(tile instanceof TileEntityBase){
((TileEntityBase)tile).sendUpdate();
}
clearStorage(stack);
2016-05-27 18:54:17 +02:00
player.addChatComponentMessage(new TextComponentTranslation("tooltip."+ModUtil.MOD_ID+".phantom.connected.desc"));
2016-03-18 23:47:22 +01:00
return EnumActionResult.SUCCESS;
2015-05-25 17:00:54 +02:00
}
2016-03-18 23:47:22 +01:00
return EnumActionResult.FAIL;
2015-05-20 22:39:43 +02:00
}
}
2015-05-25 17:00:54 +02:00
//Storing Connections
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+".phantom.stored.desc"));
2015-05-25 17:00:54 +02:00
}
2016-03-18 23:47:22 +01:00
return EnumActionResult.SUCCESS;
2015-05-25 17:00:54 +02:00
}
2015-05-20 22:39:43 +02:00
public boolean checkHasConnection(ItemStack stack, EntityPlayer player, TileEntity tile){
if(getStoredPosition(stack) != null){
2015-05-25 17:00:54 +02:00
return true;
}
else{
2015-08-22 19:47:20 +02:00
if(tile instanceof IPhantomTile){
((IPhantomTile)tile).setBoundPosition(null);
}
2016-05-27 18:54:17 +02:00
player.addChatComponentMessage(new TextComponentTranslation("tooltip."+ModUtil.MOD_ID+".phantom.unbound.desc"));
2015-05-25 17:00:54 +02:00
return false;
2015-05-20 22:39:43 +02:00
}
}
2015-10-03 10:19:40 +02:00
@Override
public boolean getShareTag(){
return true;
2015-05-20 22:39:43 +02:00
}
@Override
2015-10-03 10:19:40 +02:00
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5){
if(getStoredPosition(stack) == null){
clearStorage(stack);
2015-10-03 10:19:40 +02:00
}
2015-05-20 22:39:43 +02:00
}
2015-10-23 16:54:33 +02:00
@Override
@SideOnly(Side.CLIENT)
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
2016-01-08 13:31:58 +01:00
BlockPos coords = getStoredPosition(stack);
2015-10-23 16:54:33 +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-23 16:54:33 +02:00
}
}
2015-05-20 22:39:43 +02:00
@Override
2015-10-03 10:19:40 +02:00
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.EPIC;
2015-05-20 22:39:43 +02:00
}
}