Class FuzzyPositions

java.lang.Object
net.minecraft.entity.ai.FuzzyPositions

public class FuzzyPositions extends Object
Mappings:
Namespace Name
official box
intermediary net/minecraft/class_5535
named net/minecraft/entity/ai/FuzzyPositions
  • Field Details

    • GAUSS_RANGE

      private static final int GAUSS_RANGE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Lbox;a:I
      intermediary field_30264 Lnet/minecraft/class_5535;field_30264:I
      named GAUSS_RANGE Lnet/minecraft/entity/ai/FuzzyPositions;GAUSS_RANGE:I
  • Constructor Details

    • FuzzyPositions

      public FuzzyPositions()
  • Method Details

    • localFuzz

      public static BlockPos localFuzz(Random random, int horizontalRange, int verticalRange)
      Creates a fuzzy offset position within the given horizontal and vertical ranges.
      Mappings:
      Namespace Name Mixin selector
      official a Lbox;a(Laoh;II)Lgp;
      intermediary method_31541 Lnet/minecraft/class_5535;method_31541(Lnet/minecraft/class_5819;II)Lnet/minecraft/class_2338;
      named localFuzz Lnet/minecraft/entity/ai/FuzzyPositions;localFuzz(Lnet/minecraft/util/math/random/Random;II)Lnet/minecraft/util/math/BlockPos;
    • localFuzz

      @Nullable public static @Nullable BlockPos localFuzz(Random random, int horizontalRange, int verticalRange, int startHeight, double directionX, double directionZ, double angleRange)
      Tries to create a fuzzy offset position from the direction and the angle range given. It fulfills the constraints given by horizontalRange and verticalRange and returns null if it cannot do so.
      Mappings:
      Namespace Name Mixin selector
      official a Lbox;a(Laoh;IIIDDD)Lgp;
      intermediary method_31542 Lnet/minecraft/class_5535;method_31542(Lnet/minecraft/class_5819;IIIDDD)Lnet/minecraft/class_2338;
      named localFuzz Lnet/minecraft/entity/ai/FuzzyPositions;localFuzz(Lnet/minecraft/util/math/random/Random;IIIDDD)Lnet/minecraft/util/math/BlockPos;
    • upWhile

      public static BlockPos upWhile(BlockPos pos, int maxY, Predicate<BlockPos> condition)
      Returns the closest position higher than the input pos that does not fulfill condition, or a position with y set to maxY.
      Mappings:
      Namespace Name Mixin selector
      official a Lbox;a(Lgp;ILjava/util/function/Predicate;)Lgp;
      intermediary method_31540 Lnet/minecraft/class_5535;method_31540(Lnet/minecraft/class_2338;ILjava/util/function/Predicate;)Lnet/minecraft/class_2338;
      named upWhile Lnet/minecraft/entity/ai/FuzzyPositions;upWhile(Lnet/minecraft/util/math/BlockPos;ILjava/util/function/Predicate;)Lnet/minecraft/util/math/BlockPos;
    • upWhile

      public static BlockPos upWhile(BlockPos pos, int extraAbove, int max, Predicate<BlockPos> condition)
      Returns the extraAbove + 1th closest position higher than the input pos that does not fulfill condition, or a position with y set to maxY.
      Mappings:
      Namespace Name Mixin selector
      official a Lbox;a(Lgp;IILjava/util/function/Predicate;)Lgp;
      intermediary method_31539 Lnet/minecraft/class_5535;method_31539(Lnet/minecraft/class_2338;IILjava/util/function/Predicate;)Lnet/minecraft/class_2338;
      named upWhile Lnet/minecraft/entity/ai/FuzzyPositions;upWhile(Lnet/minecraft/util/math/BlockPos;IILjava/util/function/Predicate;)Lnet/minecraft/util/math/BlockPos;
    • guessBestPathTarget

      @Nullable public static @Nullable Vec3d guessBestPathTarget(PathAwareEntity entity, Supplier<BlockPos> factory)
      Calls guessBest(Supplier, ToDoubleFunction) with the entity's path finding favor as the scorer.
      Mappings:
      Namespace Name Mixin selector
      official a Lbox;a(Lbep;Ljava/util/function/Supplier;)Leae;
      intermediary method_31538 Lnet/minecraft/class_5535;method_31538(Lnet/minecraft/class_1314;Ljava/util/function/Supplier;)Lnet/minecraft/class_243;
      named guessBestPathTarget Lnet/minecraft/entity/ai/FuzzyPositions;guessBestPathTarget(Lnet/minecraft/entity/mob/PathAwareEntity;Ljava/util/function/Supplier;)Lnet/minecraft/util/math/Vec3d;
    • guessBest

      @Nullable public static @Nullable Vec3d guessBest(Supplier<BlockPos> factory, ToDoubleFunction<BlockPos> scorer)
      Returns the bottom center of a highest scoring position, as determined by scorer, out of 10 tries on positions obtained from factory.
      Mappings:
      Namespace Name Mixin selector
      official a Lbox;a(Ljava/util/function/Supplier;Ljava/util/function/ToDoubleFunction;)Leae;
      intermediary method_31543 Lnet/minecraft/class_5535;method_31543(Ljava/util/function/Supplier;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/class_243;
      named guessBest Lnet/minecraft/entity/ai/FuzzyPositions;guessBest(Ljava/util/function/Supplier;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/util/math/Vec3d;
    • towardTarget

      public static BlockPos towardTarget(PathAwareEntity entity, int horizontalRange, Random random, BlockPos fuzz)
      Adjusts the input fuzz slightly toward the given entity's position target if it exists.
      Mappings:
      Namespace Name Mixin selector
      official a Lbox;a(Lbep;ILaoh;Lgp;)Lgp;
      intermediary method_31537 Lnet/minecraft/class_5535;method_31537(Lnet/minecraft/class_1314;ILnet/minecraft/class_5819;Lnet/minecraft/class_2338;)Lnet/minecraft/class_2338;
      named towardTarget Lnet/minecraft/entity/ai/FuzzyPositions;towardTarget(Lnet/minecraft/entity/mob/PathAwareEntity;ILnet/minecraft/util/math/random/Random;Lnet/minecraft/util/math/BlockPos;)Lnet/minecraft/util/math/BlockPos;