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

127 lines
5.2 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
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 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;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBase;
2017-06-17 00:48:49 +02:00
import net.minecraft.client.util.ITooltipFlag;
2015-05-20 22:39:43 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemUseContext;
2021-02-26 22:15:48 +01:00
import net.minecraft.nbt.CompoundNBT;
2015-05-20 22:39:43 +02:00
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ActionResultType;
import net.minecraft.util.RegistryKey;
import net.minecraft.util.ResourceLocation;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.registry.Registry;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.StringTextComponent;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.text.TextFormatting;
import net.minecraft.util.text.TranslationTextComponent;
2015-05-20 22:39:43 +02:00
import net.minecraft.world.World;
2021-02-26 22:15:48 +01:00
import javax.annotation.Nullable;
import java.util.List;
2019-05-02 09:10:29 +02:00
public class ItemPhantomConnector extends ItemBase {
2015-05-20 22:39:43 +02:00
public ItemPhantomConnector() {
super(ActuallyItems.defaultNonStacking());
2015-05-20 22:39:43 +02:00
}
public static RegistryKey<World> getStoredWorld(ItemStack stack) {
CompoundNBT tag = stack.getOrCreateTag();
if (!tag.contains("WorldOfTileStored")) {
return null;
2021-02-26 22:15:48 +01:00
}
return RegistryKey.getOrCreateKey(Registry.WORLD_KEY, new ResourceLocation(tag.getString("WorldOfTileStored")));
2016-02-01 20:39:11 +01:00
}
2019-05-02 09:10:29 +02:00
public static BlockPos getStoredPosition(ItemStack stack) {
CompoundNBT tag = stack.getOrCreateTag();
int x = tag.getInt("XCoordOfTileStored");
int y = tag.getInt("YCoordOfTileStored");
int z = tag.getInt("ZCoordOfTileStored");
if (!(x == 0 && y == 0 && z == 0)) {
return new BlockPos(x, y, z);
2016-02-01 20:39:11 +01:00
}
2016-02-01 20:39:11 +01:00
return null;
}
2019-05-02 09:10:29 +02:00
public static void clearStorage(ItemStack stack, String... keys) {
CompoundNBT compound = stack.getOrCreateTag();
for (String key : keys) {
compound.remove(key);
}
2016-02-01 20:39:11 +01:00
}
2019-05-02 09:10:29 +02:00
public static void storeConnection(ItemStack stack, int x, int y, int z, World world) {
CompoundNBT tag = stack.getOrCreateTag();
2016-02-01 20:39:11 +01:00
tag.putInt("XCoordOfTileStored", x);
tag.putInt("YCoordOfTileStored", y);
tag.putInt("ZCoordOfTileStored", z);
tag.putString("WorldOfTileStored", world.getDimensionKey().getLocation().toString());
2016-02-01 20:39:11 +01:00
}
2015-05-20 22:39:43 +02:00
@Override
public ActionResultType onItemUse(ItemUseContext context) {
ItemStack stack = context.getPlayer().getHeldItem(context.getHand());
if (!context.getWorld().isRemote) {
2015-05-25 17:00:54 +02:00
//Passing Data to Phantoms
BlockPos pos = context.getPos();
TileEntity tile = context.getWorld().getTileEntity(pos);
2019-05-02 09:10:29 +02:00
if (tile != null) {
2015-08-22 19:47:20 +02:00
//Passing to Phantom
2019-05-02 09:10:29 +02:00
if (tile instanceof IPhantomTile) {
BlockPos stored = getStoredPosition(stack);
if (stored != null && getStoredWorld(stack) == context.getWorld().getDimensionKey()) {
2019-05-02 09:10:29 +02:00
((IPhantomTile) tile).setBoundPosition(stored);
if (tile instanceof TileEntityBase) {
((TileEntityBase) tile).sendUpdate();
}
clearStorage(stack, "XCoordOfTileStored", "YCoordOfTileStored", "ZCoordOfTileStored", "WorldOfTileStored");
context.getPlayer().sendStatusMessage(new TranslationTextComponent("tooltip." + ActuallyAdditions.MODID + ".phantom.connected.desc"), true);
return ActionResultType.SUCCESS;
2015-05-25 17:00:54 +02:00
}
return ActionResultType.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(), context.getWorld());
context.getPlayer().sendStatusMessage(new TranslationTextComponent("tooltip." + ActuallyAdditions.MODID + ".phantom.stored.desc"), true);
2015-05-25 17:00:54 +02:00
}
return ActionResultType.SUCCESS;
2015-05-25 17:00:54 +02:00
}
2015-05-20 22:39:43 +02:00
@Nullable
2015-10-03 10:19:40 +02:00
@Override
public CompoundNBT getShareTag(ItemStack stack) {
return new CompoundNBT();
2015-05-20 22:39:43 +02:00
}
2015-10-23 16:54:33 +02:00
@Override
public void addInformation(ItemStack stack, @Nullable World playerIn, List<ITextComponent> list, ITooltipFlag advanced) {
2016-01-08 13:31:58 +01:00
BlockPos coords = getStoredPosition(stack);
2019-05-02 09:10:29 +02:00
if (coords != null) {
list.add(new TranslationTextComponent("tooltip." + ActuallyAdditions.MODID + ".boundTo.desc").appendString(":"));
list.add(new StringTextComponent("X: " + coords.getX()));
list.add(new StringTextComponent("Y: " + coords.getY()));
list.add(new StringTextComponent("Z: " + coords.getZ()));
list.add(new TranslationTextComponent("tooltip." + ActuallyAdditions.MODID + ".clearStorage.desc").mergeStyle(TextFormatting.ITALIC));
2015-10-23 16:54:33 +02:00
}
}
2015-05-20 22:39:43 +02:00
}