20% improvement to cached chunk check performance

This commit is contained in:
leijurv 2018-08-28 21:10:41 -07:00
parent 23cbef102d
commit e553ee93b8

View File

@ -23,7 +23,7 @@ package baritone.utils.pathing;
*/ */
public enum PathingBlockType { public enum PathingBlockType {
AIR (0b00), AIR(0b00),
WATER(0b01), WATER(0b01),
AVOID(0b10), AVOID(0b10),
SOLID(0b11); SOLID(0b11);
@ -31,7 +31,7 @@ public enum PathingBlockType {
private final boolean[] bits; private final boolean[] bits;
PathingBlockType(int bits) { PathingBlockType(int bits) {
this.bits = new boolean[] { this.bits = new boolean[]{
(bits & 0b10) != 0, (bits & 0b10) != 0,
(bits & 0b01) != 0 (bits & 0b01) != 0
}; };
@ -42,11 +42,18 @@ public enum PathingBlockType {
} }
public static PathingBlockType fromBits(boolean b1, boolean b2) { public static PathingBlockType fromBits(boolean b1, boolean b2) {
for (PathingBlockType type : values()) if (b1) {
if (type.bits[0] == b1 && type.bits[1] == b2) if (b2) {
return type; return PathingBlockType.SOLID;
} else {
// This will never happen, but if it does, assume it's just AIR return PathingBlockType.AVOID;
return PathingBlockType.AIR; }
} else {
if (b2) {
return PathingBlockType.WATER;
} else {
return PathingBlockType.AIR;
}
}
} }
} }