package net.minecraft.util.datafix.fixes; import com.mojang.datafixers.DSL; import com.mojang.datafixers.DataFix; import com.mojang.datafixers.DataFixUtils; import com.mojang.datafixers.OpticFinder; import com.mojang.datafixers.TypeRewriteRule; import com.mojang.datafixers.schemas.Schema; import com.mojang.datafixers.types.Type; import com.mojang.serialization.Dynamic; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import java.util.Optional; public class ItemStackEnchantmentNamesFix extends DataFix { private static final Int2ObjectMap MAP = DataFixUtils.make(new Int2ObjectOpenHashMap<>(), map -> { map.put(0, "minecraft:protection"); map.put(1, "minecraft:fire_protection"); map.put(2, "minecraft:feather_falling"); map.put(3, "minecraft:blast_protection"); map.put(4, "minecraft:projectile_protection"); map.put(5, "minecraft:respiration"); map.put(6, "minecraft:aqua_affinity"); map.put(7, "minecraft:thorns"); map.put(8, "minecraft:depth_strider"); map.put(9, "minecraft:frost_walker"); map.put(10, "minecraft:binding_curse"); map.put(16, "minecraft:sharpness"); map.put(17, "minecraft:smite"); map.put(18, "minecraft:bane_of_arthropods"); map.put(19, "minecraft:knockback"); map.put(20, "minecraft:fire_aspect"); map.put(21, "minecraft:looting"); map.put(22, "minecraft:sweeping"); map.put(32, "minecraft:efficiency"); map.put(33, "minecraft:silk_touch"); map.put(34, "minecraft:unbreaking"); map.put(35, "minecraft:fortune"); map.put(48, "minecraft:power"); map.put(49, "minecraft:punch"); map.put(50, "minecraft:flame"); map.put(51, "minecraft:infinity"); map.put(61, "minecraft:luck_of_the_sea"); map.put(62, "minecraft:lure"); map.put(65, "minecraft:loyalty"); map.put(66, "minecraft:impaling"); map.put(67, "minecraft:riptide"); map.put(68, "minecraft:channeling"); map.put(70, "minecraft:mending"); map.put(71, "minecraft:vanishing_curse"); }); public ItemStackEnchantmentNamesFix(final Schema outputSchema, final boolean changesType) { super(outputSchema, changesType); } @Override protected TypeRewriteRule makeRule() { Type item = this.getInputSchema().getType(References.ITEM_STACK); OpticFinder tagFinder = item.findField("tag"); return this.fixTypeEverywhereTyped( "ItemStackEnchantmentFix", item, input -> input.updateTyped(tagFinder, tag -> tag.update(DSL.remainderFinder(), this::fixTag)) ); } private Dynamic fixTag(Dynamic tag) { Optional> newEnch = tag.get("ench") .asStreamOpt() .map(s -> s.map(element -> element.set("id", element.createString(MAP.getOrDefault(element.get("id").asInt(0), "null"))))) .map(tag::createList) .result(); if (newEnch.isPresent()) { tag = tag.remove("ench").set("Enchantments", (Dynamic)newEnch.get()); } return tag.update( "StoredEnchantments", list -> DataFixUtils.orElse( list.asStreamOpt() .map(l -> l.map(enchant -> enchant.set("id", enchant.createString(MAP.getOrDefault(enchant.get("id").asInt(0), "null"))))) .map(list::createList) .result(), list ) ); } }