|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package org.geysermc.connector.network.translators.bedrock; |
|
|
|
import com.github.steveice10.mc.protocol.packet.ingame.client.ClientKeepAlivePacket; |
|
import com.nukkitx.protocol.bedrock.data.AttributeData; |
|
import com.nukkitx.protocol.bedrock.packet.NetworkStackLatencyPacket; |
|
import com.nukkitx.protocol.bedrock.packet.UpdateAttributesPacket; |
|
import org.geysermc.connector.entity.attribute.GeyserAttributeType; |
|
import org.geysermc.connector.network.session.GeyserSession; |
|
import org.geysermc.connector.network.translators.PacketTranslator; |
|
import org.geysermc.connector.network.translators.Translator; |
|
import org.geysermc.floodgate.util.DeviceOs; |
|
|
|
import java.util.Collections; |
|
import java.util.concurrent.TimeUnit; |
|
|
|
|
|
|
|
|
|
@Translator(packet = NetworkStackLatencyPacket.class) |
|
public class BedrockNetworkStackLatencyTranslator extends PacketTranslator<NetworkStackLatencyPacket> { |
|
|
|
@Override |
|
|
|
|
|
|
|
public void translate(GeyserSession session, NetworkStackLatencyPacket packet) { |
|
long pingId; |
|
|
|
|
|
|
|
if (session.getClientData().getDeviceOs().equals(DeviceOs.PS4)) { |
|
pingId = packet.getTimestamp(); |
|
} else { |
|
pingId = packet.getTimestamp() / 1000; |
|
} |
|
|
|
|
|
if (packet.getTimestamp() > 0) { |
|
if (session.getConnector().getConfig().isForwardPlayerPing()) { |
|
ClientKeepAlivePacket keepAlivePacket = new ClientKeepAlivePacket(pingId); |
|
session.sendDownstreamPacket(keepAlivePacket); |
|
} |
|
return; |
|
} |
|
|
|
|
|
UpdateAttributesPacket attributesPacket = new UpdateAttributesPacket(); |
|
attributesPacket.setRuntimeEntityId(session.getPlayerEntity().getGeyserId()); |
|
|
|
AttributeData attribute = session.getPlayerEntity().getAttributes().get(GeyserAttributeType.EXPERIENCE_LEVEL); |
|
if (attribute != null) { |
|
attributesPacket.setAttributes(Collections.singletonList(attribute)); |
|
} else { |
|
attributesPacket.setAttributes(Collections.singletonList(GeyserAttributeType.EXPERIENCE_LEVEL.getAttribute(0))); |
|
} |
|
|
|
session.getConnector().getGeneralThreadPool().schedule( |
|
() -> session.sendUpstreamPacket(attributesPacket), |
|
500, TimeUnit.MILLISECONDS); |
|
} |
|
} |
|
|