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

102 lines
4.8 KiB
Java
Raw Normal View History

/*
2016-05-16 22:52:27 +02:00
* This file ("ItemLaserWrench.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
2016-05-16 22:52:27 +02:00
* 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-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
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.TileEntityLaserRelay;
2024-03-02 21:23:08 +01:00
import net.minecraft.ChatFormatting;
import net.minecraft.core.BlockPos;
import net.minecraft.network.chat.Component;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.TooltipFlag;
import net.minecraft.world.item.context.UseOnContext;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.entity.BlockEntity;
2024-03-04 20:21:48 +01:00
import net.neoforged.api.distmarker.Dist;
import net.neoforged.api.distmarker.OnlyIn;
2021-02-26 22:15:48 +01:00
import java.util.List;
2019-05-02 09:10:29 +02:00
public class ItemLaserWrench extends ItemBase {
public ItemLaserWrench() {
super(ActuallyItems.defaultNonStacking());
}
@Override
2024-03-02 21:23:08 +01:00
public InteractionResult useOn(UseOnContext context) {
BlockPos pos = context.getClickedPos();
2024-03-02 21:23:08 +01:00
Level world = context.getLevel();
Player player = context.getPlayer();
ItemStack stack = player.getItemInHand(context.getHand());
2024-03-02 21:23:08 +01:00
BlockEntity tile = world.getBlockEntity(pos);
2024-03-03 01:20:53 +01:00
if (tile instanceof TileEntityLaserRelay relay) {
if (!world.isClientSide) {
2019-05-02 09:10:29 +02:00
if (ItemPhantomConnector.getStoredPosition(stack) == null) {
ItemPhantomConnector.storeConnection(stack, pos.getX(), pos.getY(), pos.getZ(), world);
2024-03-03 01:20:53 +01:00
player.displayClientMessage(Component.translatable("tooltip." + ActuallyAdditions.MODID + ".laser.stored.desc"), true);
2019-05-02 09:10:29 +02:00
} else {
2016-01-08 13:31:58 +01:00
BlockPos savedPos = ItemPhantomConnector.getStoredPosition(stack);
2019-05-02 09:10:29 +02:00
if (savedPos != null) {
2024-03-02 21:23:08 +01:00
BlockEntity savedTile = world.getBlockEntity(savedPos);
2024-03-03 01:20:53 +01:00
if (savedTile instanceof TileEntityLaserRelay savedRelay) {
int distanceSq = (int) savedPos.distSqr(pos);
2015-10-21 00:22:50 +02:00
2024-03-03 01:20:53 +01:00
int lowestRange = Math.min(relay.getMaxRange(), savedRelay.getMaxRange());
2019-05-02 09:10:29 +02:00
int range = lowestRange * lowestRange;
if (ItemPhantomConnector.getStoredWorld(stack) == world.dimension() && savedRelay.type == relay.type && distanceSq <= range && ActuallyAdditionsAPI.connectionHandler.addConnection(savedPos, pos, relay.type, world, false, true)) {
2017-02-13 19:07:53 +01:00
ItemPhantomConnector.clearStorage(stack, "XCoordOfTileStored", "YCoordOfTileStored", "ZCoordOfTileStored", "WorldOfTileStored");
2019-05-02 09:10:29 +02:00
((TileEntityLaserRelay) savedTile).sendUpdate();
2017-02-13 19:07:53 +01:00
relay.sendUpdate();
2024-03-03 01:20:53 +01:00
player.displayClientMessage(Component.translatable("tooltip." + ActuallyAdditions.MODID + ".laser.connected.desc"), true);
2017-02-13 19:07:53 +01:00
2024-03-02 21:23:08 +01:00
return InteractionResult.SUCCESS;
2017-02-13 19:07:53 +01:00
}
2016-05-16 22:52:27 +02:00
}
2017-02-13 19:07:53 +01:00
2024-03-03 01:20:53 +01:00
player.displayClientMessage(Component.translatable("tooltip." + ActuallyAdditions.MODID + ".laser.cantConnect.desc"), false);
2017-02-13 19:07:53 +01:00
ItemPhantomConnector.clearStorage(stack, "XCoordOfTileStored", "YCoordOfTileStored", "ZCoordOfTileStored", "WorldOfTileStored");
}
}
}
2024-03-02 21:23:08 +01:00
return InteractionResult.SUCCESS;
}
2024-03-02 21:23:08 +01:00
return InteractionResult.FAIL;
}
// // TODO: [port] ensure this is correct
// @Nullable
// @Override
// public CompoundNBT getShareTag(ItemStack stack) {
// return new CompoundNBT();
// }
2015-10-23 16:54:33 +02:00
2021-12-30 18:30:01 +01:00
@OnlyIn(Dist.CLIENT)
@Override
2024-03-02 21:23:08 +01:00
public void appendHoverText(ItemStack stack, Level playerIn, List<Component> list, TooltipFlag advanced) {
2016-01-08 13:31:58 +01:00
BlockPos coords = ItemPhantomConnector.getStoredPosition(stack);
2019-05-02 09:10:29 +02:00
if (coords != null) {
2024-03-03 01:20:53 +01:00
list.add(Component.translatable("tooltip." + ActuallyAdditions.MODID + ".boundTo.desc").append(":"));
list.add(Component.literal("X: " + coords.getX()));
list.add(Component.literal("Y: " + coords.getY()));
list.add(Component.literal("Z: " + coords.getZ()));
list.add(Component.translatable("tooltip." + ActuallyAdditions.MODID + ".clearStorage.desc").withStyle(ChatFormatting.ITALIC));
}
}
}