forked from GeyserMC/Geyser
Update closest color conversion (#1057)
ViaVersion altered their color conversion to fix an issue and this just copies those changes
This commit is contained in:
parent
427cb69a14
commit
50346a95cd
1 changed files with 9 additions and 6 deletions
|
@ -400,13 +400,16 @@ public class MessageUtils {
|
|||
int testB = testColor.getValue() & 0xFF;
|
||||
|
||||
// Check by the greatest diff of the 3 values
|
||||
int rDiff = Math.abs(testR - r);
|
||||
int gDiff = Math.abs(testG - g);
|
||||
int bDiff = Math.abs(testB - b);
|
||||
int maxDiff = Math.max(Math.max(rDiff, gDiff), bDiff);
|
||||
if (closest == null || maxDiff < smallestDiff) {
|
||||
int rAverage = (testR + r) / 2;
|
||||
int rDiff = testR - r;
|
||||
int gDiff = testG - g;
|
||||
int bDiff = testB - b;
|
||||
int diff = ((2 + (rAverage >> 8)) * rDiff * rDiff)
|
||||
+ (4 * gDiff * gDiff)
|
||||
+ ((2 + ((255 - rAverage) >> 8)) * bDiff * bDiff);
|
||||
if (closest == null || diff < smallestDiff) {
|
||||
closest = testColor.getKey();
|
||||
smallestDiff = maxDiff;
|
||||
smallestDiff = diff;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue