X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FColorUtils.java;h=9ed98bd129a9499ea7f02ee2dd6b943225866273;hb=HEAD;hp=d7829dfdc01507e022ea430ab57c59cb033b0559;hpb=136c0793b90b72b928c4d77dc109dd5c644e00d3;p=jalview.git diff --git a/src/jalview/util/ColorUtils.java b/src/jalview/util/ColorUtils.java index d7829df..24128ea 100644 --- a/src/jalview/util/ColorUtils.java +++ b/src/jalview/util/ColorUtils.java @@ -25,10 +25,19 @@ package jalview.util; import java.awt.Color; +import java.util.HashMap; +import java.util.Locale; +import java.util.Map; import java.util.Random; public class ColorUtils { + private static final int MAX_CACHE_SIZE = 1729; + + /* + * a cache for colours generated from text strings + */ + static Map myColours = new HashMap<>(); /** * Generates a random color, will mix with input color. Code taken from @@ -60,6 +69,18 @@ public class ColorUtils } /** + * + * @return random color + */ + public static final Color getARandomColor() + { + + Color col = new Color((int) (Math.random() * 255), + (int) (Math.random() * 255), (int) (Math.random() * 255)); + return col; + } + + /** * Convert to Tk colour code format * * @param colour @@ -134,12 +155,12 @@ public class ColorUtils * prop = proportion of the way value is from minValue to maxValue */ float prop = (value - minValue) / (maxValue - minValue); - float r = minColour.getRed() + prop - * (maxColour.getRed() - minColour.getRed()); - float g = minColour.getGreen() + prop - * (maxColour.getGreen() - minColour.getGreen()); - float b = minColour.getBlue() + prop - * (maxColour.getBlue() - minColour.getBlue()); + float r = minColour.getRed() + + prop * (maxColour.getRed() - minColour.getRed()); + float g = minColour.getGreen() + + prop * (maxColour.getGreen() - minColour.getGreen()); + float b = minColour.getBlue() + + prop * (maxColour.getBlue() - minColour.getBlue()); return new Color(r / 255, g / 255, b / 255); } @@ -210,8 +231,14 @@ public class ColorUtils return null; } colour = colour.trim(); - + Color col = null; + + if ("random".equals(colour)) + { + return generateRandomColor(null); + } + try { int value = Integer.parseInt(colour, 16); @@ -219,12 +246,12 @@ public class ColorUtils } catch (NumberFormatException ex) { } - + if (col == null) { col = ColorUtils.getAWTColorFromName(colour); } - + if (col == null) { try @@ -237,12 +264,13 @@ public class ColorUtils int b = Integer.parseInt(tokens[2].trim()); col = new Color(r, g, b); } - } catch (Exception ex) + } catch (IllegalArgumentException ex) // IllegalArgumentException includes + // NumberFormatException { // non-numeric token or out of 0-255 range } } - + return col; } @@ -260,35 +288,46 @@ public class ColorUtils { return Color.white; } + if (myColours.containsKey(name)) + { + return myColours.get(name); + } int lsize = name.length(); int start = 0; int end = lsize / 3; - + int rgbOffset = Math.abs(name.hashCode() % 10) * 15; // 0-135 - + /* * red: first third */ - int r = Math.abs(name.substring(start, end).hashCode() + rgbOffset) % 210 + 20; + int r = Math.abs(name.substring(start, end).hashCode() + rgbOffset) + % 210 + 20; start = end; end += lsize / 3; if (end > lsize) { end = lsize; } - + /* * green: second third */ - int g = Math.abs(name.substring(start, end).hashCode() + rgbOffset) % 210 + 20; - + int g = Math.abs(name.substring(start, end).hashCode() + rgbOffset) + % 210 + 20; + /* * blue: third third */ int b = Math.abs(name.substring(end).hashCode() + rgbOffset) % 210 + 20; - + Color color = new Color(r, g, b); - + + if (myColours.size() < MAX_CACHE_SIZE) + { + myColours.put(name, color); + } + return color; } @@ -306,8 +345,8 @@ public class ColorUtils return null; } Color col = null; - name = name.toLowerCase(); - + name = name.toLowerCase(Locale.ROOT); + // or make a static map; or use reflection on the field name switch (name) { @@ -351,7 +390,7 @@ public class ColorUtils col = Color.yellow; break; } - + return col; } }