Fix TextWrapping issues; Now limits the packets send to the client to either: 119 chars or 320 width. This will strip disallowed characters, propagate colors properly to the next line and not 'eat' multiple color-codes.

This commit is contained in:
Erik Broes
2011-04-25 18:14:06 +02:00
parent 6940f56d4d
commit 88ebcc8db5
5 changed files with 103 additions and 40 deletions

View File

@@ -0,0 +1,38 @@
package net.minecraft.server;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
public class Packet3Chat extends Packet {
public String a;
public Packet3Chat() {}
public Packet3Chat(String s) {
// CraftBukkit start - handle this later
//if (s.length() > 119) {
// s = s.substring(0, 119);
//}
// CraftBukkit end
this.a = s;
}
public void a(DataInputStream datainputstream) throws IOException { // CraftBukkit
this.a = a(datainputstream, 119);
}
public void a(DataOutputStream dataoutputstream) throws IOException { // CraftBukkit
a(this.a, dataoutputstream);
}
public void a(NetHandler nethandler) {
nethandler.a(this);
}
public int a() {
return this.a.length();
}
}