Improve map packet

This commit is contained in:
themode 2021-12-27 09:30:21 +01:00 committed by TheMode
parent 78076e9bc8
commit 90e88dc6e7
3 changed files with 34 additions and 32 deletions

View File

@ -34,9 +34,9 @@ public interface Framebuffer {
}
return new MapDataPacket(mapId, (byte) 0, false,
false, List.of(),
(byte) width, (byte) height,
(byte) minX, (byte) minY,
colors);
new MapDataPacket.ColorContent((byte) width, (byte) height,
(byte) minX, (byte) minY,
colors));
}
static int index(int x, int z) {

View File

@ -41,8 +41,8 @@ public interface LargeFramebuffer {
}
return new MapDataPacket(mapId, (byte) 0, false,
false, List.of(),
(byte) width, (byte) height,
(byte) 0, (byte) 0,
colors);
new MapDataPacket.ColorContent((byte) width, (byte) height,
(byte) 0, (byte) 0,
colors));
}
}

View File

@ -13,8 +13,7 @@ import java.util.List;
public record MapDataPacket(int mapId, byte scale, boolean locked,
boolean trackingPosition, @NotNull List<Icon> icons,
byte columns, byte rows, byte x, byte z,
byte @Nullable [] data) implements ServerPacket {
@Nullable MapDataPacket.ColorContent colorContent) implements ServerPacket {
public MapDataPacket {
icons = List.copyOf(icons);
}
@ -26,8 +25,7 @@ public record MapDataPacket(int mapId, byte scale, boolean locked,
private MapDataPacket(MapDataPacket packet) {
this(packet.mapId, packet.scale, packet.locked,
packet.trackingPosition, packet.icons,
packet.columns, packet.rows, packet.x, packet.z,
packet.data);
packet.colorContent);
}
private static MapDataPacket read(BinaryReader reader) {
@ -38,19 +36,14 @@ public record MapDataPacket(int mapId, byte scale, boolean locked,
List<Icon> icons = trackingPosition ? reader.readVarIntList(Icon::new) : List.of();
var columns = reader.readByte();
byte rows = 0;
byte x = 0;
byte z = 0;
byte[] data = null;
if (columns > 0) {
rows = reader.readByte();
x = reader.readByte();
z = reader.readByte();
data = reader.readBytes(reader.readVarInt());
}
if (columns <= 0) return new MapDataPacket(mapId, scale, locked, trackingPosition, icons, null);
byte rows = reader.readByte();
byte x = reader.readByte();
byte z = reader.readByte();
byte[] data = reader.readBytes(reader.readVarInt());
return new MapDataPacket(mapId, scale, locked,
trackingPosition, icons, columns, rows, x, z,
data);
trackingPosition, icons, new ColorContent(columns, rows, x, z,
data));
}
@Override
@ -60,17 +53,10 @@ public record MapDataPacket(int mapId, byte scale, boolean locked,
writer.writeBoolean(locked);
writer.writeBoolean(trackingPosition);
if (trackingPosition) writer.writeVarIntList(icons, BinaryWriter::write);
writer.writeByte(columns);
if (columns <= 0) return;
writer.writeByte(rows);
writer.writeByte(x);
writer.writeByte(z);
if (data != null && data.length > 0) {
writer.writeVarInt(data.length);
writer.writeBytes(data);
if (colorContent != null) {
writer.write(colorContent);
} else {
writer.writeVarInt(0);
writer.writeByte((byte) 0);
}
}
@ -95,4 +81,20 @@ public record MapDataPacket(int mapId, byte scale, boolean locked,
if (displayName != null) writer.writeComponent(displayName);
}
}
public record ColorContent(byte columns, byte rows, byte x, byte z,
byte @NotNull [] data) implements Writeable {
public ColorContent(BinaryReader reader) {
this(reader.readByte(), reader.readByte(), reader.readByte(), reader.readByte(),
reader.readBytes(reader.readVarInt()));
}
public void write(BinaryWriter writer) {
writer.writeByte(columns);
writer.writeByte(rows);
writer.writeByte(x);
writer.writeByte(z);
writer.writeByteArray(data);
}
}
}