package net.minecraft.world.entity.npc.villager; import com.mojang.serialization.Codec; import com.mojang.serialization.codecs.RecordCodecBuilder; import net.minecraft.core.Holder; import net.minecraft.core.HolderGetter; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.core.registries.Registries; import net.minecraft.network.RegistryFriendlyByteBuf; import net.minecraft.network.codec.ByteBufCodecs; import net.minecraft.network.codec.StreamCodec; import net.minecraft.resources.ResourceKey; import net.minecraft.util.ExtraCodecs; public record VillagerData(Holder type, Holder profession, int level) { public static final int MIN_VILLAGER_LEVEL = 1; public static final int MAX_VILLAGER_LEVEL = 5; private static final int[] NEXT_LEVEL_XP_THRESHOLDS = new int[]{0, 10, 70, 150, 250}; public static final Codec CODEC = RecordCodecBuilder.create( i -> i.group( BuiltInRegistries.VILLAGER_TYPE .holderByNameCodec() .fieldOf("type") .orElseGet(() -> BuiltInRegistries.VILLAGER_TYPE.getOrThrow(VillagerType.PLAINS)) .forGetter(d -> d.type), BuiltInRegistries.VILLAGER_PROFESSION .holderByNameCodec() .fieldOf("profession") .orElseGet(() -> BuiltInRegistries.VILLAGER_PROFESSION.getOrThrow(VillagerProfession.NONE)) .forGetter(d -> d.profession), ExtraCodecs.optionalAlwaysPresentFieldOf(Codec.INT, "level", 1).forGetter(d -> d.level) ) .apply(i, VillagerData::new) ); public static final StreamCodec STREAM_CODEC = StreamCodec.composite( ByteBufCodecs.holderRegistry(Registries.VILLAGER_TYPE), VillagerData::type, ByteBufCodecs.holderRegistry(Registries.VILLAGER_PROFESSION), VillagerData::profession, ByteBufCodecs.VAR_INT, VillagerData::level, VillagerData::new ); public VillagerData(Holder type, Holder profession, int level) { level = Math.max(1, level); this.type = type; this.profession = profession; this.level = level; } public VillagerData withType(final Holder type) { return new VillagerData(type, this.profession, this.level); } public VillagerData withType(final HolderGetter.Provider registries, final ResourceKey type) { return this.withType(registries.getOrThrow(type)); } public VillagerData withProfession(final Holder profession) { return new VillagerData(this.type, profession, this.level); } public VillagerData withProfession(final HolderGetter.Provider registries, final ResourceKey profession) { return this.withProfession(registries.getOrThrow(profession)); } public VillagerData withLevel(final int level) { return new VillagerData(this.type, this.profession, level); } public static int getMinXpPerLevel(final int level) { return canLevelUp(level) ? NEXT_LEVEL_XP_THRESHOLDS[level - 1] : 0; } public static int getMaxXpPerLevel(final int level) { return canLevelUp(level) ? NEXT_LEVEL_XP_THRESHOLDS[level] : 0; } public static boolean canLevelUp(final int currentLevel) { return currentLevel >= 1 && currentLevel < 5; } }