/* * Copyright (c) 2009-2012 jMonkeyEngine * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of 'jMonkeyEngine' nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package com.jme3.font; import com.jme3.math.ColorRGBA; import java.util.LinkedList; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Contains the color information tagged in a text string * Format: \#rgb# * \#rgba# * \#rrggbb# * \#rrggbbaa# * @author YongHoon */ class ColorTags { private static final Pattern colorPattern = Pattern.compile("\\\\#([0-9a-fA-F]{8})#|\\\\#([0-9a-fA-F]{6})#|" + "\\\\#([0-9a-fA-F]{4})#|\\\\#([0-9a-fA-F]{3})#"); private LinkedList<Range> colors = new LinkedList<Range>(); private String text; private String original; private float baseAlpha = -1; ColorTags() { } ColorTags(String seq) { setText(seq); } /** * @return text without color tags */ String getPlainText() { return text; } LinkedList<Range> getTags() { return colors; } void setText(final String charSeq) { original = charSeq; colors.clear(); if (charSeq == null) { return; } Matcher m = colorPattern.matcher(charSeq); if (m.find()) { StringBuilder builder = new StringBuilder(charSeq.length()-7); int startIndex = 0; do { String colorStr = null; for (int i = 1; i <= 4 && colorStr==null; i++) { colorStr = m.group(i); } builder.append(charSeq.subSequence(startIndex, m.start())); Range range = new Range(builder.length(), colorStr); startIndex = m.end(); colors.add(range); } while (m.find()); builder.append(charSeq.subSequence(startIndex, charSeq.length())); text = builder.toString(); } else { text = charSeq; } } void setBaseAlpha( float alpha ) { this.baseAlpha = alpha; if( alpha == -1 ) { // Need to reinitialize from the original text setText(original); return; } // Else set the alpha for all of them for( Range r : colors ) { r.color.a = alpha; } } /** * Sets the colors of all ranges, overriding any color tags * that were in the original text. */ void setBaseColor( ColorRGBA color ) { // There are times when the alpha is directly modified // and the caller may have passed a constant... so we // should clone it. color = color.clone(); for( Range r : colors ) { r.color = color; } } class Range { int start; ColorRGBA color; Range(int start, String colorStr) { this.start = start; this.color = new ColorRGBA(); if (colorStr.length() >= 6) { color.set(Integer.parseInt(colorStr.subSequence(0,2).toString(), 16) / 255f, Integer.parseInt(colorStr.subSequence(2,4).toString(), 16) / 255f, Integer.parseInt(colorStr.subSequence(4,6).toString(), 16) / 255f, 1); if (baseAlpha != -1) { color.a = baseAlpha; } else if (colorStr.length() == 8) { color.a = Integer.parseInt(colorStr.subSequence(6,8).toString(), 16) / 255f; } } else { color.set(Integer.parseInt(Character.toString(colorStr.charAt(0)), 16) / 15f, Integer.parseInt(Character.toString(colorStr.charAt(1)), 16) / 15f, Integer.parseInt(Character.toString(colorStr.charAt(2)), 16) / 15f, 1); if (baseAlpha != -1) { color.a = baseAlpha; } else if (colorStr.length() == 4) { color.a = Integer.parseInt(Character.toString(colorStr.charAt(3)), 16) / 15f; } } } } }