Implement Player#spoofChatInput method

This commit is contained in:
Luck
2018-09-20 19:42:27 +01:00
parent 8763573ae6
commit b805891d1f
3 changed files with 23 additions and 4 deletions

View File

@@ -247,7 +247,7 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
connection.closeWith(Disconnect.create(friendlyReason));
}
} else {
connection.write(Chat.create(friendlyReason));
connection.write(Chat.createClientbound(friendlyReason));
}
}
@@ -350,6 +350,12 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
return true;
}
@Override
public void spoofChatInput(String input) {
Preconditions.checkArgument(input.length() <= Chat.MAX_SERVERBOUND_MESSAGE_LENGTH, "input cannot be greater than " + Chat.MAX_SERVERBOUND_MESSAGE_LENGTH + " characters in length");
connectedServer.getMinecraftConnection().write(Chat.createServerbound(input));
}
private class ConnectionRequestBuilderImpl implements ConnectionRequestBuilder {
private final RegisteredServer server;

View File

@@ -10,6 +10,8 @@ import net.kyori.text.serializer.ComponentSerializers;
public class Chat implements MinecraftPacket {
public static final byte CHAT = (byte) 0;
public static final int MAX_SERVERBOUND_MESSAGE_LENGTH = 256;
private String message;
private byte type;
@@ -61,12 +63,16 @@ public class Chat implements MinecraftPacket {
}
}
public static Chat create(Component component) {
return create(component, CHAT);
public static Chat createClientbound(Component component) {
return createClientbound(component, CHAT);
}
public static Chat create(Component component, byte type) {
public static Chat createClientbound(Component component, byte type) {
Preconditions.checkNotNull(component, "component");
return new Chat(ComponentSerializers.JSON.serialize(component), type);
}
public static Chat createServerbound(String message) {
return new Chat(message, CHAT);
}
}