2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("ItemPhantomConnector.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
|
package ellpeck.actuallyadditions.items;
|
|
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-08-22 19:47:20 +02:00
|
|
|
|
import ellpeck.actuallyadditions.tile.IPhantomTile;
|
2015-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-08-28 22:18:46 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
|
|
|
import ellpeck.actuallyadditions.util.StringUtil;
|
|
|
|
|
import ellpeck.actuallyadditions.util.WorldPos;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
|
import net.minecraft.util.ChatComponentText;
|
2015-10-21 18:31:35 +02:00
|
|
|
|
import net.minecraft.util.EnumChatFormatting;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
2015-10-21 18:31:35 +02:00
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2015-10-01 23:20:31 +02:00
|
|
|
|
public class ItemPhantomConnector extends Item implements IActAddItemOrBlock{
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
|
|
public ItemPhantomConnector(){
|
|
|
|
|
this.setMaxStackSize(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int par7, float par8, float par9, float par10){
|
|
|
|
|
if(!world.isRemote){
|
2015-05-25 17:00:54 +02:00
|
|
|
|
//Passing Data to Phantoms
|
2015-05-20 22:39:43 +02:00
|
|
|
|
TileEntity tile = world.getTileEntity(x, y, z);
|
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){
|
2015-06-12 19:12:06 +02:00
|
|
|
|
if(this.checkHasConnection(stack, player, tile)){
|
2015-10-20 00:22:36 +02:00
|
|
|
|
((IPhantomTile)tile).setBoundPosition(getStoredPosition(stack));
|
|
|
|
|
clearStorage(stack);
|
2015-08-01 00:40:29 +02:00
|
|
|
|
player.addChatComponentMessage(new ChatComponentText(StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.connected.desc")));
|
2015-05-25 17:00:54 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-25 17:00:54 +02:00
|
|
|
|
//Storing Connections
|
2015-10-20 00:22:36 +02:00
|
|
|
|
storeConnection(stack, x, y, z, world);
|
2015-08-01 00:40:29 +02:00
|
|
|
|
player.addChatComponentMessage(new ChatComponentText(StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.stored.desc")));
|
2015-05-25 17:00:54 +02:00
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
|
public boolean checkHasConnection(ItemStack stack, EntityPlayer player, TileEntity tile){
|
2015-10-20 00:22:36 +02:00
|
|
|
|
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);
|
2015-06-12 19:12:06 +02:00
|
|
|
|
}
|
2015-08-01 00:40:29 +02:00
|
|
|
|
player.addChatComponentMessage(new ChatComponentText(StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.unbound.desc")));
|
2015-05-25 17:00:54 +02:00
|
|
|
|
return false;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-20 00:22:36 +02:00
|
|
|
|
public static WorldPos getStoredPosition(ItemStack stack){
|
2015-05-20 22:39:43 +02:00
|
|
|
|
NBTTagCompound tag = stack.getTagCompound();
|
|
|
|
|
if(tag != null){
|
|
|
|
|
int x = tag.getInteger("XCoordOfTileStored");
|
|
|
|
|
int y = tag.getInteger("YCoordOfTileStored");
|
|
|
|
|
int z = tag.getInteger("ZCoordOfTileStored");
|
2015-10-27 20:58:42 +01:00
|
|
|
|
int world = tag.getInteger("WorldOfTileStored");
|
|
|
|
|
if(!(x == 0 && y == 0 && z == 0)){
|
2015-07-07 11:56:38 +02:00
|
|
|
|
return new WorldPos(world, x, y, z);
|
2015-07-07 11:51:05 +02:00
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-20 00:22:36 +02:00
|
|
|
|
public static void clearStorage(ItemStack stack){
|
2015-10-03 10:19:40 +02:00
|
|
|
|
stack.setTagCompound(new NBTTagCompound());
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-20 00:22:36 +02:00
|
|
|
|
public static void storeConnection(ItemStack stack, int x, int y, int z, World world){
|
2015-05-20 22:39:43 +02:00
|
|
|
|
NBTTagCompound tag = stack.getTagCompound();
|
2015-10-03 10:16:18 +02:00
|
|
|
|
if(tag == null){
|
|
|
|
|
tag = new NBTTagCompound();
|
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
2015-05-25 17:00:54 +02:00
|
|
|
|
tag.setInteger("XCoordOfTileStored", x);
|
|
|
|
|
tag.setInteger("YCoordOfTileStored", y);
|
|
|
|
|
tag.setInteger("ZCoordOfTileStored", z);
|
|
|
|
|
tag.setInteger("WorldOfTileStored", world.provider.dimensionId);
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
|
|
stack.setTagCompound(tag);
|
|
|
|
|
}
|
|
|
|
|
|
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){
|
2015-10-20 00:22:36 +02:00
|
|
|
|
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
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
|
|
|
|
|
WorldPos coords = getStoredPosition(stack);
|
|
|
|
|
if(coords != null){
|
2015-10-27 20:58:42 +01:00
|
|
|
|
list.add(StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".boundTo.desc")+":");
|
|
|
|
|
list.add("X: "+coords.getX());
|
|
|
|
|
list.add("Y: "+coords.getY());
|
|
|
|
|
list.add("Z: "+coords.getZ());
|
|
|
|
|
list.add(StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".inWorld.desc")+" "+coords.getWorldID());
|
|
|
|
|
list.add(EnumChatFormatting.ITALIC+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
2015-05-20 22:39:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-10-28 14:46:04 +01:00
|
|
|
|
@SideOnly(Side.CLIENT)
|
2015-10-03 10:19:40 +02:00
|
|
|
|
public IIcon getIcon(ItemStack stack, int pass){
|
|
|
|
|
return this.itemIcon;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
|
public String getName(){
|
|
|
|
|
return "itemPhantomConnector";
|
2015-05-20 22:39:43 +02:00
|
|
|
|
}
|
|
|
|
|
}
|