Class BiomeSource

java.lang.Object
net.minecraft.world.biome.source.BiomeSource
All Implemented Interfaces:
BiomeAccess.Storage
Direct Known Subclasses:
CheckerboardBiomeSource, FixedBiomeSource, MultiNoiseBiomeSource, TheEndBiomeSource, VanillaLayeredBiomeSource

public abstract class BiomeSource extends Object implements BiomeAccess.Storage
Mappings:
Namespace Name
official bxr
intermediary net/minecraft/class_1966
named net/minecraft/world/biome/source/BiomeSource
  • Field Details

    • CODEC

      public static final com.mojang.serialization.Codec<BiomeSource> CODEC
      Mappings:
      Namespace Name Mixin selector
      official a Lbxr;a:Lcom/mojang/serialization/Codec;
      intermediary field_24713 Lnet/minecraft/class_1966;field_24713:Lcom/mojang/serialization/Codec;
      named CODEC Lnet/minecraft/world/biome/source/BiomeSource;CODEC:Lcom/mojang/serialization/Codec;
    • structureFeatures

      protected final Map<StructureFeature<?>,​Boolean> structureFeatures
      Mappings:
      Namespace Name Mixin selector
      official b Lbxr;b:Ljava/util/Map;
      intermediary field_9392 Lnet/minecraft/class_1966;field_9392:Ljava/util/Map;
      named structureFeatures Lnet/minecraft/world/biome/source/BiomeSource;structureFeatures:Ljava/util/Map;
    • topMaterials

      protected final Set<BlockState> topMaterials
      Mappings:
      Namespace Name Mixin selector
      official c Lbxr;c:Ljava/util/Set;
      intermediary field_9390 Lnet/minecraft/class_1966;field_9390:Ljava/util/Set;
      named topMaterials Lnet/minecraft/world/biome/source/BiomeSource;topMaterials:Ljava/util/Set;
    • biomes

      protected final List<Biome> biomes
      Mappings:
      Namespace Name Mixin selector
      official d Lbxr;d:Ljava/util/List;
      intermediary field_20643 Lnet/minecraft/class_1966;field_20643:Ljava/util/List;
      named biomes Lnet/minecraft/world/biome/source/BiomeSource;biomes:Ljava/util/List;
  • Constructor Details

    • BiomeSource

      protected BiomeSource(Stream<Supplier<Biome>> stream)
    • BiomeSource

      protected BiomeSource(List<Biome> biomes)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lbxr;<init>(Ljava/util/List;)V
      intermediary <init> Lnet/minecraft/class_1966;<init>(Ljava/util/List;)V
      named <init> Lnet/minecraft/world/biome/source/BiomeSource;<init>(Ljava/util/List;)V
  • Method Details

    • getCodec

      protected abstract com.mojang.serialization.Codec<? extends BiomeSource> getCodec()
      Mappings:
      Namespace Name Mixin selector
      official a Lbxr;a()Lcom/mojang/serialization/Codec;
      intermediary method_28442 Lnet/minecraft/class_1966;method_28442()Lcom/mojang/serialization/Codec;
      named getCodec Lnet/minecraft/world/biome/source/BiomeSource;getCodec()Lcom/mojang/serialization/Codec;
    • withSeed

      public abstract BiomeSource withSeed(long seed)
      Mappings:
      Namespace Name Mixin selector
      official a Lbxr;a(J)Lbxr;
      intermediary method_27985 Lnet/minecraft/class_1966;method_27985(J)Lnet/minecraft/class_1966;
      named withSeed Lnet/minecraft/world/biome/source/BiomeSource;withSeed(J)Lnet/minecraft/world/biome/source/BiomeSource;
    • getBiomes

      public List<Biome> getBiomes()
      Mappings:
      Namespace Name Mixin selector
      official b Lbxr;b()Ljava/util/List;
      intermediary method_28443 Lnet/minecraft/class_1966;method_28443()Ljava/util/List;
      named getBiomes Lnet/minecraft/world/biome/source/BiomeSource;getBiomes()Ljava/util/List;
    • getBiomesInArea

      public Set<Biome> getBiomesInArea(int x, int y, int z, int radius)
      Mappings:
      Namespace Name Mixin selector
      official a Lbxr;a(IIII)Ljava/util/Set;
      intermediary method_8763 Lnet/minecraft/class_1966;method_8763(IIII)Ljava/util/Set;
      named getBiomesInArea Lnet/minecraft/world/biome/source/BiomeSource;getBiomesInArea(IIII)Ljava/util/Set;
    • locateBiome

      @Nullable public @Nullable BlockPos locateBiome(int x, int y, int z, int radius, Predicate<Biome> predicate, Random random)
      Mappings:
      Namespace Name Mixin selector
      official a Lbxr;a(IIIILjava/util/function/Predicate;Ljava/util/Random;)Lgg;
      intermediary method_8762 Lnet/minecraft/class_1966;method_8762(IIIILjava/util/function/Predicate;Ljava/util/Random;)Lnet/minecraft/class_2338;
      named locateBiome Lnet/minecraft/world/biome/source/BiomeSource;locateBiome(IIIILjava/util/function/Predicate;Ljava/util/Random;)Lnet/minecraft/util/math/BlockPos;
    • locateBiome

      @Nullable public @Nullable BlockPos locateBiome(int x, int y, int z, int radius, int int2, Predicate<Biome> predicate, Random random, boolean bool)
      Mappings:
      Namespace Name Mixin selector
      official a Lbxr;a(IIIIILjava/util/function/Predicate;Ljava/util/Random;Z)Lgg;
      intermediary method_24385 Lnet/minecraft/class_1966;method_24385(IIIIILjava/util/function/Predicate;Ljava/util/Random;Z)Lnet/minecraft/class_2338;
      named locateBiome Lnet/minecraft/world/biome/source/BiomeSource;locateBiome(IIIIILjava/util/function/Predicate;Ljava/util/Random;Z)Lnet/minecraft/util/math/BlockPos;
    • hasStructureFeature

      public boolean hasStructureFeature(StructureFeature<?> feature)
      Mappings:
      Namespace Name Mixin selector
      official a Lbxr;a(Lcuc;)Z
      intermediary method_8754 Lnet/minecraft/class_1966;method_8754(Lnet/minecraft/class_3195;)Z
      named hasStructureFeature Lnet/minecraft/world/biome/source/BiomeSource;hasStructureFeature(Lnet/minecraft/world/gen/feature/StructureFeature;)Z
    • getTopMaterials

      public Set<BlockState> getTopMaterials()
      Mappings:
      Namespace Name Mixin selector
      official c Lbxr;c()Ljava/util/Set;
      intermediary method_8761 Lnet/minecraft/class_1966;method_8761()Ljava/util/Set;
      named getTopMaterials Lnet/minecraft/world/biome/source/BiomeSource;getTopMaterials()Ljava/util/Set;