Class BlockPredicatesChecker

java.lang.Object
net.minecraft.item.BlockPredicatesChecker

public class BlockPredicatesChecker extends Object
Checks if a block predicate stored inside ItemStack's NBT matches the block in a world. The predicate must be stored inside the key sub NBT of the item stack.

The result is cached to reduce cost for successive lookups on the same block.

API Note:
This is used to implement checks for restrictions specified using CanPlaceOn or CanDestroy.
Mappings:
Namespace Name
official cbg
intermediary net/minecraft/class_6538
named net/minecraft/item/BlockPredicatesChecker
  • Field Details

    • key

      private final String key
      Mappings:
      Namespace Name Mixin selector
      official a Lcbg;a:Ljava/lang/String;
      intermediary field_34449 Lnet/minecraft/class_6538;field_34449:Ljava/lang/String;
      named key Lnet/minecraft/item/BlockPredicatesChecker;key:Ljava/lang/String;
    • cachedPos

      Mappings:
      Namespace Name Mixin selector
      official b Lcbg;b:Lcyx;
      intermediary field_34450 Lnet/minecraft/class_6538;field_34450:Lnet/minecraft/class_2694;
      named cachedPos Lnet/minecraft/item/BlockPredicatesChecker;cachedPos:Lnet/minecraft/block/pattern/CachedBlockPosition;
    • lastResult

      private boolean lastResult
      Mappings:
      Namespace Name Mixin selector
      official c Lcbg;c:Z
      intermediary field_34451 Lnet/minecraft/class_6538;field_34451:Z
      named lastResult Lnet/minecraft/item/BlockPredicatesChecker;lastResult:Z
    • nbtAware

      private boolean nbtAware
      Mappings:
      Namespace Name Mixin selector
      official d Lcbg;d:Z
      intermediary field_34452 Lnet/minecraft/class_6538;field_34452:Z
      named nbtAware Lnet/minecraft/item/BlockPredicatesChecker;nbtAware:Z
  • Constructor Details

    • BlockPredicatesChecker

      public BlockPredicatesChecker(String key)
      Parameters:
      key - the sub NBT key that stores the predicate, for example "CanPlaceOn"
      Mappings:
      Namespace Name Mixin selector
      official <init> Lcbg;<init>(Ljava/lang/String;)V
      intermediary <init> Lnet/minecraft/class_6538;<init>(Ljava/lang/String;)V
      named <init> Lnet/minecraft/item/BlockPredicatesChecker;<init>(Ljava/lang/String;)V
  • Method Details

    • canUseCache

      private static boolean canUseCache(CachedBlockPosition pos, @Nullable @Nullable CachedBlockPosition cachedPos, boolean nbtAware)
      Mappings:
      Namespace Name Mixin selector
      official a Lcbg;a(Lcyx;Lcyx;Z)Z
      intermediary method_38071 Lnet/minecraft/class_6538;method_38071(Lnet/minecraft/class_2694;Lnet/minecraft/class_2694;Z)Z
      named canUseCache Lnet/minecraft/item/BlockPredicatesChecker;canUseCache(Lnet/minecraft/block/pattern/CachedBlockPosition;Lnet/minecraft/block/pattern/CachedBlockPosition;Z)Z
    • check

      public boolean check(ItemStack stack, Registry<Block> blockRegistry, CachedBlockPosition pos)
      Returns true if any of the predicates in the stack's NBT matched against the block at pos, false otherwise.
      Returns:
      true if any of the predicates in the stack's NBT matched against the block at pos, false otherwise
      Mappings:
      Namespace Name Mixin selector
      official a Lcbg;a(Lcdt;Lhm;Lcyx;)Z
      intermediary method_38070 Lnet/minecraft/class_6538;method_38070(Lnet/minecraft/class_1799;Lnet/minecraft/class_2378;Lnet/minecraft/class_2694;)Z
      named check Lnet/minecraft/item/BlockPredicatesChecker;check(Lnet/minecraft/item/ItemStack;Lnet/minecraft/registry/Registry;Lnet/minecraft/block/pattern/CachedBlockPosition;)Z