package net.minecraft.world.level.levelgen.heightproviders; import com.mojang.datafixers.util.Either; import com.mojang.serialization.Codec; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.util.RandomSource; import net.minecraft.world.level.levelgen.VerticalAnchor; import net.minecraft.world.level.levelgen.WorldGenerationContext; public abstract class HeightProvider { private static final Codec> CONSTANT_OR_DISPATCH_CODEC = Codec.either( VerticalAnchor.CODEC, BuiltInRegistries.HEIGHT_PROVIDER_TYPE.byNameCodec().dispatch(HeightProvider::getType, HeightProviderType::codec) ); public static final Codec CODEC = CONSTANT_OR_DISPATCH_CODEC.xmap( either -> either.map(ConstantHeight::of, heightProvider -> heightProvider), heightProvider -> heightProvider.getType() == HeightProviderType.CONSTANT ? Either.left(((ConstantHeight)heightProvider).getValue()) : Either.right(heightProvider) ); public abstract int sample(RandomSource random, WorldGenerationContext context); public abstract HeightProviderType getType(); }