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:
rtm516 2020-07-30 21:09:53 +01:00 committed by GitHub
parent 427cb69a14
commit 50346a95cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 6 deletions

View File

@ -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;
}
}