mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Use compute for determining if a lectern if present
Reduces having to call both containsKey and get.
This commit is contained in:
parent
ded00dfd97
commit
370f3c18ba
2 changed files with 28 additions and 18 deletions
|
@ -29,6 +29,7 @@ import com.fasterxml.jackson.databind.JsonNode;
|
||||||
import it.unimi.dsi.fastutil.ints.*;
|
import it.unimi.dsi.fastutil.ints.*;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import java.util.function.BiFunction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used for block entities if the Java block state contains Bedrock block information.
|
* Used for block entities if the Java block state contains Bedrock block information.
|
||||||
|
@ -199,7 +200,13 @@ public class BlockStateValues {
|
||||||
return FLOWER_POT_VALUES;
|
return FLOWER_POT_VALUES;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Int2BooleanMap getLecternBookStates() {
|
/**
|
||||||
|
* This returns a Map interface so IntelliJ doesn't complain about {@link Int2BooleanMap#compute(int, BiFunction)}
|
||||||
|
* not returning null.
|
||||||
|
*
|
||||||
|
* @return the lectern book state map pointing to book present state
|
||||||
|
*/
|
||||||
|
public static Map<Integer, Boolean> getLecternBookStates() {
|
||||||
return LECTERN_BOOK_STATES;
|
return LECTERN_BOOK_STATES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -372,9 +372,10 @@ public class ChunkUtils {
|
||||||
}
|
}
|
||||||
session.sendUpstreamPacket(waterPacket);
|
session.sendUpstreamPacket(waterPacket);
|
||||||
|
|
||||||
if (BlockStateValues.getLecternBookStates().containsKey(blockState)) {
|
BlockStateValues.getLecternBookStates().compute(blockState, (key, newLecternHasBook) -> {
|
||||||
|
// Determine if this block is a lectern
|
||||||
|
if (newLecternHasBook != null) {
|
||||||
boolean lecternCachedHasBook = session.getLecternCache().contains(position);
|
boolean lecternCachedHasBook = session.getLecternCache().contains(position);
|
||||||
boolean newLecternHasBook = BlockStateValues.getLecternBookStates().get(blockState);
|
|
||||||
if (!session.getConnector().getWorldManager().shouldExpectLecternHandled() && lecternCachedHasBook != newLecternHasBook) {
|
if (!session.getConnector().getWorldManager().shouldExpectLecternHandled() && lecternCachedHasBook != newLecternHasBook) {
|
||||||
// Refresh the block entirely - it either has a book or no longer has a book
|
// Refresh the block entirely - it either has a book or no longer has a book
|
||||||
NbtMap newLecternTag;
|
NbtMap newLecternTag;
|
||||||
|
@ -393,6 +394,8 @@ public class ChunkUtils {
|
||||||
// Lectern has been destroyed, if it existed
|
// Lectern has been destroyed, if it existed
|
||||||
session.getLecternCache().remove(position);
|
session.getLecternCache().remove(position);
|
||||||
}
|
}
|
||||||
|
return newLecternHasBook;
|
||||||
|
});
|
||||||
|
|
||||||
// Since Java stores bed colors/skull information as part of the namespaced ID and Bedrock stores it as a tag
|
// Since Java stores bed colors/skull information as part of the namespaced ID and Bedrock stores it as a tag
|
||||||
// This is the only place I could find that interacts with the Java block state and block updates
|
// This is the only place I could find that interacts with the Java block state and block updates
|
||||||
|
|
Loading…
Reference in a new issue