This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
EnergonRelics/src/main/java/com/thebrokenrail/energonrelics/item/MultimeterItem.java

82 lines
3.2 KiB
Java

package com.thebrokenrail.energonrelics.item;
import com.thebrokenrail.energonrelics.EnergonRelics;
import com.thebrokenrail.energonrelics.api.block.entity.core.EnergyReceiverBlockEntity;
import com.thebrokenrail.energonrelics.api.block.entity.helper.EnergyGenerator;
import com.thebrokenrail.energonrelics.api.item.MultimeterExtra;
import net.minecraft.block.entity.BlockEntity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemUsageContext;
import net.minecraft.text.LiteralText;
import net.minecraft.text.MutableText;
import net.minecraft.text.Text;
import net.minecraft.text.TranslatableText;
import net.minecraft.util.ActionResult;
import net.minecraft.util.Formatting;
import net.minecraft.world.World;
import java.util.Objects;
public class MultimeterItem extends Item {
public MultimeterItem() {
super(new Settings().maxCount(1).group(EnergonRelics.Items.ITEM_GROUP));
}
public static MutableText format(long value) {
String str;
if (value >= Long.MAX_VALUE) {
str = "\u221e";
} else if (value == -1) {
str = "N/A";
} else {
str = String.valueOf(value);
}
return new LiteralText(str).formatted(Formatting.WHITE);
}
@Override
public ActionResult useOnBlock(ItemUsageContext context) {
World world = context.getWorld();
BlockEntity entity = world.getBlockEntity(context.getBlockPos());
boolean success = false;
MutableText text = new LiteralText("");
Text separator = new TranslatableText("text." + EnergonRelics.NAMESPACE + ".multimeter_separator").formatted(Formatting.YELLOW);
if (entity instanceof EnergyGenerator) {
if (!world.isClient() && context.getPlayer() != null) {
text.append(new TranslatableText("text." + EnergonRelics.NAMESPACE + ".energy_available", format(((EnergyGenerator) entity).getDisplayEnergy())).formatted(Formatting.YELLOW));
}
success = true;
}
if (entity instanceof EnergyReceiverBlockEntity) {
if (!world.isClient() && context.getPlayer() != null) {
if (success) {
text.append(separator);
}
text.append(new TranslatableText("text." + EnergonRelics.NAMESPACE + ".energy_required", format(((EnergyReceiverBlockEntity) entity).getTotalCost())).formatted(Formatting.YELLOW));
}
success = true;
}
if (entity instanceof MultimeterExtra) {
if (!world.isClient() && context.getPlayer() != null) {
MutableText extraText = ((MultimeterExtra) entity).getExtra();
if (extraText != null) {
if (success) {
text.append(separator);
}
text.append(extraText.formatted(Formatting.YELLOW));
}
}
success = true;
}
if (success) {
if (!world.isClient()) {
Objects.requireNonNull(context.getPlayer()).sendMessage(text, true);
}
EnergonRelics.Extras.playBeep(world, context.getBlockPos());
return ActionResult.SUCCESS;
} else {
return ActionResult.PASS;
}
}
}