/* * This file is part of TechReborn, licensed under the MIT License (MIT). * * Copyright (c) 2018 TechReborn * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package techreborn.items; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.minecraft.text.LiteralText; import net.minecraft.util.Formatting; import net.minecraft.client.item.TooltipContext; import reborncore.common.util.StringUtils; import net.minecraft.entity.LivingEntity; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemPropertyGetter; import net.minecraft.item.ItemStack; import net.minecraft.item.ItemUsageContext; import net.minecraft.nbt.CompoundTag; import net.minecraft.text.Text; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; import net.minecraft.util.registry.Registry; import net.minecraft.world.World; import net.minecraft.world.dimension.DimensionType; import reborncore.client.hud.StackInfoElement; import reborncore.common.util.ChatUtils; import techreborn.TechReborn; import techreborn.init.TRContent; import techreborn.utils.MessageIDs; import javax.annotation.Nullable; import java.util.List; public class ItemFrequencyTransmitter extends Item { public ItemFrequencyTransmitter() { super(new Item.Settings().group(TechReborn.ITEMGROUP).maxCount(1)); this.addPropertyGetter(new Identifier("techreborn", "coords"), new ItemPropertyGetter() { @Override @Environment(EnvType.CLIENT) public float call(ItemStack stack, @Nullable World worldIn, @Nullable LivingEntity entityIn) { if (!stack.isEmpty() && stack.hasTag() && stack.getTag() != null && stack.getTag().contains("x") && stack.getTag().contains("y") && stack.getTag().contains("z") && stack.getTag().contains("dim")) { return 1.0F; } return 0.0F; } }); } @Override public ActionResult useOnBlock(ItemUsageContext context) { World world = context.getWorld(); BlockPos pos = context.getBlockPos(); ItemStack stack = context.getStack(); stack.setTag(new CompoundTag()); stack.getTag().putInt("x", pos.getX()); stack.getTag().putInt("y", pos.getY()); stack.getTag().putInt("z", pos.getZ()); stack.getTag().putInt("dim", world.getDimension().getType().getRawId()); if (!world.isClient) { ChatUtils.sendNoSpamMessages(MessageIDs.freqTransmitterID, new LiteralText( Formatting.GRAY + StringUtils.t("techreborn.message.setTo") + " X: " + Formatting.GOLD + pos.getX() + Formatting.GRAY + " Y: " + Formatting.GOLD + pos.getY() + Formatting.GRAY + " Z: " + Formatting.GOLD + pos.getZ() + Formatting.GRAY + " " + StringUtils.t("techreborn.message.in") + " " + Formatting.GOLD + getDimName(world.getDimension().getType()) + " (" + getDimName(world.getDimension().getType()) + ")")); } return ActionResult.SUCCESS; } @Override public TypedActionResult use(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getStackInHand(hand); if (player.isSneaking()) { stack.setTag(null); if (!world.isClient) { ChatUtils.sendNoSpamMessages(MessageIDs.freqTransmitterID, new LiteralText( Formatting.GRAY + StringUtils.t("techreborn.message.coordsHaveBeen") + " " + Formatting.GOLD + StringUtils.t("techreborn.message.cleared"))); } } return new TypedActionResult<>(ActionResult.SUCCESS, stack); } @Environment(EnvType.CLIENT) @Override public void appendTooltip(ItemStack stack, @Nullable World worldIn, List tooltip, TooltipContext flagIn) { if (stack.hasTag() && stack.getTag() != null && stack.getTag().contains("x") && stack.getTag().contains("y") && stack.getTag().contains("z") && stack.getTag().contains("dim")) { int x = stack.getTag().getInt("x"); int y = stack.getTag().getInt("y"); int z = stack.getTag().getInt("z"); int dim = stack.getTag().getInt("dim"); tooltip.add(new LiteralText(Formatting.GRAY + "X: " + Formatting.GOLD + x)); tooltip.add(new LiteralText(Formatting.GRAY + "Y: " + Formatting.GOLD + y)); tooltip.add(new LiteralText(Formatting.GRAY + "Z: " + Formatting.GOLD + z)); tooltip.add(new LiteralText(Formatting.DARK_GRAY + getDimName(Registry.DIMENSION.get(dim)).toString())); } else { tooltip.add(new LiteralText(Formatting.GRAY + StringUtils.t("techreborn.message.noCoordsSet"))); } } private static Identifier getDimName(DimensionType type){ return Registry.DIMENSION.getId(type); } public static class StackInfoFreqTransmitter extends StackInfoElement { public StackInfoFreqTransmitter() { super(TRContent.FREQUENCY_TRANSMITTER); } @Override public String getText(ItemStack stack) { String text = ""; Formatting gold = Formatting.GOLD; Formatting grey = Formatting.GRAY; if (stack.getItem() instanceof ItemFrequencyTransmitter) { if (stack.hasTag() && stack.getTag() != null && stack.getTag().contains("x") && stack.getTag().contains("y") && stack.getTag().contains("z") && stack.getTag().contains("dim")) { int coordX = stack.getTag().getInt("x"); int coordY = stack.getTag().getInt("y"); int coordZ = stack.getTag().getInt("z"); int coordDim = stack.getTag().getInt("dim"); text = grey + "X: " + gold + coordX + grey + " Y: " + gold + coordY + grey + " Z: " + gold + coordZ + grey + " Dim: " + gold + getDimName(Registry.DIMENSION.get(coordDim)).toString() + " (" + coordDim + ")"; } else { text = grey + StringUtils.t("techreborn.message.noCoordsSet"); } } return text; } } }