Unicopia/src/main/java/com/minelittlepony/unicopia/item/GemstoneItem.java

80 lines
2.4 KiB
Java
Raw Normal View History

package com.minelittlepony.unicopia.item;
import java.util.List;
import javax.annotation.Nullable;
import com.minelittlepony.unicopia.Affinity;
import com.minelittlepony.unicopia.ability.magic.Spell;
import com.minelittlepony.unicopia.ability.magic.spell.SpellType;
import net.minecraft.client.item.TooltipContext;
import net.minecraft.item.Item;
import net.minecraft.item.ItemGroup;
import net.minecraft.item.ItemStack;
import net.minecraft.text.Text;
import net.minecraft.text.TranslatableText;
import net.minecraft.util.Identifier;
import net.minecraft.util.collection.DefaultedList;
import net.minecraft.world.World;
public class GemstoneItem extends Item {
public GemstoneItem(Settings settings) {
super(settings);
}
@Override
public void appendTooltip(ItemStack stack, @Nullable World world, List<Text> list, TooltipContext tooltipContext) {
}
@Override
public void appendStacks(ItemGroup tab, DefaultedList<ItemStack> items) {
super.appendStacks(tab, items);
if (isIn(tab)) {
SpellType.byAffinity(Affinity.GOOD).forEach(type -> {
if (type.isObtainable()) {
items.add(enchanted(getDefaultStack(), type));
}
});
}
}
@Override
public String getTranslationKey(ItemStack stack) {
return getTranslationKey();
}
@Override
public Text getName(ItemStack stack) {
if (isEnchanted(stack)) {
return new TranslatableText(getTranslationKey(stack) + ".enchanted", getSpellKey(stack).getName());
}
return super.getName();
}
public static boolean isEnchanted(ItemStack stack) {
return !stack.isEmpty() && stack.hasTag() && stack.getTag().contains("spell");
}
public static ItemStack enchanted(ItemStack stack, SpellType<?> type) {
stack.getOrCreateTag().putString("spell", type.getId().toString());
return stack;
}
public ItemStack unenchanted(ItemStack stack) {
if (isEnchanted(stack)) {
stack.getTag().remove("spell");
if (stack.getTag().isEmpty()) {
stack.setTag(null);
}
}
return stack;
}
public static <T extends Spell> SpellType<T> getSpellKey(ItemStack stack) {
return SpellType.getKey(isEnchanted(stack) ? new Identifier(stack.getTag().getString("spell")) : SpellType.EMPTY_ID);
}
}