mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-23 00:35:13 +00:00
156 lines
5.2 KiB
Java
156 lines
5.2 KiB
Java
/*
|
|
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation. Oracle designates this
|
|
* particular file as subject to the "Classpath" exception as provided
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
package sun.font;
|
|
|
|
public final class CCompositeGlyphMapper extends CompositeGlyphMapper {
|
|
|
|
private CompositeFont font;
|
|
private CharToGlyphMapper[] slotMappers;
|
|
|
|
public CCompositeGlyphMapper(CompositeFont compFont) {
|
|
super(compFont);
|
|
font = compFont;
|
|
slotMappers = new CharToGlyphMapper[font.numSlots];
|
|
missingGlyph = 0;
|
|
}
|
|
|
|
private CharToGlyphMapper getSlotMapper(int slot) {
|
|
CharToGlyphMapper mapper = slotMappers[slot];
|
|
if (mapper == null) {
|
|
mapper = font.getSlotFont(slot).getMapper();
|
|
slotMappers[slot] = mapper;
|
|
}
|
|
return mapper;
|
|
}
|
|
|
|
public boolean canDisplay(char ch) {
|
|
int glyph = charToGlyph(ch);
|
|
return glyph != missingGlyph;
|
|
}
|
|
|
|
private int convertToGlyph(int unicode) {
|
|
for (int slot = 0; slot < font.numSlots; slot++) {
|
|
CharToGlyphMapper mapper = getSlotMapper(slot);
|
|
int glyphCode = mapper.charToGlyph(unicode);
|
|
// The CFont Mappers will return a negative code
|
|
// for fonts that will fill the glyph from fallbacks
|
|
// - cascading font in OSX-speak. But we need to be
|
|
// know here that only the codes > 0 are really present.
|
|
if (glyphCode > 0) {
|
|
glyphCode = compositeGlyphCode(slot, glyphCode);
|
|
return glyphCode;
|
|
}
|
|
}
|
|
return missingGlyph;
|
|
}
|
|
|
|
public int getNumGlyphs() {
|
|
int numGlyphs = 0;
|
|
for (int slot=0; slot<1 /*font.numSlots*/; slot++) {
|
|
CharToGlyphMapper mapper = slotMappers[slot];
|
|
if (mapper == null) {
|
|
mapper = font.getSlotFont(slot).getMapper();
|
|
slotMappers[slot] = mapper;
|
|
}
|
|
numGlyphs += mapper.getNumGlyphs();
|
|
}
|
|
return numGlyphs;
|
|
}
|
|
|
|
public int charToGlyph(int unicode) {
|
|
return convertToGlyph(unicode);
|
|
}
|
|
|
|
public int charToGlyph(char unicode) {
|
|
return convertToGlyph(unicode);
|
|
}
|
|
|
|
public boolean charsToGlyphsNS(int count, char[] unicodes, int[] glyphs) {
|
|
|
|
for (int i=0; i<count; i++) {
|
|
int code = unicodes[i]; // char is unsigned.
|
|
|
|
if (code >= HI_SURROGATE_START &&
|
|
code <= HI_SURROGATE_END && i < count - 1) {
|
|
char low = unicodes[i + 1];
|
|
|
|
if (low >= LO_SURROGATE_START &&
|
|
low <= LO_SURROGATE_END) {
|
|
code = (code - HI_SURROGATE_START) *
|
|
0x400 + low - LO_SURROGATE_START + 0x10000;
|
|
glyphs[i + 1] = INVISIBLE_GLYPH_ID;
|
|
}
|
|
}
|
|
|
|
glyphs[i] = convertToGlyph(code);
|
|
|
|
if (code < FontUtilities.MIN_LAYOUT_CHARCODE) {
|
|
continue;
|
|
}
|
|
else if (FontUtilities.isComplexCharCode(code)) {
|
|
return true;
|
|
}
|
|
else if (code >= 0x10000) {
|
|
i += 1; // Empty glyph slot after surrogate
|
|
continue;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public void charsToGlyphs(int count, char[] unicodes, int[] glyphs) {
|
|
for (int i=0; i<count; i++) {
|
|
int code = unicodes[i]; // char is unsigned.
|
|
|
|
if (code >= HI_SURROGATE_START &&
|
|
code <= HI_SURROGATE_END && i < count - 1) {
|
|
char low = unicodes[i + 1];
|
|
|
|
if (low >= LO_SURROGATE_START &&
|
|
low <= LO_SURROGATE_END) {
|
|
code = (code - HI_SURROGATE_START) *
|
|
0x400 + low - LO_SURROGATE_START + 0x10000;
|
|
|
|
glyphs[i] = convertToGlyph(code);
|
|
i += 1; // Empty glyph slot after surrogate
|
|
glyphs[i] = INVISIBLE_GLYPH_ID;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
glyphs[i] = convertToGlyph(code);
|
|
}
|
|
}
|
|
|
|
public void charsToGlyphs(int count, int[] unicodes, int[] glyphs) {
|
|
for (int i=0; i<count; i++) {
|
|
glyphs[i] = convertToGlyph(unicodes[i]);
|
|
}
|
|
}
|
|
|
|
}
|