We don't need to store each individual RGB color for maps

This commit is contained in:
Camotoy 2021-09-25 15:02:08 -04:00
parent 67c93dcc8c
commit 6f4d433561
No known key found for this signature in database
GPG key ID: 7EEFB66FE798081F
2 changed files with 12 additions and 16 deletions

View file

@ -67,7 +67,7 @@ public class JavaMapDataTranslator extends PacketTranslator<ServerMapDataPacket>
int idx = 0;
for (byte colorId : data.getData()) {
colors[idx++] = MapColor.fromId(colorId & 0xFF).toARGB();
colors[idx++] = MapColor.fromId(colorId & 0xFF).getARGB();
}
mapItemDataPacket.setColors(colors);

View file

@ -277,28 +277,24 @@ public enum MapColor {
private static final MapColor[] VALUES = values();
private final int red;
private final int green;
private final int blue;
private final int value;
MapColor(int red, int green, int blue) {
this.red = red;
this.green = green;
this.blue = blue;
int alpha = 255;
if (red == -1 && green == -1 && blue == -1)
alpha = 0; // transparent
this.value = ((alpha & 0xFF) << 24) |
((red & 0xFF) << 16) |
((green & 0xFF) << 8) |
(blue & 0xFF);
}
public static MapColor fromId(int id) {
return id >= 0 && id < VALUES.length ? VALUES[id] : COLOR_0;
}
public int toARGB() {
int alpha = 255;
if (red == -1 && green == -1 && blue == -1)
alpha = 0; // transparent
return ((alpha & 0xFF) << 24) |
((red & 0xFF) << 16) |
((green & 0xFF) << 8) |
(blue & 0xFF);
public int getARGB() {
return value;
}
}