Mirror von
https://github.com/PaperMC/Velocity.git
synchronisiert 2024-11-16 21:10:30 +01:00
Ensure that we send a response to the correct server when in flight (#1234)
* Ensure that we send a response to the correct server when in flight * The rest of the codebase treats the hash as a String... As does Mojang. * Support sending the resource packet response to the in-process connection in the ModernResourcePackHandler --------- Co-authored-by: Shane Freeder <theboyetronic@gmail.com>
Dieser Commit ist enthalten in:
Ursprung
cbd07b1434
Commit
d7799eaf60
@ -99,7 +99,9 @@ public class ClientConfigSessionHandler implements MinecraftSessionHandler {
|
|||||||
player.getConnectionInFlight().ensureConnected().write(packet);
|
player.getConnectionInFlight().ensureConnected().write(packet);
|
||||||
}
|
}
|
||||||
return player.resourcePackHandler().onResourcePackResponse(
|
return player.resourcePackHandler().onResourcePackResponse(
|
||||||
new ResourcePackResponseBundle(packet.getId(), packet.getStatus())
|
new ResourcePackResponseBundle(packet.getId(),
|
||||||
|
packet.getHash(),
|
||||||
|
packet.getStatus())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -393,7 +393,9 @@ public class ClientPlaySessionHandler implements MinecraftSessionHandler {
|
|||||||
@Override
|
@Override
|
||||||
public boolean handle(ResourcePackResponsePacket packet) {
|
public boolean handle(ResourcePackResponsePacket packet) {
|
||||||
return player.resourcePackHandler().onResourcePackResponse(
|
return player.resourcePackHandler().onResourcePackResponse(
|
||||||
new ResourcePackResponseBundle(packet.getId(), packet.getStatus()));
|
new ResourcePackResponseBundle(packet.getId(),
|
||||||
|
packet.getHash(),
|
||||||
|
packet.getStatus()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -108,6 +108,7 @@ public sealed class LegacyResourcePackHandler extends ResourcePackHandler
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
onResourcePackResponse(new ResourcePackResponseBundle(queued.getId(),
|
onResourcePackResponse(new ResourcePackResponseBundle(queued.getId(),
|
||||||
|
new String(queued.getHash()),
|
||||||
PlayerResourcePackStatusEvent.Status.DECLINED));
|
PlayerResourcePackStatusEvent.Status.DECLINED));
|
||||||
queued = null;
|
queued = null;
|
||||||
}
|
}
|
||||||
@ -165,8 +166,7 @@ public sealed class LegacyResourcePackHandler extends ResourcePackHandler
|
|||||||
player.getConnection().eventLoop().execute(this::tickResourcePackQueue);
|
player.getConnection().eventLoop().execute(this::tickResourcePackQueue);
|
||||||
}
|
}
|
||||||
|
|
||||||
return queued != null
|
return handleResponseResult(queued, bundle);
|
||||||
&& queued.getOriginalOrigin() != ResourcePackInfo.Origin.DOWNSTREAM_SERVER;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected boolean shouldDisconnectForForcePack(final PlayerResourcePackStatusEvent event) {
|
protected boolean shouldDisconnectForForcePack(final PlayerResourcePackStatusEvent event) {
|
||||||
|
@ -33,14 +33,11 @@ import net.kyori.adventure.resource.ResourcePackRequest;
|
|||||||
import net.kyori.adventure.text.Component;
|
import net.kyori.adventure.text.Component;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Modern (Minecraft 1.20.3+) ResourcePackHandler
|
* Modern (Minecraft 1.20.3+) ResourcePackHandler
|
||||||
*/
|
*/
|
||||||
public final class ModernResourcePackHandler extends ResourcePackHandler {
|
public final class ModernResourcePackHandler extends ResourcePackHandler {
|
||||||
private static final Logger LOGGER = LoggerFactory.getLogger(ModernResourcePackHandler.class);
|
|
||||||
private final ListMultimap<UUID, ResourcePackInfo> outstandingResourcePacks =
|
private final ListMultimap<UUID, ResourcePackInfo> outstandingResourcePacks =
|
||||||
Multimaps.newListMultimap(new ConcurrentHashMap<>(), LinkedList::new);
|
Multimaps.newListMultimap(new ConcurrentHashMap<>(), LinkedList::new);
|
||||||
private final Map<UUID, ResourcePackInfo> pendingResourcePacks = new ConcurrentHashMap<>();
|
private final Map<UUID, ResourcePackInfo> pendingResourcePacks = new ConcurrentHashMap<>();
|
||||||
@ -102,9 +99,7 @@ public final class ModernResourcePackHandler extends ResourcePackHandler {
|
|||||||
@Override
|
@Override
|
||||||
public void queueResourcePack(final @NotNull ResourcePackRequest request) {
|
public void queueResourcePack(final @NotNull ResourcePackRequest request) {
|
||||||
if (request.packs().size() > 1) {
|
if (request.packs().size() > 1) {
|
||||||
player.getBundleHandler().bundlePackets(() -> {
|
player.getBundleHandler().bundlePackets(() -> super.queueResourcePack(request));
|
||||||
super.queueResourcePack(request);
|
|
||||||
});
|
|
||||||
} else {
|
} else {
|
||||||
super.queueResourcePack(request);
|
super.queueResourcePack(request);
|
||||||
}
|
}
|
||||||
@ -170,7 +165,6 @@ public final class ModernResourcePackHandler extends ResourcePackHandler {
|
|||||||
player.getConnection().eventLoop().execute(() -> tickResourcePackQueue(uuid));
|
player.getConnection().eventLoop().execute(() -> tickResourcePackQueue(uuid));
|
||||||
}
|
}
|
||||||
|
|
||||||
return queued != null
|
return handleResponseResult(queued, bundle);
|
||||||
&& queued.getOriginalOrigin() != ResourcePackInfo.Origin.DOWNSTREAM_SERVER;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,7 @@ import com.velocitypowered.proxy.VelocityServer;
|
|||||||
import com.velocitypowered.proxy.connection.client.ConnectedPlayer;
|
import com.velocitypowered.proxy.connection.client.ConnectedPlayer;
|
||||||
import com.velocitypowered.proxy.connection.player.VelocityResourcePackInfo;
|
import com.velocitypowered.proxy.connection.player.VelocityResourcePackInfo;
|
||||||
import com.velocitypowered.proxy.protocol.packet.ResourcePackRequestPacket;
|
import com.velocitypowered.proxy.protocol.packet.ResourcePackRequestPacket;
|
||||||
|
import com.velocitypowered.proxy.protocol.packet.ResourcePackResponsePacket;
|
||||||
import com.velocitypowered.proxy.protocol.packet.chat.ComponentHolder;
|
import com.velocitypowered.proxy.protocol.packet.chat.ComponentHolder;
|
||||||
import io.netty.buffer.ByteBufUtil;
|
import io.netty.buffer.ByteBufUtil;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
@ -139,4 +140,20 @@ public abstract sealed class ResourcePackHandler
|
|||||||
*/
|
*/
|
||||||
public abstract boolean onResourcePackResponse(
|
public abstract boolean onResourcePackResponse(
|
||||||
final @NotNull ResourcePackResponseBundle bundle);
|
final @NotNull ResourcePackResponseBundle bundle);
|
||||||
|
|
||||||
|
protected boolean handleResponseResult(
|
||||||
|
final @Nullable ResourcePackInfo queued,
|
||||||
|
final @NotNull ResourcePackResponseBundle bundle
|
||||||
|
) {
|
||||||
|
final boolean handled = queued != null
|
||||||
|
&& queued.getOriginalOrigin() != ResourcePackInfo.Origin.DOWNSTREAM_SERVER;
|
||||||
|
if (!handled) {
|
||||||
|
if (player.getConnectionInFlight() != null
|
||||||
|
&& player.getConnectionInFlight().getConnection() != null) {
|
||||||
|
player.getConnectionInFlight().getConnection().write(new ResourcePackResponsePacket(
|
||||||
|
bundle.uuid(), bundle.hash(), bundle.status()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return handled;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,5 +21,6 @@ import com.velocitypowered.api.event.player.PlayerResourcePackStatusEvent;
|
|||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
@SuppressWarnings("checkstyle:MissingJavadocType")
|
@SuppressWarnings("checkstyle:MissingJavadocType")
|
||||||
public record ResourcePackResponseBundle(UUID uuid, PlayerResourcePackStatusEvent.Status status) {
|
public record ResourcePackResponseBundle(UUID uuid, String hash,
|
||||||
|
PlayerResourcePackStatusEvent.Status status) {
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren