Class BlockStateProvider

java.lang.Object
net.minecraft.world.gen.stateprovider.BlockStateProvider
Direct Known Subclasses:
AbstractNoiseBlockStateProvider, PillarBlockStateProvider, RandomizedIntBlockStateProvider, SimpleBlockStateProvider, WeightedBlockStateProvider

public abstract class BlockStateProvider extends Object
A provider for block states. Results may be random or based on a block position.
Mappings:
Namespace Name
official dlj
intermediary net/minecraft/class_4651
named net/minecraft/world/gen/stateprovider/BlockStateProvider
  • Field Details

    • TYPE_CODEC

      public static final com.mojang.serialization.Codec<BlockStateProvider> TYPE_CODEC
      Mappings:
      Namespace Name Mixin selector
      official a Ldlj;a:Lcom/mojang/serialization/Codec;
      intermediary field_24937 Lnet/minecraft/class_4651;field_24937:Lcom/mojang/serialization/Codec;
      named TYPE_CODEC Lnet/minecraft/world/gen/stateprovider/BlockStateProvider;TYPE_CODEC:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • BlockStateProvider

      public BlockStateProvider()
  • Method Details

    • of

      public static SimpleBlockStateProvider of(BlockState state)
      Returns a block state provider that always returns the given state.
      Parameters:
      state - the block state that the block state provider should return
      Returns:
      a block state provider that always returns the given state
      Mappings:
      Namespace Name Mixin selector
      official a Ldlj;a(Lcyt;)Ldls;
      intermediary method_38433 Lnet/minecraft/class_4651;method_38433(Lnet/minecraft/class_2680;)Lnet/minecraft/class_4656;
      named of Lnet/minecraft/world/gen/stateprovider/BlockStateProvider;of(Lnet/minecraft/block/BlockState;)Lnet/minecraft/world/gen/stateprovider/SimpleBlockStateProvider;
    • of

      public static SimpleBlockStateProvider of(Block block)
      Returns a block state provider that always returns the default state for the given block.
      Parameters:
      block - the block of the default state that the block state provider should return
      Returns:
      a block state provider that always returns the default state for the given block
      Mappings:
      Namespace Name Mixin selector
      official a Ldlj;a(Lcmt;)Ldls;
      intermediary method_38432 Lnet/minecraft/class_4651;method_38432(Lnet/minecraft/class_2248;)Lnet/minecraft/class_4656;
      named of Lnet/minecraft/world/gen/stateprovider/BlockStateProvider;of(Lnet/minecraft/block/Block;)Lnet/minecraft/world/gen/stateprovider/SimpleBlockStateProvider;
    • getType

      protected abstract BlockStateProviderType<?> getType()
      Returns the type of this block state provider.
      Returns:
      the type of this block state provider
      Implementation Note:
      The returned block state provider type should be registered so that the type field is properly serialized.
      Mappings:
      Namespace Name Mixin selector
      official a Ldlj;a()Ldlk;
      intermediary method_28862 Lnet/minecraft/class_4651;method_28862()Lnet/minecraft/class_4652;
      named getType Lnet/minecraft/world/gen/stateprovider/BlockStateProvider;getType()Lnet/minecraft/world/gen/stateprovider/BlockStateProviderType;
    • get

      public abstract BlockState get(Random random, BlockPos pos)
      Returns a provided block state.
      Returns:
      a provided block state
      Mappings:
      Namespace Name Mixin selector
      official a Ldlj;a(Laoh;Lgp;)Lcyt;
      intermediary method_23455 Lnet/minecraft/class_4651;method_23455(Lnet/minecraft/class_5819;Lnet/minecraft/class_2338;)Lnet/minecraft/class_2680;
      named get Lnet/minecraft/world/gen/stateprovider/BlockStateProvider;get(Lnet/minecraft/util/math/random/Random;Lnet/minecraft/util/math/BlockPos;)Lnet/minecraft/block/BlockState;