Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-04 23:30:17 +01:00
Entity link cache fixes (#2068)
Note that this needs to be revisited to see if it's even needed, or perhaps some sort of Guava cache. - `getCachedPlayerEntityLink` now removes the entry if found - Skulls will not have player entity links so we shouldn't bother checking - Clear the entity link cache on dimension switch
Dieser Commit ist enthalten in:
Ursprung
92596b5b74
Commit
7f03446262
@ -28,10 +28,14 @@ package org.geysermc.connector.entity.player;
|
|||||||
import com.github.steveice10.mc.auth.data.GameProfile;
|
import com.github.steveice10.mc.auth.data.GameProfile;
|
||||||
import com.nukkitx.math.vector.Vector3f;
|
import com.nukkitx.math.vector.Vector3f;
|
||||||
import com.nukkitx.math.vector.Vector3i;
|
import com.nukkitx.math.vector.Vector3i;
|
||||||
|
import com.nukkitx.protocol.bedrock.data.PlayerPermission;
|
||||||
|
import com.nukkitx.protocol.bedrock.data.command.CommandPermission;
|
||||||
import com.nukkitx.protocol.bedrock.data.entity.EntityData;
|
import com.nukkitx.protocol.bedrock.data.entity.EntityData;
|
||||||
import com.nukkitx.protocol.bedrock.data.entity.EntityFlag;
|
import com.nukkitx.protocol.bedrock.data.entity.EntityFlag;
|
||||||
|
import com.nukkitx.protocol.bedrock.packet.AddPlayerPacket;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
import lombok.Setter;
|
import lombok.Setter;
|
||||||
|
import org.geysermc.connector.entity.type.EntityType;
|
||||||
import org.geysermc.connector.network.session.GeyserSession;
|
import org.geysermc.connector.network.session.GeyserSession;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -61,6 +65,33 @@ public class SkullPlayerEntity extends PlayerEntity {
|
|||||||
metadata.getFlags().setFlag(EntityFlag.INVISIBLE, true); // Until the skin is loaded
|
metadata.getFlags().setFlag(EntityFlag.INVISIBLE, true); // Until the skin is loaded
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Overwritten so each entity doesn't check for a linked entity
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void spawnEntity(GeyserSession session) {
|
||||||
|
AddPlayerPacket addPlayerPacket = new AddPlayerPacket();
|
||||||
|
addPlayerPacket.setUuid(getUuid());
|
||||||
|
addPlayerPacket.setUsername(getUsername());
|
||||||
|
addPlayerPacket.setRuntimeEntityId(geyserId);
|
||||||
|
addPlayerPacket.setUniqueEntityId(geyserId);
|
||||||
|
addPlayerPacket.setPosition(position.clone().sub(0, EntityType.PLAYER.getOffset(), 0));
|
||||||
|
addPlayerPacket.setRotation(getBedrockRotation());
|
||||||
|
addPlayerPacket.setMotion(motion);
|
||||||
|
addPlayerPacket.setHand(hand);
|
||||||
|
addPlayerPacket.getAdventureSettings().setCommandPermission(CommandPermission.NORMAL);
|
||||||
|
addPlayerPacket.getAdventureSettings().setPlayerPermission(PlayerPermission.MEMBER);
|
||||||
|
addPlayerPacket.setDeviceId("");
|
||||||
|
addPlayerPacket.setPlatformChatId("");
|
||||||
|
addPlayerPacket.getMetadata().putAll(metadata);
|
||||||
|
|
||||||
|
valid = true;
|
||||||
|
session.sendUpstreamPacket(addPlayerPacket);
|
||||||
|
|
||||||
|
updateEquipment(session);
|
||||||
|
updateBedrockAttributes(session);
|
||||||
|
}
|
||||||
|
|
||||||
public void despawnEntity(GeyserSession session, Vector3i position) {
|
public void despawnEntity(GeyserSession session, Vector3i position) {
|
||||||
this.despawnEntity(session);
|
this.despawnEntity(session);
|
||||||
session.getSkullCache().remove(position, this);
|
session.getSkullCache().remove(position, this);
|
||||||
|
@ -59,6 +59,7 @@ public class EntityCache {
|
|||||||
|
|
||||||
public EntityCache(GeyserSession session) {
|
public EntityCache(GeyserSession session) {
|
||||||
this.session = session;
|
this.session = session;
|
||||||
|
cachedPlayerEntityLinks.defaultReturnValue(-1L);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void spawnEntity(Entity entity) {
|
public void spawnEntity(Entity entity) {
|
||||||
@ -100,6 +101,9 @@ public class EntityCache {
|
|||||||
for (Entity entity : entities) {
|
for (Entity entity : entities) {
|
||||||
session.getEntityCache().removeEntity(entity, false);
|
session.getEntityCache().removeEntity(entity, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// As a precaution
|
||||||
|
cachedPlayerEntityLinks.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Entity getEntityByGeyserId(long geyserId) {
|
public Entity getEntityByGeyserId(long geyserId) {
|
||||||
@ -160,7 +164,7 @@ public class EntityCache {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public long getCachedPlayerEntityLink(long playerId) {
|
public long getCachedPlayerEntityLink(long playerId) {
|
||||||
return cachedPlayerEntityLinks.getOrDefault(playerId, -1);
|
return cachedPlayerEntityLinks.remove(playerId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addCachedPlayerEntityLink(long playerId, long linkedEntityId) {
|
public void addCachedPlayerEntityLink(long playerId, long linkedEntityId) {
|
||||||
|
@ -47,9 +47,11 @@ public class JavaEntitySetPassengersTranslator extends PacketTranslator<ServerEn
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(ServerEntitySetPassengersPacket packet, GeyserSession session) {
|
public void translate(ServerEntitySetPassengersPacket packet, GeyserSession session) {
|
||||||
Entity entity = session.getEntityCache().getEntityByJavaId(packet.getEntityId());
|
Entity entity;
|
||||||
if (packet.getEntityId() == session.getPlayerEntity().getEntityId()) {
|
if (packet.getEntityId() == session.getPlayerEntity().getEntityId()) {
|
||||||
entity = session.getPlayerEntity();
|
entity = session.getPlayerEntity();
|
||||||
|
} else {
|
||||||
|
entity = session.getEntityCache().getEntityByJavaId(packet.getEntityId());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (entity == null) return;
|
if (entity == null) return;
|
||||||
@ -66,7 +68,8 @@ public class JavaEntitySetPassengersTranslator extends PacketTranslator<ServerEn
|
|||||||
session.confirmTeleport(passenger.getPosition().sub(0, EntityType.PLAYER.getOffset(), 0).toDouble());
|
session.confirmTeleport(passenger.getPosition().sub(0, EntityType.PLAYER.getOffset(), 0).toDouble());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Passenger hasn't loaded in and entity link needs to be set later
|
// Passenger hasn't loaded in (likely since we're waiting for a skin response)
|
||||||
|
// and entity link needs to be set later
|
||||||
if (passenger == null && passengerId != 0) {
|
if (passenger == null && passengerId != 0) {
|
||||||
session.getEntityCache().addCachedPlayerEntityLink(passengerId, packet.getEntityId());
|
session.getEntityCache().addCachedPlayerEntityLink(passengerId, packet.getEntityId());
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren