/* * Decompiled with CFR 0.152. * * Could not load the following classes: * com.mojang.datafixers.DSL * com.mojang.datafixers.DataFix * com.mojang.datafixers.OpticFinder * com.mojang.datafixers.TypeRewriteRule * com.mojang.datafixers.Typed * com.mojang.datafixers.schemas.Schema * com.mojang.datafixers.types.Type * com.mojang.serialization.Dynamic * com.mojang.serialization.DynamicOps */ package net.minecraft.util.datafix.fixes; import com.mojang.datafixers.DSL; import com.mojang.datafixers.DataFix; import com.mojang.datafixers.OpticFinder; import com.mojang.datafixers.TypeRewriteRule; import com.mojang.datafixers.Typed; import com.mojang.datafixers.schemas.Schema; import com.mojang.datafixers.types.Type; import com.mojang.serialization.Dynamic; import com.mojang.serialization.DynamicOps; import java.util.Optional; import net.minecraft.util.Util; import net.minecraft.util.datafix.ExtraDataFixUtils; import net.minecraft.util.datafix.LegacyComponentDataFixUtils; import net.minecraft.util.datafix.fixes.References; import net.minecraft.util.datafix.schemas.NamespacedSchema; public class EntityCustomNameToComponentFix extends DataFix { public EntityCustomNameToComponentFix(Schema outputSchema) { super(outputSchema, true); } public TypeRewriteRule makeRule() { Type entityType = this.getInputSchema().getType(References.ENTITY); Type newEntityType = this.getOutputSchema().getType(References.ENTITY); OpticFinder idF = DSL.fieldFinder((String)"id", NamespacedSchema.namespacedString()); OpticFinder customNameF = entityType.findField("CustomName"); Type newCustomNameType = newEntityType.findFieldType("CustomName"); return this.fixTypeEverywhereTyped("EntityCustomNameToComponentFix", entityType, newEntityType, entity -> EntityCustomNameToComponentFix.fixEntity(entity, newEntityType, (OpticFinder)idF, (OpticFinder)customNameF, newCustomNameType)); } private static Typed fixEntity(Typed entity, Type newEntityType, OpticFinder idF, OpticFinder customNameF, Type newCustomNameType) { Optional customName = entity.getOptional(customNameF); if (customName.isEmpty()) { return ExtraDataFixUtils.cast(newEntityType, entity); } if (((String)customName.get()).isEmpty()) { return Util.writeAndReadTypedOrThrow(entity, newEntityType, dynamic -> dynamic.remove("CustomName")); } String id = entity.getOptional(idF).orElse(""); Dynamic component = EntityCustomNameToComponentFix.fixCustomName(entity.getOps(), (String)customName.get(), id); return entity.set(customNameF, Util.readTypedOrThrow(newCustomNameType, component)); } private static Dynamic fixCustomName(DynamicOps ops, String customName, String id) { if ("minecraft:commandblock_minecart".equals(id)) { return new Dynamic(ops, ops.createString(customName)); } return LegacyComponentDataFixUtils.createPlainTextComponent(ops, customName); } }